From 299539360929ae9580708bb9777faac7c6f0c25f Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sun, 25 Nov 2007 15:47:58 +0000 Subject: [PATCH 01/72] Oops, previous commit messed up POSIX timing code, now fixed. [SVN r41359] --- example/timer/regex_timer.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/example/timer/regex_timer.cpp b/example/timer/regex_timer.cpp index 834ebfbf..112b0cb0 100644 --- a/example/timer/regex_timer.cpp +++ b/example/timer/regex_timer.cpp @@ -324,17 +324,17 @@ int main(int argc, char**argv) iters = 10; tim = 1.1; // cache load: - regex_tA(&r, s2.c_str(), nsubs, matches.get(), 0); + regexecA(&r, s2.c_str(), nsubs, matches.get(), 0); do{ iters *= (tim > 0.001) ? (1.1/tim) : 100; t.restart(); for(i = 0; i < iters; ++i) { - result = regex_tA(&r, s2.c_str(), nsubs, matches.get(), 0); + result = regexecA(&r, s2.c_str(), nsubs, matches.get(), 0); } tim = t.elapsed(); }while(tim < wait_time); - cout << "POSIX regex_tA time: " << (tim * 1000000 / iters) << "us" << endl; + cout << "POSIX regexecA time: " << (tim * 1000000 / iters) << "us" << endl; if(result == 0) { From f72c7518be83fed59520c381974267b059382244 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Tue, 11 Dec 2007 17:19:03 +0000 Subject: [PATCH 02/72] Fixes #1455. [SVN r41970] --- example/snippets/regex_match_example.cpp | 2 +- example/snippets/regex_split_example_1.cpp | 2 +- example/snippets/regex_token_iterator_eg_1.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/example/snippets/regex_match_example.cpp b/example/snippets/regex_match_example.cpp index a711ffd4..bd35d169 100644 --- a/example/snippets/regex_match_example.cpp +++ b/example/snippets/regex_match_example.cpp @@ -65,7 +65,7 @@ istream& getline(istream& is, std::string& s) } #endif -int main(int argc) +int main(int argc, const char*[]) { std::string in, out; do diff --git a/example/snippets/regex_split_example_1.cpp b/example/snippets/regex_split_example_1.cpp index 10d64036..25d2e576 100644 --- a/example/snippets/regex_split_example_1.cpp +++ b/example/snippets/regex_split_example_1.cpp @@ -47,7 +47,7 @@ istream& getline(istream& is, std::string& s) #endif -int main(int argc) +int main(int argc, const char*[]) { string s; list l; diff --git a/example/snippets/regex_token_iterator_eg_1.cpp b/example/snippets/regex_token_iterator_eg_1.cpp index fbf7f5b0..e12881e8 100644 --- a/example/snippets/regex_token_iterator_eg_1.cpp +++ b/example/snippets/regex_token_iterator_eg_1.cpp @@ -40,7 +40,7 @@ istream& getline(istream& is, std::string& s) #endif -int main(int argc) +int main(int argc, const char*[]) { string s; do{ From 31668ed4bee4fc2d2828c79e75949600f4582613 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Tue, 11 Dec 2007 17:28:15 +0000 Subject: [PATCH 03/72] Fixes #1471. [SVN r41973] --- include/boost/regex/v4/cpp_regex_traits.hpp | 2 +- include/boost/regex/v4/regex_workaround.hpp | 9 ++++++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/include/boost/regex/v4/cpp_regex_traits.hpp b/include/boost/regex/v4/cpp_regex_traits.hpp index dbec293c..ddcbef43 100644 --- a/include/boost/regex/v4/cpp_regex_traits.hpp +++ b/include/boost/regex/v4/cpp_regex_traits.hpp @@ -128,7 +128,7 @@ parser_buf::seekoff(off_type off, ::std::ios_base::seekdir way, : break; case ::std::ios_base::cur: { - std::ptrdiff_t newpos = pos + off; + std::ptrdiff_t newpos = static_cast(pos + off); if((newpos < 0) || (newpos > size)) return pos_type(off_type(-1)); else diff --git a/include/boost/regex/v4/regex_workaround.hpp b/include/boost/regex/v4/regex_workaround.hpp index 917320ca..fc3c2123 100644 --- a/include/boost/regex/v4/regex_workaround.hpp +++ b/include/boost/regex/v4/regex_workaround.hpp @@ -150,13 +150,16 @@ namespace boost{ namespace re_detail{ return stdext::unchecked_equal(first, last, with); } +#else + using std::copy; + using std::equal; +#endif +#if BOOST_WORKAROUND(BOOST_MSVC,>=1400) && defined(__STDC_WANT_SECURE_LIB__) && __STDC_WANT_SECURE_LIB__ + // use safe versions of strcpy etc: using ::strcpy_s; using ::strcat_s; #else - using std::copy; - using std::equal; - inline std::size_t strcpy_s( char *strDestination, std::size_t sizeInBytes, From 71fdd5eb44303e665c5181200af393fd610dbb86 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Fri, 14 Dec 2007 10:11:21 +0000 Subject: [PATCH 04/72] Fix typos reported by Sebastian Pipping. [SVN r42025] --- doc/Jamfile.v2 | 3 +- doc/concepts.qbk | 7 +- .../boost_regex/background_information.html | 33 +- .../acknowledgements.html | 20 +- .../background_information/examples.html | 54 +- .../background_information/faq.html | 67 +- .../background_information/futher.html | 21 +- .../background_information/headers.html | 22 +- .../background_information/history.html | 45 +- .../background_information/locale.html | 87 ++- .../background_information/performance.html | 17 +- .../background_information/redist.html | 18 +- .../background_information/standards.html | 56 +- .../background_information/thread_safety.html | 44 +- doc/html/boost_regex/captures.html | 72 +- doc/html/boost_regex/configuration.html | 14 +- .../boost_regex/configuration/algorithm.html | 18 +- .../boost_regex/configuration/compiler.html | 19 +- .../boost_regex/configuration/linkage.html | 19 +- .../boost_regex/configuration/locale.html | 22 +- .../boost_regex/configuration/tuning.html | 18 +- doc/html/boost_regex/format.html | 32 +- .../format/boost_format_syntax.html | 46 +- doc/html/boost_regex/format/perl_format.html | 19 +- doc/html/boost_regex/format/sed_format.html | 18 +- doc/html/boost_regex/install.html | 101 +-- .../introduction_and_overview.html | 73 +- doc/html/boost_regex/partial_matches.html | 41 +- doc/html/boost_regex/ref.html | 41 +- doc/html/boost_regex/ref/bad_expression.html | 63 +- doc/html/boost_regex/ref/basic_regex.html | 622 ++++++++-------- doc/html/boost_regex/ref/concepts.html | 20 +- .../ref/concepts/charT_concept.html | 31 +- .../ref/concepts/iterator_concepts.html | 21 +- .../ref/concepts/traits_concept.html | 117 ++- .../ref/deprecated_interfaces.html | 26 +- .../ref/deprecated_interfaces/old_regex.html | 233 +++--- .../deprecated_interfaces/regex_format.html | 60 +- .../ref/deprecated_interfaces/regex_grep.html | 76 +- .../deprecated_interfaces/regex_split.html | 53 +- doc/html/boost_regex/ref/error_type.html | 35 +- doc/html/boost_regex/ref/match_flag_type.html | 48 +- doc/html/boost_regex/ref/match_results.html | 232 +++--- doc/html/boost_regex/ref/non_std_strings.html | 25 +- .../boost_regex/ref/non_std_strings/icu.html | 25 +- .../ref/non_std_strings/icu/intro.html | 28 +- .../ref/non_std_strings/icu/unicode_algo.html | 85 +-- .../ref/non_std_strings/icu/unicode_iter.html | 83 +-- .../non_std_strings/icu/unicode_types.html | 74 +- .../ref/non_std_strings/mfc_strings.html | 25 +- .../non_std_strings/mfc_strings/mfc_algo.html | 125 ++-- .../mfc_strings/mfc_intro.html | 30 +- .../non_std_strings/mfc_strings/mfc_iter.html | 76 +- .../mfc_strings/mfc_regex_create.html | 32 +- .../mfc_strings/mfc_regex_types.html | 32 +- doc/html/boost_regex/ref/posix.html | 106 ++- doc/html/boost_regex/ref/regex_iterator.html | 179 +++-- doc/html/boost_regex/ref/regex_match.html | 157 ++-- doc/html/boost_regex/ref/regex_replace.html | 101 ++- doc/html/boost_regex/ref/regex_search.html | 145 ++-- .../boost_regex/ref/regex_token_iterator.html | 152 ++-- doc/html/boost_regex/ref/regex_traits.html | 47 +- doc/html/boost_regex/ref/sub_match.html | 516 ++++++------- .../boost_regex/ref/syntax_option_type.html | 19 +- .../syntax_option_type_basic.html | 59 +- .../syntax_option_type_extended.html | 44 +- .../syntax_option_type_literal.html | 23 +- .../syntax_option_type_overview.html | 49 +- .../syntax_option_type_perl.html | 47 +- .../syntax_option_type_synopsis.html | 30 +- doc/html/boost_regex/syntax.html | 38 +- .../boost_regex/syntax/basic_extended.html | 460 ++++++------ doc/html/boost_regex/syntax/basic_syntax.html | 258 ++++--- .../boost_regex/syntax/character_classes.html | 24 +- .../optional_char_class_names.html | 26 +- .../character_classes/std_char_clases.html | 25 +- .../boost_regex/syntax/collating_names.html | 19 +- .../syntax/collating_names/digraphs.html | 19 +- .../syntax/collating_names/named_unicode.html | 28 +- .../collating_names/posix_symbolic_names.html | 23 +- .../syntax/leftmost_longest_rule.html | 23 +- doc/html/boost_regex/syntax/perl_syntax.html | 676 +++++++++--------- doc/html/boost_regex/unicode.html | 45 +- doc/html/index.html | 24 +- doc/regex.qbk | 2 +- doc/regex_traits.qbk | 4 +- 86 files changed, 3114 insertions(+), 3578 deletions(-) diff --git a/doc/Jamfile.v2 b/doc/Jamfile.v2 index 38357c9e..5dedf523 100644 --- a/doc/Jamfile.v2 +++ b/doc/Jamfile.v2 @@ -34,7 +34,7 @@ boostbook standalone # PDF Options: # TOC Generation: this is needed for FOP-0.9 and later: - #fop1.extensions=1 + fop1.extensions=0 # Or enable this if you're using XEP: xep.extensions=1 # TOC generation: this is needed for FOP 0.2, but must not be set to zero for FOP-0.9! @@ -55,3 +55,4 @@ boostbook standalone ; + diff --git a/doc/concepts.qbk b/doc/concepts.qbk index 58822659..d6758967 100644 --- a/doc/concepts.qbk +++ b/doc/concepts.qbk @@ -67,10 +67,9 @@ an object of type `X::locale_type`. [[v.lookup_classname(F1, F2)][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.]] [[v.lookup_collatename(F1, F2)][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.]] [[v.isctype(c, v.lookup_classname (F1, F2))][bool][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)][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\]]] +[[v.value(c, I)][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\]]] [[u.imbue(loc)][X::locale_type][Imbues u with the locale loc, returns the previous locale used by u if any. ]] [[v.getloc()][X::locale_type][Returns the current locale used by v if any. ]] -[[v.error_string(i)][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.]] ] [h4 Additional Optional Requirements] @@ -89,14 +88,14 @@ configure itself appropriately. [[v.escape_syntax_type(c)][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`]] [[v.translate(c, b)][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)`.]] [[v.toi(I1, I2, i)][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.]] -[[v.error_string(i)][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.]] +[[v.error_string(I)][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.]] [[v.tolower(c)][X::char_type][Converts c to lower case, used for Perl-style \l and \L formating operations.]] [[v.toupper(c)][X::char_type][Converts c to upper case, used for Perl-style \u and \U formating operations.]] ] [endsect] -[section:iterator_concepts Iterator Rrequirements] +[section:iterator_concepts Iterator Requirements] The regular expression algorithms (and iterators) take all require a Bidirectional-Iterator. diff --git a/doc/html/boost_regex/background_information.html b/doc/html/boost_regex/background_information.html index 45d793e6..97e723cd 100644 --- a/doc/html/boost_regex/background_information.html +++ b/doc/html/boost_regex/background_information.html @@ -3,12 +3,11 @@ Background Information - + - - + + @@ -25,7 +24,8 @@
Headers
Localization
@@ -44,31 +44,14 @@ Acknowledgements
History
-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

- +

+

diff --git a/doc/html/boost_regex/background_information/acknowledgements.html b/doc/html/boost_regex/background_information/acknowledgements.html index 0e9a5827..6226d770 100644 --- a/doc/html/boost_regex/background_information/acknowledgements.html +++ b/doc/html/boost_regex/background_information/acknowledgements.html @@ -1,14 +1,13 @@ - - Acknowledgements +Acknowledgements - + - - + + @@ -25,9 +24,9 @@

The author can be contacted at john - at - johnmaddock.co.uk; the home page for this library is at www.boost.org. @@ -75,10 +74,11 @@

- +

+

diff --git a/doc/html/boost_regex/background_information/examples.html b/doc/html/boost_regex/background_information/examples.html index 7c929efe..42421ebe 100644 --- a/doc/html/boost_regex/background_information/examples.html +++ b/doc/html/boost_regex/background_information/examples.html @@ -1,16 +1,13 @@ - Test and - Example Programs +Test and Example Programs - + - - + + @@ -27,16 +24,16 @@ +
+ Test Programs -
+

- regress: + regress:

A regression test application that gives the matching/searching algorithms @@ -52,7 +49,7 @@ Files: See directory.

- bad_expression_test: + bad_expression_test:

Verifies that "bad" regular expressions don't cause the matcher @@ -65,7 +62,7 @@ Files: bad_expression_test.cpp.

- recursion_test: + recursion_test:

Verifies that the matcher can't overrun the stack (no matter what the expression). @@ -77,7 +74,7 @@ Files: recursion_test.cpp.

- concepts: + concepts:

Verifies that the library meets all documented concepts (a compile only test). @@ -89,7 +86,7 @@ Files: concept_check.cpp.

- captures_test: + captures_test:

Test code for captures. @@ -100,13 +97,13 @@

Files: captures_test.cpp.

-

- +

+ Example programs -
+

- grep + grep

A simple grep implementation, run with the -h command line option to find @@ -116,7 +113,7 @@ Files: grep.cpp

- timer.exe + timer.exe

A simple interactive expression matching application, the results of all @@ -126,11 +123,11 @@

Files: regex_timer.cpp.

-

- +

+ Code snippets -
+

The snippets examples contain the code examples used in the documentation:

@@ -211,10 +208,11 @@
- +

+

diff --git a/doc/html/boost_regex/background_information/faq.html b/doc/html/boost_regex/background_information/faq.html index e2b8b781..31ab358f 100644 --- a/doc/html/boost_regex/background_information/faq.html +++ b/doc/html/boost_regex/background_information/faq.html @@ -1,14 +1,13 @@ - FAQ +FAQ - + - - + + @@ -25,13 +24,14 @@
+ FAQ +

- Q. I can't get regex++ to work with escape + Q. I can't get regex++ to work with escape characters, what's going on?

- A. If you embed regular expressions in C++ + A. If you embed regular expressions in C++ code, then remember that escape characters are processed twice: once by the C++ compiler, and once by the Boost.Regex expression compiler, so to pass the regular expression \d+ to Boost.Regex, you need to embed "\d+" @@ -39,21 +39,21 @@ "\\" in your code.

- Q. No matter what I do regex_match always + Q. No matter what I do regex_match always returns false, what's going on?

- A. The algorithm regex_match only succeeds - if the expression matches all of the text, - if you want to find a sub-string within + A. The algorithm regex_match only succeeds + if the expression matches all of the text, + if you want to find a sub-string within the text that matches the expression then use regex_search instead.

- Q. Why does using parenthesis in a POSIX + Q. Why does using parenthesis in a POSIX regular expression change the result of a match?

- A. For POSIX (extended and basic) regular + A. For POSIX (extended and basic) regular expressions, but not for perl regexes, parentheses don't only mark; they determine what the best match is as well. When the expression is compiled as a POSIX basic or extended regex then Boost.Regex follows the POSIX standard @@ -85,11 +85,11 @@ as the expression.

- Q. Why don't character ranges work properly + Q. Why don't character ranges work properly (POSIX mode only)?

- A. The POSIX standard specifies that character + A. The POSIX standard specifies that character range expressions are locale sensitive - so for example the expression [A-Z] will match any collating element that collates between 'A' and 'Z'. That means that for most locales other than "C" or "POSIX", @@ -97,39 +97,39 @@ most people expect - or at least not what most people have come to expect from regular expression engines. For this reason, the default behaviour of Boost.Regex (perl mode) is to turn locale sensitive collation off by not - setting the regex_constants::collate + setting the regex_constants::collate compile time flag. However if you set a non-default compile time flag - for - example regex_constants::extended or regex_constants::basic, + example regex_constants::extended or regex_constants::basic, then locale dependent collation will be enabled, this also applies to the - POSIX API functions which use either regex_constants::extended - or regex_constants::basic internally. [Note - when regex_constants::nocollate in effect, the library behaves + POSIX API functions which use either regex_constants::extended + or regex_constants::basic internally. [Note - when regex_constants::nocollate in effect, the library behaves "as if" the LC_COLLATE locale category were always "C", regardless of what its actually set to - end note].

- Q. Why are there no throw specifications + Q. Why are there no throw specifications on any of the functions? What exceptions can the library throw?

- A. Not all compilers support (or honor) + A. Not all compilers support (or honor) throw specifications, others support them but with reduced efficiency. Throw specifications may be added at a later date as compilers begin to handle this better. The library should throw only three types of exception: [boost::regex_error] - can be thrown by basic_regex when compiling a regular - expression, std::runtime_error can be thrown when a call - to basic_regex::imbue tries to open a message catalogue - that doesn't exist, or when a call to regex_search or regex_match results in an "everlasting" - search, or when a call to RegEx::GrepFiles - or RegEx::FindFiles tries to open a file that cannot - be opened, finally std::bad_alloc can be thrown by just about any + can be thrown by basic_regex when compiling a regular + expression, std::runtime_error can be thrown when a call + to basic_regex::imbue tries to open a message catalogue + that doesn't exist, or when a call to regex_search or regex_match results in an "everlasting" + search, or when a call to RegEx::GrepFiles + or RegEx::FindFiles tries to open a file that cannot + be opened, finally std::bad_alloc can be thrown by just about any of the functions in this library.

- Q. Why can't I use the "convenience" + Q. Why can't I use the "convenience" versions of regex_match / regex_search / regex_grep / regex_format / regex_merge?

- A. These versions may or may not be available + A. These versions may or may not be available depending upon the capabilities of your compiler, the rules determining the format of these functions are quite complex - and only the versions visible to a standard compliant compiler are given in the help. To find out what @@ -141,10 +141,11 @@

- +

+

diff --git a/doc/html/boost_regex/background_information/futher.html b/doc/html/boost_regex/background_information/futher.html index 4463bda9..f238a3db 100644 --- a/doc/html/boost_regex/background_information/futher.html +++ b/doc/html/boost_regex/background_information/futher.html @@ -1,15 +1,13 @@ - References - and Further Information +References and Further Information - + - - + + @@ -26,9 +24,9 @@

Short tutorials on regular expressions can be found here and here. @@ -64,10 +62,11 @@

- +

+

diff --git a/doc/html/boost_regex/background_information/headers.html b/doc/html/boost_regex/background_information/headers.html index a351f381..cf275901 100644 --- a/doc/html/boost_regex/background_information/headers.html +++ b/doc/html/boost_regex/background_information/headers.html @@ -1,13 +1,13 @@ - Headers +Headers - + - + @@ -24,25 +24,27 @@

- There are two main headers used by this library: <boost/regex.hpp> - provides full access to the main template library, while <boost/cregex.hpp> + There are two main headers used by this library: <boost/regex.hpp> + provides full access to the main template library, while <boost/cregex.hpp> provides access to the (deprecated) high level class RegEx, and the POSIX API functions.

- There is also a header containing only forward declarations <boost/regex_fwd.hpp> - for use when an interface is dependent upon basic_regex, but otherwise does + There is also a header containing only forward declarations <boost/regex_fwd.hpp> + for use when an interface is dependent upon basic_regex, but otherwise does not need the full definitions.

- +

+

diff --git a/doc/html/boost_regex/background_information/history.html b/doc/html/boost_regex/background_information/history.html index db846835..82728a7b 100644 --- a/doc/html/boost_regex/background_information/history.html +++ b/doc/html/boost_regex/background_information/history.html @@ -1,13 +1,12 @@ - History +History - + - + @@ -24,12 +23,13 @@ +
+ Boost 1.34 -
+
  • Fix for non-greedy repeats and partial matches not working correctly in @@ -48,11 +48,11 @@ the same as |.
-

- +

+ Boost 1.33.1 -
+
  • Fixed broken makefiles. @@ -118,11 +118,11 @@ Fixed bug that allowed some invalid expressions to be accepted.
-

- +

+ Boost 1.33.0 -
+
  • Completely rewritten expression parsing code, and traits class support; @@ -173,19 +173,19 @@ in the expression the error occured.
-

- +

+ 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 @@ -220,10 +220,11 @@
- +

+

diff --git a/doc/html/boost_regex/background_information/locale.html b/doc/html/boost_regex/background_information/locale.html index 78e77de2..4916676f 100644 --- a/doc/html/boost_regex/background_information/locale.html +++ b/doc/html/boost_regex/background_information/locale.html @@ -1,14 +1,13 @@ - Localization +Localization - + - - + + @@ -25,7 +24,8 @@

Boost.Regex provides extensive support for run-time localization, the localization model used can be split into two parts: front-end and back-end. @@ -57,52 +57,50 @@

There are three separate localization mechanisms supported by Boost.Regex:

-

- +

+ Win32 localization model. -
+

This is the default model when the library is compiled under Win32, and is - encapsulated by the traits class w32_regex_traits. - When this model is in effect each basic_regex object gets it's own + encapsulated by the traits class w32_regex_traits. + When this model is in effect each basic_regex object gets it's own LCID, by default this is the users default setting as returned by GetUserDefaultLCID, - but you can call imbue on the basic_regex + but you can call imbue on the basic_regex object to set it's locale to some other LCID if you wish. All the settings used by Boost.Regex are acquired directly from the operating system bypassing the C run time library. Front-end localization requires a resource dll, containing a string table with the user-defined strings. The traits class exports the function:

-
-static std::string set_message_catalogue(const std::string& s);
+
static std::string set_message_catalogue(const std::string& s);
 

which needs to be called with a string identifying the name of the resource dll, before your code compiles any regular expressions (but not necessarily - before you construct any basic_regex + before you construct any basic_regex instances):

-
-boost::w32_regex_traits<char>::set_message_catalogue("mydll.dll");
+
boost::w32_regex_traits<char>::set_message_catalogue("mydll.dll");
 

The library provides full Unicode support under NT, under Windows 9x the library degrades gracefully - characters 0 to 255 are supported, the remainder are treated as "unknown" graphic characters.

-

- +

+ C localization model. -
+

This model has been deprecated in favor of the C++ locale for all non-Windows compilers that support it. This locale is encapsulated by the traits class - c_regex_traits, Win32 users + c_regex_traits, Win32 users can force this model to take effect by defining the pre-processor symbol BOOST_REGEX_USE_C_LOCALE. When this model is in effect there is a single - global locale, as set by setlocale. + global locale, as set by setlocale. All settings are acquired from your run time library, consequently Unicode support is dependent upon your run time library implementation.

@@ -111,54 +109,52 @@

Note that calling setlocale invalidates all compiled regular expressions, - calling setlocale(LC_ALL, "C") + calling setlocale(LC_ALL, "C") will make this library behave equivalent to most traditional regular expression libraries including version 1 of this library.

-

- +

+ C++ localization model. -
+

This model is the default for non-Windows compilers.

- When this model is in effect each instance of basic_regex has its own instance - of std::locale, class basic_regex also has a member function - imbue which allows the locale + When this model is in effect each instance of basic_regex has its own instance + of std::locale, class basic_regex also has a member function + imbue which allows the locale for the expression to be set on a per-instance basis. Front end localization - requires a POSIX message catalogue, which will be loaded via the std::messages + requires a POSIX message catalogue, which will be loaded via the std::messages facet of the expression's locale, the traits class exports the symbol:

-
-static std::string set_message_catalogue(const std::string& s);
+
static std::string set_message_catalogue(const std::string& s);
 

which needs to be called with a string identifying the name of the message catalogue, before your code compiles any regular expressions (but not necessarily before you construct any basic_regex instances):

-
-boost::cpp_regex_traits<char>::set_message_catalogue("mycatalogue");
+
boost::cpp_regex_traits<char>::set_message_catalogue("mycatalogue");
 

- Note that calling basic_regex<>::imbue - will invalidate any expression currently compiled in that instance of basic_regex. + Note that calling basic_regex<>::imbue + will invalidate any expression currently compiled in that instance of basic_regex.

Finally note that if you build the library with a non-default localization model, then the appropriate pre-processor symbol (BOOST_REGEX_USE_C_LOCALE or BOOST_REGEX_USE_CPP_LOCALE) must be defined both when you build the support - library, and when you include <boost/regex.hpp> - or <boost/cregex.hpp> - in your code. The best way to ensure this is to add the #define to <boost/regex/user.hpp>. + library, and when you include <boost/regex.hpp> + or <boost/cregex.hpp> + in your code. The best way to ensure this is to add the #define to <boost/regex/user.hpp>.

-

- +

+ Providing a message catalogue -
+

In order to localize the front end of the library, you need to provide the library with the appropriate message strings contained either in a resource @@ -1272,7 +1268,7 @@

@@ -179,7 +177,7 @@ @@ -191,7 +189,7 @@ @@ -203,26 +201,26 @@

- "Unmatched [ or " + "Unmatched [ or "

@@ -1779,10 +1775,11 @@ - +

+

diff --git a/doc/html/boost_regex/background_information/performance.html b/doc/html/boost_regex/background_information/performance.html index be5ed7c2..c0513ebb 100644 --- a/doc/html/boost_regex/background_information/performance.html +++ b/doc/html/boost_regex/background_information/performance.html @@ -1,14 +1,13 @@ - Performance +Performance - + - - + + @@ -25,7 +24,8 @@

The performance of Boost.Regex in both recursive and non-recursive modes should be broadly comparable to other regular expression libraries: recursive @@ -46,10 +46,11 @@

- +

+

diff --git a/doc/html/boost_regex/background_information/redist.html b/doc/html/boost_regex/background_information/redist.html index fb7917f6..de272a08 100644 --- a/doc/html/boost_regex/background_information/redist.html +++ b/doc/html/boost_regex/background_information/redist.html @@ -1,15 +1,13 @@ - Redistributables +Redistributables - + - - + + @@ -26,7 +24,8 @@

If you are using Microsoft or Borland C++ and link to a dll version of the run time library, then you can choose to also link to a dll version of Boost.Regex @@ -48,10 +47,11 @@

- +

+

diff --git a/doc/html/boost_regex/background_information/standards.html b/doc/html/boost_regex/background_information/standards.html index 8efaff79..4ca1f3d9 100644 --- a/doc/html/boost_regex/background_information/standards.html +++ b/doc/html/boost_regex/background_information/standards.html @@ -1,14 +1,13 @@ - Standards - Conformance +Standards Conformance - + - - + + @@ -25,22 +24,22 @@ +
+ C++ -
+

Boost.Regex is intended to conform to the Technical Report on C++ Library Extensions.

-

- +

+ ECMAScript / JavaScript -
+

All of the ECMAScript regular expression syntax features are supported, except that: @@ -49,10 +48,10 @@ The escape sequence \u matches any upper case character (the same as [[:upper:]]) rather than a Unicode escape sequence; use \x{DDDD} for Unicode escape sequences.

-

- +

+ Perl -
+

Almost all Perl features are supported, except for:

@@ -62,10 +61,10 @@

(??{code}) Not implementable in a compiled strongly typed language.

-

- +

+ POSIX -
+

All the POSIX basic and extended regular expression features are supported, except that: @@ -82,10 +81,10 @@ implementation doesn't work on your platform, then you will need to supply a custom traits class.

-

- +

+ Unicode -
+

The following comments refer to Unicode Technical Standard #18: Unicode Regular Expressions version 11. @@ -165,13 +164,13 @@ Indirectly support by forward-lookahead:

- (?=[[:X:]])[[:Y:]] + (?=[[:X:]])[[:Y:]]

Gives the intersection of character properties X and Y.

- (?![[:X:]])[[:Y:]] + (?![[:X:]])[[:Y:]]

Gives everything in Y that is not in X (subtraction). @@ -469,7 +468,7 @@

@@ -550,10 +549,11 @@

- Supported: pass the flag match_partial + Supported: pass the flag match_partial to the regex algorithms.

- +

+

diff --git a/doc/html/boost_regex/background_information/thread_safety.html b/doc/html/boost_regex/background_information/thread_safety.html index d76d568d..47a0f190 100644 --- a/doc/html/boost_regex/background_information/thread_safety.html +++ b/doc/html/boost_regex/background_information/thread_safety.html @@ -1,15 +1,13 @@ - Thread - Safety +Thread Safety - + - - + + @@ -26,44 +24,43 @@

The Boost.Regex library is thread safe when Boost is: you can verify that - Boost is in thread safe mode by checking to see if BOOST_HAS_THREADS + Boost is in thread safe mode by checking to see if BOOST_HAS_THREADS is defined: this macro is set automatically by the config system when threading support is turned on in your compiler.

- Class basic_regex + Class basic_regex and its typedefs regex and wregex are thread safe, in that compiled regular expressions can safely be shared between threads. The matching algorithms - regex_match, - regex_search, - and regex_replace - are all re-entrant and thread safe. Class match_results is now thread safe, + regex_match, + regex_search, + and regex_replace + are all re-entrant and thread safe. Class match_results is now thread safe, in that the results of a match can be safely copied from one thread to another - (for example one thread may find matches and push match_results instances onto a queue, + (for example one thread may find matches and push match_results instances onto a queue, while another thread pops them off the other end), otherwise use a separate - instance of match_results + instance of match_results per thread.

- The POSIX API functions are + The POSIX API functions are all re-entrant and thread safe, regular expressions compiled with regcomp can also be shared between threads.

- The class + The class RegEx is only thread safe if each thread gets its own RegEx instance (apartment threading) - this is a consequence of RegEx handling both compiling and matching regular expressions.

Finally note that changing the global locale invalidates all compiled regular - expressions, therefore calling set_locale + expressions, therefore calling set_locale from one thread while another uses regular expressions will produce unpredictable results.

@@ -74,10 +71,11 @@
- +

+

diff --git a/doc/html/boost_regex/captures.html b/doc/html/boost_regex/captures.html index 5d984fed..af1acd15 100644 --- a/doc/html/boost_regex/captures.html +++ b/doc/html/boost_regex/captures.html @@ -1,14 +1,13 @@ - Understanding Marked Sub-Expressions - and Captures +Understanding Marked Sub-Expressions and Captures - + - - + + @@ -25,9 +24,9 @@

Captures are the iterator ranges that are "captured" by marked sub-expressions as a regular expression gets matched. Each marked sub-expression can result @@ -35,12 +34,12 @@ how captures and marked sub-expressions in Boost.Regex are represented and accessed.

-

- +

+ Marked sub-expressions -
+

- Every time a Perl regular expression contains a parenthesis group (), it spits out an extra field, known as a + Every time a Perl regular expression contains a parenthesis group (), it spits out an extra field, known as a marked sub-expression, for example the expression:

(\w+)\W+(\w+)
@@ -48,7 +47,7 @@ Has two marked sub-expressions (known as $1 and $2 respectively), in addition the complete match is known as $&, everything before the first match as $`, and everything after the match as $'. So if the above expression is searched - for within "@abc def--", + for within "@abc def--", then we obtain:

@@ -132,11 +131,10 @@

- In Boost.Regex all these are accessible via the match_results class that gets filled - in when calling one of the regular expression matching algorithms ( regex_search, regex_match, or regex_iterator). So given: + In Boost.Regex all these are accessible via the match_results class that gets filled + in when calling one of the regular expression matching algorithms ( regex_search, regex_match, or regex_iterator). So given:

-
-boost::match_results<IteratorType> m;
+
boost::match_results<IteratorType> m;
 

The Perl and Boost.Regex equivalents are as follows: @@ -167,7 +165,7 @@

- m.prefix() + m.prefix()

- m[0] + m[0]

- m[n] + m[n]

- m.suffix() + m.suffix()

- In Boost.Regex each sub-expression match is represented by a sub_match object, this is basically + In Boost.Regex each sub-expression match is represented by a sub_match object, this is basically just a pair of iterators denoting the start and end position of the sub-expression match, but there are some additional operators provided so that objects of - type sub_match - behave a lot like a std::basic_string: for example they are implicitly - convertible to a basic_string, + type sub_match + behave a lot like a std::basic_string: for example they are implicitly + convertible to a basic_string, they can be compared to a string, added to a string, or streamed out to an output stream.

-

- +

+ Unmatched Sub-Expressions -
+

When a regular expression match is found there is no need for all of the marked sub-expressions to have participated in the match, for example the expression: @@ -230,12 +228,12 @@

(abc)|(def)

can match either $1 or $2, but never both at the same time. In Boost.Regex - you can determine which sub-expressions matched by accessing the sub_match::matched data member. + you can determine which sub-expressions matched by accessing the sub_match::matched data member.

-

- +

+ Repeated Captures -
+

When a marked sub-expression is repeated, then the sub-expression gets "captured" multiple times, however normally only the final capture is available, for example @@ -252,13 +250,12 @@

However, Boost.Regex has an experimental feature that allows all the capture - information to be retained - this is accessed either via the match_results::captures member function or the sub_match::captures member function. These functions + information to be retained - this is accessed either via the match_results::captures member function or the sub_match::captures member function. These functions return a container that contains a sequence of all the captures obtained during the regular expression matching. The following example program shows how this information may be used:

-
-#include <boost/regex.hpp>
+
#include <boost/regex.hpp>
 #include <iostream>
 
 void print_captures(const std::string& regx, const std::string& text)
@@ -372,10 +369,11 @@ Text:        "now is the time for all good men to come to the aid of the party"
 
- +

+

diff --git a/doc/html/boost_regex/configuration.html b/doc/html/boost_regex/configuration.html index fb86953e..8d8b2a42 100644 --- a/doc/html/boost_regex/configuration.html +++ b/doc/html/boost_regex/configuration.html @@ -1,13 +1,13 @@ - Configuration +Configuration - + - + @@ -24,7 +24,8 @@
- +

+

diff --git a/doc/html/boost_regex/configuration/algorithm.html b/doc/html/boost_regex/configuration/algorithm.html index 1c8cce84..970cba82 100644 --- a/doc/html/boost_regex/configuration/algorithm.html +++ b/doc/html/boost_regex/configuration/algorithm.html @@ -1,13 +1,13 @@ - Algorithm Selection +Algorithm Selection - + - - - + + + @@ -24,7 +24,8 @@
@@ -78,10 +79,11 @@
- +

+

diff --git a/doc/html/boost_regex/configuration/compiler.html b/doc/html/boost_regex/configuration/compiler.html index 6549e66e..03814ff1 100644 --- a/doc/html/boost_regex/configuration/compiler.html +++ b/doc/html/boost_regex/configuration/compiler.html @@ -1,14 +1,13 @@ - Compiler Setup +Compiler Setup - + - - - + + + @@ -25,7 +24,8 @@

You shouldn't need to do anything special to configure Boost.Regex for use with your compiler - the Boost.Config @@ -36,10 +36,11 @@

- +

+

diff --git a/doc/html/boost_regex/configuration/linkage.html b/doc/html/boost_regex/configuration/linkage.html index 1711f2fc..e9012060 100644 --- a/doc/html/boost_regex/configuration/linkage.html +++ b/doc/html/boost_regex/configuration/linkage.html @@ -1,14 +1,13 @@ - Linkage Options +Linkage Options - + - - - + + + @@ -25,7 +24,8 @@
@@ -77,10 +77,11 @@
- +

+

diff --git a/doc/html/boost_regex/configuration/locale.html b/doc/html/boost_regex/configuration/locale.html index bfab7b14..da0e4e63 100644 --- a/doc/html/boost_regex/configuration/locale.html +++ b/doc/html/boost_regex/configuration/locale.html @@ -1,14 +1,13 @@ - Locale and traits - class selection +Locale and traits class selection - + - - - + + + @@ -25,9 +24,9 @@

The following macros (see user.hpp) control how Boost.Regex interacts with the user's locale: @@ -96,10 +95,11 @@

- +

+

diff --git a/doc/html/boost_regex/configuration/tuning.html b/doc/html/boost_regex/configuration/tuning.html index 05412d1d..deba73fb 100644 --- a/doc/html/boost_regex/configuration/tuning.html +++ b/doc/html/boost_regex/configuration/tuning.html @@ -1,13 +1,13 @@ - Algorithm Tuning +Algorithm Tuning - + - - - + + + @@ -24,7 +24,8 @@

The following option applies only if BOOST_REGEX_RECURSIVE is set.

@@ -139,10 +140,11 @@
- +

+

diff --git a/doc/html/boost_regex/format.html b/doc/html/boost_regex/format.html index 9efc4524..ac34fbbf 100644 --- a/doc/html/boost_regex/format.html +++ b/doc/html/boost_regex/format.html @@ -1,14 +1,13 @@ - Search and Replace Format String Syntax +Search and Replace Format String Syntax - + - - + + @@ -25,7 +24,8 @@
Sed Format String Syntax
Perl Format String Syntax
@@ -33,32 +33,26 @@ Format String Syntax

- Format strings are used by the algorithm regex_replace and by match_results<>::format, and are used to transform + Format strings are used by the algorithm regex_replace and by match_results<>::format, and are used to transform one string into another.

- There are three kind of format string: Sed, - Perl and Boost-Extended. + There are three kind of format string: Sed, + Perl and Boost-Extended.

- Alternatively, when the flag format_literal + Alternatively, when the flag format_literal is passed to one of these functions, then the format string is treated as a string literal, and is copied unchanged to the output.

-

-

-

-

-

-

- +

+

diff --git a/doc/html/boost_regex/format/boost_format_syntax.html b/doc/html/boost_regex/format/boost_format_syntax.html index 134712c2..4ea00314 100644 --- a/doc/html/boost_regex/format/boost_format_syntax.html +++ b/doc/html/boost_regex/format/boost_format_syntax.html @@ -1,14 +1,13 @@ - Boost-Extended - Format String Syntax +Boost-Extended Format String Syntax - + - - - + + + @@ -25,25 +24,25 @@

Boost-Extended format strings treat all characters as literals except for '$', '\', '(', ')', '?', and ':'.

-

- +

+ Grouping -
+

The characters '(' and ')' perform lexical grouping, so use \( and \) if you want a to output literal parenthesis.

-

- +

+ Conditionals -
+

The character '?' begins a conditional expression, the general form is:

@@ -66,11 +65,11 @@ match found with "foo" if the sub-expression $1 was matched, and with "bar" otherwise.

-

- +

+ Placeholder Sequences -
+

Placeholder sequences specify that some part of what matched the regular expression should be sent to output as follows: @@ -161,11 +160,11 @@ Any $-placeholder sequence not listed above, results in '$' being treated as a literal.

-

- +

+ Escape Sequences -
+

An escape character followed by any character x, outputs that character unless x is one of the escape sequences shown below. @@ -390,10 +389,11 @@

- +

+

diff --git a/doc/html/boost_regex/format/perl_format.html b/doc/html/boost_regex/format/perl_format.html index 94e2d7f0..0d248545 100644 --- a/doc/html/boost_regex/format/perl_format.html +++ b/doc/html/boost_regex/format/perl_format.html @@ -1,14 +1,13 @@ - Perl Format String Syntax +Perl Format String Syntax - + - - - + + + @@ -25,7 +24,8 @@

Perl-style format strings treat all characters as literals except '$' and '\' which start placeholder and escape sequences respectively. @@ -344,10 +344,11 @@

- +

+

diff --git a/doc/html/boost_regex/format/sed_format.html b/doc/html/boost_regex/format/sed_format.html index 7e79ca46..7cb783bb 100644 --- a/doc/html/boost_regex/format/sed_format.html +++ b/doc/html/boost_regex/format/sed_format.html @@ -1,13 +1,13 @@ - Sed Format String Syntax +Sed Format String Syntax - + - - - + + + @@ -24,7 +24,8 @@

Sed-style format strings treat all characters as literals except:

@@ -234,10 +235,11 @@
- +

+

diff --git a/doc/html/boost_regex/install.html b/doc/html/boost_regex/install.html index 37092833..769edc11 100644 --- a/doc/html/boost_regex/install.html +++ b/doc/html/boost_regex/install.html @@ -1,14 +1,13 @@ - Building and Installing the Library +Building and Installing the Library - + - - + + @@ -25,7 +24,8 @@

When you extract the library from its zip file, you must preserve its internal directory structure (for example by using the -d option when extracting). If @@ -48,20 +48,20 @@ it is necessary to build the library's support code into a library or archive file before you can use it, instructions for specific platforms are as follows:

-

- +

+ Building with bjam -
+

This is now the preferred method for building and installing this library, please refer to the getting started guide for more information.

-

- +

+ Building With Unicode and ICU Support -
+

A default build of this library does not enable Unciode support via ICU. There is no need to enable this support if you don't need it, but if you use ICU @@ -75,16 +75,16 @@

If you're building on a Unix-like platform, and ICU is already installed in - your compilers search path (with an install prefix of /usr or /usr/local - for example), then set the environment variable HAVE_ICU + your compilers search path (with an install prefix of /usr or /usr/local + for example), then set the environment variable HAVE_ICU to enable ICU support. For example you might build with the command line:

bjam -sHAVE_ICU=1 --toolset=toolset-name install

If ICU is not already in your compiler's path then you need to set the environment - variable ICU_PATH to point + variable ICU_PATH to point to the root directory of your ICU installation, for example if ICU was installed - to /usr/local/icu/3.3 + to /usr/local/icu/3.3 you might use:

bjam -sICU_PATH=/usr/local/icu/3.3 --toolset=toolset-name install
@@ -95,17 +95,17 @@ 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.

-

- +

+ Building via makefiles -
-
- - Borland C++ Builder:
+
+ + Borland C++ Builder: +
  • - Open up a console window and change to the <boost>\libs\regex\build + Open up a console window and change to the <boost>\libs\regex\build directory.
  • @@ -127,7 +127,7 @@

    make -fbcb5.mak install

    - library files will be copied to <BCROOT>/lib and the dll's to <BCROOT>/bin, where <BCROOT> + library files will be copied to <BCROOT>/lib and the dll's to <BCROOT>/bin, where <BCROOT> corresponds to the install path of your Borland C++ tools.

    @@ -136,7 +136,7 @@

    make -fbcb5.mak clean

    - Finally when you use Boost.Regex it is only necessary for you to add the <boost> root director to your list of include directories + Finally when you use Boost.Regex it is only necessary for you to add the <boost> root director to your list of include directories for that project. It is not necessary for you to manually add a .lib file to the project; the headers will automatically select the correct .lib file for your build mode and tell the linker to include it. There is one caveat however: @@ -159,17 +159,17 @@ build of the lib) then define BOOST_REGEX_NO_LIB.

    - If you are building with C++ Builder 6, you will find that <boost/regex.hpp> - can not be used in a pre-compiled header (the actual problem is in <locale> which gets included by <boost/regex.hpp>), + If you are building with C++ Builder 6, you will find that <boost/regex.hpp> + can not be used in a pre-compiled header (the actual problem is in <locale> which gets included by <boost/regex.hpp>), if this causes problems for you, then try defining BOOST_NO_STD_LOCALE when building, this will disable some features throughout boost, but may save you a lot in compile times!

    -

    - +

    + Microsoft Visual C++ 6, 7, 7.1 and 8 -
    +

    You need version 6 or later of MSVC to build this library. If you are using VC5 then you may want to look at one of the previous releases of this library. @@ -177,7 +177,7 @@

    Open up a command prompt, which has the necessary MSVC environment variables defined (for example by using the batch file Vcvars32.bat installed by the - Visual Studio installation), and change to the <boost>\libs\regex\build directory. + Visual Studio installation), and change to the <boost>\libs\regex\build directory.

    Select the correct makefile - vc6.mak for "vanilla" Visual C++ 6 @@ -193,7 +193,7 @@

    nmake -fvc6.mak install

    - The lib files will be copied to your <VC6>\lib directory and the dll files to <VC6>\bin, where <VC6> is + The lib files will be copied to your <VC6>\lib directory and the dll files to <VC6>\bin, where <VC6> is the root of your Visual C++ 6 installation.

    @@ -207,7 +207,7 @@

    nmake ICU_PATH=c:\open-source\icu -fvc71.mak install

    - Finally when you use Boost.Regex it is only necessary for you to add the <boost> root directory to your list of include + Finally when you use Boost.Regex it is only necessary for you to add the <boost> root directory to your list of include directories for that project. It is not necessary for you to manually add a .lib file to the project; the headers will automatically select the correct .lib file for your build mode and tell the linker to include it. @@ -252,12 +252,12 @@ to modify the makefile to add /Zc:wchar_t before building the library.

-
- +
+ GCC(2.95 and later) -
+

- You can build with gcc using the normal boost Jamfile in <boost>/libs/regex/build, alternatively + You can build with gcc using the normal boost Jamfile in <boost>/libs/regex/build, alternatively there is a conservative makefile for the g++ compiler. From the command prompt change to the <boost>/libs/regex/build directory and type:

@@ -298,16 +298,16 @@ LIBS: additional library files.

- For the more adventurous there is a configure script in <boost>/libs/config; + For the more adventurous there is a configure script in <boost>/libs/config; see the config library documentation.

-
- +
+ Sun Workshop 6.1 -
+

There is a makefile for the sun (6.1) compiler (C++ version 3.12). From the - command prompt change to the <boost>/libs/regex/build directory + command prompt change to the <boost>/libs/regex/build directory and type:

dmake -f sunpro.mak 
@@ -316,7 +316,7 @@ single and multithread versions of the library (libboost_regex.a, libboost_regex.so, libboost_regex_mt.a and libboost_regex_mt.so). When you build projects that use Boost.Regex, you will need to add the boost install directory to your list - of include paths and add <boost>/libs/regex/build/sunpro/ to + of include paths and add <boost>/libs/regex/build/sunpro/ to your library search path.

@@ -342,26 +342,27 @@ This makefile does not set any architecture specific options like -xarch=v9, you can set these by defining the appropriate macros, for example:

-
dmake CXXFLAGS="-xarchv9" LDFLAGS"-xarchv9" LIBSUFFIX"_v9" -f sunpro.mak
+
dmake CXXFLAGS="-xarchv9" LDFLAGS"-xarchv9" LIBSUFFIX"_v9" -f sunpro.mak

will build v9 variants of the regex library named libboost_regex_v9.a etc.

-
- +
+ Makefiles for Other compilers -
+

- There is a generic makefile (generic.mak ) provided in <boost-root>/libs/regex/build - see that makefile for details of + There is a generic makefile (generic.mak ) provided in <boost-root>/libs/regex/build - see that makefile for details of environment variables that need to be set before use.

- +

+

diff --git a/doc/html/boost_regex/introduction_and_overview.html b/doc/html/boost_regex/introduction_and_overview.html index ad97c7eb..b43e443a 100644 --- a/doc/html/boost_regex/introduction_and_overview.html +++ b/doc/html/boost_regex/introduction_and_overview.html @@ -1,14 +1,13 @@ -Introduction and - Overview +Introduction and Overview - + - - + + @@ -25,9 +24,9 @@

Regular expressions are a form of pattern-matching that are often used in text processing; many users will be familiar with the Unix utilities grep, sed and @@ -40,16 +39,15 @@ libraries can not do.

- The class basic_regex + The class basic_regex is the key class in this library; it represents a "machine readable" - regular expression, and is very closely modeled on std::basic_string, + regular expression, and is very closely modeled on std::basic_string, think of it as a string plus the actual state-machine required by the regular - expression algorithms. Like std::basic_string + expression algorithms. Like std::basic_string there are two typedefs that are almost always the means by which this class is referenced:

-
-namespace boost{
+
namespace boost{
 
 template <class charT, 
          class traits = regex_traits<charT> >
@@ -87,8 +85,7 @@
       Now let's take that expression and place it in some C++ code to validate the
       format of a credit card number:
     

-
-bool validate_card_format(const std::string& s)
+
bool validate_card_format(const std::string& s)
 {
    static const boost::regex e("(\\d{4}[- ]){3}\\d{4}");
    return regex_match(s, e);
@@ -100,7 +97,7 @@
       regular expression engine, consequently escapes in regular expressions have
       to be doubled up when embedding them in C/C++ code. Also note that all the
       examples assume that your compiler supports argument-dependent-lookup lookup,
-      if yours doesn't (for example VC6), then you will have to add some boost:: prefixes
+      if yours doesn't (for example VC6), then you will have to add some boost:: prefixes
       to some of the function calls in the examples.
     

@@ -113,11 +110,10 @@ the utilities sed and Perl will already be ahead here; we need two strings - one a regular expression - the other a "format string" that provides a description of the text to replace the match with. In Boost.Regex this search - and replace operation is performed with the algorithm regex_replace, for our credit card + and replace operation is performed with the algorithm regex_replace, for our credit card example we can write two algorithms like this to provide the format conversions:

-
-// match any format with the regular expression:
+
// match any format with the regular expression:
 const boost::regex e("\\A(\\d{3,4})[- ]?(\\d{4})[- ]?(\\d{4})[- ]?(\\d{4})\\z");
 const std::string machine_format("\\1\\2\\3\\4");
 const std::string human_format("\\1-\\2-\\3-\\4");
@@ -142,11 +138,10 @@
       expression match, however in general the result of a match contains a number
       of sub-expression matches in addition to the overall match. When the library
       needs to report a regular expression match it does so using an instance of
-      the class match_results,
+      the class match_results,
       as before there are typedefs of this class for the most common cases:
     

-
-namespace boost{
+
namespace boost{
 
 typedef match_results<const char*>                  cmatch;
 typedef match_results<const wchar_t*>               wcmatch;
@@ -156,12 +151,12 @@
 }
 

- The algorithms regex_search - and regex_match - make use of match_results - to report what matched; the difference between these algorithms is that regex_match + The algorithms regex_search + and regex_match + make use of match_results + to report what matched; the difference between these algorithms is that regex_match will only find matches that consume all of the input text, - where as regex_search + where as regex_search will search for a match anywhere within the text being matched.

@@ -170,22 +165,21 @@ of seamlessly searching almost any kind of data.

- For search and replace operations, in addition to the algorithm regex_replace that we have already - seen, the match_results - class has a format member that + For search and replace operations, in addition to the algorithm regex_replace that we have already + seen, the match_results + class has a format member that takes the result of a match and a format string, and produces a new string by merging the two.

For iterating through all occurences of an expression within a text, there - are two iterator types: regex_iterator will enumerate over - the match_results - objects found, while regex_token_iterator will enumerate + are two iterator types: regex_iterator will enumerate over + the match_results + objects found, while regex_token_iterator will enumerate a series of strings (similar to perl style split operations).

- For those that dislike templates, there is a high level wrapper class RegEx + For those that dislike templates, there is a high level wrapper class RegEx that is an encapsulation of the lower level template code - it provides a simplified interface for those that don't need the full power of the library, and supports only narrow characters, and the "extended" regular expression syntax. @@ -193,12 +187,12 @@ C++ standard library proposal.

- The POSIX API functions: regcomp, regexec, regfree and [regerr], are available + The POSIX API functions: regcomp, regexec, regfree and [regerr], are available in both narrow character and Unicode versions, and are provided for those who need compatibility with these API's.

- Finally, note that the library now has run-time + Finally, note that the library now has run-time localization support, and recognizes the full POSIX regular expression syntax - including advanced features like multi-character collating elements and equivalence classes - as well as providing compatibility with other regular @@ -207,10 +201,11 @@

- +

+

diff --git a/doc/html/boost_regex/partial_matches.html b/doc/html/boost_regex/partial_matches.html index b5befab7..16614be2 100644 --- a/doc/html/boost_regex/partial_matches.html +++ b/doc/html/boost_regex/partial_matches.html @@ -1,14 +1,13 @@ - Partial Matches +Partial Matches - + - - + + @@ -25,13 +24,13 @@

- The match_flag_type - match_partial can be passed - to the following algorithms: regex_match, regex_search, and regex_grep, and used with the iterator - regex_iterator. + The match_flag_type + match_partial can be passed + to the following algorithms: regex_match, regex_search, and regex_grep, and used with the iterator + regex_iterator. When used it indicates that partial as well as full matches should be found. A partial match is one that matched one or more characters at the end of the text input, but did not match all of the regular expression (although it may @@ -41,10 +40,9 @@ into memory (or even into a memory mapped file), or are of indeterminate length (for example the source may be a socket or similar). Partial and full matches can be differentiated as shown in the following table (the variable M represents - an instance of match_results as filled in by regex_match, - regex_search - or regex_grep): + an instance of match_results as filled in by regex_match, + regex_search + or regex_grep):

@@ -186,7 +184,7 @@

The following example tests to see whether the text could be a valid credit card number, as the user presses a key, the character entered would be added - to the string being built up, and passed to is_possible_card_number. + to the string being built up, and passed to is_possible_card_number. If this returns true then the text could be a valid card number, so the user interface's OK button would be enabled. If it returns false, then this is not yet a valid card number, but could be with more input, so the user interface @@ -194,8 +192,7 @@ the input could never become a valid number, and the inputted character must be discarded, and a suitable error indication displayed to the user.

-
-#include <string>
+
#include <string>
 #include <iostream>
 #include <boost/regex.hpp>
 
@@ -230,8 +227,7 @@
       if a partial match was encountered, then the partial match gets searched a
       second time as the start of the next batch of text:
     

-
-#include <iostream>
+
#include <iostream>
 #include <fstream>
 #include <sstream>
 #include <string>
@@ -297,10 +293,11 @@
 
 
- +

+

diff --git a/doc/html/boost_regex/ref.html b/doc/html/boost_regex/ref.html index 5bf87bab..dc6e496c 100644 --- a/doc/html/boost_regex/ref.html +++ b/doc/html/boost_regex/ref.html @@ -1,14 +1,13 @@ - Reference +Reference - + - - + + @@ -25,7 +24,8 @@
basic_regex
match_results
@@ -91,7 +91,7 @@
Traits Class Requirements
Iterator - Rrequirements
+ Requirements
Deprecated Interfaces
@@ -105,35 +105,14 @@ 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 53c10241..bbffbd53 100644 --- a/doc/html/boost_regex/ref/bad_expression.html +++ b/doc/html/boost_regex/ref/bad_expression.html @@ -1,13 +1,13 @@ - bad_expression +bad_expression - + - - - + + + @@ -24,21 +24,20 @@ +
+ Synopsis -
-
-#include <boost/pattern_except.hpp>
+      
+
#include <boost/pattern_except.hpp>
 

- The class regex_error defines + The class regex_error defines the type of objects thrown as exceptions to report errors during the conversion from a string representing a regular expression to a finite state machine.

-
-namespace boost{
+
namespace boost{
 
 class regex_error : public std::runtime_error
 {
@@ -54,49 +53,47 @@
 
 } // namespace boost
 
-

- +

+ Description -
-
-regex_error(const std::string& s, regex_constants::error_type err, std::ptrdiff_t pos);
+      
+
regex_error(const std::string& s, regex_constants::error_type err, std::ptrdiff_t pos);
 regex_error(boost::regex_constants::error_type err);
 

- Effects: Constructs an object of class regex_error. + Effects: Constructs an object of class regex_error.

-
-boost::regex_constants::error_type code()const;
+
boost::regex_constants::error_type code()const;
 

- Effects: returns the error code that represents + Effects: returns the error code that represents parsing error that occurred.

-
-std::ptrdiff_t position()const; 
+
std::ptrdiff_t position()const; 
 

- Effects: returns the location in the expression + Effects: returns the location in the expression where parsing stopped.

- Footnotes: the choice of std::runtime_error - as the base class for regex_error + Footnotes: the choice of std::runtime_error + as the base class for regex_error is moot; depending upon how the library is used exceptions may be either logic errors (programmer supplied expressions) or run time errors (user supplied - expressions). The library previously used bad_pattern - and bad_expression for errors, - these have been replaced by the single class regex_error + expressions). The library previously used bad_pattern + and bad_expression for errors, + these have been replaced by the single class regex_error to keep the library in synchronization with the Technical Report on C++ Library Extensions.

- +

+

diff --git a/doc/html/boost_regex/ref/basic_regex.html b/doc/html/boost_regex/ref/basic_regex.html index 905f35e0..6c312c65 100644 --- a/doc/html/boost_regex/ref/basic_regex.html +++ b/doc/html/boost_regex/ref/basic_regex.html @@ -1,13 +1,13 @@ - basic_regex +basic_regex - + - - - + + + @@ -24,43 +24,40 @@ +
+ Synopsis -
-
-#include <boost/regex.hpp>
+      
+
#include <boost/regex.hpp>
 

- The template class basic_regex + The template class basic_regex encapsulates regular expression parsing and compilation. The class takes two template parameters:

- For ease of use there are two typedefs that define the two standard basic_regex instances, unless you want + For ease of use there are two typedefs that define the two standard basic_regex instances, unless you want to use custom traits classes or non-standard character types (for example - see unicode support), + see unicode support), you won't need to use anything other than these:

-
-namespace boost{
+
namespace boost{
 
 template <class charT, class traits = regex_traits<charT>  >
 class basic_regex;
@@ -71,12 +68,11 @@
 }
 

- The definition of basic_regex - follows: it is based very closely on class basic_string, - and fulfils the requirements for a constant-container of charT. + The definition of basic_regex + follows: it is based very closely on class basic_string, + and fulfils the requirements for a constant-container of charT.

-
-namespace boost{
+
namespace boost{
 
 template <class  charT, class traits = regex_traits<charT> >
 class basic_regex {
@@ -89,66 +85,66 @@
    typedef          const charT&                         const_reference;           
    typedef          std::ptrdiff_t                       difference_type;                 
    typedef          std::size_t                          size_type;
-   typedef          regex_constants:: syntax_option_type  flag_type;
+   typedef          regex_constants:: syntax_option_type  flag_type;
    typedef typename traits::locale_type                  locale_type;
 
    // constants:
    // main option selection:
-   static const regex_constants:: syntax_option_type normal          
+   static const regex_constants:: syntax_option_type normal          
                                                 = regex_constants::normal;
-   static const regex_constants:: syntax_option_type ECMAScript      
+   static const regex_constants:: syntax_option_type ECMAScript      
                                                 = normal;
-   static const regex_constants:: syntax_option_type JavaScript      
+   static const regex_constants:: syntax_option_type JavaScript      
                                                 = normal;
-   static const regex_constants:: syntax_option_type JScript         
+   static const regex_constants:: syntax_option_type JScript         
                                                 = normal;
-   static const regex_constants:: syntax_option_type basic           
+   static const regex_constants:: syntax_option_type basic           
                                                 = regex_constants::basic;
-   static const regex_constants:: syntax_option_type extended        
+   static const regex_constants:: syntax_option_type extended        
                                                 = regex_constants::extended;
-   static const regex_constants:: syntax_option_type awk             
+   static const regex_constants:: syntax_option_type awk             
                                                 = regex_constants::awk;
-   static const regex_constants:: syntax_option_type grep            
+   static const regex_constants:: syntax_option_type grep            
                                                 = regex_constants::grep;
-   static const regex_constants:: syntax_option_type egrep           
+   static const regex_constants:: syntax_option_type egrep           
                                                 = regex_constants::egrep;
-   static const regex_constants:: syntax_option_type sed             
+   static const regex_constants:: syntax_option_type sed             
                                                 = basic = regex_constants::sed;
-   static const regex_constants:: syntax_option_type perl            
+   static const regex_constants:: syntax_option_type perl            
                                                 = regex_constants::perl;
-   static const regex_constants:: syntax_option_type literal         
+   static const regex_constants:: syntax_option_type literal         
                                                 = regex_constants::literal;
 
    // modifiers specific to perl expressions:
-   static const regex_constants:: syntax_option_type no_mod_m        
+   static const regex_constants:: syntax_option_type no_mod_m        
                                                 = regex_constants::no_mod_m;
-   static const regex_constants:: syntax_option_type no_mod_s        
+   static const regex_constants:: syntax_option_type no_mod_s        
                                                 = regex_constants::no_mod_s;
-   static const regex_constants:: syntax_option_type mod_s           
+   static const regex_constants:: syntax_option_type mod_s           
                                                 = regex_constants::mod_s;
-   static const regex_constants:: syntax_option_type mod_x           
+   static const regex_constants:: syntax_option_type mod_x           
                                                 = regex_constants::mod_x;
 
    // modifiers specific to POSIX basic expressions:
-   static const regex_constants:: syntax_option_type bk_plus_qm      
+   static const regex_constants:: syntax_option_type bk_plus_qm      
                                                 = regex_constants::bk_plus_qm;
-   static const regex_constants:: syntax_option_type bk_vbar         
+   static const regex_constants:: syntax_option_type bk_vbar         
                                                 = regex_constants::bk_vbar
-   static const regex_constants:: syntax_option_type no_char_classes 
+   static const regex_constants:: syntax_option_type no_char_classes 
                                                 = regex_constants::no_char_classes
-   static const regex_constants:: syntax_option_type no_intervals    
+   static const regex_constants:: syntax_option_type no_intervals    
                                                 = regex_constants::no_intervals
 
    // common modifiers:
-   static const regex_constants:: syntax_option_type nosubs          
+   static const regex_constants:: syntax_option_type nosubs          
                                                 = regex_constants::nosubs;
-   static const regex_constants:: syntax_option_type optimize        
+   static const regex_constants:: syntax_option_type optimize        
                                                 = regex_constants::optimize;
-   static const regex_constants:: syntax_option_type collate         
+   static const regex_constants:: syntax_option_type collate         
                                                 = regex_constants::collate;
-   static const regex_constants:: syntax_option_type newline_alt     
+   static const regex_constants:: syntax_option_type newline_alt     
                                                 = regex_constants::newline_alt;
-   static const regex_constants:: syntax_option_type no_except       
+   static const regex_constants:: syntax_option_type no_except       
                                                 = regex_constants::newline_alt;
 
    // construct/copy/destroy:
@@ -246,94 +242,92 @@
 
 } // namespace boost
 
-

- +

+ Description -
+

- Class basic_regex has the + Class basic_regex has the following public members:

-
-// main option selection:
-static const regex_constants:: syntax_option_type normal           
+
// main option selection:
+static const regex_constants:: syntax_option_type normal           
                                           = regex_constants::normal;
-static const regex_constants:: syntax_option_type ECMAScript       
+static const regex_constants:: syntax_option_type ECMAScript       
                                           = normal;
-static const regex_constants:: syntax_option_type JavaScript       
+static const regex_constants:: syntax_option_type JavaScript       
                                           = normal;
-static const regex_constants:: syntax_option_type JScript          
+static const regex_constants:: syntax_option_type JScript          
                                           = normal;
-static const regex_constants:: syntax_option_type basic            
+static const regex_constants:: syntax_option_type basic            
                                           = regex_constants::basic;
-static const regex_constants:: syntax_option_type extended         
+static const regex_constants:: syntax_option_type extended         
                                           = regex_constants::extended;
-static const regex_constants:: syntax_option_type awk              
+static const regex_constants:: syntax_option_type awk              
                                           = regex_constants::awk;
-static const regex_constants:: syntax_option_type grep             
+static const regex_constants:: syntax_option_type grep             
                                           = regex_constants::grep;
-static const regex_constants:: syntax_option_type egrep            
+static const regex_constants:: syntax_option_type egrep            
                                           = regex_constants::egrep;
-static const regex_constants:: syntax_option_type sed              
+static const regex_constants:: syntax_option_type sed              
                                           = regex_constants::sed;
-static const regex_constants:: syntax_option_type perl             
+static const regex_constants:: syntax_option_type perl             
                                           = regex_constants::perl;
-static const regex_constants:: syntax_option_type literal          
+static const regex_constants:: syntax_option_type literal          
                                           = regex_constants::literal;
 
 // modifiers specific to perl expressions:
-static const regex_constants:: syntax_option_type no_mod_m         
+static const regex_constants:: syntax_option_type no_mod_m         
                                           = regex_constants::no_mod_m;
-static const regex_constants:: syntax_option_type no_mod_s         
+static const regex_constants:: syntax_option_type no_mod_s         
                                           = regex_constants::no_mod_s;
-static const regex_constants:: syntax_option_type mod_s            
+static const regex_constants:: syntax_option_type mod_s            
                                           = regex_constants::mod_s;
-static const regex_constants:: syntax_option_type mod_x            
+static const regex_constants:: syntax_option_type mod_x            
                                           = regex_constants::mod_x;
 
 // modifiers specific to POSIX basic expressions:
-static const regex_constants:: syntax_option_type bk_plus_qm       
+static const regex_constants:: syntax_option_type bk_plus_qm       
                                           = regex_constants::bk_plus_qm;
-static const regex_constants:: syntax_option_type bk_vbar          
+static const regex_constants:: syntax_option_type bk_vbar          
                                           = regex_constants::bk_vbar
-static const regex_constants:: syntax_option_type no_char_classes  
+static const regex_constants:: syntax_option_type no_char_classes  
                                           = regex_constants::no_char_classes
-static const regex_constants:: syntax_option_type no_intervals     
+static const regex_constants:: syntax_option_type no_intervals     
                                           = regex_constants::no_intervals
 
 // common modifiers:
-static const regex_constants:: syntax_option_type nosubs           
+static const regex_constants:: syntax_option_type nosubs           
                                           = regex_constants::nosubs;
-static const regex_constants:: syntax_option_type optimize         
+static const regex_constants:: syntax_option_type optimize         
                                           = regex_constants::optimize;
-static const regex_constants:: syntax_option_type collate          
+static const regex_constants:: syntax_option_type collate          
                                           = regex_constants::collate;
-static const regex_constants:: syntax_option_type newline_alt      
+static const regex_constants:: syntax_option_type newline_alt      
                                           = regex_constants::newline_alt;
 

- The meaning of these options is documented in the syntax_option_type section. + The meaning of these options is documented in the syntax_option_type section.

The static constant members are provided as synonyms for the constants declared - in namespace boost::regex_constants; for each constant of type - syntax_option_type - declared in namespace boost::regex_constants + in namespace boost::regex_constants; for each constant of type + syntax_option_type + declared in namespace boost::regex_constants 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. + Effects: Constructs an object of class + basic_regex.

-

Table 1. basic_regex default construction postconditions

-
+

Table 1. basic_regex default construction postconditions

+
@@ -354,67 +348,66 @@ -

- empty() + empty()

- true + true

- size() + size()

- 0 + 0

- str() + str()

- basic_string<charT>() + 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 + Requires: p shall not be a null pointer.

- Throws: bad_expression if p - is not a valid regular expression, unless the flag no_except + Throws: bad_expression if p + is not a valid regular expression, unless the flag no_except is set in f.

- Effects: Constructs an object of class - basic_regex; + Effects: Constructs an object of class + basic_regex; the object's internal finite state machine is constructed from the regular expression contained in the null-terminated string p, - and interpreted according to the option + and interpreted according to the option flags specified in f.

-

Table 2. Postconditions for basic_regex construction

- +

Table 2. Postconditions for basic_regex construction

+
@@ -435,43 +428,43 @@ -

- empty() + empty()

- false + false

- size() + size()

- char_traits<charT>::length(p) + char_traits<charT>::length(p)

- str() + str()

- basic_string<charT>(p) + basic_string<charT>(p)

- flags() + flags()

@@ -483,7 +476,7 @@

- mark_count() + mark_count()

@@ -493,34 +486,33 @@
+
-

+

-
-basic_regex(const charT* p1, const charT* p2, 
+
basic_regex(const charT* p1, const charT* p2, 
             flag_type f = regex_constants::normal);
 

- Requires: p1 and p2 - are not null pointers, p1 < p2. + Requires: p1 and p2 + are not null pointers, p1 < p2.

- Throws: bad_expression if [p1,p2) is not - a valid regular expression, unless the flag no_except + Throws: bad_expression if [p1,p2) is not + a valid regular expression, unless the flag no_except is set in f.

- Effects: Constructs an object of class - basic_regex; + Effects: Constructs an object of class + basic_regex; the object's internal finite state machine is constructed from the regular expression contained in the sequence of characters [p1,p2), and interpreted - according the option flags + according the option flags specified in f.

-

Table 3. Postconditions for basic_regex construction

- +

Table 3. Postconditions for basic_regex construction

+
@@ -541,43 +533,43 @@ -

- empty() + empty()

- false + false

- size() + size()

- std::distance(p1,p2) + std::distance(p1,p2)

- str() + str()

- basic_string<charT>(p1,p2) + basic_string<charT>(p1,p2)

- flags() + flags()

@@ -589,7 +581,7 @@

- mark_count() + mark_count()

@@ -599,33 +591,32 @@
+
-

+

-
-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 - be a null pointer, len < - max_size(). + Requires: p shall not + be a null pointer, len < + max_size().

- Throws: bad_expression if p - is not a valid regular expression, unless the flag no_except + Throws: bad_expression if p + is not a valid regular expression, unless the flag no_except is set in f.

- Effects: Constructs an object of class - basic_regex; + Effects: Constructs an object of class + basic_regex; the object's internal finite state machine is constructed from the regular expression contained in the sequence of characters [p, p+len), and interpreted according the option flags specified in f.

-

Table 4. Postconditions for basic_regex construction

- +

Table 4. Postconditions for basic_regex construction

+
@@ -646,19 +637,19 @@ -

- empty() + empty()

- false + false

- size() + size()

@@ -670,19 +661,19 @@

- str() + str()

- basic_string<charT>(p, len) + basic_string<charT>(p, len)

- flags() + flags()

@@ -694,7 +685,7 @@

- mark_count() + mark_count()

@@ -704,41 +695,39 @@
+
-

+

-
-basic_regex(const basic_regex& e);
+
basic_regex(const basic_regex& e);
 

- Effects: Constructs an object of class - basic_regex + 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);
 

- Throws: bad_expression if s - is not a valid regular expression, unless the flag no_except + Throws: bad_expression if s + is not a valid regular expression, unless the flag no_except is set in f.

- Effects: Constructs an object of class - basic_regex; + Effects: Constructs an object of class + basic_regex; the object's internal finite state machine is constructed from the regular expression contained in the string s, and interpreted - according to the option + according to the option flags specified in f.

-

Table 5. Postconditions for basic_regex construction

- +

Table 5. Postconditions for basic_regex construction

+
@@ -759,31 +748,31 @@ -

- empty() + empty()

- false + false

- size() + size()

- s.size() + s.size()

- str() + str()

@@ -795,7 +784,7 @@

- flags() + flags()

@@ -807,7 +796,7 @@

- mark_count() + mark_count()

@@ -817,31 +806,30 @@
+
-

+

-
-template <class ForwardIterator>
+
template <class ForwardIterator>
 basic_regex(ForwardIterator first, ForwardIterator last, 
             flag_type f = regex_constants::normal);
 

- Throws: bad_expression if the sequence [first, - last) is not a valid regular expression, unless the flag no_except + Throws: bad_expression if the sequence [first, + last) is not a valid regular expression, unless the flag no_except is set in f.

- Effects: Constructs an object of class - basic_regex; + Effects: Constructs an object of class + basic_regex; the object's internal finite state machine is constructed from the regular expression contained in the sequence of characters [first, last), and interpreted - according to the option + according to the option flags specified in f.

-

Table 6. Postconditions for basic_regex construction

- +

Table 6. Postconditions for basic_regex construction

+
@@ -862,43 +850,43 @@ -

- empty() + empty()

- false + false

- size() + size()

- distance(first,last) + distance(first,last)

- str() + str()

- basic_string<charT>(first,last) + basic_string<charT>(first,last)

- flags() + flags()

@@ -910,7 +898,7 @@

- mark_count() + mark_count()

@@ -920,139 +908,126 @@
+
-

+

-
-basic_regex& operator=(const basic_regex& e);
+
basic_regex& operator=(const basic_regex& e);
 

- Effects: Returns the result of assign(e.str(), e.flags()). + 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 + Requires: p shall not be a null pointer.

- Effects: Returns the result of assign(ptr). + 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). + Effects: Returns the result of assign(p).

-
-const_iterator begin() const;
+
const_iterator begin() const;
 

- Effects: Returns a starting iterator to + 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 + 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 + 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 + 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 + 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 + 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()). + 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). + 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). + 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);
 

- Throws: bad_expression if s - is not a valid regular expression, unless the flag no_except + Throws: bad_expression if s + is not a valid regular expression, unless the flag no_except is set in f.

- Returns: *this. + Returns: *this.

- Effects: Assigns the regular expression + Effects: Assigns the regular expression contained in the string s, interpreted according the - option flags specified + option flags specified in f.

-

Table 7. Postconditions for basic_regex::assign

- +

Table 7. Postconditions for basic_regex::assign

+
@@ -1073,31 +1048,31 @@ -

- empty() + empty()

- false + false

- size() + size()

- s.size() + s.size()

- str() + str()

@@ -1109,7 +1084,7 @@

- flags() + flags()

@@ -1121,7 +1096,7 @@

- mark_count() + mark_count()

@@ -1131,222 +1106,207 @@
+
-

+

-
-template <class InputIterator>
+
template <class InputIterator>
 basic_regex& assign(InputIterator first, InputIterator last,
                     flag_type f = regex_constants::normal);
 

- Requires: The type InputIterator + Requires: The type InputIterator corresponds to the Input Iterator requirements (24.1.1).

- Effects: Returns assign(string_type(first, last), f). + Effects: Returns assign(string_type(first, last), f).

-
-flag_type flags() const;
+
flag_type flags() const;
 

- Effects: Returns a copy of the regular + Effects: Returns a copy of the regular expression syntax flags that were passed to the object's constructor, - or the last call to assign. + or the last call to assign.

-
-int status() const;
+
int status() const;
 

- Effects: Returns zero if the expression + 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 + 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(). + 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 - traits_inst is a (default - initialized) instance of the template parameter traits - stored within the object. Calls to imbue + Effects: Returns the result of traits_inst.imbue(l) where + traits_inst is a (default + initialized) instance of the template parameter traits + stored within the object. Calls to imbue invalidate any currently contained regular expression.

- Postcondition: empty() == true. + Postcondition: empty() == true.

-
-locale_type getloc() const;
+
locale_type getloc() const;
 

- Effects: Returns the result of traits_inst.getloc() - where traits_inst is a (default + Effects: Returns the result of traits_inst.getloc() + where traits_inst is a (default 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 + Effects: Swaps the contents of the two regular expressions.

- Postcondition: *this contains the regular expression that + Postcondition: *this contains the regular expression that was in e, e contains the regular - expression that was in *this. + expression that was in *this.

- Complexity: constant time. + Complexity: constant time.

-
[Note] Note

- Comparisons between basic_regex objects are provided +

+ Comparisons between basic_regex objects are provided on an experimental basis: please note that these are not present in the Technical Report on C++ Library Extensions, so use with care if you are writing - code that may need to be ported to other implementations of basic_regex. + 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);
 

- Effects: Returns lhs.compare(rhs) - == 0. + 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);
 

- Effects: Returns lhs.compare(rhs) - != 0. + 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);
 

- Effects: Returns lhs.compare(rhs) - < 0. + 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);
 

- Effects: Returns lhs.compare(rhs) - <= 0. + 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);
 

- Effects: Returns lhs.compare(rhs) - >= 0. + 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);
 

- Effects: Returns lhs.compare(rhs) - > 0. + Effects: Returns lhs.compare(rhs) + > 0.

-
[Note] Note

+

The basic_regex stream inserter is provided on an experimental basis, and 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);
 

- Effects: Returns (os << e.str()). + 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);
 

- Effects: calls lhs.swap(rhs). + Effects: calls lhs.swap(rhs).

- +

+

diff --git a/doc/html/boost_regex/ref/concepts.html b/doc/html/boost_regex/ref/concepts.html index 92dd469b..528bfbb8 100644 --- a/doc/html/boost_regex/ref/concepts.html +++ b/doc/html/boost_regex/ref/concepts.html @@ -1,13 +1,13 @@ - Concepts +Concepts - + - - - + + + @@ -24,21 +24,23 @@
- +

+

diff --git a/doc/html/boost_regex/ref/concepts/charT_concept.html b/doc/html/boost_regex/ref/concepts/charT_concept.html index b4a51491..fe73b1e5 100644 --- a/doc/html/boost_regex/ref/concepts/charT_concept.html +++ b/doc/html/boost_regex/ref/concepts/charT_concept.html @@ -1,14 +1,13 @@ - charT Requirements +charT Requirements - + - - - + + + @@ -25,16 +24,17 @@

- Type charT used a template - argument to class template basic_regex, must have a trivial + Type charT used a template + argument to class template basic_regex, must have a trivial default constructor, copy constructor, assignment operator, and destructor. In addition the following requirements must be met for objects; c - of type charT, c1 - and c2 of type charT - const, and i - of type int: + of type charT, c1 + and c2 of type charT + const, and i + of type int:

@@ -258,10 +258,11 @@
- +

+

diff --git a/doc/html/boost_regex/ref/concepts/iterator_concepts.html b/doc/html/boost_regex/ref/concepts/iterator_concepts.html index 8e117a29..5f624d52 100644 --- a/doc/html/boost_regex/ref/concepts/iterator_concepts.html +++ b/doc/html/boost_regex/ref/concepts/iterator_concepts.html @@ -1,14 +1,12 @@ - Iterator - Rrequirements +Iterator Requirements - + - - + + @@ -26,19 +24,20 @@

The regular expression algorithms (and iterators) take all require a Bidirectional-Iterator.

- +

+

diff --git a/doc/html/boost_regex/ref/concepts/traits_concept.html b/doc/html/boost_regex/ref/concepts/traits_concept.html index 5a634cad..3ddc5295 100644 --- a/doc/html/boost_regex/ref/concepts/traits_concept.html +++ b/doc/html/boost_regex/ref/concepts/traits_concept.html @@ -1,15 +1,13 @@ - Traits Class - Requirements +Traits Class Requirements - + - - - + + + @@ -26,37 +24,37 @@

- There are two sets of requirements for the traits - template argument to basic_regex: a mininal interface + There are two sets of requirements for the traits + template argument to basic_regex: a mininal interface (which is part of the regex standardization proposal), and an optional Boost-specific enhanced interface.

-

- +

+ Minimal requirements. -
+

- In the following table X + In the following table X denotes a traits class defining types and functions for the character container - type charT; u - is an object of type X; - v is an object of type const - X; p is - a value of type const charT*; I1 and I2 - are Input Iterators; c is a value of type const charT; - s is an object of type X::string_type; - cs is an object of type const - X::string_type; b is - a value of type bool; I - is a value of type int; F1 - and F2 are values of type const - charT*; - and loc is an object of type X::locale_type. + type charT; u + is an object of type X; + v is an object of type const + X; p is + a value of type const charT*; I1 and I2 + are Input Iterators; c is a value of type const charT; + s is an object of type X::string_type; + cs is an object of type const + X::string_type; b is + a value of type bool; I + is a value of type int; F1 + and F2 are values of type const + charT*; + and loc is an object of type X::locale_type.

@@ -329,7 +327,7 @@ - - - - -

- v.value(c, i) + v.value(c, I)

@@ -380,39 +378,19 @@

-

- v.error_string(i) -

-
-

- 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. -

-
-

- +

+ Additional Optional Requirements -
+

The following additional requirements are strictly optional, however in - order for basic_regex + order for basic_regex to take advantage of these additional interfaces, all of the following - requirements must be met; basic_regex will detect the presence - or absense of the member boost_extensions_tag + requirements must be met; basic_regex will detect the presence + or absense of the member boost_extensions_tag and configure itself appropriately.

@@ -493,8 +471,8 @@ 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 + then: v.syntax_type(b) + == syntax_escape

@@ -512,9 +490,9 @@ @@ -531,9 +509,9 @@ @@ -601,10 +579,11 @@

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 + 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). + to be performed without regard to case, then v.translate(c,true)==v.translate(C,true).

- Behaves as follows: if p - == q - or if *p + 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. @@ -543,7 +521,7 @@

- v.error_string(i) + v.error_string(I)

@@ -555,8 +533,8 @@

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. + If the value I is not recognized then returns + the string "Unknown error" or a localized equivalent.

- +

+

diff --git a/doc/html/boost_regex/ref/deprecated_interfaces.html b/doc/html/boost_regex/ref/deprecated_interfaces.html index 7d3f52f1..4a3ee0b5 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces.html @@ -3,13 +3,11 @@ Deprecated Interfaces - + - - - + + + @@ -26,7 +24,8 @@ -

-

-

-

-

-

-

-

- +

+

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 ea155135..8afa58db 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/old_regex.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/old_regex.html @@ -1,14 +1,12 @@ - High - Level Class RegEx (Deprecated) +High Level Class RegEx (Deprecated) - + - + @@ -26,17 +24,16 @@

The high level wrapper class RegEx is now deprecated and does not form part of the regular expression standardization proposal. This type still exists, and existing code will continue to compile, however the following documentation is unlikely to be further updated.

-
-#include <boost/cregex.hpp>
+
#include <boost/cregex.hpp>
 

The class RegEx provides a high level simplified interface to the regular @@ -44,8 +41,7 @@ regular expressions always follow the "normal" syntax - that is the same as the perl / ECMAScript synatx.

-
-typedef bool (*GrepCallback)(const RegEx& expression);
+
typedef bool (*GrepCallback)(const RegEx& expression);
 typedef bool (*GrepFileCallback)(const char* file, const RegEx& expression);
 typedef bool (*FindFilesCallback)(const char* file);
 
@@ -138,7 +134,7 @@
 
 
                 

- RegEx(); + RegEx();

@@ -151,7 +147,7 @@

- RegEx(const RegEx& o); + RegEx(const RegEx& o);

@@ -164,40 +160,40 @@

- RegEx(const char* c, bool + RegEx(const char* c, bool icase = - false); + 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. + to case, otherwise it is sensitive to case. Throws bad_expression on failure.

- RegEx(const std::string& s, bool + RegEx(const std::string& s, bool icase = - false); + 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. + to case, otherwise it is sensitive to case. Throws bad_expression on failure.

- RegEx& - operator=(const RegEx& o); + RegEx& + operator=(const RegEx& o);

@@ -209,68 +205,68 @@

- 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 + unsigned int SetExpression(constchar* p, bool icase - = false); + = 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. + to case. Throws bad_expression on failure.

- unsigned int + unsigned int SetExpression(const std::string& s, bool icase = - false); + 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. + to case. Throws bad_expression on failure.

- std::string Expression()const; + std::string Expression()const;

@@ -282,17 +278,17 @@

- bool Match(const + bool Match(const char* p, boost::match_flag_type flags - = match_default); + = match_default);

Attempts to match the current expression against the text p - using the match flags flags - see match_flag_type. Returns + using the match flags flags - see match_flag_type. Returns true if the expression matches the whole of the input string.

@@ -301,17 +297,17 @@

- bool Match(const + bool Match(const std::string& s, boost::match_flag_type flags - = match_default); + = match_default);

Attempts to match the current expression against the text s - using the match_flag_type flags. + using the match_flag_type flags. Returns true if the expression matches the whole of the input string.

@@ -320,17 +316,17 @@

- bool Search(const + bool Search(const char* p, boost::match_flag_type flags - = match_default); + = match_default);

Attempts to find a match for the current expression somewhere in - the text p using the match_flag_type flags. + the text p using the match_flag_type flags. Returns true if the match succeeds.

@@ -338,17 +334,17 @@

- bool Search(const + bool Search(const std::string& s, boost::match_flag_type flags - = match_default); + = match_default);

Attempts to find a match for the current expression somewhere in - the text s using the match_flag_type flags. + the text s using the match_flag_type flags. Returns true if the match succeeds.

@@ -356,19 +352,19 @@

- unsigned int + unsigned int Grep(GrepCallback cb, const char* p, boost::match_flag_type flags - = match_default); + = 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); + 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. @@ -378,19 +374,19 @@

- unsigned int + unsigned int Grep(GrepCallback cb, const std::string& s, boost::match_flag_type flags - = match_default); + = 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); + 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. @@ -400,18 +396,18 @@

- unsigned int + unsigned int Grep(std::vector<std::string>& v, const char* p, boost::match_flag_type flags = - match_default); + match_default);

Finds all matches of the current expression in the text p - using the match_flag_type flags. + using the match_flag_type flags. For each match pushes a copy of what matched onto v. Returns the number of matches found.

@@ -420,18 +416,18 @@

- unsigned int + unsigned int Grep(std::vector<std::string>& v, const std::string& s, boost::match_flag_type flags = - match_default); + match_default);

Finds all matches of the current expression in the text s - using the match_flag_type flags. + using the match_flag_type flags. For each match pushes a copy of what matched onto v. Returns the number of matches found.

@@ -440,18 +436,18 @@

- unsigned int + unsigned int Grep(std::vector<unsigned int>& v, const char* p, boost::match_flag_type flags - = match_default); + = match_default);

Finds all matches of the current expression in the text p - using the match_flag_type flags. + using the match_flag_type flags. For each match pushes the starting index of what matched onto v. Returns the number of matches found.

@@ -460,18 +456,18 @@

- unsigned int + unsigned int Grep(std::vector<unsigned int>& v, const std::string& s, boost::match_flag_type flags - = match_default); + = match_default);

Finds all matches of the current expression in the text s - using the match_flag_type flags. + using the match_flag_type flags. For each match pushes the starting index of what matched onto v. Returns the number of matches found.

@@ -480,20 +476,20 @@

- unsigned int + unsigned int GrepFiles(GrepFileCallback cb, const char* files, bool recurse = false, boost::match_flag_type flags = - match_default); + match_default);

Finds all matches of the current expression in the files files - using the match_flag_type flags. + 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. @@ -507,7 +503,7 @@ Returns the total number of matches found.

- May throw an exception derived from std::runtime_error + May throw an exception derived from std::runtime_error if file io fails.

@@ -515,20 +511,20 @@

- unsigned int + unsigned int GrepFiles(GrepFileCallback cb, const std::string& files, bool recurse = false, boost::match_flag_type flags = - match_default); + match_default);

Finds all matches of the current expression in the files files - using the match_flag_type flags. + using the match_flag_type flags. For each match calls the call-back function cb.

@@ -545,7 +541,7 @@ Returns the total number of matches found.

- May throw an exception derived from std::runtime_error + May throw an exception derived from std::runtime_error if file io fails.

@@ -553,20 +549,20 @@

- unsigned int + unsigned int FindFiles(FindFilesCallback cb, const char* files, bool recurse = false, boost::match_flag_type flags = - match_default); + match_default);

Searches files to find all those which contain at least one match - of the current expression using the match_flag_type flags. + 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. @@ -580,7 +576,7 @@ Returns the total number of files found.

- May throw an exception derived from std::runtime_error + May throw an exception derived from std::runtime_error if file io fails.

@@ -588,20 +584,20 @@

- unsigned int + unsigned int FindFiles(FindFilesCallback cb, const std::string& files, bool recurse = false, boost::match_flag_type flags = - match_default); + match_default);

Searches files to find all those which contain at least one match - of the current expression using the match_flag_type flags. + of the current expression using the match_flag_type flags. For each matching file calls the call-back function cb.

@@ -617,7 +613,7 @@ Returns the total number of files found.

- May throw an exception derived from std::runtime_error + May throw an exception derived from std::runtime_error if file io fails.

@@ -625,14 +621,14 @@

- std::string Merge(const + std::string Merge(const std::string& in, const std::string& fmt, bool copy = true, boost::match_flag_type flags - = match_default); + = match_default);

@@ -645,22 +641,22 @@ 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. + Returns the new string. See also format + string syntax, and match_flag_type.

- std::string Merge(const + std::string Merge(const char* in, const char* fmt, bool copy = true, boost::match_flag_type flags - = match_default); + = match_default);

@@ -673,19 +669,19 @@ 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. + 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 + unsigned Split(std::vector<std::string>& v, std::string& s, boost::match_flag_type flags = match_default, unsigned max_count - = ~0); + = ~0);

@@ -706,17 +702,17 @@

- unsigned int + unsigned int Position(int i - = 0)const; + = 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 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.

@@ -725,16 +721,16 @@

- unsigned int + unsigned int Length(int i - = 0)const; + = 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 + 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.

@@ -743,8 +739,8 @@

- bool Matched(int i = - 0)const; + bool Matched(int i = + 0)const;

@@ -757,23 +753,23 @@

- 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. + 1 not zero, if no match occurred then returns RegEx::npos.

- unsigned int + unsigned int Marks() - const; + const;

@@ -787,14 +783,14 @@

- 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 + 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.

@@ -803,13 +799,13 @@

- std::string operator[](int - i)const ; + std::string operator[](int + i)const ;

- Returns what(i); + Returns what(i); Can be used to simplify access to sub-expression matches, and make usage more perl-like.

@@ -820,10 +816,11 @@
- +

+

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 559d3a9e..2365c417 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html @@ -1,15 +1,13 @@ - - regex_format (Deprecated) +regex_format (Deprecated) - + - + @@ -26,31 +24,29 @@

- The algorithm regex_format - is deprecated; new code should use match_results<>::format instead. Existing code + The algorithm regex_format + is deprecated; new code should use match_results<>::format instead. Existing code will continue to compile, the following documentation is taken from the previous version of Boost.Regex and will not be further updated:

-

- +

+ Algorithm regex_format -
-
-#include <boost/regex.hpp>
+        
+
#include <boost/regex.hpp>
 

- The algorithm regex_format + The algorithm regex_format takes the results of a match and creates a new string based upon a format - string, regex_format can + 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 charT>
 OutputIterator regex_format(OutputIterator out,
                            const match_results<iterator, Allocator>& m,
                            const charT* fmt,
@@ -62,7 +58,7 @@
                            match_flag_type flags = 0);
 

- The library also defines the following convenience variation of regex_format, which returns the result + The library also defines the following convenience variation of regex_format, which returns the result directly as a string, rather than outputting to an iterator.

@@ -70,13 +66,12 @@ -
[Note] Note

+

This version may not be available, or may be available in a more limited form, depending upon your compilers capabilities

-
-template <class iterator, class Allocator, class charT>
+
template <class iterator, class Allocator, class charT>
 std::basic_string<charT> regex_format
                                  (const match_results<iterator, Allocator>& m, 
                                  const charT* fmt,
@@ -112,7 +107,7 @@
 
 
                 

- OutputIterator out + OutputIterator out

@@ -125,12 +120,12 @@

- const match_results<iterator, Allocator>& m + const match_results<iterator, Allocator>& m

- An instance of match_results obtained + An instance of match_results obtained from one of the matching algorithms above, and denoting what matched.

@@ -138,7 +133,7 @@

- const charT* fmt + const charT* fmt

@@ -151,7 +146,7 @@

- unsigned flags + unsigned flags

@@ -163,19 +158,20 @@

- Format flags are described under match_flag_type. + Format flags are described under match_flag_type.

The format string syntax (and available options) is described more fully - under format strings. + under format strings.

- +

+

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 13d2a5bf..9a1884aa 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/regex_grep.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/regex_grep.html @@ -1,16 +1,13 @@ - - regex_grep (Deprecated) +regex_grep (Deprecated) - + - - + + @@ -27,28 +24,26 @@

- The algorithm regex_grep - is deprecated in favor of regex_iterator which provides + The algorithm regex_grep + is deprecated in favor of regex_iterator which provides a more convenient and standard library friendly interface.

The following documentation is taken unchanged from the previous boost release, and will not be updated in future.

-
-#include <boost/regex.hpp>
+
#include <boost/regex.hpp>
 

- regex_grep allows you to + regex_grep allows you to search through a bidirectional-iterator range and locate all the (non-overlapping) matches with a given regular expression. The function is declared as:

-
-template <class Predicate, class iterator, class charT, class traits>
+
template <class Predicate, class iterator, class charT, class traits>
 unsigned int regex_grep(Predicate foo,
                         iterator first,
                         iterator last,
@@ -57,12 +52,11 @@
 

The library also defines the following convenience versions, which take - either a const charT*, or a const - std::basic_string<>& + either a const charT*, or a const + std::basic_string<>& in place of a pair of iterators.

-
-template <class Predicate, class charT, class traits>
+
template <class Predicate, class charT, class traits>
 unsigned int regex_grep(Predicate foo, 
             const charT* str, 
             const basic_regex<charT, traits>& e, 
@@ -75,7 +69,7 @@
             boost::match_flag_type flags = match_default);
 

- The parameters for the primary version of regex_grep + The parameters for the primary version of regex_grep have the following meanings:

@@ -97,9 +91,9 @@

The algorithm finds all of the non-overlapping matches of the expression - e, for each match it fills a match_results<iterator> structure, which contains information + e, for each match it fills a match_results<iterator> structure, which contains information on what matched, and calls the predicate foo, passing - the match_results<iterator> + the match_results<iterator> as a single argument. If the predicate returns true, then the grep operation continues, otherwise it terminates without searching for further matches. The function returns the number of matches found. @@ -107,8 +101,7 @@

The general form of the predicate is:

-
-struct grep_predicate
+
struct grep_predicate
 {
    bool operator()(const match_results<iterator_type>& m);
 };
@@ -123,12 +116,12 @@
           utilities would output the results to the screen, another program could
           index a file based on a regular expression and store a set of bookmarks
           in a list, or a text file conversion utility would output to file. The
-          results of one regex_grep
-          can even be chained into another regex_grep
+          results of one regex_grep
+          can even be chained into another regex_grep
           to create recursive parsers.
         

- The algorithm may throw std::runtime_error + The algorithm may throw std::runtime_error if the complexity of matching the expression against an N character string begins to exceed O(N2), or if the program runs out of stack space while matching the expression (if Boost.Regex is configured @@ -136,10 +129,9 @@ (if Boost.Regex is configured in non-recursive mode).

- Example: convert the example from regex_search to use regex_grep instead: + Example: convert the example from regex_search to use regex_grep instead:

-
-#include <string> 
+
#include <string> 
 #include <map> 
 #include <boost/regex.hpp> 
 
@@ -198,11 +190,10 @@
 }
 

- Example: Use regex_grep + Example: Use regex_grep to call a global callback function:

-
-#include <string> 
+
#include <string> 
 #include <map> 
 #include <boost/regex.hpp> 
 
@@ -258,12 +249,11 @@
 }
 

- Example: use regex_grep - to call a class member function, use the standard library adapters std::mem_fun and std::bind1st + Example: use regex_grep + to call a class member function, use the standard library adapters std::mem_fun and std::bind1st to convert the member function into a predicate:

-
-#include <string> 
+
#include <string> 
 #include <map> 
 #include <boost/regex.hpp> 
 #include <functional> 
@@ -316,8 +306,7 @@
           Finally, C++ Builder users can use C++ Builder's closure type as a callback
           argument:
         

-
-#include <string> 
+
#include <string> 
 #include <map> 
 #include <boost/regex.hpp> 
 #include <functional> 
@@ -373,10 +362,11 @@
 
 
- +

+

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 ce02c4a1..b430a1bc 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/regex_split.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/regex_split.html @@ -1,16 +1,13 @@ - - regex_split (deprecated) +regex_split (deprecated) - + - - + + @@ -27,31 +24,26 @@

- The algorithm regex_split has been deprecated - in favor of the iterator regex_token_iterator which has + The algorithm regex_split has been deprecated + in favor of the iterator regex_token_iterator which has a more flexible and powerful interface, as well as following the more usual standard library "pull" rather than "push" semantics.

- Code which uses regex_split will continue to compile, + Code which uses regex_split will continue to compile, the following documentation is taken from a previous Boost.Regex version:

-
-#include <boost/regex.hpp> 
+
#include <boost/regex.hpp> 
 

- Algorithm regex_split performs a similar + Algorithm regex_split performs a similar operation to the perl split operation, and comes in three overloaded forms:

-
-template <class OutputIterator, class charT, class Traits1, class Alloc1, class Traits2>
+
template <class OutputIterator, class charT, class Traits1, class Alloc1, class Traits2>
 std::size_t regex_split(OutputIterator out, 
                         std::basic_string<charT, Traits1, Alloc1>& s, 
                         const basic_regex<charT, Traits2>& e,
@@ -69,7 +61,7 @@
                         std::basic_string<charT, Traits1, Alloc1>& s);
 

- Effects: Each version of the algorithm + Effects: Each version of the algorithm takes an output-iterator for output, and a string for input. If the expression contains no marked sub-expressions, then the algorithm writes one string onto the output-iterator for each section of input that does not match @@ -80,11 +72,11 @@ processed will be deleted from the string s (if max_split is not reached then all of s will be deleted). Returns the number of strings written to the output-iterator. If the parameter - max_split is not specified then it defaults to UINT_MAX. If no expression is specified, + max_split is not specified then it defaults to UINT_MAX. If no expression is specified, then it defaults to "\s+", and splitting occurs on whitespace.

- Throws: std::runtime_error + Throws: std::runtime_error if the complexity of matching the expression against an N character string begins to exceed O(N2), or if the program runs out of stack space while matching the expression (if Boost.Regex is configured in recursive mode), @@ -92,12 +84,11 @@ is configured in non-recursive mode).

- Example: the following function will split + Example: the following function will split the input string into a series of tokens, and remove each token from the string s:

-
-unsigned tokenise(std::list<std::string>& l, std::string& s)
+
unsigned tokenise(std::list<std::string>& l, std::string& s)
 {
    return boost::regex_split(std::back_inserter(l), s);
 }
@@ -106,8 +97,7 @@
           Example: the following short program will extract all of the URL's from
           a html file, and print them out to cout:
         

-
-#include <list>
+
#include <list>
 #include <fstream>
 #include <iostream>
 #include <boost/regex.hpp>
@@ -159,10 +149,11 @@
 
 
- +

+

diff --git a/doc/html/boost_regex/ref/error_type.html b/doc/html/boost_regex/ref/error_type.html index b362c115..81df8453 100644 --- a/doc/html/boost_regex/ref/error_type.html +++ b/doc/html/boost_regex/ref/error_type.html @@ -1,13 +1,13 @@ - error_type +error_type - + - - - + + + @@ -24,17 +24,17 @@ +
+ Synopsis -
+

Type error type represents the different types of errors that can be raised by the library when parsing a regular expression.

-
-namespace boost{ namespace regex_constants{
+
namespace boost{ namespace regex_constants{
 
 typedef implementation-specific-type error_type;
 
@@ -56,12 +56,12 @@
 } // namespace regex_constants
 } // namespace boost
 
-

- +

+ Description -
+

- The type error_type is an + The type error_type is an implementation-specific enumeration type that may take one of the following values:

@@ -257,10 +257,11 @@
- +

+

diff --git a/doc/html/boost_regex/ref/match_flag_type.html b/doc/html/boost_regex/ref/match_flag_type.html index bf5a7e95..91b55c46 100644 --- a/doc/html/boost_regex/ref/match_flag_type.html +++ b/doc/html/boost_regex/ref/match_flag_type.html @@ -1,14 +1,13 @@ - match_flag_type +match_flag_type - + - - - + + + @@ -25,15 +24,15 @@

- The type match_flag_type + The type match_flag_type is an implementation specific bitmask type (see C++ std 17.3.2.1.2) that controls how a regular expression is matched against a character sequence. - The behavior of the format flags is described in more detail in the format syntax guide. + The behavior of the format flags is described in more detail in the format syntax guide.

-
-namespace boost{ namespace regex_constants{
+
namespace boost{ namespace regex_constants{
 
 typedef implemenation-specific-bitmask-type match_flag_type;
 
@@ -69,12 +68,12 @@
 } // namespace regex_constants
 } // namespace boost
 
-

- +

+ Description -
+

- The type match_flag_type + The type match_flag_type is an implementation specific bitmask type (see C++ std 17.3.2.1.2). When matching a regular expression against a sequence of characters [first, last) then setting its elements has the effects listed in the table below: @@ -328,8 +327,7 @@

@@ -415,7 +413,7 @@ @@ -443,8 +441,7 @@ @@ -481,10 +478,11 @@

Specifies that the expression should be matched according to the - POSIX leftmost-longest + 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. @@ -360,7 +358,7 @@

Makes the expression behave as if it had no marked subexpressions, - no matter how many capturing groups are actually present. The match_results + 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.

@@ -380,7 +378,7 @@ Specification, Chapter 15 part 5.4.11 String.prototype.replace. (FWD.1).

- This is functionally identical to the Perl + This is functionally identical to the Perl format string rules.

@@ -402,7 +400,7 @@ 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. + 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 + by a new string, that the new string is constructed using the same rules as Perl 5.

Specifies that all syntax extensions are enabled, including conditional - (?ddexpression1:expression2) replacements: see the format + (?ddexpression1:expression2) replacements: see the format string guide for more details.

- +

+

diff --git a/doc/html/boost_regex/ref/match_results.html b/doc/html/boost_regex/ref/match_results.html index 2e6fca10..db38d7a4 100644 --- a/doc/html/boost_regex/ref/match_results.html +++ b/doc/html/boost_regex/ref/match_results.html @@ -1,13 +1,13 @@ - match_results +match_results - + - - - + + + @@ -24,45 +24,44 @@ +
+ Synopsis -
-
-#include <boost/regex.hpp>
+      
+
#include <boost/regex.hpp>
 

Regular expressions are different from many simple pattern-matching algorithms in that as well as finding an overall match they can also produce sub-expression matches: each sub-expression being delimited in the pattern by a pair of parenthesis (...). There has to be some method for reporting sub-expression - matches back to the user: this is achieved this by defining a class match_results that acts as an indexed collection + matches back to the user: this is achieved this by defining a class match_results that acts as an indexed collection of sub-expression matches, each sub-expression match being contained in an - object of type sub_match. + object of type sub_match.

- Template class match_results + Template class match_results denotes a collection of character sequences representing the result of a - regular expression match. Objects of type match_results - are passed to the algorithms regex_match and regex_search, and are returned by - the iterator regex_iterator. Storage for the + regular expression match. Objects of type match_results + are passed to the algorithms regex_match and regex_search, and are returned by + the iterator regex_iterator. Storage for the collection is allocated and freed as necessary by the member functions of - class match_results. + class match_results.

- The template class match_results + The template class match_results conforms to the requirements of a Sequence, as specified in (lib.sequence.reqmts), except that only operations defined for const-qualified Sequences are supported.

- Class template match_results - is most commonly used as one of the typedefs cmatch, - wcmatch, smatch, - or wsmatch: + Class template match_results + is most commonly used as one of the typedefs cmatch, + wcmatch, smatch, + or wsmatch:

-
-template <class BidirectionalIterator,
+
template <class BidirectionalIterator,
          class Allocator = std::allocator<sub_match<BidirectionalIterator> >
 class match_results;
 
@@ -142,23 +141,22 @@
 void swap(match_results<BidirectionalIterator, Allocator>& m1,
          match_results<BidirectionalIterator, Allocator>& m2);
 
-

- +

+ Description -
+

- In all match_results constructors, + In all match_results constructors, 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 - match_results. The postconditions + Effects: Constructs an object of class + match_results. The postconditions of this function are indicated in the table:

@@ -219,20 +217,18 @@

-
-match_results(const match_results& m);
+
match_results(const match_results& m);
 

- Effects: Constructs an object of class match_results, + 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 + Effects: Assigns m to *this. The postconditions of this function are indicated in the table:

@@ -353,218 +349,201 @@

-
-size_type size()const;
+
size_type size()const;
 

- Effects: Returns the number of sub_match elements stored in *this; + 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 + 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. + Effects: Returns size() == 0.

-
-difference_type length(int sub = 0)const;
+
difference_type length(int sub = 0)const;
 

- Effects: Returns the length of sub-expression - sub, that is to say: (*this)[sub].length(). + Effects: Returns the length of sub-expression + sub, that is to say: (*this)[sub].length().

-
-difference_type position(unsigned int sub = 0)const;
+
difference_type position(unsigned int sub = 0)const;
 

- Effects: Returns the starting location of + 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 + 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.

-
-string_type str(int sub = 0)const;
+
string_type str(int sub = 0)const;
 

- Effects: Returns sub-expression sub - as a string: string_type((*this)[sub]). + Effects: Returns sub-expression sub + as a string: string_type((*this)[sub]).

-
-const_reference operator[](int n) const;
+
const_reference operator[](int n) const;
 

- Effects: Returns a reference to the sub_match + 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 + n. If n == 0 then returns + a reference to a sub_match object representing the character sequence that matched the whole regular expression. If n is out of range, or if n is an unmatched sub-expression, - then returns a sub_match + then returns a sub_match object whose matched member is false.

-
-const_reference prefix()const;
+
const_reference prefix()const;
 

- Effects: Returns a reference to the sub_match + 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.

-
-const_reference suffix()const;
+
const_reference suffix()const;
 

- Effects: Returns a reference to the sub_match + 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.

-
-const_iterator begin()const;
+
const_iterator begin()const;
 

- Effects: Returns a starting iterator that + 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 + Effects: Returns a terminating iterator that enumerates over all the marked sub-expression matches stored in *this.

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

- Requires: The type OutputIterator + 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 OutputIterator out. + Effects: 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. The bitmasks specified + 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.

- See the format syntax guide for more information. + See the format syntax guide for more information.

- Returns: out. + Returns: out.

-
-string_type format(const string_type& fmt,
+
string_type format(const string_type& fmt,
                   match_flag_type flags = format_default);
 

- Effects: Returns a copy of the string fmt. + 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 + 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.

- See the format syntax guide for more information. + 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 + 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. + Effects: Swaps the contents of the two sequences.

- Postcondition: *this contains the sequence + Postcondition: *this contains the sequence of matched sub-expressions that were in that, that contains the sequence of matched sub-expressions that were in *this.

- Complexity: constant time. + 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 a standard library Sequence (21.1.1 including the optional Table 68 operations), - whose value_type is a sub_match<BidirectionalIterator>. This type happens to be std::vector<sub_match<BidirectionalIterator> >, + 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; 
 

- Effects: returns a sequence containing all + Effects: returns a sequence containing all the captures obtained for sub-expression i.

- Returns: (*this)[i].captures(); + Returns: (*this)[i].captures();

- Preconditions: the library must be built + Preconditions: the library must be built and used with BOOST_REGEX_MATCH_EXTRA defined, and you must pass the flag - match_extra to the regex matching functions ( regex_match, regex_search, regex_iterator or regex_token_iterator) in order for + match_extra to the regex matching functions ( regex_match, regex_search, regex_iterator or regex_token_iterator) in order for this member function to be defined and return useful information.

- Rationale: Enabling this feature has several + Rationale: Enabling this feature has several consequences:

    @@ -584,57 +563,54 @@

-
-template <class BidirectionalIterator, class Allocator>
+
template <class BidirectionalIterator, class Allocator>
 bool operator == (const match_results<BidirectionalIterator, Allocator>& m1,
                   const match_results<BidirectionalIterator, Allocator>& m2);
 

- Effects: Compares the two sequences for + 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);
 

- Effects: Compares the two sequences for + 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);
 

- Effects: Writes the contents of m - to the stream os as if by calling os - << m.str(); + Effects: Writes the contents of m + to the stream os as if by calling os + << 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);
 

- Effects: Swaps the contents of the two sequences. + Effects: Swaps the contents of the two sequences.

- +

+

diff --git a/doc/html/boost_regex/ref/non_std_strings.html b/doc/html/boost_regex/ref/non_std_strings.html index 5d2f434d..f47ef100 100644 --- a/doc/html/boost_regex/ref/non_std_strings.html +++ b/doc/html/boost_regex/ref/non_std_strings.html @@ -1,15 +1,13 @@ - Interfacing With Non-Standard - String Types +Interfacing With Non-Standard String Types - + - - - + + + @@ -26,9 +24,9 @@
Working With Unicode and ICU String Types
@@ -72,15 +70,14 @@ been provided for them already: currently this includes the ICU and MFC string class 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 83799cc1..3e20a8d6 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu.html @@ -1,17 +1,13 @@ - Working With - Unicode and ICU String Types +Working With Unicode and ICU String Types - + - - - + + + @@ -28,9 +24,9 @@
- +

+

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 87fe0850..8282b43d 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 @@ -1,17 +1,13 @@ - Introduction - to using Regex with ICU +Introduction to using Regex with ICU - + - - - + + + @@ -28,14 +24,13 @@

The header:

-
-<boost/regex/icu.hpp>
+
<boost/regex/icu.hpp>
 

contains the data types and algorithms necessary for working with regular @@ -67,10 +62,11 @@

- +

+

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 5d4ae06e..2b9bf51c 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 @@ -1,17 +1,13 @@ - - Unicode Regular Expression Algorithms +Unicode Regular Expression Algorithms - + - - - + + + @@ -28,41 +24,40 @@

- The regular expression algorithms regex_match, regex_search and regex_replace all expect that + The regular expression algorithms regex_match, regex_search and regex_replace all expect that the character sequence upon which they operate, is encoded in the same character encoding as the regular expression object with which they are used. For Unicode regular expressions that behavior is undesirable: while we may want to process the data in UTF-32 "chunks", the actual data is much more likely to encoded as either UTF-8 or UTF-16. Therefore the header <boost/regex/icu.hpp> provides a series of thin wrappers - around these algorithms, called u32regex_match, - u32regex_search, and - u32regex_replace. These + around these algorithms, called u32regex_match, + u32regex_search, and + u32regex_replace. These wrappers use iterator-adapters internally to make external UTF-8 or UTF-16 data look as though it's really a UTF-32 sequence, that can then be passed on to the "real" algorithm.

-

- +

+ u32regex_match -
+

- For each regex_match - algorithm defined by <boost/regex.hpp>, - then <boost/regex/icu.hpp> defines an overloaded algorithm that - takes the same arguments, but which is called u32regex_match, + For each regex_match + algorithm defined by <boost/regex.hpp>, + then <boost/regex/icu.hpp> defines an overloaded algorithm that + takes the same arguments, but which is called u32regex_match, and which will accept UTF-8, UTF-16 or UTF-32 encoded data, as well as an ICU UnicodeString as input.

Example: match a password, encoded in a UTF-16 UnicodeString:

-
-//
+
//
 // Find out if *password* meets our password requirements,
 // as defined by the regular expression *requirements*.
 //
@@ -74,8 +69,7 @@
 

Example: match a UTF-8 encoded filename:

-
-//
+
//
 // Extract filename part of a path from a UTF-8 encoded std::string and return the result
 // as another std::string:
 //
@@ -94,23 +88,22 @@
    }
 }
 
-

- +

+ u32regex_search -
+

- For each regex_search - algorithm defined by <boost/regex.hpp>, - then <boost/regex/icu.hpp> defines an overloaded algorithm that - takes the same arguments, but which is called u32regex_search, + For each regex_search + algorithm defined by <boost/regex.hpp>, + then <boost/regex/icu.hpp> defines an overloaded algorithm that + takes the same arguments, but which is called u32regex_search, and which will accept UTF-8, UTF-16 or UTF-32 encoded data, as well as an ICU UnicodeString as input.

Example: search for a character sequence in a specific language block:

-
-UnicodeString extract_greek(const UnicodeString& text)
+
UnicodeString extract_greek(const 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
@@ -134,15 +127,15 @@
    }
 }
 
-

- +

+ u32regex_replace -
+

- For each regex_replace algorithm defined - by <boost/regex.hpp>, then <boost/regex/icu.hpp> + For each regex_replace algorithm defined + by <boost/regex.hpp>, then <boost/regex/icu.hpp> defines an overloaded algorithm that takes the same arguments, but which - is called u32regex_replace, + is called u32regex_replace, and which will accept UTF-8, UTF-16 or UTF-32 encoded data, as well as an ICU UnicodeString as input. The input sequence and the format string specifier passed to the algorithm, can be encoded independently (for @@ -153,8 +146,7 @@

Example: Credit card number reformatting:

-
-//
+
//
 // Take a credit card number as a string of digits, 
 // and reformat it as a human readable string with "-"
 // separating each group of four digit;, 
@@ -174,10 +166,11 @@
 
 
- +

+

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 f3c9352c..45fea130 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 @@ -1,17 +1,13 @@ - - Unicode Aware Regex Iterators +Unicode Aware Regex Iterators - + - - - + + + @@ -28,23 +24,22 @@ +
+ u32regex_iterator -
+

- Type u32regex_iterator - is in all respects the same as regex_iterator except that since - the regular expression type is always u32regex + Type u32regex_iterator + is in all respects the same as regex_iterator except that since + the regular expression type is always u32regex it only takes one template parameter (the iterator type). It also calls - u32regex_search internally, + u32regex_search internally, allowing it to interface correctly with UTF-8, UTF-16, and UTF-32 data:

-
-template <class BidirectionalIterator>
+
template <class BidirectionalIterator>
 class u32regex_iterator
 {
    // for members see regex_iterator
@@ -55,12 +50,11 @@
 typedef u32regex_iterator<const UChar32*>  utf32regex_iterator;
 

- In order to simplify the construction of a u32regex_iterator + In order to simplify the construction of a u32regex_iterator from a string, there are a series of non-member helper functions called make_u32regex_iterator:

-
-u32regex_iterator<const char*> 
+
u32regex_iterator<const char*> 
    make_u32regex_iterator(const char* s, 
                           const u32regex& e, 
                           regex_constants::match_flag_type m = regex_constants::match_default);
@@ -95,8 +89,7 @@
             Example: search for international currency symbols, along with their
             associated numeric value:
           

-
-void enumerate_currencies(const std::string& text)
+
void enumerate_currencies(const std::string& text)
 {
    // enumerate and print all the currency symbols, along
    // with any associated numeric values:
@@ -132,20 +125,19 @@
 

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

-

- +

+ u32regex_token_iterator -
+

- Type u32regex_token_iterator - is in all respects the same as regex_token_iterator except - that since the regular expression type is always u32regex + Type u32regex_token_iterator + is in all respects the same as regex_token_iterator except + that since the regular expression type is always u32regex it only takes one template parameter (the iterator type). It also calls - u32regex_search internally, + u32regex_search internally, allowing it to interface correctly with UTF-8, UTF-16, and UTF-32 data:

-
-template <class BidirectionalIterator>
+
template <class BidirectionalIterator>
 class u32regex_token_iterator
 {
    // for members see regex_token_iterator
@@ -156,12 +148,11 @@
 typedef u32regex_token_iterator<const UChar32*>  utf32regex_token_iterator;
 

- In order to simplify the construction of a u32regex_token_iterator + In order to simplify the construction of a u32regex_token_iterator from a string, there are a series of non-member helper functions called - make_u32regex_token_iterator: + make_u32regex_token_iterator:

-
-u32regex_token_iterator<const char*> 
+
u32regex_token_iterator<const char*> 
    make_u32regex_token_iterator(
          const char* s, 
          const u32regex& e, 
@@ -202,8 +193,7 @@
             of marked sub-expression sub in regular expression e,
             found in text s, using match_flags m.
           

-
-template <std::size_t N>
+
template <std::size_t N>
 u32regex_token_iterator<const char*> 
    make_u32regex_token_iterator(
          const char* p, 
@@ -248,8 +238,7 @@
             for each submatch in regular expression e, found
             in text s, using match_flags m.
           

-
-u32regex_token_iterator<const char*> 
+
u32regex_token_iterator<const char*> 
    make_u32regex_token_iterator(
          const char* p, 
          const u32regex& e, 
@@ -294,8 +283,7 @@
             Example: search for international currency symbols, along with their
             associated numeric value:
           

-
-void enumerate_currencies2(const std::string& text)
+
void enumerate_currencies2(const std::string& text)
 {
    // enumerate and print all the currency symbols, along
    // with any associated numeric values:
@@ -321,10 +309,11 @@
 
 
- +

+

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 6f42cbf9..39677b16 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 @@ -1,17 +1,13 @@ - - Unicode regular expression types +Unicode regular expression types - + - - - + + + @@ -28,113 +24,105 @@

- Header <boost/regex/icu.hpp> provides a regular expression traits + Header <boost/regex/icu.hpp> provides a regular expression traits class that handles UTF-32 characters:

-
-class icu_regex_traits;
+
class icu_regex_traits;
 

and a regular expression type based upon that:

-
-typedef basic_regex<UChar32,icu_regex_traits> u32regex;
+
typedef basic_regex<UChar32,icu_regex_traits> u32regex;
 

- The type u32regex is + The type u32regex is regular expression type to use for all Unicode regular expressions; internally it uses UTF-32 code points, but can be created from, and used to search, either UTF-8, or UTF-16 encoded strings as well as UTF-32 ones.

- The constructors, and assign member functions of u32regex, + The constructors, and assign member functions of u32regex, require UTF-32 encoded strings, but there are a series of overloaded - algorithms called make_u32regex + algorithms called make_u32regex which allow regular expressions to be created from UTF-8, UTF-16, or UTF-32 encoded strings:

-
-template <class InputIterator> 
+
template <class InputIterator> 
 u32regex make_u32regex(InputIterator i, 
                        InputIterator j, 
                        boost::regex_constants::syntax_option_type opt);
 

- Effects: Creates a regular expression + Effects: Creates a regular expression object from the iterator sequence [i,j). The character encoding of the sequence is determined based upon sizeof(*i): 1 implies UTF-8, 2 implies UTF-16, and 4 implies UTF-32.

-
-u32regex make_u32regex(const char* p, 
+
u32regex make_u32regex(const char* p, 
                        boost::regex_constants::syntax_option_type opt 
                            = boost::regex_constants::perl);
 

- Effects: Creates a regular expression + Effects: Creates a regular expression object from the Null-terminated UTF-8 characater sequence p.

-
-u32regex make_u32regex(const unsigned char* p, 
+
u32regex make_u32regex(const unsigned char* p, 
                        boost::regex_constants::syntax_option_type opt 
                            = boost::regex_constants::perl);
 

- Effects: Creates a regular expression + Effects: Creates a regular expression object from the Null-terminated UTF-8 characater sequence p.

-
-u32regex make_u32regex(const wchar_t* p, 
+
u32regex make_u32regex(const wchar_t* p, 
                        boost::regex_constants::syntax_option_type opt 
                            = boost::regex_constants::perl);
 

- Effects: Creates a regular expression + Effects: Creates a regular expression object from the Null-terminated characater sequence p. The character encoding of the sequence is determined based upon sizeof(wchar_t): 1 implies UTF-8, 2 implies UTF-16, and 4 implies UTF-32.

-
-u32regex make_u32regex(const UChar* p, 
+
u32regex make_u32regex(const UChar* p, 
                        boost::regex_constants::syntax_option_type opt 
                            = boost::regex_constants::perl);
 

- Effects: Creates a regular expression + Effects: Creates a regular expression object from the Null-terminated UTF-16 characater sequence p.

-
-template<class C, class T, class A>
+
template<class C, class T, class A>
 u32regex make_u32regex(const std::basic_string<C, T, A>& s, 
                        boost::regex_constants::syntax_option_type opt 
                            = boost::regex_constants::perl);
 

- Effects: Creates a regular expression + Effects: Creates a regular expression object from the string s. The character encoding of the string is determined based upon sizeof(C): 1 implies UTF-8, 2 implies UTF-16, and 4 implies UTF-32.

-
-u32regex make_u32regex(const UnicodeString& s, 
+
u32regex make_u32regex(const UnicodeString& s, 
                        boost::regex_constants::syntax_option_type opt 
                            = boost::regex_constants::perl);
 

- Effects: Creates a regular expression + Effects: Creates a regular expression object from the UTF-16 encoding string s.

- +

+

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 f17f4620..7634d2a3 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 @@ -1,17 +1,13 @@ - Using - Boost Regex With MFC Strings +Using Boost Regex With MFC Strings - + - - - + + + @@ -28,9 +24,9 @@
- +

+

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 0d05bf1c..3a03bd2e 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 @@ -1,17 +1,13 @@ - - Overloaded Algorithms For MFC String Types +Overloaded Algorithms For MFC String Types - + - - - + + + @@ -28,31 +24,30 @@

- For each regular expression algorithm that's overloaded for a std::basic_string argument, there is also + For each regular expression algorithm that's overloaded for a std::basic_string argument, there is also one overloaded for the MFC/ATL string types. These algorithm signatures all look a lot more complex than they actually are, but for completeness here they are anyway:

-

- +

+ regex_match -
+

There are two overloads, the first reports what matched in a match_results structure, the second does not.

- All the usual caveats for regex_match apply, in particular + All the usual caveats for regex_match apply, in particular the algorithm will only report a successful match if all of the input - text matches the expression, if this isn't what you want then use regex_search + text matches the expression, if this isn't what you want then use regex_search instead.

-
-template <class charT, class T, class A>
+
template <class charT, class T, class A>
 bool regex_match(
    const ATL::CSimpleStringT<charT>& s, 
    match_results<const B*, A>& what, 
@@ -60,15 +55,14 @@
    boost::regex_constants::match_flag_type f = boost::regex_constants::match_default); 
 

- Effects: returns ::boost::regex_match(s.GetString(), + Effects: returns ::boost::regex_match(s.GetString(), s.GetString() - + s.GetLength(), what, e, f); + + s.GetLength(), what, e, f);

- Example: + Example:

-
-//
+
//
 // Extract filename part of a path from a CString and return the result
 // as another CString:
 //
@@ -87,28 +81,26 @@
    }
 }
 
-

- +

+ regex_match (second overload) -
-
-template <class charT, class T>
+          
+
template <class charT, class T>
 bool regex_match(
    const ATL::CSimpleStringT<charT>& s,
    const basic_regex<B, T>& e,
    boost::regex_constants::match_flag_type f = boost::regex_constants::match_default)
 

- Effects: returns ::boost::regex_match(s.GetString(), + Effects: returns ::boost::regex_match(s.GetString(), s.GetString() - + s.GetLength(), e, f); + + s.GetLength(), e, f);

- Example: + Example:

-
-//
+
//
 // Find out if *password* meets our password requirements,
 // as defined by the regular expression *requirements*.
 //
@@ -117,31 +109,29 @@
    return boost::regex_match(password, boost::make_regex(requirements));
 }      
 
-

- +

+ regex_search -
+

- There are two additional overloads for regex_search, the first reports + There are two additional overloads for regex_search, the first reports what matched the second does not:

-
-template <class charT, class A, class T>
+
template <class charT, class A, class T>
 bool regex_search(const ATL::CSimpleStringT<charT>& s,
                   match_results<const charT*, A>& what,
                   const basic_regex<charT, T>& e,
                   boost::regex_constants::match_flag_type f = boost::regex_constants::match_default)
 

- Effects: returns ::boost::regex_search(s.GetString(), + Effects: returns ::boost::regex_search(s.GetString(), s.GetString() + s.GetLength(), what, e, f);

- Example: Postcode extraction from an + Example: Postcode extraction from an address string.

-
-CString extract_postcode(const CString& address)
+
CString extract_postcode(const CString& address)
 {
    // searches throw address for a UK postcode and returns the result,
    // the expression used is by Phil A. on www.regxlib.com:
@@ -158,32 +148,30 @@
    }
 }      
 
-

- +

+ regex_search (second overload) -
-
-template <class charT, class T>
+          
+
template <class charT, class T>
 inline bool regex_search(const ATL::CSimpleStringT<charT>& s,
                const basic_regex<charT, T>& e,
                boost::regex_constants::match_flag_type f = boost::regex_constants::match_default)
 

- Effects: returns ::boost::regex_search(s.GetString(), + Effects: returns ::boost::regex_search(s.GetString(), s.GetString() - + s.GetLength(), e, f); + + s.GetLength(), e, f);

-

- +

+ regex_replace -
+

- There are two additional overloads for regex_replace, the first sends + There are two additional overloads for regex_replace, the first sends output to an output iterator, while the second creates a new string

-
-template <class OutputIterator, class BidirectionalIterator, class traits, class
+
template <class OutputIterator, class BidirectionalIterator, class traits, class
          charT>
 OutputIterator regex_replace(OutputIterator out,
                            BidirectionalIterator first,
@@ -193,26 +181,24 @@
                            match_flag_type flags = match_default)
 

- Effects: returns ::boost::regex_replace(out, first, last, e, fmt.GetString(), - flags); + Effects: returns ::boost::regex_replace(out, first, last, e, fmt.GetString(), + flags);

-
-template <class traits, charT>
+
template <class traits, charT>
 ATL::CSimpleStringT<charT> regex_replace(const ATL::CSimpleStringT<charT>& s,
                            const basic_regex<charT, traits>& e,
                            const ATL::CSimpleStringT<charT>& fmt,
                            match_flag_type flags = match_default)
 

- Effects: returns a new string created - using regex_replace, + Effects: returns a new string created + using regex_replace, and the same memory manager as string s.

- Example: + Example:

-
-//
+
//
 // Take a credit card number as a string of digits, 
 // and reformat it as a human readable string with "-"
 // separating each group of four digits:
@@ -228,10 +214,11 @@
 
 
- +

+

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 017ca050..a63c09a3 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 @@ -1,17 +1,13 @@ - - Introduction to Boost.Regex and MFC Strings +Introduction to Boost.Regex and MFC Strings - + - - - + + + @@ -28,11 +24,11 @@

- The header <boost/regex/mfc.hpp> provides Boost.Regex support for + The header <boost/regex/mfc.hpp> provides Boost.Regex support for MFC string types: note that this support requires Visual Studio .NET (Visual C++ 7) or later, where all of the MFC and ATL string types are based around the CSimpleStringT class template. @@ -42,8 +38,7 @@ then you can substitute any of the following MFC/ATL types (all of which inherit from CSimpleStringT):

-
-CString
+
CString
 CStringA
 CStringW
 CAtlString
@@ -56,10 +51,11 @@
 
 
- +

+

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 beabcfcf..b6d5da8a 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 @@ -1,16 +1,13 @@ - - Iterating Over the Matches Within An MFC String +Iterating Over the Matches Within An MFC String - + - - - + + + @@ -27,20 +24,19 @@

The following helper functions are provided to ease the conversion from - an MFC/ATL string to a regex_iterator or regex_token_iterator: + an MFC/ATL string to a regex_iterator or regex_token_iterator:

-

- +

+ regex_iterator creation helper -
-
-template <class charT>
+          
+
template <class charT>
 regex_iterator<charT const*> 
    make_regex_iterator(
       const ATL::CSimpleStringT<charT>& s, 
@@ -48,15 +44,14 @@
       ::boost::regex_constants::match_flag_type f = boost::regex_constants::match_default);
 

- Effects: returns regex_iterator(s.GetString(), s.GetString() + s.GetLength(), + Effects: returns regex_iterator(s.GetString(), s.GetString() + s.GetLength(), e, - f); + f);

- Example: + Example:

-
-void enumerate_links(const CString& html)
+
void enumerate_links(const CString& html)
 {
    // enumerate and print all the  links in some HTML text,
    // the expression used is by Andew Lee on www.regxlib.com:
@@ -72,13 +67,12 @@
    }
 }
 
-

- +

+ regex_token_iterator creation helpers -
-
-template <class charT> 
+          
+
template <class charT> 
 regex_token_iterator<charT const*> 
    make_regex_token_iterator(
       const ATL::CSimpleStringT<charT>& s, 
@@ -87,13 +81,12 @@
       ::boost::regex_constants::match_flag_type f = boost::regex_constants::match_default);
 

- Effects: returns regex_token_iterator(s.GetString(), s.GetString() + s.GetLength(), + Effects: returns regex_token_iterator(s.GetString(), s.GetString() + s.GetLength(), e, sub, - f); + f);

-
-template <class charT> 
+
template <class charT> 
 regex_token_iterator<charT const*> 
    make_regex_token_iterator(
       const ATL::CSimpleStringT<charT>& s, 
@@ -102,13 +95,12 @@
       ::boost::regex_constants::match_flag_type f = boost::regex_constants::match_default);
 

- Effects: returns regex_token_iterator(s.GetString(), s.GetString() + s.GetLength(), + Effects: returns regex_token_iterator(s.GetString(), s.GetString() + s.GetLength(), e, subs, - f); + f);

-
-template <class charT, std::size_t N> 
+
template <class charT, std::size_t N> 
 regex_token_iterator<charT const*> 
    make_regex_token_iterator(
       const ATL::CSimpleStringT<charT>& s, 
@@ -117,16 +109,15 @@
       ::boost::regex_constants::match_flag_type f = boost::regex_constants::match_default);
 

- Effects: returns regex_token_iterator(s.GetString(), s.GetString() + s.GetLength(), + Effects: returns regex_token_iterator(s.GetString(), s.GetString() + s.GetLength(), e, subs, - f); + f);

- Example: + Example:

-
-void enumerate_links2(const CString& html)
+
void enumerate_links2(const CString& html)
 {
    // enumerate and print all the  links in some HTML text,
    // the expression used is by Andew Lee on www.regxlib.com:
@@ -145,10 +136,11 @@
 
 
- +

+

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 5c4f3b44..54484d18 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 @@ -1,17 +1,13 @@ - - Regular Expression Creation From an MFC String +Regular Expression Creation From an MFC String - + - - - + + + @@ -28,30 +24,30 @@

The following helper function is available to assist in the creation of a regular expression from an MFC/ATL string type:

-
-template <class charT>
+
template <class charT>
 basic_regex<charT> 
    make_regex(const ATL::CSimpleStringT<charT>& s, 
             ::boost::regex_constants::syntax_option_type f = boost::regex_constants::normal);
 

- Effects: returns basic_regex<charT>(s.GetString(), s.GetString() + s.GetLength(), - f); + Effects: returns basic_regex<charT>(s.GetString(), s.GetString() + s.GetLength(), + f);

- +

+

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 452240b8..cf126ab8 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 @@ -1,17 +1,13 @@ - - Regex Types Used With MFC Strings +Regex Types Used With MFC Strings - + - - - + + + @@ -28,31 +24,31 @@

The following typedefs are provided for the convenience of those working with TCHAR's:

-
-typedef basic_regex<TCHAR>                  tregex; 
+
typedef basic_regex<TCHAR>                  tregex; 
 typedef match_results<TCHAR const*>         tmatch; 
 typedef regex_iterator<TCHAR const*>        tregex_iterator; 
 typedef regex_token_iterator<TCHAR const*>  tregex_token_iterator; 
 

If you are working with explicitly narrow or wide characters rather than - TCHAR, then use the regular Boost.Regex types regex - and wregex instead. + TCHAR, then use the regular Boost.Regex types regex + and wregex instead.

- +

+

diff --git a/doc/html/boost_regex/ref/posix.html b/doc/html/boost_regex/ref/posix.html index 18acf970..6dd072af 100644 --- a/doc/html/boost_regex/ref/posix.html +++ b/doc/html/boost_regex/ref/posix.html @@ -1,14 +1,13 @@ - POSIX Compatible C API's +POSIX Compatible C API's - + - - - + + + @@ -25,13 +24,14 @@
-
[Note] Note

+

this is an abridged reference to the POSIX API functions, these are provided for compatibility with other libraries, rather than as an API to be used in new code (unless you need access from a language other than C++). This @@ -39,14 +39,12 @@ as the names used are macros that expand to the actual function names.

-
-#include <boost/cregex.hpp>
+
#include <boost/cregex.hpp>
 

or:

-
-#include <boost/regex.h>
+
#include <boost/regex.h>
 

The following functions are available for users who need a POSIX compatible @@ -59,9 +57,9 @@ [Important] Important -

- Note that all the symbols defined here are enclosed inside namespace boost when used in C++ programs, unless - you use #include <boost/regex.h> +

+ Note that all the symbols defined here are enclosed inside namespace boost when used in C++ programs, unless + you use #include <boost/regex.h> instead - in which case the symbols are still defined in namespace boost, but are made available in the global namespace as well.

@@ -69,8 +67,7 @@

The functions are defined as:

-
-extern "C" {
+
extern "C" {
 
 struct regex_tA;
 struct regex_tW;
@@ -125,13 +122,13 @@
 
 
               

- unsigned int - re_nsub + unsigned int + re_nsub

- This is filled in by regcomp + This is filled in by regcomp and indicates the number of sub-expressions contained in the regular expression.

@@ -140,7 +137,7 @@

- const TCHAR* re_endp + const TCHAR* re_endp

@@ -157,23 +154,23 @@ [Note] Note -

- regex_t is actually a - #define - it is either - regex_tA or regex_tW depending upon whether UNICODE is defined or not, TCHAR is either char - or wchar_t again depending - upon the macro UNICODE. +

+ regex_t is actually a + #define - it is either + regex_tA or regex_tW depending upon whether UNICODE is defined or not, TCHAR is either char + or wchar_t again depending + upon the macro UNICODE.

-

- +

+ regcomp -
+

- regcomp takes a pointer to - a regex_t, a pointer to the + regcomp takes a pointer to + a regex_t, a pointer to the expression to compile and a flags parameter which can be a combination of:

@@ -202,9 +199,9 @@ @@ -217,12 +214,12 @@ @@ -346,8 +343,8 @@ @@ -359,8 +356,8 @@ @@ -372,8 +369,8 @@ @@ -381,10 +378,10 @@

- Compiles modern regular expressions. Equivalent to regbase::char_classes | + Compiles modern regular expressions. Equivalent to regbase::char_classes | regbase::intervals | - regbase::bk_refs. + regbase::bk_refs.

Compiles basic (obsolete) regular expression syntax. Equivalent to - regbase::char_classes | + regbase::char_classes | regbase::intervals | regbase::limited_ops | regbase::bk_braces | regbase::bk_parens | - regbase::bk_refs. + regbase::bk_refs.

- A shortcut for awk-like behavior: REG_EXTENDED - | REG_ESCAPE_IN_LISTS + A shortcut for awk-like behavior: REG_EXTENDED + | REG_ESCAPE_IN_LISTS

- A shortcut for grep like behavior: REG_BASIC - | REG_NEWLINE_ALT + A shortcut for grep like behavior: REG_BASIC + | REG_NEWLINE_ALT

- A shortcut for egrep like behavior: REG_EXTENDED - | REG_NEWLINE_ALT + A shortcut for egrep like behavior: REG_EXTENDED + | REG_NEWLINE_ALT

-

- +

+ regerror -
+

regerror takes the following parameters, it maps an error code to a human readable string: @@ -469,10 +466,10 @@

-

- +

+ regexec -
+

regexec finds the first occurrence of expression e within string buf. If len is non-zero then *m is filled in with what matched @@ -539,21 +536,22 @@

-

- +

+ regfree -
+

- regfree frees all the memory + regfree frees all the memory that was allocated by regcomp.

- +

+

diff --git a/doc/html/boost_regex/ref/regex_iterator.html b/doc/html/boost_regex/ref/regex_iterator.html index 0939d550..8b7f7873 100644 --- a/doc/html/boost_regex/ref/regex_iterator.html +++ b/doc/html/boost_regex/ref/regex_iterator.html @@ -1,13 +1,13 @@ - regex_iterator +regex_iterator - + - - - + + + @@ -24,15 +24,15 @@

- The iterator type regex_iterator will enumerate all + The iterator type regex_iterator will enumerate all of the regular expression matches found in some sequence: dereferencing a - regex_iterator - yields a reference to a match_results object. + regex_iterator + yields a reference to a match_results object.

-
-template <class BidirectionalIterator, 
+
template <class BidirectionalIterator, 
          class charT = iterator_traits<BidirectionalIterator>::value_type,
          class traits = regex_traits<charT> >
 class regex_iterator 
@@ -77,39 +77,37 @@
                           const basic_regex<charT, traits>& e, 
                           regex_constants::match_flag_type m = regex_constants::match_default);
 
-

- +

+ Description -
+

- A regex_iterator + A regex_iterator 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. + 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);
 

- Effects: constructs a regex_iterator that will enumerate + Effects: constructs a regex_iterator that will enumerate all occurrences of the expression re, within the sequence - [a,b), and found using match_flag_type m. - The object re must exist for the lifetime of the regex_iterator. + [a,b), and found using match_flag_type m. + The object re must exist for the lifetime of the regex_iterator.

- Throws: std::runtime_error + Throws: std::runtime_error if the complexity of matching the expression against an N character string begins to exceed O(N2), or if the program runs out of stack space while matching the expression (if Boost.Regex is configured in recursive mode), or if the @@ -118,51 +116,46 @@

-
-regex_iterator(const regex_iterator& that);
+
regex_iterator(const regex_iterator& that);
 

- Effects: constructs a copy of that. + Effects: constructs a copy of that.

- Postconditions: *this == that. + Postconditions: *this == that.

-
-regex_iterator& operator=(const regex_iterator&);
+
regex_iterator& operator=(const regex_iterator&);
 

- Effects: sets *this equal to those in that. + Effects: sets *this equal to those in that.

- Postconditions: *this == that. + Postconditions: *this == that.

-
-bool operator==(const regex_iterator& that)const;
+
bool operator==(const regex_iterator& that)const;
 

- Effects: returns true if *this is equal + 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). + Effects: returns !(*this == that).

-
-const value_type& operator*()const;
+
const value_type& operator*()const;
 

- Effects: dereferencing a regex_iterator object it yields - a const reference to a match_results object, whose members + Effects: dereferencing a regex_iterator object it yields + a const reference to a match_results object, whose members are set as follows:

@@ -186,31 +179,31 @@

- (*it).size() + (*it).size()

- re.mark_count() + re.mark_count()

- (*it).empty() + (*it).empty()

- false + false

- (*it).prefix().first + (*it).prefix().first

@@ -223,44 +216,44 @@

- (*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

@@ -272,20 +265,20 @@

- (*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

@@ -298,7 +291,7 @@

- (*it)[0].second + (*it)[0].second

@@ -310,7 +303,7 @@

- (*it)[0].matched + (*it)[0].matched

@@ -323,12 +316,12 @@

- (*it)[n].first + (*it)[n].first

- For all integers n < (*it).size(), + 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. @@ -338,12 +331,12 @@

- (*it)[n].second + (*it)[n].second

- For all integers n < (*it).size(), + 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. @@ -353,12 +346,12 @@

- (*it)[n].matched + (*it)[n].matched

- For all integers n < (*it).size(), + For all integers n < (*it).size(), true if sub-expression n participated in the match, false otherwise.

@@ -367,12 +360,12 @@

- (*it).position(n) + (*it).position(n)

- For all integers n < (*it).size(), + For all integers n < (*it).size(), then the distance from the start of the underlying sequence to the start of sub-expression match n.

@@ -382,29 +375,27 @@

-
-const value_type* operator->()const;
+
const value_type* operator->()const;
 

- Effects: returns &(*this). + Effects: returns &(*this).

-
-regex_iterator& operator++();
+
regex_iterator& operator++();
 

- Effects: moves the iterator to the next + Effects: moves the iterator to the next match in the underlying sequence, or the end of sequence iterator if none if found. When the last match found matched a zero length string, then the - regex_iterator + regex_iterator will find the next match as follows: if there exists a non-zero length match that starts at the same location as the last one, then returns it, otherwise starts looking for the next (possibly zero length) match from one position to the right of the last match.

- Throws: std::runtime_error + Throws: std::runtime_error if the complexity of matching the expression against an N character string begins to exceed O(N2), or if the program runs out of stack space while matching the expression (if Boost.Regex is configured in recursive mode), or if the @@ -412,24 +403,22 @@ in non-recursive mode).

- Returns: *this. + Returns: *this.

-
-regex_iterator operator++(int);
+
regex_iterator operator++(int);
 

- Effects: constructs a copy result of *this, then - calls ++(*this). + Effects: constructs a copy result of *this, then + calls ++(*this).

- Returns: result. + 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); 
@@ -441,21 +430,20 @@
                      regex_constants::match_flag_type m = regex_constants::match_default);
 

- Effects: returns an iterator that enumerates + Effects: returns an iterator that enumerates all occurences of expression e in text p - using match_flag_type + using match_flag_type m.

-

- +

+ Examples -
+

The following example takes a C++ source file and builds up an index of class names, and the location of that class in the file.

-
-#include <string>
+
#include <string>
 #include <map>
 #include <fstream>
 #include <iostream>
@@ -549,10 +537,11 @@
 
- +

+

diff --git a/doc/html/boost_regex/ref/regex_match.html b/doc/html/boost_regex/ref/regex_match.html index 55bd6752..b5ef87d9 100644 --- a/doc/html/boost_regex/ref/regex_match.html +++ b/doc/html/boost_regex/ref/regex_match.html @@ -1,13 +1,13 @@ - regex_match +regex_match - + - - - + + + @@ -24,13 +24,13 @@
-
-#include <boost/regex.hpp> 
+ regex_match
+
+
#include <boost/regex.hpp> 
 

- The algorithm regex_match - determines whether a given regular expression matches all + The algorithm regex_match + determines whether a given regular expression matches all of a given character sequence denoted by a pair of bidirectional-iterators, the algorithm is defined as follows, the main use of this function is data input validation. @@ -40,15 +40,14 @@

-
[Important] Important

- Note that the result is true only if the expression matches the whole of the input sequence. If you want to search - for an expression somewhere within the sequence then use regex_search. If you want to match - a prefix of the character string then use regex_search with the flag match_continuous +

+ Note that the result is true only if the expression matches the whole of the input sequence. If you want to search + for an expression somewhere within the sequence then use regex_search. If you want to match + a prefix of the character string then use regex_search with the flag match_continuous set.

-
-template <class BidirectionalIterator, class Allocator, class charT, class traits>
+
template <class BidirectionalIterator, class Allocator, class charT, class traits>
 bool regex_match(BidirectionalIterator first, BidirectionalIterator last,
                  match_results<BidirectionalIterator, Allocator>& m,
                  const basic_regex <charT, traits>& e,
@@ -80,31 +79,30 @@
                  const basic_regex <charT, traits>& e,
                  match_flag_type flags = match_default);
 
-

- +

+ Description -
-
-template <class BidirectionalIterator, class Allocator, class charT, class traits>
+      
+
template <class BidirectionalIterator, class Allocator, class charT, class traits>
 bool regex_match(BidirectionalIterator first, BidirectionalIterator last,
                  match_results<BidirectionalIterator, Allocator>& m,
                  const basic_regex <charT, traits>& e,
                  match_flag_type flags = match_default);
 

- Requires: Type BidirectionalIterator meets + Requires: Type BidirectionalIterator meets the requirements of a Bidirectional Iterator (24.1.4).

- Effects: Determines whether there is an + Effects: Determines whether there is an exact match between the regular expression e, and all of the character sequence [first, last), parameter flags - (see match_flag_type) + (see match_flag_type) is used to control how the expression is matched against the character sequence. Returns true if such a match exists, false otherwise.

- Throws: std::runtime_error + Throws: std::runtime_error if the complexity of matching the expression against an N character string begins to exceed O(N2), or if the program runs out of stack space while matching the expression (if Boost.Regex is configured in recursive mode), or if the @@ -112,7 +110,7 @@ in non-recursive mode).

- Postconditions: If the function returns + Postconditions: If the function returns false, then the effect on parameter m is undefined, otherwise the effects on parameter m are given in the table: @@ -138,127 +136,127 @@

- 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

@@ -271,72 +269,69 @@

- m[n].first + m[n].first

- For all integers n < m.size(), the start of the sequence that + 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. + match, then last.

- m[n].second + m[n].second

- For all integers n < m.size(), the end of the sequence that matched + 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. + 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 + For all integers n < m.size(), true if sub-expression n participated in the match, false otherwise.

-
-template <class BidirectionalIterator, class charT, class traits>
+
template <class BidirectionalIterator, class charT, class traits>
 bool regex_match(BidirectionalIterator first, BidirectionalIterator last,
                const basic_regex <charT, traits>& e,
                match_flag_type flags = match_default);
 

- Effects: Behaves "as if" by constructing - an instance of match_results<BidirectionalIterator> what, - and then returning the result of regex_match(first, last, what, e, - flags). + Effects: Behaves "as if" by constructing + an instance of match_results<BidirectionalIterator> what, + and then returning the result of regex_match(first, last, what, e, + flags).

-
-template <class charT, class Allocator, class traits>
+
template <class charT, class Allocator, class traits>
 bool regex_match(const charT* str, match_results<const charT*, Allocator>& m,
                const basic_regex <charT, traits>& e,
                match_flag_type flags = match_default);
 

- Effects: Returns the result of regex_match(str, str + Effects: Returns the result of regex_match(str, str + char_traits<charT>::length(str), - m, e, flags). + m, e, flags).

-
-template <class ST, class SA, class Allocator,
+
template <class ST, class SA, class Allocator,
          class charT, class traits>
 bool regex_match(const basic_string<charT, ST, SA>& s,
                match_results<typename basic_string<charT, ST, SA>::const_iterator, Allocator>& m, 
@@ -344,37 +339,34 @@
                match_flag_type flags = match_default);
 

- Effects: Returns the result of regex_match(s.begin(), s.end(), m, e, flags). + Effects: Returns the result of regex_match(s.begin(), s.end(), m, e, flags).

-
-template <class charT, class traits>
+
template <class charT, class traits>
 bool regex_match(const charT* str,
                const basic_regex <charT, traits>& e,
                match_flag_type flags = match_default);
 

- Effects: Returns the result of regex_match(str, str + Effects: Returns the result of regex_match(str, str + char_traits<charT>::length(str), - e, flags). + e, flags).

-
-template <class ST, class SA, class charT, class traits>
+
template <class ST, class SA, class charT, class traits>
 bool regex_match(const basic_string<charT, ST, SA>& s,
                const basic_regex <charT, traits>& e,
                match_flag_type flags = match_default);
 

- Effects: Returns the result of regex_match(s.begin(), s.end(), e, flags). + Effects: Returns the result of regex_match(s.begin(), s.end(), e, flags).

-

- +

+ Examples -
+

The following example processes an ftp response:

-
-#include <stdlib.h> 
+
#include <stdlib.h> 
 #include <boost/regex.hpp> 
 #include <string> 
 #include <iostream> 
@@ -408,10 +400,11 @@
 
- +

+

diff --git a/doc/html/boost_regex/ref/regex_replace.html b/doc/html/boost_regex/ref/regex_replace.html index 5c47aaf3..a6a7beb7 100644 --- a/doc/html/boost_regex/ref/regex_replace.html +++ b/doc/html/boost_regex/ref/regex_replace.html @@ -1,13 +1,13 @@ - regex_replace +regex_replace - + - - - + + + @@ -24,22 +24,21 @@
-
-#include <boost/regex.hpp> 
+ regex_replace
+
+
#include <boost/regex.hpp> 
 

- The algorithm regex_replace searches through a + The algorithm regex_replace searches through a string finding all the matches to the regular expression: for each match - it then calls match_results<>::format to format the string and + it then calls match_results<>::format to format the string and sends the result to the output iterator. Sections of text that do not match are copied to the output unchanged only if the flags - parameter does not have the flag format_no_copy - set. If the flag format_first_only + 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 <class OutputIterator, class BidirectionalIterator, class traits, class charT>
+
template <class OutputIterator, class BidirectionalIterator, class traits, class charT>
 OutputIterator regex_replace(OutputIterator out,
                              BidirectionalIterator first,
                              BidirectionalIterator last,
@@ -53,12 +52,11 @@
                                   const basic_string<charT>& 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 charT>
 OutputIterator regex_replace(OutputIterator out,
                              BidirectionalIterator first,
                              BidirectionalIterator last,
@@ -73,84 +71,76 @@
         and copies the resulting string to out.
       

- If the flag format_no_copy + If the flag format_no_copy is set in flags then unmatched sections of text are not copied to output.

- If the flag format_first_only + If the flag format_first_only is set in flags then only the first occurence of e is replaced.

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. + set in flags: see match_flag_type.

- Effects: Constructs an regex_iterator object: + Effects: Constructs an regex_iterator object:

-
-regex_iterator<BidirectionalIterator, charT, traits, Allocator> 
+
regex_iterator<BidirectionalIterator, charT, traits, Allocator> 
                                           i(first, last, e, flags), 
 

and uses i to enumerate through all of the matches - m of type match_results <BidirectionalIterator> + m of type match_results <BidirectionalIterator> that occur within the sequence [first, last).

If no such matches are found and

-
-!(flags & format_no_copy) 
+
!(flags & format_no_copy) 
 

then calls

-
-std::copy(first, last, out). 
+
std::copy(first, last, out). 
 

Otherwise, for each match found, if

-
-!(flags & format_no_copy) 
+
!(flags & format_no_copy) 
 

calls

-
-std::copy(m.prefix().first, m.prefix().last, out), 
+
std::copy(m.prefix().first, m.prefix().last, out), 
 

and then calls

-
-m.format(out, fmt, flags). 
+
m.format(out, fmt, flags). 
 

Finally if

-
-!(flags & format_no_copy) 
+
!(flags & format_no_copy) 
 

calls

-
-std::copy(last_m.suffix().first, last_m,suffix().last, out) 
+
std::copy(last_m.suffix().first, last_m,suffix().last, out) 
 

where last_m is a copy of the last match found.

- If flags & - format_first_only is non-zero then + If flags & + format_first_only is non-zero then only the first match found is replaced.

- Throws: std::runtime_error + Throws: std::runtime_error if the complexity of matching the expression against an N character string begins to exceed O(N2), or if the program runs out of stack space while matching the expression (if Boost.Regex is configured in recursive mode), or if the @@ -158,31 +148,29 @@ in non-recursive mode).

- Returns: out. + Returns: out.

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

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

-

- +

+ Examples -
+

The following example takes C/C++ source code as input, and outputs syntax highlighted HTML code.

-
-#include <fstream>
+
#include <fstream>
 #include <sstream>
 #include <string>
 #include <iterator>
@@ -294,10 +282,11 @@
 
 
- +

+

diff --git a/doc/html/boost_regex/ref/regex_search.html b/doc/html/boost_regex/ref/regex_search.html index 196ac687..e4230a2a 100644 --- a/doc/html/boost_regex/ref/regex_search.html +++ b/doc/html/boost_regex/ref/regex_search.html @@ -1,13 +1,13 @@ - regex_search +regex_search - + - - - + + + @@ -24,19 +24,18 @@
-
-#include <boost/regex.hpp> 
+ regex_search
+
+
#include <boost/regex.hpp> 
 

- The algorithm regex_search will search a range + The algorithm regex_search will search a range denoted by a pair of bidirectional-iterators for a given regular expression. The algorithm uses various heuristics to reduce the search time by only checking for a match if a match could conceivably start at that position. The algorithm is defined as follows:

-
-template <class BidirectionalIterator, 
+
template <class BidirectionalIterator, 
          class Allocator, class charT, class traits>
 bool regex_search(BidirectionalIterator first, BidirectionalIterator last,
                   match_results<BidirectionalIterator, Allocator>& m,
@@ -73,30 +72,29 @@
                   const basic_regex<charT, traits>& e,
                   match_flag_type flags = match_default);
 
-

- +

+ Description -
-
-template <class BidirectionalIterator, class Allocator, class charT, class traits>
+      
+
template <class BidirectionalIterator, class Allocator, class charT, class traits>
 bool regex_search(BidirectionalIterator first, BidirectionalIterator last,
                   match_results<BidirectionalIterator, Allocator>& m,
                   const basic_regex<charT, traits>& e,
                   match_flag_type flags = match_default);
 

- Requires: Type BidirectionalIterator meets + Requires: Type BidirectionalIterator meets the requirements of a Bidirectional Iterator (24.1.4).

- Effects: Determines whether there is some + Effects: Determines whether there is some sub-sequence within [first,last) that matches the regular expression e, parameter flags is used to control how the expression is matched against the character sequence. Returns true if such a sequence exists, false otherwise.

- Throws: std::runtime_error + Throws: std::runtime_error if the complexity of matching the expression against an N character string begins to exceed O(N2), or if the program runs out of stack space while matching the expression (if Boost.Regex is configured in recursive mode), or if the @@ -104,7 +102,7 @@ in non-recursive mode).

- Postconditions: If the function returns + Postconditions: If the function returns false, then the effect on parameter m is undefined, otherwise the effects on parameter m are given in the table: @@ -130,105 +128,105 @@

- 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

@@ -241,7 +239,7 @@

- m[0].second + m[0].second

@@ -253,7 +251,7 @@

- m[0].matched + m[0].matched

@@ -266,12 +264,12 @@

- m[n].first + m[n].first

- For all integers n < m.size(), the start of the sequence that + 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. @@ -281,45 +279,43 @@

- m[n].second + m[n].second

- For all integers n < m.size(), the end of the sequence that matched + 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. + 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 + For all integers n < m.size(), true if sub-expression n participated in the match, false otherwise.

-
-template <class charT, class Allocator, class traits>
+
template <class charT, class Allocator, class traits>
 bool regex_search(const charT* str, match_results<const charT*, Allocator>& m,
                   const basic_regex<charT, traits>& e,
                   match_flag_type flags = match_default);
 

- Effects: Returns the result of regex_search(str, str + Effects: Returns the result of regex_search(str, str + char_traits<charT>::length(str), - m, e, flags). + m, e, flags).

-
-template <class ST, class SA, class Allocator, class charT,
+
template <class ST, class SA, class Allocator, class charT,
          class traits>
 bool regex_search(const basic_string<charT, ST, SA>& s,
                   match_results<typename basic_string<charT, ST, SA>::const_iterator, Allocator>& m,
@@ -327,53 +323,49 @@
                   match_flag_type flags = match_default);
 

- Effects: Returns the result of regex_search(s.begin(), s.end(), m, e, flags). + Effects: Returns the result of regex_search(s.begin(), s.end(), m, e, flags).

-
-template <class iterator, class charT, class traits>
+
template <class iterator, class charT, class traits>
 bool regex_search(iterator first, iterator last,
                   const basic_regex<charT, traits>& e,
                   match_flag_type flags = match_default);
 

- Effects: Behaves "as if" by constructing - an instance of match_results<BidirectionalIterator> what, - and then returning the result of regex_search(first, last, what, e, - flags). + Effects: Behaves "as if" by constructing + an instance of match_results<BidirectionalIterator> what, + and then returning the result of regex_search(first, last, what, e, + flags).

-
-template <class charT, class traits>
+
template <class charT, class traits>
 bool regex_search(const charT* str
                   const basic_regex<charT, traits>& e,
                   match_flag_type flags = match_default);
 

- Effects: Returns the result of regex_search(str, str + Effects: Returns the result of regex_search(str, str + char_traits<charT>::length(str), - e, flags). + e, flags).

-
-template <class ST, class SA, class charT, class traits>
+
template <class ST, class SA, class charT, class traits>
 bool regex_search(const basic_string<charT, ST, SA>& s,
                   const basic_regex<charT, traits>& e,
                   match_flag_type flags = match_default);
 

- Effects: Returns the result of regex_search(s.begin(), s.end(), e, flags). + Effects: Returns the result of regex_search(s.begin(), s.end(), e, flags).

-

- +

+ Examples -
+

The following example, takes the contents of a file in the form of a string, and searches for all the C++ class declarations in the file. The code will - work regardless of the way that std::string + work regardless of the way that std::string is implemented, for example it could easily be modified to work with the SGI rope class, which uses a non-contiguous storage strategy.

-
-#include <string> 
+
#include <string> 
 #include <map> 
 #include <boost/regex.hpp> 
 
@@ -417,10 +409,11 @@
 
- +

+

diff --git a/doc/html/boost_regex/ref/regex_token_iterator.html b/doc/html/boost_regex/ref/regex_token_iterator.html index 292ff6b0..350c527b 100644 --- a/doc/html/boost_regex/ref/regex_token_iterator.html +++ b/doc/html/boost_regex/ref/regex_token_iterator.html @@ -1,13 +1,13 @@ - regex_token_iterator +regex_token_iterator - + - - - + + + @@ -24,22 +24,22 @@

- The template class regex_token_iterator is an iterator + The template class regex_token_iterator is an iterator adapter; that is to say it represents a new view of an existing iterator sequence, by enumerating all the occurrences of a regular expression within that sequence, and presenting one or more character sequence for each match - found. Each position enumerated by the iterator is a sub_match object that represents + found. Each position enumerated by the iterator is a sub_match object that represents what matched a particular sub-expression within the regular expression. When - class regex_token_iterator is used to + class regex_token_iterator is used to enumerate a single sub-expression with index -1, then the iterator performs field splitting: that is to say it enumerates one character sequence for each section of the character container sequence that does not match the regular expression specified.

-
-template <class BidirectionalIterator, 
+
template <class BidirectionalIterator, 
          class charT = iterator_traits<BidirectionalIterator>::value_type,
          class traits = regex_traits<charT> >
 class regex_token_iterator 
@@ -135,43 +135,41 @@
          const std::vector<int>& submatch, 
          regex_constants::match_flag_type m = regex_constants::match_default);
 
-

- +

+ Description -
+

-
-regex_token_iterator();
+
regex_token_iterator();
 

- Effects: constructs an end of sequence 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, 
                      match_flag_type m = match_default);
 

- Preconditions: !re.empty(). Object re shall exist + Preconditions: !re.empty(). Object re shall exist for the lifetime of the iterator constructed from it.

- Effects: constructs a regex_token_iterator that will enumerate + Effects: constructs a regex_token_iterator that will enumerate one string for each regular expression match of the expression re found within the sequence [a,b), using match flags m - (see match_flag_type). + (see match_flag_type). The string enumerated is the sub-expression submatch for each match found; if submatch is -1, then enumerates all the text sequences that did not match the expression re (that is to performs field splitting).

- Throws: std::runtime_error + Throws: std::runtime_error if the complexity of matching the expression against an N character string begins to exceed O(N2), or if the program runs out of stack space while matching the expression (if Boost.Regex is configured in recursive mode), or if the @@ -180,33 +178,32 @@

-
-regex_token_iterator(BidirectionalIterator a, 
+
regex_token_iterator(BidirectionalIterator a, 
                      BidirectionalIterator b, 
                      const regex_type& re, 
                      const std::vector<int>& submatches, 
                      match_flag_type m = match_default);
 

- Preconditions: submatches.size() - && !re.empty(). Object re shall exist + Preconditions: submatches.size() + && !re.empty(). Object re shall exist for the lifetime of the iterator constructed from it.

- Effects: constructs a regex_token_iterator that will enumerate - submatches.size() + Effects: constructs a regex_token_iterator that will enumerate + submatches.size() strings for each regular expression match of the expression re found within the sequence [a,b), using match flags m - (see match_flag_type). + (see match_flag_type). For each match found one string will be enumerated for each sub-expression - index contained within submatches vector; if submatches[0] + index contained within submatches vector; if submatches[0] is -1, then the first string enumerated for each match will be all of the text from end of the last match to the start of the current match, in addition there will be one extra string enumerated when no more matches can be found: from the end of the last match found, to the end of the underlying sequence.

- Throws: std::runtime_error + Throws: std::runtime_error if the complexity of matching the expression against an N character string begins to exceed O(N2), or if the program runs out of stack space while matching the expression (if Boost.Regex is configured in recursive mode), or if the @@ -215,8 +212,7 @@

-
-template <std::size_t N>
+
template <std::size_t N>
 regex_token_iterator(BidirectionalIterator a, 
                      BidirectionalIterator b, 
                      const regex_type& re, 
@@ -224,23 +220,23 @@
                      match_flag_type m = match_default);
 

- Preconditions: !re.empty(). Object re shall exist + Preconditions: !re.empty(). Object re shall exist for the lifetime of the iterator constructed from it.

- Effects: constructs a regex_token_iterator that will enumerate + Effects: constructs a regex_token_iterator that will enumerate R strings for each regular expression match of the expression re found within the sequence [a,b), using match flags - m (see match_flag_type). For each match + m (see match_flag_type). For each match found one string will be enumerated for each sub-expression index contained - within the submatches array; if submatches[0] + within the submatches array; if submatches[0] is -1, then the first string enumerated for each match will be all of the text from end of the last match to the start of the current match, in addition there will be one extra string enumerated when no more matches can be found: from the end of the last match found, to the end of the underlying sequence.

- Throws: std::runtime_error + Throws: std::runtime_error if the complexity of matching the expression against an N character string begins to exceed O(N2), or if the program runs out of stack space while matching the expression (if Boost.Regex is configured in recursive mode), or if the @@ -249,70 +245,63 @@

-
-regex_token_iterator(const regex_token_iterator& that);
+
regex_token_iterator(const regex_token_iterator& that);
 

- Effects: constructs a copy of that. + Effects: constructs a copy of that.

- Postconditions: *this == that. + 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. + Effects: sets *this to be equal to that.

- Postconditions: *this == that. + 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. + 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). + Effects: returns !(*this == that).

-
-const value_type& operator*()const;
+
const value_type& operator*()const;
 

- Effects: returns the current character sequence + Effects: returns the current character sequence being enumerated.

-
-const value_type* operator->()const;
+
const value_type* operator->()const;
 

- Effects: returns &(*this). + Effects: returns &(*this).

-
-regex_token_iterator& operator++();
+
regex_token_iterator& operator++();
 

- Effects: Moves on to the next character + Effects: Moves on to the next character sequence to be enumerated.

- Throws: std::runtime_error + Throws: std::runtime_error if the complexity of matching the expression against an N character string begins to exceed O(N2), or if the program runs out of stack space while matching the expression (if Boost.Regex is configured in recursive mode), or if the @@ -320,24 +309,22 @@ in non-recursive mode).

- Returns: *this. + Returns: *this.

-
-regex_token_iterator& operator++(int);
+
regex_token_iterator& operator++(int);
 

- Effects: constructs a copy result of *this, then - calls ++(*this). + Effects: constructs a copy result of *this, then + calls ++(*this).

- Returns: result. + 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, 
@@ -388,22 +375,21 @@
          regex_constants::match_flag_type m = regex_constants::match_default);
 

- Effects: returns a regex_token_iterator that enumerates - one sub_match + Effects: returns a regex_token_iterator that enumerates + one sub_match for each value in submatch for each occurrence of regular expression e in string p, matched - using match_flag_type + using match_flag_type m.

-

- +

+ Examples -
+

The following example takes a string and splits it into a series of tokens:

-
-#include <iostream>
+
#include <iostream>
 #include <boost/regex.hpp>
 
 using namespace std;
@@ -441,8 +427,7 @@
         The following example takes a html file and outputs a list of all the linked
         files:
       

-
-#include <fstream>
+
#include <fstream>
 #include <iostream>
 #include <iterator>
 #include <boost/regex.hpp>
@@ -511,10 +496,11 @@
 
 
- +

+

diff --git a/doc/html/boost_regex/ref/regex_traits.html b/doc/html/boost_regex/ref/regex_traits.html index f358fb18..8f7507c8 100644 --- a/doc/html/boost_regex/ref/regex_traits.html +++ b/doc/html/boost_regex/ref/regex_traits.html @@ -1,14 +1,13 @@ - regex_traits +regex_traits - + - - - + + + @@ -25,9 +24,9 @@
-
-namespace boost{
+ regex_traits
+
+
namespace boost{
 
 template <class charT, class implementationT = sensible_default_choice>
 struct regex_traits : public implementationT
@@ -39,35 +38,35 @@
 struct c_regex_traits;
 
 template <class charT>
-struct cpp_regex_traits;
+class cpp_regex_traits;
 
 template <class charT>
-struct w32_regex_traits;
+class w32_regex_traits;
 
 } // namespace boost
 
-

- +

+ Description -
+

- The class regex_traits is + The class regex_traits is just a thin wrapper around an actual implemention class, which may be one of:

  • -c_regex_traits: this class +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 +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 +w32_regex_traits: the default traits class implementation on Win32 platforms, allows the regex class to be imbued with an LCID.
  • @@ -78,26 +77,26 @@

    • - BOOST_REGEX_USE_C_LOCALE: makes c_regex_traits + BOOST_REGEX_USE_C_LOCALE: makes c_regex_traits the default.
    • - BOOST_REGEX_USE_CPP_LOCALE: makes cpp_regex_traits + BOOST_REGEX_USE_CPP_LOCALE: makes cpp_regex_traits the default.

    - All these traits classes fulfil the traits + All these traits classes fulfil the traits class requirements.

- +

+

diff --git a/doc/html/boost_regex/ref/sub_match.html b/doc/html/boost_regex/ref/sub_match.html index 25d88d03..e2b5ea60 100644 --- a/doc/html/boost_regex/ref/sub_match.html +++ b/doc/html/boost_regex/ref/sub_match.html @@ -1,13 +1,13 @@ - sub_match +sub_match - + - - - + + + @@ -24,38 +24,38 @@
-
-#include <boost/regex.hpp>
+ sub_match
+
+
#include <boost/regex.hpp>
 

Regular expressions are different from many simple pattern-matching algorithms in that as well as finding an overall match they can also produce sub-expression matches: each sub-expression being delimited in the pattern by a pair of parenthesis (...). There has to be some method for reporting sub-expression - matches back to the user: this is achieved this by defining a class match_results + matches back to the user: this is achieved this by defining a class match_results that acts as an indexed collection of sub-expression matches, each sub-expression - match being contained in an object of type sub_match. + match being contained in an object of type sub_match.

- Objects of type sub_match - may only be obtained by subscripting an object of type match_results. + Objects of type sub_match + may only be obtained by subscripting an object of type match_results.

- Objects of type sub_match - may be compared to objects of type std::basic_string, - or const charT* or const - charT. + Objects of type sub_match + may be compared to objects of type std::basic_string, + or const charT* or const + charT.

- Objects of type sub_match - may be added to objects of type std::basic_string, - or const charT* or const - charT, to produce a new std::basic_string + Objects of type sub_match + may be added to objects of type std::basic_string, + or const charT* or const + charT, to produce a new std::basic_string object.

- When the marked sub-expression denoted by an object of type sub_match participated in a regular + When the marked sub-expression denoted by an object of type sub_match participated in a regular expression match then member matched evaluates to true, and members first and second denote the range of characters [first,second) which formed that match. Otherwise @@ -64,25 +64,24 @@ values.

- When the marked sub-expression denoted by an object of type sub_match was repeated, then the - sub_match + When the marked sub-expression denoted by an object of type sub_match was repeated, then the + sub_match object represents the match obtained by the last repeat. The complete set of all the captures obtained for all the repeats, may be accessed via the captures() member function (Note: this has serious performance implications, you have to explicitly enable this feature).

- If an object of type sub_match represents sub-expression + If an object of type sub_match represents sub-expression 0 - that is to say the whole match - then member matched - is always true, unless a partial - match was obtained as a result of the flag match_partial + is always true, unless a partial + match was obtained as a result of the flag match_partial being passed to a regular expression algorithm, in which case member matched is false, and members first and second represent the character range that formed the partial match.

-
-namespace boost{
+
namespace boost{
 
 template <class BidirectionalIterator>
 class sub_match;
@@ -329,58 +328,52 @@
 
 } // namespace boost
 
-

- +

+ Description -
-
- - Members
+
+ + 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 @@ -388,88 +381,80 @@

-
-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). + 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>()). + 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 - of *this: - (matched - ? basic_string<value_type>(first, second) : basic_string<value_type>()). + Effects: returns a string representation + of *this: + (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()). + 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). + 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). + 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 a standard library Sequence (21.1.1 including the optional Table 68 operations), - whose value_type is a sub_match<BidirectionalIterator>. This type happens to be std::vector<sub_match<BidirectionalIterator> >, + 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 + Effects: returns a sequence containing all the captures obtained for this sub-expression.

- Preconditions: the library must be built + Preconditions: the library must be built and used with BOOST_REGEX_MATCH_EXTRA defined, and you must pass the flag - match_extra to the regex - matching functions ( regex_match, regex_search, regex_iterator or regex_token_iterator) in order for + match_extra to the regex + matching functions ( regex_match, regex_search, regex_iterator or regex_token_iterator) in order for this member #function to be defined and return useful information.

- Rationale: Enabling this feature has several + Rationale: Enabling this feature has several consequences:

    @@ -487,506 +472,463 @@ 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);
 

- Effects: returns lhs.compare(rhs) - == 0. + Effects: returns lhs.compare(rhs) + == 0.

-
-template <class BidirectionalIterator>
+
template <class BidirectionalIterator>
 bool operator != (const sub_match<BidirectionalIterator>& lhs,
                   const sub_match<BidirectionalIterator>& rhs);
 

- Effects: returns lhs.compare(rhs) - != 0. + Effects: returns lhs.compare(rhs) + != 0.

-
-template <class BidirectionalIterator>
+
template <class BidirectionalIterator>
 bool operator < (const sub_match<BidirectionalIterator>& lhs,
                const sub_match<BidirectionalIterator>& rhs);
 

- Effects: returns lhs.compare(rhs) - < 0. + Effects: returns lhs.compare(rhs) + < 0.

-
-template <class BidirectionalIterator>
+
template <class BidirectionalIterator>
 bool operator <= (const sub_match<BidirectionalIterator>& lhs,
                   const sub_match<BidirectionalIterator>& rhs);
 

- Effects: returns lhs.compare(rhs) - <= 0. + Effects: returns lhs.compare(rhs) + <= 0.

-
-template <class BidirectionalIterator>
+
template <class BidirectionalIterator>
 bool operator >= (const sub_match<BidirectionalIterator>& lhs,
                   const sub_match<BidirectionalIterator>& rhs);
 

- Effects: returns lhs.compare(rhs) - >= 0. + Effects: returns lhs.compare(rhs) + >= 0.

-
-template <class BidirectionalIterator>
+
template <class BidirectionalIterator>
 bool operator > (const sub_match<BidirectionalIterator>& lhs,
                const sub_match<BidirectionalIterator>& rhs);
 

- Effects: returns lhs.compare(rhs) - > 0. + 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, 
                   const sub_match<BidirectionalIterator>& rhs);
 

- Effects: returns lhs - == rhs.str(). + 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,
                   const sub_match<BidirectionalIterator>& rhs);
 

- Effects: returns lhs - != rhs.str(). + 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,
                  const sub_match<BidirectionalIterator>& rhs);
 

- Effects: returns lhs - < rhs.str(). + 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,
                  const sub_match<BidirectionalIterator>& rhs);
 

- Effects: returns lhs - > rhs.str(). + 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,
                   const sub_match<BidirectionalIterator>& rhs);
 

- Effects: returns lhs - >= rhs.str(). + 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,
                   const sub_match<BidirectionalIterator>& rhs);
 

- Effects: returns lhs - <= rhs.str(). + 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, 
                                           Allocator>& rhs);
 

- Effects: returns lhs.str() - == rhs. + 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, 
                                           Allocator>& rhs);
 

- Effects: returns lhs.str() - != rhs. + 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, 
                                        Allocator>& rhs);
 

- Effects: returns lhs.str() - < rhs. + 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, 
                                          Allocator>& rhs);
 

- Effects: returns lhs.str() - > rhs. + 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, 
                                           Allocator>& rhs);
 

- Effects: returns lhs.str() - >= rhs. + 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, 
                                           Allocator>& rhs);
 

- Effects: returns lhs.str() - <= rhs. + 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); 
 

- Effects: returns lhs - == rhs.str(). + 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); 
 

- Effects: returns lhs - != rhs.str(). + 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); 
 

- Effects: returns lhs - < rhs.str(). + 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); 
 

- Effects: returns lhs - > rhs.str(). + 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); 
 

- Effects: returns lhs - >= rhs.str(). + 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); 
 

- Effects: returns lhs - <= rhs.str(). + 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); 
 

- Effects: returns lhs.str() - == rhs. + 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); 
 

- Effects: returns lhs.str() - != rhs. + 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); 
 

- Effects: returns lhs.str() - < rhs. + 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); 
 

- Effects: returns lhs.str() - > rhs. + 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); 
 

- Effects: returns lhs.str() - >= rhs. + 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); 
 

- Effects: returns lhs.str() - <= rhs. + 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); 
 

- Effects: returns lhs - == rhs.str(). + 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); 
 

- Effects: returns lhs - != rhs.str(). + 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); 
 

- Effects: returns lhs - < rhs.str(). + 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); 
 

- Effects: returns lhs - > rhs.str(). + 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); 
 

- Effects: returns lhs - >= rhs.str(). + 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); 
 

- Effects: returns lhs - <= rhs.str(). + 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); 
 

- Effects: returns lhs.str() - == rhs. + 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); 
 

- Effects: returns lhs.str() - != rhs. + 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); 
 

- Effects: returns lhs.str() - < rhs. + 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); 
 

- Effects: returns lhs.str() - > rhs. + 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); 
 

- Effects: returns lhs.str() - >= rhs. + 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); 
 

- Effects: returns lhs.str() - <= rhs. + Effects: returns lhs.str() + <= rhs.

- The addition operators for sub_match allow you to add a sub_match - to any type to which you can add a std::string + The addition operators for sub_match allow you to add a sub_match + 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, 
@@ -994,13 +936,12 @@
                const sub_match<BidirectionalIterator>& m); 
 

- Effects: returns s - + m.str(). + 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, 
@@ -1008,91 +949,86 @@
                                        Allocator>& s); 
 

- Effects: returns m.str() - + s. + 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); 
 

- Effects: returns s - + m.str(). + 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);
 

- Effects: returns m.str() - + s. + 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); 
 

- Effects: returns s - + m.str(). + 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); 
 

- Effects: returns m.str() - + s. + 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);
 

- Effects: returns m1.str() - + m2.str(). + Effects: returns m1.str() + + 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);
 

- Effects: returns (os << m.str()). + Effects: returns (os << m.str()).

- +

+

diff --git a/doc/html/boost_regex/ref/syntax_option_type.html b/doc/html/boost_regex/ref/syntax_option_type.html index 9a4e4ab1..1b85cd92 100644 --- a/doc/html/boost_regex/ref/syntax_option_type.html +++ b/doc/html/boost_regex/ref/syntax_option_type.html @@ -1,14 +1,13 @@ - syntax_option_type +syntax_option_type - + - - - + + + @@ -25,7 +24,8 @@
syntax_option_type Synopsis
@@ -43,10 +43,11 @@
- +

+

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 6a93eee2..ebf60a22 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 @@ -1,16 +1,13 @@ - - Options for POSIX Basic Regular Expressions +Options for POSIX Basic Regular Expressions - + - - - + + + @@ -27,9 +24,9 @@

Exactly one of the following must always be set for POSIX basic regular expressions: @@ -72,8 +69,7 @@

@@ -205,7 +199,7 @@

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. + in the supplied match_results structure.

@@ -243,9 +237,8 @@ @@ -265,7 +258,7 @@

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. + of alternatives. This bit is already set, if you use the grep option.

@@ -282,7 +275,7 @@ @@ -301,9 +294,8 @@ @@ -358,7 +350,7 @@ @@ -376,7 +368,7 @@ @@ -386,10 +378,11 @@

Specifies that the grammar recognized by the regular expression - engine is the same as that used by POSIX + 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). @@ -111,13 +107,12 @@

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, + 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 + 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. @@ -137,8 +132,7 @@

- Specifies that the grammar recognised is the superset of the POSIX-Basic syntax + Specifies that the grammar recognised is the superset of the POSIX-Basic syntax used by the emacs program.

- Specifies that character ranges of the form [a-b] - should be locale sensitive. This bit is on by default for POSIX-Basic regular expressions, + 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.

- When set then character classes such as [[:alnum:]] + When set then character classes such as [[:alnum:]] are not allowed.

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 + 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.

@@ -339,8 +331,8 @@

- When set then \? acts - as a zero-or-one repeat operator, and \+ + When set then \? acts + as a zero-or-one repeat operator, and \+ acts as a one-or-more repeat operator.

- When set then \| acts + When set then \| acts as the alternation operator.

- Prevents basic_regex from throwing + Prevents basic_regex from throwing an exception when an invalid expression is encountered.

- +

+

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 9c11ca00..40b26c30 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 @@ -1,16 +1,13 @@ - - Options for POSIX Extended Regular Expressions +Options for POSIX Extended Regular Expressions - + - - - + + + @@ -27,12 +24,11 @@

- Exactly one of the following must always be set for POSIX + Exactly one of the following must always be set for POSIX extended regular expressions:

@@ -79,8 +75,7 @@ (FWD.1).

- Refer to the POSIX + Refer to the POSIX extended regular expression guide for more information.

@@ -111,8 +106,7 @@ grep (FWD.1).

- That is to say, the same as POSIX + That is to say, the same as POSIX extended syntax, but with the newline character acting as an alternation character in addition to "|".

@@ -137,8 +131,7 @@ and Utilities, Section 4, awk (FWD.1).

- That is to say: the same as POSIX + That is to say: the same as POSIX extended syntax, but with escape sequences in character classes permitted.

@@ -214,7 +207,7 @@

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. + in the supplied match_results structure.

@@ -252,7 +245,7 @@ @@ -340,10 +333,11 @@

- Specifies that character ranges of the form [a-b] + 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. @@ -292,7 +285,7 @@

When set this makes the escape character ordinary inside lists, - so that [\b] would match either '\' or 'b'. + 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.

@@ -330,7 +323,7 @@

- Prevents basic_regex from throwing + Prevents basic_regex from throwing an exception when an invalid expression is encountered.

- +

+

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 7e1ad83c..33b0e5b9 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 @@ -1,15 +1,13 @@ - - Options for Literal Strings +Options for Literal Strings - + - - - + + + @@ -26,9 +24,9 @@

The following must always be set to interpret the expression as a string literal: @@ -145,10 +143,11 @@

- +

+

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 e8d09cca..824e23a4 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 @@ -1,16 +1,13 @@ - - Overview of syntax_option_type +Overview of syntax_option_type - + - - - + + + @@ -27,38 +24,35 @@

- The type syntax_option_type is an implementation + The type syntax_option_type is an implementation specific bitmask type (see C++ standard 17.3.2.1.2). Setting its elements - has the effects listed in the table below, a valid value of type syntax_option_type - will always have exactly one of the elements normal, - basic, extended, - awk, grep, - egrep, sed, - literal or perl set. + has the effects listed in the table below, a valid value of type syntax_option_type + will always have exactly one of the elements normal, + basic, extended, + awk, grep, + egrep, sed, + literal or perl set.

Note that for convenience all the constants listed here are duplicated - within the scope of class template basic_regex, so you can use any + within the scope of class template basic_regex, so you can use any of:

-
-boost::regex_constants::constant_name
+
boost::regex_constants::constant_name
 

or

-
-boost::regex::constant_name
+
boost::regex::constant_name
 

or

-
-boost::wregex::constant_name
+
boost::wregex::constant_name
 

in an interchangeable manner. @@ -66,10 +60,11 @@

- +

+

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 36fea83b..31a70ec9 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 @@ -1,16 +1,13 @@ - - Options for Perl Regular Expressions +Options for Perl Regular Expressions - + - - - + + + @@ -27,9 +24,9 @@

One of the following must always be set for perl regular expressions:

@@ -76,12 +73,11 @@ part 10, RegExp (Regular Expression) Objects (FWD.1).

- This is functionally identical to the Perl + This is functionally identical to the Perl regular expression syntax.

- Boost.Regex also recognizes all of the perl-compatible (?...) extensions in this mode. + Boost.Regex also recognizes all of the perl-compatible (?...) extensions in this mode.

@@ -215,7 +211,7 @@

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. + in the supplied match_results structure.

@@ -253,7 +249,7 @@ @@ -290,7 +286,7 @@ @@ -329,9 +325,9 @@ @@ -350,9 +346,9 @@ @@ -380,10 +376,11 @@

- Specifies that character ranges of the form [a-b] + Specifies that character ranges of the form [a-b] should be locale sensitive.

- Prevents basic_regex from throwing + Prevents basic_regex from throwing an exception when an invalid expression is encountered.

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 + 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 "." - to match a newline character regardless of whether match_not_dot_newline is set + 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.

- +

+

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 40e6d61f..099bab6f 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 @@ -1,15 +1,13 @@ - - syntax_option_type Synopsis +syntax_option_type Synopsis - + - - - + + + @@ -26,18 +24,17 @@

- Type syntax_option_type + Type syntax_option_type is an implementation specific bitmask type that controls how a regular expression string is to be interpreted. For convenience note that all the constants listed here, are also duplicated within the scope of class template - basic_regex. + basic_regex.

-
-namespace std{ namespace regex_constants{
+
namespace std{ namespace regex_constants{
 
 typedef implementation-specific-bitmask-type syntax_option_type;
 
@@ -65,10 +62,11 @@
 
 
- +

+

diff --git a/doc/html/boost_regex/syntax.html b/doc/html/boost_regex/syntax.html index df1cc1bc..14a2b9bc 100644 --- a/doc/html/boost_regex/syntax.html +++ b/doc/html/boost_regex/syntax.html @@ -1,14 +1,13 @@ - Regular Expression Syntax +Regular Expression Syntax - + - - + + @@ -25,7 +24,8 @@
Perl Regular Expression Syntax
@@ -63,18 +63,15 @@

@@ -82,25 +79,14 @@ You can also construct a regular expression that treats every character as a literal, but that's not really a "syntax"!

-

-

-

-

-

-

-

-

-

-

-

-

- +

+

diff --git a/doc/html/boost_regex/syntax/basic_extended.html b/doc/html/boost_regex/syntax/basic_extended.html index ba068602..e5287248 100644 --- a/doc/html/boost_regex/syntax/basic_extended.html +++ b/doc/html/boost_regex/syntax/basic_extended.html @@ -1,16 +1,13 @@ - POSIX Extended Regular - Expression Syntax +POSIX Extended Regular Expression Syntax - + - - - + + + @@ -27,60 +24,59 @@ +

+ Synopsis -

+

The POSIX-Extended regular expression syntax is supported by the POSIX C - regular expression API's, and variations are used by the utilities egrep and awk. + regular expression API's, and variations are used by the utilities egrep and awk. You can construct POSIX extended regular expressions in Boost.Regex by passing - the flag extended to the + the flag extended to the regex constructor, for example:

-
-// e1 is a case sensitive POSIX-Extended expression:
+
// e1 is a case sensitive POSIX-Extended expression:
 boost::regex e1(my_expression, boost::regex::extended);
 // e2 a case insensitive POSIX-Extended expression:
 boost::regex e2(my_expression, boost::regex::extended|boost::regex::icase);
 

-

- +

+ POSIX Extended Syntax -

+

In POSIX-Extended regular expressions, all characters match themselves except for the following special characters:

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

- +

+ 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 + 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 + The newline character when the flag match_not_dot_newline is passed to the matching algorithms.
-

- +

+ Anchors: -
+

A '^' character shall match the start of a line when used as the first character of an expression, or the first character of a sub-expression. @@ -89,39 +85,39 @@ A '$' character shall match the end of a line when used as the last character of an expression, or the last character of a sub-expression.

-

- +

+ Marked sub-expressions: -
+

- A section beginning ( and ending - ) acts as a marked sub-expression. + A section beginning ( and ending + ) acts as a marked sub-expression. Whatever matched the sub-expression is split out in a separate field by the matching algorithms. Marked sub-expressions can also repeated, or referred to by a back-reference.

-

- +

+ Repeats: -
+

Any atom (a single character, a marked sub-expression, or a character class) - can be repeated with the *, - +, ?, - and {} operators. + can be repeated with the *, + +, ?, + and {} operators.

- The * operator will match the + The * operator will match the preceding atom zero or more times, for example the expression - a*b will match any of the following: + a*b will match any of the following:

b
 ab
 aaaaaaaab
 

- The + operator will match the + The + operator will match the preceding atom one or more times, for example the expression a+b will match any of the following:

@@ -134,9 +130,9 @@ aaaaaaaab
b
 

- The ? operator will match the + The ? operator will match the preceding atom zero or one times, for example the expression - ca?b will match any of the following: + ca?b will match any of the following:

cb
 cab
@@ -150,15 +146,15 @@ cab
         An atom can also be repeated with a bounded repeat:
       

- a{n} Matches + a{n} Matches 'a' repeated exactly n times.

- a{n,} Matches + a{n,} Matches 'a' repeated n or more times.

- a{n, m} Matches 'a' repeated between n + a{n, m} Matches 'a' repeated between n and m times inclusive.

@@ -168,32 +164,29 @@ cab

Will match either of:

-
-aa
+
aa
 aaa
 

But neither of:

-
-a
+
a
 aaaa
 

It is an error to use a repeat operator, if the preceding construct can not be repeated, for example:

-
-a(*)
+
a(*)
 

- Will raise an error, as there is nothing for the * + Will raise an error, as there is nothing for the * operator to be applied to.

-

- +

+ Back references: -
+

An escape character followed by a digit n, where n is in the range 1-9, matches the same string that was matched by sub-expression @@ -203,43 +196,41 @@ cab

Will match the string:

-
-aaabbaaa
+
aaabbaaa
 

But not the string:

-
-aaabba
+
aaabba
 
-
[Caution] Caution

+

The POSIX standard does not support back-references for "extended" regular expressions, this is a compatible extension to that standard.

-

- +

+ Alternation -
+

- The | operator will match either - of its arguments, so for example: abc|def will + The | operator will match either + of its arguments, so for example: abc|def will match either "abc" or "def".

- Parenthesis can be used to group alternations, for example: ab(d|ef) + Parenthesis can be used to group alternations, for example: ab(d|ef) will match either of "abd" or "abef".

-

- +

+ Character sets: -
+

A character set is a bracket-expression starting with [ and ending with ], it defines a set of characters, and matches any single character that is @@ -248,109 +239,107 @@ cab

A bracket expression may contain any combination of the following:

-
- +
+ Single characters: -
+

- For example [abc], will match any of the characters 'a', 'b', + For example [abc], will match any of the characters 'a', 'b', or 'c'.

-
- +
+ Character ranges: -
+

- For example [a-c] + For example [a-c] will match any single character in the range 'a' to 'c'. By default, for POSIX-Extended regular expressions, a character x is within the range y to z, if it collates within that range; this results in locale specific behavior . This - behavior can be turned off by unsetting the collate - option flag - in + behavior can be turned off by unsetting the collate + option flag - in which case whether a character appears within a range is determined by comparing the code points of the characters only.

-
- +
+ Negation: -
+

If the bracket-expression begins with the ^ character, then it matches the - complement of the characters it contains, for example [^a-c] matches any character that is not in the - range a-c. + complement of the characters it contains, for example [^a-c] matches any character that is not in the + range a-c.

-
- +
+ Character classes: -
+

- An expression of the form [[:name:]] - matches the named character class "name", for example [[:lower:]] matches any lower case character. See - character class names. + An expression of the form [[:name:]] + matches the named character class "name", for example [[:lower:]] matches any lower case character. See + character class names.

-
- +
+ Collating Elements: -
+

- An expression of the form [[.col.] matches + An expression of the form [[.col.] matches the collating element col. A collating element is any single character, or any sequence of characters that collates as a single unit. Collating elements may also be used as the end point of a range, for - example: [[.ae.]-c] + example: [[.ae.]-c] matches the character sequence "ae", plus any single character in the range "ae"-c, assuming that "ae" is treated as a single collating element in the current locale.

Collating elements may be used in place of escapes (which are not normally - allowed inside character sets), for example [[.^.]abc] would + allowed inside character sets), for example [[.^.]abc] would match either one of the characters 'abc^'.

- As an extension, a collating element may also be specified via its symbolic name, for example: + As an extension, a collating element may also be specified via its symbolic name, for example:

-
-[[.NUL.]]
+
[[.NUL.]]
 

matches a NUL character.

-
- +
+ Equivalence classes: -
+

- An expression of the form [[=col=]], + An expression of the form [[=col=]], matches any character or collating element whose primary sort key is the same as that for collating element col, as with colating - elements the name col may be a symbolic + 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 + locale-specific tailorings; so for example [[=a=]] matches 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: -
+

All of the above can be combined in one character set declaration, for example: - [[:digit:]a-c[.NUL.]]. + [[:digit:]a-c[.NUL.]].

-

- +

+ Escapes -
+

The POSIX standard defines no escape sequences for POSIX-Extended regular expressions, except that: @@ -365,7 +354,7 @@ cab

  • 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 [\^] + class declaration; so [\^] will match either a literal '\' or a '^'.
  • @@ -373,11 +362,11 @@ cab However, that's rather restrictive, so the following standard-compatible extensions are also supported by Boost.Regex:

    -
    - +
    + Escapes matching a specific character -
    +

    The following escape sequences are all synonyms for single characters:

    @@ -556,17 +545,17 @@ cab

    Matches the single character which has the symbolic name name. For - example \\N{newline} matches the single character \n. + example \\N{newline} matches the single character \n.

    -
    - +
    + "Single character" character classes: -
    +

    Any escaped character x, if x is the name of a character class shall match any character that is a member @@ -597,130 +586,130 @@ cab

    - \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 -
    +

    The character property names in the following table are all equivalent to the names used in character classes. @@ -752,7 +741,7 @@ cab

    - \pX + \pX

    @@ -762,14 +751,14 @@ cab

    - [[:X:]] + [[:X:]]

    - \p{Name} + \p{Name}

    @@ -779,14 +768,14 @@ cab

    - [[:Name:]] + [[:Name:]]

    - \PX + \PX

    @@ -796,14 +785,14 @@ cab

    - [^[:X:]] + [^[:X:]]

    - \P{Name} + \P{Name}

    @@ -813,20 +802,20 @@ cab

    - [^[:Name:]] + [^[:Name:]]

    - For example \pd - matches any "digit" character, as does \p{digit}. + For example \pd + matches any "digit" character, as does \p{digit}.

    -
    - +
    + Word Boundaries -
    +

    The following escape sequences match the boundaries of words:

    @@ -851,7 +840,7 @@ cab

    - \< + \<

    @@ -863,7 +852,7 @@ cab

    - \> + \>

    @@ -875,7 +864,7 @@ cab

    - \b + \b

    @@ -887,7 +876,7 @@ cab

    - \B + \B

    @@ -898,11 +887,11 @@ cab
    -
    - +
    + Buffer boundaries -
    +

    The following match only at buffer boundaries: a "buffer" in this context is the whole of the input text that is being matched against (note @@ -953,7 +942,7 @@ cab

    - \A + \A

    @@ -965,7 +954,7 @@ cab

    - \z + \z

    @@ -977,50 +966,49 @@ cab

    - \Z + \Z

    Matches an optional sequence of newlines at the end of a buffer: - equivalent to the regular expression \n*\z + equivalent to the regular expression \n*\z

    -
    - +
    + Continuation Escape -
    +

    - The sequence \G + The sequence \G matches only at the end of the last match found, or at the start of the text being matched if no previous match was found. This escape useful if you're iterating over the matches contained within a text, and you want each subsequence match to start where the last one ended.

    -
    - +
    + Quoting escape -
    +

    - The escape sequence \Q + The escape sequence \Q begins a "quoted sequence": all the subsequent characters are treated - as literals, until either the end of the regular expression or \E is found. - For example the expression: \Q\*+\Ea+ would match either of: + as literals, until either the end of the regular expression or \E is found. + For example the expression: \Q\*+\Ea+ would match either of:

    -
    -\*+a
    +
    \*+a
     \*+aaa
     
    -
    - +
    + Unicode escapes -
    +
    @@ -1042,7 +1030,7 @@ cab

    - \C + \C

    @@ -1055,7 +1043,7 @@ cab

    - \X + \X

    @@ -1067,40 +1055,40 @@ cab
    -
    - +
    + Any other escape -
    +

    Any other escape sequence matches the character that is escaped, for example \@ matches a literal '@'.

    -

    - +

    + Operator precedence -
    +

    The order of precedence for of operators is as follows:

    1. - Collation-related bracket symbols [==] - [::] [..] + Collation-related bracket symbols [==] + [::] [..]
    2. - Escaped characters \ + Escaped characters \
    3. - Character set (bracket expression) [] + Character set (bracket expression) []
    4. - Grouping () + Grouping ()
    5. - Single-character-ERE duplication * - + ? {m,n} + Single-character-ERE duplication * + + ? {m,n}
    6. Concatenation @@ -1109,50 +1097,48 @@ cab Anchoring ^$
    7. - Alternation | + Alternation |
    -

    - +

    + What Gets Matched -
    +

    When there is more that one way to match a regular expression, the "best" - possible match is obtained using the leftmost-longest + possible match is obtained using the leftmost-longest rule.

    -

    - +

    + Variations -

    -

    - - Egrep

    +
    + + Egrep +

    - When an expression is compiled with the flag - egrep set, then the + When an expression is compiled with the flag + egrep set, then the expression is treated as a newline separated list of POSIX-Extended expressions, a match is found if any of the expressions in the list match, for example:

    -
    -boost::regex e("abc\ndef", boost::regex::egrep);
    +
    boost::regex e("abc\ndef", boost::regex::egrep);
     

    will match either of the POSIX-Basic expressions "abc" or "def".

    As its name suggests, this behavior is consistent with the Unix utility - egrep, and with grep when + egrep, and with grep when used with the -E option.

    -

    - +

    + awk -
    +

    In addition to the POSIX-Extended features the escape character is special inside a character class @@ -1163,26 +1149,23 @@ cab specification are required to be supported - however Boost.Regex supports these by default anyway.

    -

    - +

    + Options -

    +

    - There are a variety - of flags that may be combined with the extended - and egrep options when constructing - the regular expression, in particular note that the newline_alt option alters the syntax, - while the collate, nosubs - and icase options + There are a variety + of flags that may be combined with the extended + and egrep options when constructing + the regular expression, in particular note that the newline_alt option alters the syntax, + while the collate, nosubs + and icase options modify how the case and locale sensitivity are to be applied.

    -

    - +

    + References -

    +

    IEEE Std 1003.1-2001, Portable Operating System Interface (POSIX ), Base Definitions @@ -1201,10 +1184,11 @@ cab

    - +

    +

    diff --git a/doc/html/boost_regex/syntax/basic_syntax.html b/doc/html/boost_regex/syntax/basic_syntax.html index 2e1fbf33..d1a0af81 100644 --- a/doc/html/boost_regex/syntax/basic_syntax.html +++ b/doc/html/boost_regex/syntax/basic_syntax.html @@ -1,16 +1,13 @@ - POSIX Basic Regular - Expression Syntax +POSIX Basic Regular Expression Syntax - + - - - + + + @@ -27,59 +24,58 @@ +

    + Synopsis -

    +

    - The POSIX-Basic regular expression syntax is used by the Unix utility sed, and variations are used by grep and emacs. + The POSIX-Basic regular expression syntax is used by the Unix utility sed, and variations are used by grep and emacs. You can construct POSIX basic regular expressions in Boost.Regex by passing - the flag basic to the regex - constructor (see syntax_option_type), for example: + the flag basic to the regex + constructor (see syntax_option_type), for example:

    -
    -// e1 is a case sensitive POSIX-Basic expression:
    +
    // e1 is a case sensitive POSIX-Basic expression:
     boost::regex e1(my_expression, boost::regex::basic);
     // e2 a case insensitive POSIX-Basic expression:
     boost::regex e2(my_expression, boost::regex::basic|boost::regex::icase);
     

    -

    - +

    + POSIX Basic Syntax -

    +

    In POSIX-Basic regular expressions, all characters are match themselves except for the following special characters:

    .[\*^$
    -

    - +

    + 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 + 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 + The newline character when the flag match_not_dot_newline is passed to the matching algorithms.
    -

    - +

    + Anchors: -
    +

    A '^' character shall match the start of a line when used as the first character of an expression, or the first character of a sub-expression. @@ -88,30 +84,30 @@ A '$' character shall match the end of a line when used as the last character of an expression, or the last character of a sub-expression.

    -

    - +

    + Marked sub-expressions: -
    +

    - A section beginning \( and ending - \) acts as a marked sub-expression. + A section beginning \( and ending + \) acts as a marked sub-expression. Whatever matched the sub-expression is split out in a separate field by the matching algorithms. Marked sub-expressions can also repeated, or referred-to by a back-reference.

    -

    - +

    + Repeats: -
    +

    Any atom (a single character, a marked sub-expression, or a character class) can be repeated with the * operator.

    - For example a* + For example a* will match any number of letter a's repeated zero or more times (an atom - repeated zero times matches an empty string), so the expression a*b + repeated zero times matches an empty string), so the expression a*b will match any of the following:

    b
    @@ -122,15 +118,15 @@ aaaaaaaab
             An atom can also be repeated with a bounded repeat:
           

    - a\{n\} Matches + a\{n\} Matches 'a' repeated exactly n times.

    - a\{n,\} Matches + a\{n,\} Matches 'a' repeated n or more times.

    - a\{n, m\} Matches 'a' repeated between n and m times + a\{n, m\} Matches 'a' repeated between n and m times inclusive.

    @@ -158,10 +154,10 @@ aaaa Will raise an error, as there is nothing for the * operator to be applied to.

    -

    - +

    + Back references: -
    +

    An escape character followed by a digit n, where n is in the range 1-9, matches the same string that was matched by sub-expression @@ -176,11 +172,11 @@ aaaa But not the string:

    aaabba
    -

    - +

    + Character sets: -
    +

    A character set is a bracket-expression starting with [ and ending with ], it defines a set of characters, and matches any single character that is @@ -189,69 +185,68 @@ aaaa

    A bracket expression may contain any combination of the following:

    -
    - +
    + Single characters: -
    +

    - For example [abc], will match any of the characters 'a', 'b', + For example [abc], will match any of the characters 'a', 'b', or 'c'.

    -
    - +
    + Character ranges: -
    +

    - For example [a-c] + For example [a-c] will match any single character in the range 'a' to 'c'. By default, for POSIX-Basic regular expressions, a character x is within the range y to z, if it collates within that range; this results in locale specific behavior. This behavior - can be turned off by unsetting the collate + can be turned off by unsetting the collate option flag when constructing the regular expression - in which case whether a character appears within a range is determined by comparing the code points of the characters only.

    -
    - +
    + Negation: -
    +

    If the bracket-expression begins with the ^ character, then it matches the - complement of the characters it contains, for example [^a-c] matches any character that is not in the + complement of the characters it contains, for example [^a-c] matches any character that is not in the range a-c.

    -
    - +
    + Character classes: -
    +

    - An expression of the form [[:name:]] - matches the named character class "name", for example [[:lower:]] matches any lower case character. See - character class names. + An expression of the form [[:name:]] + matches the named character class "name", for example [[:lower:]] matches any lower case character. See + character class names.

    -
    - +
    + Collating Elements: -
    +

    - An expression of the form [[.col.] matches + An expression of the form [[.col.] matches the collating element col. A collating element is any single character, or any sequence of characters that collates as a single unit. Collating elements may also be used as the end point of a range, for - example: [[.ae.]-c] + example: [[.ae.]-c] matches the character sequence "ae", plus any single character in the rangle "ae"-c, assuming that "ae" is treated as a single collating element in the current locale.

    Collating elements may be used in place of escapes (which are not normally - allowed inside character sets), for example [[.^.]abc] would + allowed inside character sets), for example [[.^.]abc] would match either one of the characters 'abc^'.

    @@ -260,38 +255,38 @@ aaaa

    [[.NUL.]]

    - matches a 'NUL' character. See collating + matches a 'NUL' character. See collating element names.

    -
    - +
    + Equivalence classes: -
    +

    - An expression of theform [[=col=]], + An expression of theform [[=col=]], matches any character or collating element whose primary sort key is the same as that for collating element col, as with collating - elements the name col may be a collating + 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 + or locale-specific tailorings; so for example [[=a=]] matches 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: -
    +

    All of the above can be combined in one character set declaration, for example: - [[:digit:]a-c[.NUL.]]. + [[:digit:]a-c[.NUL.]].

    -

    - +

    + Escapes -
    +

    With the exception of the escape sequences \{, \}, \(, and \), which are documented above, an escape followed by any character matches that character. @@ -300,37 +295,35 @@ aaaa

    .[\*^$

    "ordinary". Note that the escape character loses its special meaning - inside a character set, so [\^] + inside a character set, so [\^] will match either a literal '\' or a '^'.

    -

    - +

    + What Gets Matched -

    -

    - When there is more that one way to match a regular expression, the "best" - possible match is obtained using the leftmost-longest - rule. -

    -

    - - Variations -

    -

    -

    -

    - - Grep

    - When an expression is compiled with the flag grep + When there is more that one way to match a regular expression, the "best" + possible match is obtained using the leftmost-longest + rule. +

    +

    + + Variations +

    +

    +

    +
    + + Grep +
    +

    + When an expression is compiled with the flag grep set, then the expression is treated as a newline separated list of POSIX-Basic expressions, a match is found if any of the expressions in the list match, for example:

    -
    -boost::regex e("abc\ndef", boost::regex::grep);
    +
    boost::regex e("abc\ndef", boost::regex::grep);
     

    will match either of the POSIX-Basic @@ -339,10 +332,10 @@ aaaa

    As its name suggests, this behavior is consistent with the Unix utility grep.

    -

    - +

    + emacs -
    +

    In addition to the POSIX-Basic features the following characters are also special: @@ -616,31 +609,27 @@ aaaa according to the Perl "depth first search" rules. Emacs expressions are matched this way because they contain Perl-like extensions, that do not interact - well with the POSIX-style + well with the POSIX-style leftmost-longest rule.

    -

    - +

    + Options -

    +

    - There are a variety - of flags that may be combined with the basic - and grep options when constructing - the regular expression, in particular note that the newline_alt, no_char_classes, - no-intervals, bk_plus_qm - and bk_plus_vbar options - all alter the syntax, while the collate and icase + There are a variety + of flags that may be combined with the basic + and grep options when constructing + the regular expression, in particular note that the newline_alt, no_char_classes, + no-intervals, bk_plus_qm + and bk_plus_vbar options + all alter the syntax, while the collate and icase options modify how the case and locale sensitivity are to be applied.

    -

    - +

    + References -

    +

    IEEE Std 1003.1-2001, Portable Operating System Interface (POSIX ), Base Definitions @@ -657,10 +646,11 @@ aaaa

    - +

    +

    diff --git a/doc/html/boost_regex/syntax/character_classes.html b/doc/html/boost_regex/syntax/character_classes.html index 12d9356e..8a88baf5 100644 --- a/doc/html/boost_regex/syntax/character_classes.html +++ b/doc/html/boost_regex/syntax/character_classes.html @@ -1,16 +1,13 @@ - Character Class - Names +Character Class Names - + - - - + + + @@ -27,9 +24,9 @@
    - +

    +

    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 631ddf24..f9ca8d6e 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 @@ -1,16 +1,13 @@ - - Character classes that are supported by Unicode Regular Expressions +Character classes that are supported by Unicode Regular Expressions - + - - - + + + @@ -27,12 +24,12 @@

    The following character classes are only supported by Unicode Regular Expressions: - that is those that use the u32regex + that is those that use the u32regex type. The names used are the same as those from Chapter 4 of the Unicode standard.

    @@ -536,10 +533,11 @@
    - +

    +

    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 4a6bbd08..1d1f612e 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 @@ -1,17 +1,13 @@ - - Character Classes that are Always Supported +Character Classes that are Always Supported - + - - - + + + @@ -28,9 +24,9 @@

    The following character class names are always supported by Boost.Regex:

    @@ -386,10 +382,11 @@
    - +

    +

    diff --git a/doc/html/boost_regex/syntax/collating_names.html b/doc/html/boost_regex/syntax/collating_names.html index 991967a1..6fc589cd 100644 --- a/doc/html/boost_regex/syntax/collating_names.html +++ b/doc/html/boost_regex/syntax/collating_names.html @@ -1,14 +1,13 @@ - Collating Names +Collating Names - + - - - + + + @@ -25,7 +24,8 @@
    - +

    +

    diff --git a/doc/html/boost_regex/syntax/collating_names/digraphs.html b/doc/html/boost_regex/syntax/collating_names/digraphs.html index de77c8cc..55b9ee20 100644 --- a/doc/html/boost_regex/syntax/collating_names/digraphs.html +++ b/doc/html/boost_regex/syntax/collating_names/digraphs.html @@ -1,14 +1,13 @@ - Digraphs +Digraphs - + - - - + + + @@ -25,7 +24,8 @@

    The following are treated as valid digraphs when used as a collating name:

    @@ -47,10 +47,11 @@
    - +

    +

    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 4d8e0ca4..2fbedb55 100644 --- a/doc/html/boost_regex/syntax/collating_names/named_unicode.html +++ b/doc/html/boost_regex/syntax/collating_names/named_unicode.html @@ -1,16 +1,13 @@ - - Named Unicode Characters +Named Unicode Characters - + - - - + + + @@ -27,12 +24,12 @@

    - When using Unicode aware regular expressions - (with the u32regex type), + When using Unicode aware regular expressions + (with the u32regex type), all the normal symbolic names for Unicode characters (those given in Unidata.txt) are recognised. So for example:

    @@ -43,10 +40,11 @@
    - +

    +

    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 91f5931b..fddfa5ac 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 @@ -1,15 +1,13 @@ - - POSIX Symbolic Names +POSIX Symbolic Names - + - - - + + + @@ -26,9 +24,9 @@

    The following symbolic names are recognised as valid collating element names, in addition to any single character, this allows you to write for @@ -973,10 +971,11 @@

    - +

    +

    diff --git a/doc/html/boost_regex/syntax/leftmost_longest_rule.html b/doc/html/boost_regex/syntax/leftmost_longest_rule.html index 27d5a838..f64d70c0 100644 --- a/doc/html/boost_regex/syntax/leftmost_longest_rule.html +++ b/doc/html/boost_regex/syntax/leftmost_longest_rule.html @@ -1,15 +1,13 @@ - The Leftmost - Longest Rule +The Leftmost Longest Rule - + - - - + + + @@ -26,9 +24,9 @@

    Often there is more than one way of matching a regular expression at a particular location, for POSIX basic and extended regular expressions, the "best" @@ -67,10 +65,11 @@

    - +

    +

    diff --git a/doc/html/boost_regex/syntax/perl_syntax.html b/doc/html/boost_regex/syntax/perl_syntax.html index dc98edba..1de10b79 100644 --- a/doc/html/boost_regex/syntax/perl_syntax.html +++ b/doc/html/boost_regex/syntax/perl_syntax.html @@ -1,15 +1,13 @@ - Perl Regular Expression - Syntax +Perl Regular Expression Syntax - + - - - + + + @@ -26,156 +24,150 @@ +

    + Synopsis -

    +

    The Perl regular expression syntax is based on that used by the programming language Perl . Perl regular expressions are the default behavior in Boost.Regex - or you can pass the flag perl - to the basic_regex + or you can pass the flag perl + to the basic_regex constructor, for example:

    -
    -// e1 is a case sensitive Perl regular expression: 
    +
    // e1 is a case sensitive Perl regular expression: 
     // since Perl is the default option there's no need to explicitly specify the syntax used here:
     boost::regex e1(my_expression);
     // e2 a case insensitive Perl regular expression:
     boost::regex e2(my_expression, boost::regex::perl|boost::regex::icase);
     
    -

    - +

    + Perl Regular Expression Syntax -

    +

    In Perl regular expressions, all characters match themselves except for the following special characters:

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

    - +

    + Wildcard -
    +

    The single character '.' when used outside of a character set will match any single character except:

    -

    - +

    + Anchors -
    +

    A '^' character shall match the start of a line.

    A '$' character shall match the end of a line.

    -

    - +

    + Marked sub-expressions -
    +

    - A section beginning ( and ending - ) acts as a marked sub-expression. + A section beginning ( and ending + ) acts as a marked sub-expression. Whatever matched the sub-expression is split out in a separate field by the matching algorithms. Marked sub-expressions can also repeated, or referred to by a back-reference.

    -

    - +

    + Non-marking grouping -
    +

    A marked sub-expression is useful to lexically group part of a regular expression, but has the side-effect of spitting out an extra field in the result. As an alternative you can lexically group part of a regular expression, without - generating a marked sub-expression by using (?: - and ) , for example (?:ab)+ - will repeat ab without splitting + generating a marked sub-expression by using (?: + and ) , for example (?:ab)+ + will repeat ab without splitting out any separate sub-expressions.

    -

    - +

    + Repeats -
    +

    Any atom (a single character, a marked sub-expression, or a character class) - can be repeated with the *, - +, ?, - and {} operators. + can be repeated with the *, + +, ?, + and {} operators.

    - The * operator will match the - preceding atom zero or more times, for example the expression a*b + The * operator will match the + preceding atom zero or more times, for example the expression a*b will match any of the following:

    -
    -b
    +
    b
     ab
     aaaaaaaab
     

    - The + operator will match the - preceding atom one or more times, for example the expression a+b + The + operator will match the + preceding atom one or more times, for example the expression a+b will match any of the following:

    -
    -ab
    +
    ab
     aaaaaaaab
     

    But will not match:

    -
    -b
    +
    b
     

    - The ? operator will match the + The ? operator will match the preceding atom zero or one times, for example the expression ca?b will match any of the following:

    -
    -cb
    +
    cb
     cab
     

    But will not match:

    -
    -caab
    +
    caab
     

    An atom can also be repeated with a bounded repeat:

    - a{n} Matches + a{n} Matches 'a' repeated exactly n times.

    - a{n,} Matches + a{n,} Matches 'a' repeated n or more times.

    - a{n, m} Matches 'a' repeated between n and m times + a{n, m} Matches 'a' repeated between n and m times inclusive.

    @@ -185,63 +177,60 @@

    Will match either of:

    -
    -aa
    +
    aa
     aaa
     

    But neither of:

    -
    -a
    +
    a
     aaaa
     

    It is an error to use a repeat operator, if the preceding construct can not be repeated, for example:

    -
    -a(*)
    +
    a(*)
     

    - Will raise an error, as there is nothing for the * + Will raise an error, as there is nothing for the * operator to be applied to.

    -

    - +

    + Non greedy repeats -
    +

    The normal repeat operators are "greedy", that is to say they will consume as much input as possible. There are non-greedy versions available that will consume as little input as possible while still producing a match.

    - *? Matches the previous atom + *? Matches the previous atom zero or more times, while consuming as little input as possible.

    - +? Matches the previous atom + +? Matches the previous atom one or more times, while consuming as little input as possible.

    - ?? Matches the previous atom + ?? Matches the previous atom zero or one times, while consuming as little input as possible.

    - {n,}? Matches the previous atom n or more times, + {n,}? Matches the previous atom n or more times, while consuming as little input as possible.

    - {n,m}? + {n,m}? Matches the previous atom between n and m times, while consuming as little input as possible.

    -

    - +

    + Back references -
    +

    An escape character followed by a digit n, where n is in the range 1-9, matches the same string that was matched by sub-expression @@ -251,165 +240,160 @@

    Will match the string:

    -
    -aaabbaaa
    +
    aaabbaaa
     

    But not the string:

    -
    -aaabba
    +
    aaabba
     
    -

    - +

    + Alternation -
    +

    - The | operator will match either - of its arguments, so for example: abc|def will + The | operator will match either + of its arguments, so for example: abc|def will match either "abc" or "def".

    - Parenthesis can be used to group alternations, for example: ab(d|ef) + Parenthesis can be used to group alternations, for example: ab(d|ef) will match either of "abd" or "abef".

    Empty alternatives are not allowed (these are almost always a mistake), but - if you really want an empty alternative use (?:) + if you really want an empty alternative use (?:) as a placeholder, for example:

    - |abc + |abc is not a valid expression, but

    - (?:)|abc + (?:)|abc is and is equivalent, also the expression:

    - (?:abc)?? has exactly the same effect. + (?:abc)?? has exactly the same effect.

    -

    - +

    + Character sets -
    +

    - A character set is a bracket-expression starting with [ - and ending with ], it defines + A character set is a bracket-expression starting with [ + and ending with ], it defines a set of characters, and matches any single character that is a member of that set.

    A bracket expression may contain any combination of the following:

    -
    - +
    + Single characters -
    +

    - For example [abc], will match any of the characters 'a', 'b', + For example [abc], will match any of the characters 'a', 'b', or 'c'.

    -
    - +
    + Character ranges -
    +

    - For example [a-c] + For example [a-c] will match any single character in the range 'a' to 'c'. By default, for Perl regular expressions, a character x is within the range y to z, if the code point of the character lies within the codepoints of the endpoints of - the range. Alternatively, if you set the collate flag when constructing the + the range. Alternatively, if you set the collate flag when constructing the regular expression, then ranges are locale sensitive.

    -
    - +
    + Negation -
    +

    If the bracket-expression begins with the ^ character, then it matches the - complement of the characters it contains, for example [^a-c] matches any character that is not in the - range a-c. + complement of the characters it contains, for example [^a-c] matches any character that is not in the + range a-c.

    -
    - +
    + Character classes -
    +

    - An expression of the form [[:name:]] - matches the named character class "name", for example [[:lower:]] matches any lower case character. See - character class names. + An expression of the form [[:name:]] + matches the named character class "name", for example [[:lower:]] matches any lower case character. See + character class names.

    -
    - +
    + Collating Elements -
    +

    - An expression of the form [[.col.] matches + An expression of the form [[.col.] matches the collating element col. A collating element is any single character, or any sequence of characters that collates as a single unit. Collating elements may also be used as the end point of a range, for - example: [[.ae.]-c] + example: [[.ae.]-c] matches the character sequence "ae", plus any single character in the range "ae"-c, assuming that "ae" is treated as a single collating element in the current locale.

    - As an extension, a collating element may also be specified via it's symbolic name, for example: + As an extension, a collating element may also be specified via it's symbolic name, for example:

    -
    -[[.NUL.]]
    +
    [[.NUL.]]
     

    - matches a \0 + matches a \0 character.

    -
    - +
    + Equivalence classes -
    +

    - An expression of the form [[=col=]], + An expression of the form [[=col=]], matches any character or collating element whose primary sort key is the same as that for collating element col, as with collating - elements the name col may be a symbolic + 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 + locale-specific tailorings; so for example [[=a=]] matches 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 -
    +

    All the escape sequences that match a single character, or a single character - class are permitted within a character class definition. For example [\[\]] would match either of [ or ] - while [\W\d] + class are permitted within a character class definition. For example [\[\]] would match either of [ or ] + while [\W\d] would match any character that is either a "digit", or is not a "word" character.

    -
    - +
    + Combinations -
    +

    All of the above can be combined in one character set declaration, for example: - [[:digit:]a-c[.NUL.]]. + [[:digit:]a-c[.NUL.]].

    -

    - +

    + Escapes -
    +

    Any special character preceded by an escape shall match itself.

    @@ -437,97 +421,97 @@
    @@ -535,7 +519,7 @@

    - \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 + \b (but only inside a character class declaration).

    - \cX + \cX

    @@ -548,7 +532,7 @@

    - \xdd + \xdd

    @@ -561,7 +545,7 @@

    - \x{dddd} + \x{dddd}

    @@ -574,7 +558,7 @@

    - \0ddd + \0ddd

    @@ -587,23 +571,23 @@

    - \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: -
    +

    Any escaped character x, if x is the name of a character class shall match any character that is a member @@ -634,134 +618,133 @@

    - \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 -
    +

    The character property names in the following table are all equivalent to - the names used in character + the names used in character classes.

    @@ -791,7 +774,7 @@

    - \pX + \pX

    @@ -801,14 +784,14 @@

    - [[:X:]] + [[:X:]]

    - \p{Name} + \p{Name}

    @@ -818,14 +801,14 @@

    - [[:Name:]] + [[:Name:]]

    - \PX + \PX

    @@ -835,14 +818,14 @@

    - [^[:X:]] + [^[:X:]]

    - \P{Name} + \P{Name}

    @@ -852,42 +835,42 @@

    - [^[:Name:]] + [^[:Name:]]

    - For example \pd - matches any "digit" character, as does \p{digit}. + For example \pd + matches any "digit" character, as does \p{digit}.

    -
    - +
    + Word Boundaries -
    +

    The following escape sequences match the boundaries of words:

    - \< Matches the start of a + \< 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).

    - \B + \B Matches only when not at a word boundary.

    -
    - +
    + Buffer boundaries -
    +

    The following match only at buffer boundaries: a "buffer" in this context is the whole of the input text that is being matched against (note @@ -907,106 +890,105 @@

    \Z Matches an optional sequence of newlines at the end of a buffer: equivalent - to the regular expression \n*\z + to the regular expression \n*\z

    -
    - +
    + Continuation Escape -
    +

    - The sequence \G + The sequence \G matches only at the end of the last match found, or at the start of the text being matched if no previous match was found. This escape useful if you're iterating over the matches contained within a text, and you want each subsequence match to start where the last one ended.

    -
    - +
    + Quoting escape -
    +

    - The escape sequence \Q + The escape sequence \Q begins a "quoted sequence": all the subsequent characters are treated as literals, until either the end of the regular expression or \E is found. - For example the expression: \Q\*+\Ea+ would match either of: + For example the expression: \Q\*+\Ea+ would match either of:

    -
    -\*+a
    +
    \*+a
     \*+aaa
     
    -
    - +
    + Unicode escapes -
    +

    - \C + \C Matches a single code point: in Boost regex this has exactly the same effect - as a "." operator. \X Matches a combining character sequence: + as a "." operator. \X Matches a combining character sequence: that is any non-combining character followed by a sequence of zero or more combining characters.

    -
    - +
    + Any other escape -
    +

    Any other escape sequence matches the character that is escaped, for example \@ matches a literal '@'.

    -

    - +

    + Perl Extended Patterns -
    +

    Perl-specific extensions to the regular expression syntax all start with - (?. + (?.

    -
    - +
    + Comments -
    +

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

    -
    - +
    + Modifiers -
    +

    - (?imsx-imsx ... ) alters + (?imsx-imsx ... ) alters which of the perl modifiers are in effect within the pattern, changes take effect from the point that the block is first seen and extend to any enclosing - ). Letters before a '-' turn + ). Letters before a '-' turn that perl modifier on, letters afterward, turn it off.

    - (?imsx-imsx:pattern) + (?imsx-imsx:pattern) applies the specified modifiers to pattern only.

    -
    - +
    + Non-marking groups -
    +

    - (?:pattern) lexically groups pattern, without generating + (?:pattern) lexically groups pattern, without generating an additional sub-expression.

    -
    - +
    + Lookahead -
    +

    - (?=pattern) consumes zero characters, only if pattern + (?=pattern) consumes zero characters, only if pattern matches.

    - (?!pattern) consumes zero characters, only if pattern + (?!pattern) consumes zero characters, only if pattern does not match.

    @@ -1015,51 +997,50 @@ letter, a punctuation symbol, and be at least 6 characters long, then the expression:

    -
    -(?=.*[[:lower:]])(?=.*[[:upper:]])(?=.*[[:punct:]]).{6,}
    +
    (?=.*[[:lower:]])(?=.*[[:upper:]])(?=.*[[:punct:]]).{6,}
     

    could be used to validate the password.

    -
    - +
    + Lookbehind -
    +

    - (?<=pattern) consumes zero characters, only if pattern + (?<=pattern) consumes zero characters, only if pattern could be matched against the characters preceding the current position (pattern must be of fixed length).

    - (?<!pattern) consumes zero characters, only if pattern + (?<!pattern) consumes zero characters, only if pattern could not be matched against the characters preceding the current position (pattern must be of fixed length).

    -
    - +
    + Independent sub-expressions -
    +

    - (?>pattern) pattern is matched + (?>pattern) pattern is matched independently of the surrounding patterns, the expression will never backtrack into pattern. Independent sub-expressions are typically used to improve performance; only the best possible match for pattern will be considered, if this doesn't allow the expression as a whole to match then no match is found at all.

    -
    - +
    + Conditional Expressions -
    +

    - (?(condition)yes-pattern|no-pattern) attempts to match yes-pattern + (?(condition)yes-pattern|no-pattern) attempts to match yes-pattern if the condition is true, otherwise attempts to match no-pattern.

    - (?(condition)yes-pattern) + (?(condition)yes-pattern) attempts to match yes-pattern if the condition is true, otherwise fails.

    @@ -1068,31 +1049,31 @@ or the index of a marked sub-expression (the condition becomes true if the sub-expression has been matched).

    -

    - +

    + Operator precedence -
    +

    The order of precedence for of operators is as follows:

    1. - Collation-related bracket symbols [==] - [::] [..] + Collation-related bracket symbols [==] + [::] [..]
    2. - Escaped characters \ + Escaped characters \
    3. - Character set (bracket expression) [] + Character set (bracket expression) []
    4. - Grouping () + Grouping ()
    5. - Single-character-ERE duplication * - + ? {m,n} + Single-character-ERE duplication * + + ? {m,n}
    6. Concatenation @@ -1104,11 +1085,11 @@ Alternation |
    -

    - +

    + What gets matched -

    +

    If you view the regular expression as a directed (possibly cyclic) graph, then the best match found is the first match found by a depth-first-search @@ -1118,8 +1099,7 @@ Alternatively:

    - The best match found is the leftmost + The best match found is the leftmost match, with individual elements matched as follows;

    @@ -1143,7 +1123,7 @@ @@ -1223,16 +1203,16 @@ @@ -1240,7 +1220,7 @@

    - AtomA AtomB + AtomA AtomB

    @@ -1156,8 +1136,8 @@

    - Expression1 | - Expression2 + Expression1 | + Expression2

    @@ -1170,7 +1150,7 @@

    - S{N} + S{N}

    @@ -1182,7 +1162,7 @@

    - S{N,M} + S{N,M}

    @@ -1194,7 +1174,7 @@

    - S{N,M}? + S{N,M}?

    @@ -1206,16 +1186,16 @@

    - S?, + S?, S*, - S+ + S+

    - The same as S{0,1}, - S{0,UINT_MAX}, - S{1,UINT_MAX} + The same as S{0,1}, + S{0,UINT_MAX}, + S{1,UINT_MAX} respectively.

    - S??, + S??, S*?, - S+? + S+?

    - The same as S{0,1}?, - S{0,UINT_MAX}?, - S{1,UINT_MAX}? + The same as S{0,1}?, + S{0,UINT_MAX}?, + S{1,UINT_MAX}? respectively.

    - (?>S) + (?>S)

    @@ -1252,7 +1232,7 @@

    - (?=S), (?<=S) + (?=S), (?<=S)

    @@ -1265,7 +1245,7 @@

    - (?!S), (?<!S) + (?!S), (?<!S)

    @@ -1277,8 +1257,8 @@

    - (?(condition)yes-pattern - | no-pattern) + (?(condition)yes-pattern + | no-pattern)

    @@ -1290,57 +1270,55 @@
    -

    - +

    + Variations -

    +

    - The options - normal, ECMAScript, - JavaScript and JScript are all synonyms for perl. + The options + normal, ECMAScript, + JavaScript and JScript are all synonyms for perl.

    -

    - +

    + Options -

    +

    - There are a variety - of flags that may be combined with the perl + There are a variety + of flags that may be combined with the perl option when constructing the regular expression, in particular note that - the newline_alt option alters - the syntax, while the collate, - nosubs and icase options modify how the case and locale + the newline_alt option alters + the syntax, while the collate, + nosubs and icase options modify how the case and locale sensitivity are to be applied.

    -

    - +

    + Pattern Modifiers -

    +

    - The perl smix modifiers can - either be applied using a (?smix-smix) prefix to the regular expression, or with - one of the regex-compile - time flags no_mod_m, mod_x, mod_s, - and no_mod_s. + The perl smix modifiers can + either be applied using a (?smix-smix) prefix to the regular expression, or with + one of the regex-compile + time flags no_mod_m, mod_x, mod_s, + and no_mod_s.

    -

    - +

    + References -

    +

    Perl 5.8.

    - +

    +

    diff --git a/doc/html/boost_regex/unicode.html b/doc/html/boost_regex/unicode.html index 0c0fdc7f..57d6f025 100644 --- a/doc/html/boost_regex/unicode.html +++ b/doc/html/boost_regex/unicode.html @@ -1,15 +1,13 @@ - Unicode and Boost.Regex +Unicode and Boost.Regex - + - - + + @@ -26,57 +24,58 @@

    There are two ways to use Boost.Regex with Unicode strings:

    -

    - +

    + Rely on wchar_t -
    +

    - If your platform's wchar_t type + If your platform's wchar_t type can hold Unicode strings, and your platform's C/C++ runtime correctly handles - wide character constants (when passed to std::iswspace - std::iswlower etc), then you can use boost::wregex + wide character constants (when passed to std::iswspace + 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, + 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. + 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. -
    +

    If you have the ICU library, then Boost.Regex can be configured to make use of it, and provide a distinct regular expression type (boost::u32regex), that supports both Unicode specific character properties, and the searching - of text that is encoded in either UTF-8, UTF-16, or UTF-32. See: ICU + of text that is encoded in either UTF-8, UTF-16, or UTF-32. See: ICU string class support.

    - +

    +

    diff --git a/doc/html/index.html b/doc/html/index.html index cfe70342..9ad88fd8 100644 --- a/doc/html/index.html +++ b/doc/html/index.html @@ -3,9 +3,9 @@ Boost.Regex - + - + @@ -26,9 +26,9 @@

    John Maddock

    -
    +
    -

    +

    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)

    @@ -155,7 +155,7 @@
    Traits Class Requirements
    Iterator - Rrequirements
    + Requirements
    Deprecated Interfaces
    @@ -190,20 +190,10 @@
    -

    -

    -

    -

    -

    -

    -

    -

    -

    -

    - - + +

    Last revised: November 07, 2007 at 02:57:53 GMT

    Last revised: December 14, 2007 at 10:05:07 GMT


    Next
    diff --git a/doc/regex.qbk b/doc/regex.qbk index 855fce22..7cbe4df5 100644 --- a/doc/regex.qbk +++ b/doc/regex.qbk @@ -1,7 +1,7 @@ [article Boost.Regex [quickbook 1.3] - [copyright 2007 John Maddock] + [copyright 1998-2007 John Maddock] [purpose Regular Expressions] [license Distributed under the Boost Software License, Version 1.0. diff --git a/doc/regex_traits.qbk b/doc/regex_traits.qbk index 08175dec..7faae830 100644 --- a/doc/regex_traits.qbk +++ b/doc/regex_traits.qbk @@ -20,10 +20,10 @@ struct c_regex_traits; template - struct cpp_regex_traits; + class cpp_regex_traits; template - struct w32_regex_traits; + class w32_regex_traits; } // namespace boost From 07eaac9e0e418f2ef7730825b5c69ea76eacba06 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Fri, 4 Jan 2008 16:54:35 +0000 Subject: [PATCH 05/72] Fix typos. [SVN r42455] --- doc/match_flag_type.qbk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/match_flag_type.qbk b/doc/match_flag_type.qbk index 4bccf1af..e6fe8f8b 100644 --- a/doc/match_flag_type.qbk +++ b/doc/match_flag_type.qbk @@ -74,7 +74,7 @@ This flag is used when matching incomplete or very long texts, see the partial m [[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).]] [[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).]] [[match_not_dot_newline][Specifies that the expression "." does not match a newline character. This is the inverse of Perl's s/ modifier.]] -[[match_not_dot_null][Specified that the expression "." does not match a character null '\\0'.]] +[[match_not_dot_null][Specifies that the expression "." does not match a character null '\\0'.]] [[match_posix][Specifies that the expression should be matched according to the POSIX [link boost_regex.syntax.leftmost_longest_rule leftmost-longest rule], regardless of what kind of expression was compiled. @@ -108,7 +108,7 @@ This flag is used when matching incomplete or very long texts, see the partial m [[format_perl][Specifies that when a regular expression match is to be replaced by a new string, that the new string is constructed using [link boost_regex.format.perl_format the same rules as Perl 5].]] -[[format_literal][Specified that when a regular expression match is to be +[[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.]] [[format_all][Specifies that all syntax extensions are enabled, including From 299086b99cb11b3eb246f9a53bed927e784b8d12 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Fri, 11 Jan 2008 09:55:43 +0000 Subject: [PATCH 06/72] Fix bugs reported by Will Drewry: certain invalid regexes can cause the library to access invalid memory, changed to ensure that the correct exception is thrown long before this happens. [SVN r42674] --- include/boost/regex/v4/basic_regex_parser.hpp | 11 +++++++++++ test/regress/test_perl_ex.cpp | 11 +++++++++++ 2 files changed, 22 insertions(+) diff --git a/include/boost/regex/v4/basic_regex_parser.hpp b/include/boost/regex/v4/basic_regex_parser.hpp index fcf512c2..b2d99f09 100644 --- a/include/boost/regex/v4/basic_regex_parser.hpp +++ b/include/boost/regex/v4/basic_regex_parser.hpp @@ -784,6 +784,7 @@ bool basic_regex_parser::parse_repeat(std::size_t low, std::size_ case syntax_element_restart_continue: case syntax_element_jump: case syntax_element_startmark: + case syntax_element_backstep: // can't legally repeat any of the above: fail(regex_constants::error_badrepeat, m_position - m_base); return false; @@ -1869,6 +1870,7 @@ bool basic_regex_parser::parse_perl_extension() if(markid == -4) { re_syntax_base* b = this->getaddress(expected_alt_point); + // Make sure we have exactly one alternative following this state: if(b->type != syntax_element_alt) { re_alt* alt = static_cast(this->insert_state(expected_alt_point, syntax_element_alt, sizeof(re_alt))); @@ -1879,6 +1881,15 @@ bool basic_regex_parser::parse_perl_extension() fail(regex_constants::error_bad_pattern, m_position - m_base); return false; } + // check for invalid repetition of next state: + b = this->getaddress(expected_alt_point); + b = this->getaddress(static_cast(b)->next.i, b); + if((b->type != syntax_element_assert_backref) + && (b->type != syntax_element_startmark)) + { + fail(regex_constants::error_badrepeat, m_position - m_base); + return false; + } } // // append closing parenthesis state: diff --git a/test/regress/test_perl_ex.cpp b/test/regress/test_perl_ex.cpp index 82a0517f..3bf104b7 100644 --- a/test/regress/test_perl_ex.cpp +++ b/test/regress/test_perl_ex.cpp @@ -121,6 +121,17 @@ void test_conditionals() TEST_INVALID_REGEX("(?:(a)|b)(?(?:", perl); TEST_INVALID_REGEX("(?:(a)|b)(?(?<", perl); TEST_INVALID_REGEX("(?:(a)|b)(?(? Date: Mon, 14 Jan 2008 09:46:12 +0000 Subject: [PATCH 07/72] Ooops, fix broken escape sequence. [SVN r42745] --- test/regress/test_perl_ex.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/regress/test_perl_ex.cpp b/test/regress/test_perl_ex.cpp index 3bf104b7..6aa31684 100644 --- a/test/regress/test_perl_ex.cpp +++ b/test/regress/test_perl_ex.cpp @@ -131,7 +131,7 @@ void test_conditionals() TEST_INVALID_REGEX("(? Date: Mon, 14 Jan 2008 09:58:36 +0000 Subject: [PATCH 08/72] Fix documentation typos. [SVN r42747] --- .../background_information/examples.html | 6 +- .../background_information/history.html | 10 +-- .../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 | 6 +- 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 | 84 +++++++++---------- doc/html/boost_regex/unicode.html | 4 +- doc/html/index.html | 4 +- 31 files changed, 185 insertions(+), 185 deletions(-) diff --git a/doc/html/boost_regex/background_information/examples.html b/doc/html/boost_regex/background_information/examples.html index 42421ebe..dac6b075 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
    @@ -98,7 +98,7 @@ Files: captures_test.cpp.

    - + Example programs
    @@ -124,7 +124,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 82728a7b..ad46ecbc 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.34
    @@ -49,7 +49,7 @@
    - + Boost 1.33.1
    @@ -119,7 +119,7 @@
    - + Boost 1.33.0
    @@ -174,7 +174,7 @@
    - + Boost 1.32.1
    @@ -182,7 +182,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 4916676f..c2d50ab5 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 4ca1f3d9..407a901f 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 af1acd15..5c3f07d5 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 4ea00314..6201abd5 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

    @@ -66,7 +66,7 @@ with "bar" otherwise.

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

    - + Escape Sequences
    diff --git a/doc/html/boost_regex/install.html b/doc/html/boost_regex/install.html index 769edc11..d8aeb190 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 bbffbd53..e2f23ec0 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 6c312c65..9636c1ca 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>
    @@ -243,7 +243,7 @@
     } // namespace boost
     
    - + Description

    @@ -326,7 +326,7 @@ basic_regex.

    -

    Table 1. basic_regex default construction postconditions

    +

    Table 1. basic_regex default construction postconditions

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

    -

    Table 2. Postconditions for basic_regex construction

    +

    Table 2. Postconditions for basic_regex construction

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

    -

    Table 3. Postconditions for basic_regex construction

    +

    Table 3. Postconditions for basic_regex construction

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

    -

    Table 4. Postconditions for basic_regex construction

    +

    Table 4. Postconditions for basic_regex construction

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

    -

    Table 5. Postconditions for basic_regex construction

    +

    Table 5. Postconditions for basic_regex construction

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

    -

    Table 6. Postconditions for basic_regex construction

    +

    Table 6. Postconditions for basic_regex construction

    @@ -1026,7 +1026,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 3ddc5295..8238c73b 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 2365c417..9353c3f8 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 81df8453..55a4b871 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 91b55c46..df0e10dc 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

    @@ -313,7 +313,7 @@

    - Specified that the expression "." does not match a character + Specifies that the expression "." does not match a character null '\0'.

    @@ -426,7 +426,7 @@

    - Specified that when a regular expression match is to be replaced + 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.

    diff --git a/doc/html/boost_regex/ref/match_results.html b/doc/html/boost_regex/ref/match_results.html index db38d7a4..9d1a2725 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>
    @@ -142,7 +142,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 2b9bf51c..f38a71bd 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 45fea130..ee2a74a5 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 3a03bd2e..eb69778d 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 b6d5da8a..5efbf635 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 6dd072af..30f97dd1 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 8b7f7873..ba2719cd 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 b5ef87d9..5bfc618b 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 a6a7beb7..35f28bdb 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 charT>
    @@ -163,7 +163,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 e4230a2a..b465289a 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 350c527b..af4d2628 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 8f7507c8..6921b956 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 e2b5ea60..5b37ba80 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 e5287248..290e2f3b 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 d1a0af81..62c63e46 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 1de10b79..a9dc9ba7 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

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

    - + Perl Regular Expression Syntax

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

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

    @@ -75,7 +75,7 @@

    - + Anchors

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

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

    - + Non-marking grouping
    @@ -111,7 +111,7 @@ out any separate sub-expressions.

    - + Repeats

    @@ -197,7 +197,7 @@ operator to be applied to.

    - + Non greedy repeats
    @@ -228,7 +228,7 @@ input as possible.

    - + Back references

    @@ -248,7 +248,7 @@

    aaabba
     
    - + Alternation

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

    - + Character sets

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

    - + Single characters

    @@ -298,7 +298,7 @@ or 'c'.

    - + Character ranges
    @@ -311,7 +311,7 @@ regular expression, then ranges are locale sensitive.

    - + Negation

    @@ -320,7 +320,7 @@ range a-c.

    - + Character classes
    @@ -330,7 +330,7 @@ character class names.

    - + Collating Elements
    @@ -354,7 +354,7 @@ character.

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

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

    - + Combinations

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

    - + Escapes

    @@ -584,7 +584,7 @@

    - + "Single character" character classes:
    @@ -738,7 +738,7 @@
    - + Character Properties
    @@ -846,7 +846,7 @@ matches any "digit" character, as does \p{digit}.

    - + Word Boundaries

    @@ -868,7 +868,7 @@ Matches only when not at a word boundary.

    - + Buffer boundaries

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

    - + Continuation Escape
    @@ -905,7 +905,7 @@ match to start where the last one ended.

    - + Quoting escape

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

    - + Unicode escapes

    @@ -929,7 +929,7 @@ combining characters.

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

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

    - + Comments

    @@ -956,7 +956,7 @@ are ignored.

    - + Modifiers

    @@ -971,7 +971,7 @@ applies the specified modifiers to pattern only.

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

    - + Lookahead

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

    - + Lookbehind

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

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

    - + Conditional Expressions
    @@ -1050,7 +1050,7 @@ sub-expression has been matched).

    - + Operator precedence
    @@ -1086,7 +1086,7 @@

    - + What gets matched

    @@ -1271,7 +1271,7 @@

    - + Variations

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

    - + Options

    @@ -1293,7 +1293,7 @@ sensitivity are to be applied.

    - + Pattern Modifiers

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

    - + References

    diff --git a/doc/html/boost_regex/unicode.html b/doc/html/boost_regex/unicode.html index 57d6f025..9cb48ebc 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 9ad88fd8..f7007f8a 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)

    @@ -192,7 +192,7 @@
    - +

    Last revised: December 14, 2007 at 10:05:07 GMT

    Last revised: January 14, 2008 at 09:54:07 GMT


    From 2cbd1c888227807651d9e330ea8a43c524c8c9cb Mon Sep 17 00:00:00 2001 From: John Maddock Date: Mon, 14 Jan 2008 13:17:09 +0000 Subject: [PATCH 09/72] Patch regex concept checks and TR1 library to work with VC9 + MS TR1 feature pack. [SVN r42751] --- include/boost/regex/concepts.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/boost/regex/concepts.hpp b/include/boost/regex/concepts.hpp index d9005463..0f5677a2 100644 --- a/include/boost/regex/concepts.hpp +++ b/include/boost/regex/concepts.hpp @@ -235,7 +235,7 @@ template struct BaseRegexConcept { typedef typename Regex::value_type value_type; - typedef typename Regex::size_type size_type; + //typedef typename Regex::size_type size_type; typedef typename Regex::flag_type flag_type; typedef typename Regex::locale_type locale_type; typedef input_iterator_archetype input_iterator_type; @@ -370,7 +370,7 @@ struct BaseRegexConcept const Regex ce; bool b = ce.empty(); ignore_unused_variable_warning(b); - size_type i = ce.mark_count(); + unsigned i = ce.mark_count(); ignore_unused_variable_warning(i); m_flags = ce.flags(); e.imbue(ce.getloc()); @@ -533,7 +533,7 @@ struct BaseRegexConcept pointer_type m_pointer; flag_type m_flags; - size_type m_size; + std::size_t m_size; input_iterator_type in1, in2; const sub_match_type m_sub; const value_type m_char; @@ -557,7 +557,7 @@ template struct RegexConcept { typedef typename Regex::value_type value_type; - typedef typename Regex::size_type size_type; + //typedef typename Regex::size_type size_type; typedef typename Regex::flag_type flag_type; typedef typename Regex::locale_type locale_type; From 37040f4bfd939b4e8ca1f6b1eb685beed36e257e Mon Sep 17 00:00:00 2001 From: John Maddock Date: Wed, 23 Jan 2008 16:08:44 +0000 Subject: [PATCH 10/72] Applies fix for issue #1598: added missing #include. [SVN r42929] --- include/boost/regex/pending/unicode_iterator.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/include/boost/regex/pending/unicode_iterator.hpp b/include/boost/regex/pending/unicode_iterator.hpp index 14196c0a..657ca0a4 100644 --- a/include/boost/regex/pending/unicode_iterator.hpp +++ b/include/boost/regex/pending/unicode_iterator.hpp @@ -68,6 +68,7 @@ Accepts UTF-32 code points and forwards them on as UTF-16 code points. #include #ifndef BOOST_NO_STD_LOCALE #include +#include #endif #include // CHAR_BIT From 0915f19c03d823be053e9649ef496d7673729462 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sun, 27 Jan 2008 18:43:35 +0000 Subject: [PATCH 11/72] Extended leading repeat optimization to more cases. [SVN r42992] --- include/boost/regex/v4/basic_regex_creator.hpp | 13 +++++++++++++ .../boost/regex/v4/perl_matcher_non_recursive.hpp | 9 +++++++++ 2 files changed, 22 insertions(+) diff --git a/include/boost/regex/v4/basic_regex_creator.hpp b/include/boost/regex/v4/basic_regex_creator.hpp index fec755f8..35de0cef 100644 --- a/include/boost/regex/v4/basic_regex_creator.hpp +++ b/include/boost/regex/v4/basic_regex_creator.hpp @@ -1270,6 +1270,19 @@ void basic_regex_creator::probe_leading_repeat(re_syntax_base* st state = state->next.p; continue; } + if((static_cast(state)->index == -1) + || (static_cast(state)->index == -2)) + { + // skip past the zero width assertion: + state = static_cast(state->next.p)->alt.p->next.p; + continue; + } + if(static_cast(state)->index == -3) + { + // Have to skip the leading jump state: + state = state->next.p->next.p; + continue; + } return; case syntax_element_endmark: case syntax_element_start_line: diff --git a/include/boost/regex/v4/perl_matcher_non_recursive.hpp b/include/boost/regex/v4/perl_matcher_non_recursive.hpp index 3bf34601..e6bf1bba 100644 --- a/include/boost/regex/v4/perl_matcher_non_recursive.hpp +++ b/include/boost/regex/v4/perl_matcher_non_recursive.hpp @@ -1193,6 +1193,9 @@ bool perl_matcher::unwind_char_repeat(bool r) pstate = rep->next.p; }while((count < rep->max) && (position != last) && !can_start(*position, rep->_map, mask_skip)); } + // remember where we got to if this is a leading repeat: + if((rep->leading) && (count < rep->max)) + restart = position; if(position == last) { // can't repeat any more, remove the pushed state: @@ -1259,6 +1262,9 @@ bool perl_matcher::unwind_short_set_repeat(bool pstate = rep->next.p; }while((count < rep->max) && (position != last) && !can_start(*position, rep->_map, mask_skip)); } + // remember where we got to if this is a leading repeat: + if((rep->leading) && (count < rep->max)) + restart = position; if(position == last) { // can't repeat any more, remove the pushed state: @@ -1326,6 +1332,9 @@ bool perl_matcher::unwind_long_set_repeat(bool pstate = rep->next.p; }while((count < rep->max) && (position != last) && !can_start(*position, rep->_map, mask_skip)); } + // remember where we got to if this is a leading repeat: + if((rep->leading) && (count < rep->max)) + restart = position; if(position == last) { // can't repeat any more, remove the pushed state: From 370c429bd6502ce06990b1bd38f8cd0bc81edef8 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Thu, 7 Feb 2008 10:24:29 +0000 Subject: [PATCH 12/72] Added comment to suppress inspect warning. [SVN r43148] --- performance/input.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/performance/input.html b/performance/input.html index 128deeaa..9b2312b8 100644 --- a/performance/input.html +++ b/performance/input.html @@ -5,6 +5,7 @@ +

    Regular Expression Performance Comparison

    @@ -65,7 +66,7 @@ the text indicated was measured. 

    %short_matches%


    -

    © Copyright John Maddock 2003

    +

    © Copyright John Maddock 2003

    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)

    From e32c5d088840707b476ccf1984636fea05db750e Mon Sep 17 00:00:00 2001 From: John Maddock Date: Thu, 21 Feb 2008 12:58:15 +0000 Subject: [PATCH 13/72] Added link to PDF docs, and regenerated. [SVN r43351] --- .../boost_regex/background_information.html | 4 +- .../acknowledgements.html | 4 +- .../background_information/examples.html | 10 +-- .../background_information/faq.html | 4 +- .../background_information/futher.html | 4 +- .../background_information/headers.html | 4 +- .../background_information/history.html | 14 +-- .../background_information/locale.html | 12 +-- .../background_information/performance.html | 4 +- .../background_information/redist.html | 4 +- .../background_information/standards.html | 14 +-- .../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 | 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 | 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 | 70 +++++++-------- doc/html/boost_regex/syntax/basic_syntax.html | 48 +++++----- .../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 | 88 +++++++++---------- doc/html/boost_regex/unicode.html | 8 +- doc/html/index.html | 12 ++- doc/regex.qbk | 4 + 83 files changed, 355 insertions(+), 347 deletions(-) diff --git a/doc/html/boost_regex/background_information.html b/doc/html/boost_regex/background_information.html index 97e723cd..44b9fc3b 100644 --- a/doc/html/boost_regex/background_information.html +++ b/doc/html/boost_regex/background_information.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/background_information/acknowledgements.html b/doc/html/boost_regex/background_information/acknowledgements.html index 6226d770..844f5874 100644 --- a/doc/html/boost_regex/background_information/acknowledgements.html +++ b/doc/html/boost_regex/background_information/acknowledgements.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/background_information/examples.html b/doc/html/boost_regex/background_information/examples.html index dac6b075..0bfd3502 100644 --- a/doc/html/boost_regex/background_information/examples.html +++ b/doc/html/boost_regex/background_information/examples.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    @@ -28,7 +28,7 @@ Example Programs
    - + Test Programs
    @@ -98,7 +98,7 @@ Files: captures_test.cpp.

    - + Example programs
    @@ -124,7 +124,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 31ab358f..2259e4d0 100644 --- a/doc/html/boost_regex/background_information/faq.html +++ b/doc/html/boost_regex/background_information/faq.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/background_information/futher.html b/doc/html/boost_regex/background_information/futher.html index f238a3db..0608408a 100644 --- a/doc/html/boost_regex/background_information/futher.html +++ b/doc/html/boost_regex/background_information/futher.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/background_information/headers.html b/doc/html/boost_regex/background_information/headers.html index cf275901..df3a3c16 100644 --- a/doc/html/boost_regex/background_information/headers.html +++ b/doc/html/boost_regex/background_information/headers.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/background_information/history.html b/doc/html/boost_regex/background_information/history.html index ad46ecbc..9fa64fbb 100644 --- a/doc/html/boost_regex/background_information/history.html +++ b/doc/html/boost_regex/background_information/history.html @@ -13,8 +13,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    @@ -26,7 +26,7 @@ History
    - + Boost 1.34
    @@ -49,7 +49,7 @@
    - + Boost 1.33.1
    @@ -119,7 +119,7 @@
    - + Boost 1.33.0
    @@ -174,7 +174,7 @@
    - + Boost 1.32.1
    @@ -182,7 +182,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 c2d50ab5..7814c60c 100644 --- a/doc/html/boost_regex/background_information/locale.html +++ b/doc/html/boost_regex/background_information/locale.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    @@ -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 c0513ebb..8c5d9a8c 100644 --- a/doc/html/boost_regex/background_information/performance.html +++ b/doc/html/boost_regex/background_information/performance.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/background_information/redist.html b/doc/html/boost_regex/background_information/redist.html index de272a08..fd9f354f 100644 --- a/doc/html/boost_regex/background_information/redist.html +++ b/doc/html/boost_regex/background_information/redist.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/background_information/standards.html b/doc/html/boost_regex/background_information/standards.html index 407a901f..6e14c88a 100644 --- a/doc/html/boost_regex/background_information/standards.html +++ b/doc/html/boost_regex/background_information/standards.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    @@ -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/background_information/thread_safety.html b/doc/html/boost_regex/background_information/thread_safety.html index 47a0f190..a4bad710 100644 --- a/doc/html/boost_regex/background_information/thread_safety.html +++ b/doc/html/boost_regex/background_information/thread_safety.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More


    diff --git a/doc/html/boost_regex/captures.html b/doc/html/boost_regex/captures.html index 5c3f07d5..e3f663bb 100644 --- a/doc/html/boost_regex/captures.html +++ b/doc/html/boost_regex/captures.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    @@ -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 8d8b2a42..781e7acb 100644 --- a/doc/html/boost_regex/configuration.html +++ b/doc/html/boost_regex/configuration.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More


    diff --git a/doc/html/boost_regex/configuration/algorithm.html b/doc/html/boost_regex/configuration/algorithm.html index 970cba82..270537a3 100644 --- a/doc/html/boost_regex/configuration/algorithm.html +++ b/doc/html/boost_regex/configuration/algorithm.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/configuration/compiler.html b/doc/html/boost_regex/configuration/compiler.html index 03814ff1..9f578fe4 100644 --- a/doc/html/boost_regex/configuration/compiler.html +++ b/doc/html/boost_regex/configuration/compiler.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/configuration/linkage.html b/doc/html/boost_regex/configuration/linkage.html index e9012060..302e2845 100644 --- a/doc/html/boost_regex/configuration/linkage.html +++ b/doc/html/boost_regex/configuration/linkage.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/configuration/locale.html b/doc/html/boost_regex/configuration/locale.html index da0e4e63..100027de 100644 --- a/doc/html/boost_regex/configuration/locale.html +++ b/doc/html/boost_regex/configuration/locale.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/configuration/tuning.html b/doc/html/boost_regex/configuration/tuning.html index deba73fb..69aeffbb 100644 --- a/doc/html/boost_regex/configuration/tuning.html +++ b/doc/html/boost_regex/configuration/tuning.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/format.html b/doc/html/boost_regex/format.html index ac34fbbf..2e7ed141 100644 --- a/doc/html/boost_regex/format.html +++ b/doc/html/boost_regex/format.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/format/boost_format_syntax.html b/doc/html/boost_regex/format/boost_format_syntax.html index 6201abd5..24906c32 100644 --- a/doc/html/boost_regex/format/boost_format_syntax.html +++ b/doc/html/boost_regex/format/boost_format_syntax.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    @@ -32,7 +32,7 @@ '$', '\', '(', ')', '?', and ':'.

    - + Grouping

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

    - + Conditionals

    @@ -66,7 +66,7 @@ with "bar" otherwise.

    - + Placeholder Sequences
    @@ -161,7 +161,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 0d248545..35c849a6 100644 --- a/doc/html/boost_regex/format/perl_format.html +++ b/doc/html/boost_regex/format/perl_format.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/format/sed_format.html b/doc/html/boost_regex/format/sed_format.html index 7cb783bb..8255c298 100644 --- a/doc/html/boost_regex/format/sed_format.html +++ b/doc/html/boost_regex/format/sed_format.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/install.html b/doc/html/boost_regex/install.html index d8aeb190..a456a1da 100644 --- a/doc/html/boost_regex/install.html +++ b/doc/html/boost_regex/install.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    @@ -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/introduction_and_overview.html b/doc/html/boost_regex/introduction_and_overview.html index b43e443a..23cb1edd 100644 --- a/doc/html/boost_regex/introduction_and_overview.html +++ b/doc/html/boost_regex/introduction_and_overview.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/partial_matches.html b/doc/html/boost_regex/partial_matches.html index 16614be2..776538f4 100644 --- a/doc/html/boost_regex/partial_matches.html +++ b/doc/html/boost_regex/partial_matches.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/ref.html b/doc/html/boost_regex/ref.html index dc6e496c..59d4e410 100644 --- a/doc/html/boost_regex/ref.html +++ b/doc/html/boost_regex/ref.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/ref/bad_expression.html b/doc/html/boost_regex/ref/bad_expression.html index e2f23ec0..957f4304 100644 --- a/doc/html/boost_regex/ref/bad_expression.html +++ b/doc/html/boost_regex/ref/bad_expression.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    @@ -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 9636c1ca..26a70308 100644
    --- a/doc/html/boost_regex/ref/basic_regex.html
    +++ b/doc/html/boost_regex/ref/basic_regex.html
    @@ -14,8 +14,8 @@
     Boost C++ Libraries
     Home
     Libraries
    -People
    -FAQ
    +People
    +FAQ
     More
     
     
    @@ -27,7 +27,7 @@ basic_regex
    - + Synopsis
    #include <boost/regex.hpp>
    @@ -243,7 +243,7 @@
     } // namespace boost
     
    - + Description

    @@ -326,7 +326,7 @@ basic_regex.

    -

    Table 1. basic_regex default construction postconditions

    +

    Table 1. basic_regex default construction postconditions

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

    -

    Table 2. Postconditions for basic_regex construction

    +

    Table 2. Postconditions for basic_regex construction

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

    -

    Table 3. Postconditions for basic_regex construction

    +

    Table 3. Postconditions for basic_regex construction

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

    -

    Table 4. Postconditions for basic_regex construction

    +

    Table 4. Postconditions for basic_regex construction

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

    -

    Table 5. Postconditions for basic_regex construction

    +

    Table 5. Postconditions for basic_regex construction

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

    -

    Table 6. Postconditions for basic_regex construction

    +

    Table 6. Postconditions for basic_regex construction

    @@ -1026,7 +1026,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.html b/doc/html/boost_regex/ref/concepts.html index 528bfbb8..ee5aee34 100644 --- a/doc/html/boost_regex/ref/concepts.html +++ b/doc/html/boost_regex/ref/concepts.html @@ -14,8 +14,8 @@ - - + +
    Boost C++ Libraries Home LibrariesPeopleFAQPeopleFAQ More

    diff --git a/doc/html/boost_regex/ref/concepts/charT_concept.html b/doc/html/boost_regex/ref/concepts/charT_concept.html index fe73b1e5..47d68743 100644 --- a/doc/html/boost_regex/ref/concepts/charT_concept.html +++ b/doc/html/boost_regex/ref/concepts/charT_concept.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/ref/concepts/iterator_concepts.html b/doc/html/boost_regex/ref/concepts/iterator_concepts.html index 5f624d52..cffa1774 100644 --- a/doc/html/boost_regex/ref/concepts/iterator_concepts.html +++ b/doc/html/boost_regex/ref/concepts/iterator_concepts.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/ref/concepts/traits_concept.html b/doc/html/boost_regex/ref/concepts/traits_concept.html index 8238c73b..1cf50425 100644 --- a/doc/html/boost_regex/ref/concepts/traits_concept.html +++ b/doc/html/boost_regex/ref/concepts/traits_concept.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    @@ -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.html b/doc/html/boost_regex/ref/deprecated_interfaces.html index 4a3ee0b5..2703ac51 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    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 8afa58db..42df3918 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/old_regex.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/old_regex.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    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 9353c3f8..a6036e96 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    @@ -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 9a1884aa..730e8542 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/regex_grep.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/regex_grep.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    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 b430a1bc..6d397b7c 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/regex_split.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/regex_split.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/ref/error_type.html b/doc/html/boost_regex/ref/error_type.html index 55a4b871..aad11718 100644 --- a/doc/html/boost_regex/ref/error_type.html +++ b/doc/html/boost_regex/ref/error_type.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    @@ -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 df0e10dc..719e96cd 100644 --- a/doc/html/boost_regex/ref/match_flag_type.html +++ b/doc/html/boost_regex/ref/match_flag_type.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More


    @@ -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 9d1a2725..98d7adf3 100644 --- a/doc/html/boost_regex/ref/match_results.html +++ b/doc/html/boost_regex/ref/match_results.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More


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

    diff --git a/doc/html/boost_regex/ref/non_std_strings.html b/doc/html/boost_regex/ref/non_std_strings.html index f47ef100..a220407d 100644 --- a/doc/html/boost_regex/ref/non_std_strings.html +++ b/doc/html/boost_regex/ref/non_std_strings.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More


    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 3e20a8d6..35b20977 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    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 8282b43d..53cf39b6 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 @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    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 f38a71bd..370e6fda 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 @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    @@ -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 ee2a74a5..85bd66e1 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 @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More


    @@ -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/icu/unicode_types.html b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_types.html index 39677b16..9fe3dcc9 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 @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More


    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 7634d2a3..3dba2d61 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 @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    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 eb69778d..ab26844d 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 @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    @@ -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 a63c09a3..e1301c4a 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 @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More


    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 5efbf635..5aa3e26d 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 @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    @@ -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/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 54484d18..0237ebc9 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 @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    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 cf126ab8..34c99d13 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 @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/ref/posix.html b/doc/html/boost_regex/ref/posix.html index 30f97dd1..579a4994 100644 --- a/doc/html/boost_regex/ref/posix.html +++ b/doc/html/boost_regex/ref/posix.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    @@ -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 ba2719cd..054bca12 100644 --- a/doc/html/boost_regex/ref/regex_iterator.html +++ b/doc/html/boost_regex/ref/regex_iterator.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More


    @@ -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 5bfc618b..af02d4d3 100644 --- a/doc/html/boost_regex/ref/regex_match.html +++ b/doc/html/boost_regex/ref/regex_match.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More


    @@ -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 35f28bdb..b7a68262 100644 --- a/doc/html/boost_regex/ref/regex_replace.html +++ b/doc/html/boost_regex/ref/regex_replace.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More


    @@ -53,7 +53,7 @@ match_flag_type flags = match_default);
    - + Description
    template <class OutputIterator, class BidirectionalIterator, class traits, class charT>
    @@ -163,7 +163,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 b465289a..d10cd029 100644 --- a/doc/html/boost_regex/ref/regex_search.html +++ b/doc/html/boost_regex/ref/regex_search.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More


    @@ -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 af4d2628..66d3f95b 100644 --- a/doc/html/boost_regex/ref/regex_token_iterator.html +++ b/doc/html/boost_regex/ref/regex_token_iterator.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More


    @@ -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 6921b956..7d28801a 100644 --- a/doc/html/boost_regex/ref/regex_traits.html +++ b/doc/html/boost_regex/ref/regex_traits.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More


    @@ -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 5b37ba80..7f81828c 100644 --- a/doc/html/boost_regex/ref/sub_match.html +++ b/doc/html/boost_regex/ref/sub_match.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More


    @@ -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/ref/syntax_option_type.html b/doc/html/boost_regex/ref/syntax_option_type.html index 1b85cd92..1d462ee4 100644 --- a/doc/html/boost_regex/ref/syntax_option_type.html +++ b/doc/html/boost_regex/ref/syntax_option_type.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More


    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 ebf60a22..bbf9b9fe 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 @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    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 40b26c30..ca2f0498 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 @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    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 33b0e5b9..59951dda 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 @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    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 824e23a4..3921b6c7 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 @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    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 31a70ec9..eac297db 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 @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    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 099bab6f..31718c69 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 @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/syntax.html b/doc/html/boost_regex/syntax.html index 14a2b9bc..edb7cd07 100644 --- a/doc/html/boost_regex/syntax.html +++ b/doc/html/boost_regex/syntax.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/syntax/basic_extended.html b/doc/html/boost_regex/syntax/basic_extended.html index 290e2f3b..24f56fce 100644 --- a/doc/html/boost_regex/syntax/basic_extended.html +++ b/doc/html/boost_regex/syntax/basic_extended.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    @@ -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 62c63e46..6f335e00 100644 --- a/doc/html/boost_regex/syntax/basic_syntax.html +++ b/doc/html/boost_regex/syntax/basic_syntax.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More


    @@ -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/character_classes.html b/doc/html/boost_regex/syntax/character_classes.html index 8a88baf5..560a431e 100644 --- a/doc/html/boost_regex/syntax/character_classes.html +++ b/doc/html/boost_regex/syntax/character_classes.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More


    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 f9ca8d6e..09f3d399 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 @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    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 1d1f612e..56dad397 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 @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/syntax/collating_names.html b/doc/html/boost_regex/syntax/collating_names.html index 6fc589cd..40024684 100644 --- a/doc/html/boost_regex/syntax/collating_names.html +++ b/doc/html/boost_regex/syntax/collating_names.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/syntax/collating_names/digraphs.html b/doc/html/boost_regex/syntax/collating_names/digraphs.html index 55b9ee20..a0711eff 100644 --- a/doc/html/boost_regex/syntax/collating_names/digraphs.html +++ b/doc/html/boost_regex/syntax/collating_names/digraphs.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    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 2fbedb55..fb89eb0e 100644 --- a/doc/html/boost_regex/syntax/collating_names/named_unicode.html +++ b/doc/html/boost_regex/syntax/collating_names/named_unicode.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    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 fddfa5ac..7298b7dd 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 @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/syntax/leftmost_longest_rule.html b/doc/html/boost_regex/syntax/leftmost_longest_rule.html index f64d70c0..92433f80 100644 --- a/doc/html/boost_regex/syntax/leftmost_longest_rule.html +++ b/doc/html/boost_regex/syntax/leftmost_longest_rule.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/syntax/perl_syntax.html b/doc/html/boost_regex/syntax/perl_syntax.html index a9dc9ba7..f73e386c 100644 --- a/doc/html/boost_regex/syntax/perl_syntax.html +++ b/doc/html/boost_regex/syntax/perl_syntax.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    @@ -28,7 +28,7 @@ Syntax

    - + Synopsis

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

    - + Perl Regular Expression Syntax

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

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

    @@ -75,7 +75,7 @@

    - + Anchors

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

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

    - + Non-marking grouping
    @@ -111,7 +111,7 @@ out any separate sub-expressions.

    - + Repeats

    @@ -197,7 +197,7 @@ operator to be applied to.

    - + Non greedy repeats
    @@ -228,7 +228,7 @@ input as possible.

    - + Back references

    @@ -248,7 +248,7 @@

    aaabba
     
    - + Alternation

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

    - + Character sets

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

    - + Single characters

    @@ -298,7 +298,7 @@ or 'c'.

    - + Character ranges
    @@ -311,7 +311,7 @@ regular expression, then ranges are locale sensitive.

    - + Negation

    @@ -320,7 +320,7 @@ range a-c.

    - + Character classes
    @@ -330,7 +330,7 @@ character class names.

    - + Collating Elements
    @@ -354,7 +354,7 @@ character.

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

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

    - + Combinations

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

    - + Escapes

    @@ -584,7 +584,7 @@

    - + "Single character" character classes:
    @@ -738,7 +738,7 @@
    - + Character Properties
    @@ -846,7 +846,7 @@ matches any "digit" character, as does \p{digit}.

    - + Word Boundaries

    @@ -868,7 +868,7 @@ Matches only when not at a word boundary.

    - + Buffer boundaries

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

    - + Continuation Escape
    @@ -905,7 +905,7 @@ match to start where the last one ended.

    - + Quoting escape

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

    - + Unicode escapes

    @@ -929,7 +929,7 @@ combining characters.

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

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

    - + Comments

    @@ -956,7 +956,7 @@ are ignored.

    - + Modifiers

    @@ -971,7 +971,7 @@ applies the specified modifiers to pattern only.

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

    - + Lookahead

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

    - + Lookbehind

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

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

    - + Conditional Expressions
    @@ -1050,7 +1050,7 @@ sub-expression has been matched).

    - + Operator precedence
    @@ -1086,7 +1086,7 @@

    - + What gets matched

    @@ -1271,7 +1271,7 @@

    - + Variations

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

    - + Options

    @@ -1293,7 +1293,7 @@ sensitivity are to be applied.

    - + Pattern Modifiers

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

    - + References

    diff --git a/doc/html/boost_regex/unicode.html b/doc/html/boost_regex/unicode.html index 9cb48ebc..74631e32 100644 --- a/doc/html/boost_regex/unicode.html +++ b/doc/html/boost_regex/unicode.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More


    @@ -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 f7007f8a..2c00ebe9 100644 --- a/doc/html/index.html +++ b/doc/html/index.html @@ -12,8 +12,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    @@ -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)

    @@ -190,9 +190,13 @@
    +

    + A printer-friendly PDF + version of this manual is also available. +

    - +

    Last revised: January 14, 2008 at 09:54:07 GMT

    Last revised: February 21, 2008 at 12:52:05 GMT


    diff --git a/doc/regex.qbk b/doc/regex.qbk index 7cbe4df5..4fa5636b 100644 --- a/doc/regex.qbk +++ b/doc/regex.qbk @@ -45,6 +45,10 @@ [template regerror[] [link boost_regex.ref.posix.regerror `regerror`]] [template regfree[] [link boost_regex.ref.posix.regfree `regfree`]] +A printer-friendly +[@http://svn.boost.org/svn/boost/sandbox/pdf/regex/release/regex.pdf +PDF version of this manual is also available]. + [include configuration.qbk] [include install.qbk] [include introduction.qbk] From c9d1a42e053b21f02cb6a1384f3d7e2624a3532b Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sat, 15 Mar 2008 18:19:11 +0000 Subject: [PATCH 14/72] Added missing files. [SVN r43632] --- doc/gcc-performance.html | 543 +++++++++++++++++++++++++++++ doc/vc71-performance.html | 703 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 1246 insertions(+) create mode 100644 doc/gcc-performance.html create mode 100644 doc/vc71-performance.html diff --git a/doc/gcc-performance.html b/doc/gcc-performance.html new file mode 100644 index 00000000..5dcea95a --- /dev/null +++ b/doc/gcc-performance.html @@ -0,0 +1,543 @@ + + + + Regular Expression Performance Comparison (gcc 3.2) + + + + + + + +

    Regular Expression Performance Comparison

    +

    The following tables provide comparisons between the following regular + expression libraries:

    +

    The Boost regex library.

    +

    The GNU regular expression library.

    +

    Philip Hazel's PCRE library.

    +

    Details

    +

    Machine: Intel Pentium 4 2.8GHz PC.

    +

    Compiler: GNU C++ version 3.2 20020927 (prerelease).

    +

    C++ Standard Library: GNU libstdc++ version 20020927.

    +

    OS: Cygwin.

    +

    Boost version: 1.31.0.

    +

    PCRE version: 4.1.

    +

    As ever care should be taken in interpreting the results, only sensible regular + expressions (rather than pathological cases) are given, most are taken from the + Boost regex examples, or from the Library of + Regular Expressions. In addition, some variation in the relative + performance of these libraries can be expected on other machines - as memory + access and processor caching effects can be quite large for most finite state + machine algorithms. In each case the first figure given is the relative time + taken (so a value of 1.0 is as good as it gets), while the second figure is the + actual time taken.

    +

    Averages

    +

    The following are the average relative scores for all the tests: the perfect + regular expression library would score 1, in practice anything less than 2 + is pretty good.

    + + + + + + + + + + + + + +
    BoostBoost + C++ localePOSIXPCRE
    1.45031.49124108.3721.56255
    +
    +
    +

    Comparison 1: Long Search

    +

    For each of the following regular expressions the time taken to find all + occurrences of the expression within a long English language text was measured + (mtent12.txt + from Project Gutenberg, 19Mb). 

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ExpressionBoostBoost + C++ localePOSIXPCRE
    Twain3.49
    + (0.205s)
    4.09
    + (0.24s)
    65.2
    + (3.83s)
    1
    + (0.0588s)
    Huck[[:alpha:]]+3.86
    + (0.203s)
    4.52
    + (0.238s)
    100
    + (5.26s)
    1
    + (0.0526s)
    [[:alpha:]]+ing1.01
    + (1.23s)
    1
    + (1.22s)
    4.95
    + (6.04s)
    4.67
    + (5.71s)
    ^[^ ]*?Twain1
    + (0.31s)
    1.05
    + (0.326s)
    NA3.32
    + (1.03s)
    Tom|Sawyer|Huckleberry|Finn1.02
    + (0.125s)
    1
    + (0.123s)
    165
    + (20.3s)
    1.08
    + (0.133s)
    (Tom|Sawyer|Huckleberry|Finn).{0,30}river|river.{0,30}(Tom|Sawyer|Huckleberry|Finn)1
    + (0.345s)
    1.03
    + (0.355s)
    NA1.71
    + (0.59s)
    +
    +
    +

    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). 

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ExpressionBoostBoost + C++ localePOSIXPCRE
    Twain1.8
    + (0.000519s)
    2.14
    + (0.000616s)
    9.08
    + (0.00262s)
    1
    + (0.000289s)
    Huck[[:alpha:]]+3.65
    + (0.000499s)
    4.36
    + (0.000597s)
    1
    + (0.000137s)
    1.43
    + (0.000196s)
    [[:alpha:]]+ing1
    + (0.00258s)
    1
    + (0.00258s)
    5.28
    + (0.0136s)
    5.63
    + (0.0145s)
    ^[^ ]*?Twain1
    + (0.000929s)
    1.03
    + (0.000957s)
    NA2.82
    + (0.00262s)
    Tom|Sawyer|Huckleberry|Finn1
    + (0.000812s)
    1
    + (0.000812s)
    60.1
    + (0.0488s)
    1.28
    + (0.00104s)
    (Tom|Sawyer|Huckleberry|Finn).{0,30}river|river.{0,30}(Tom|Sawyer|Huckleberry|Finn)1.02
    + (0.00178s)
    1
    + (0.00174s)
    242
    + (0.421s)
    1.3
    + (0.00227s)
    +
    +
    +

    Comparison 3: C++ Code Search

    +

    For each of the following regular expressions the time taken to find all + occurrences of the expression within the C++ source file + boost/crc.hpp was measured. 

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ExpressionBoostBoost + C++ localePOSIXPCRE
    ^(template[[:space:]]*<[^;:{]+>[[:space:]]*)?(class|struct)[[:space:]]*(\<\w+\>([ + ]*\([^)]*\))?[[:space:]]*)*(\<\w*\>)[[:space:]]*(<[^;:{]+>[[:space:]]*)?(\{|:[^;\{()]*\{)1.04
    + (0.000144s)
    1
    + (0.000139s)
    862
    + (0.12s)
    4.56
    + (0.000636s)
    (^[ + ]*#(?:[^\\\n]|\\[^\n_[:punct:][:alnum:]]*[\n[:punct:][:word:]])*)|(//[^\n]*|/\*.*?\*/)|\<([+-]?(?:(?:0x[[:xdigit:]]+)|(?:(?:[[:digit:]]*\.)?[[:digit:]]+(?:[eE][+-]?[[:digit:]]+)?))u?(?:(?:int(?:8|16|32|64))|L)?)\>|('(?:[^\\']|\\.)*'|"(?:[^\\"]|\\.)*")|\<(__asm|__cdecl|__declspec|__export|__far16|__fastcall|__fortran|__import|__pascal|__rtti|__stdcall|_asm|_cdecl|__except|_export|_far16|_fastcall|__finally|_fortran|_import|_pascal|_stdcall|__thread|__try|asm|auto|bool|break|case|catch|cdecl|char|class|const|const_cast|continue|default|delete|do|double|dynamic_cast|else|enum|explicit|extern|false|float|for|friend|goto|if|inline|int|long|mutable|namespace|new|operator|pascal|private|protected|public|register|reinterpret_cast|return|short|signed|sizeof|static|static_cast|struct|switch|template|this|throw|true|try|typedef|typeid|typename|union|unsigned|using|virtual|void|volatile|wchar_t|while)\>1
    + (0.0139s)
    1.01
    + (0.0141s)
    NA1.55
    + (0.0216s)
    ^[ ]*#[ ]*include[ ]+("[^"]+"|<[^>]+>)1.04
    + (0.000332s)
    1
    + (0.000318s)
    130
    + (0.0413s)
    1.72
    + (0.000547s)
    ^[ ]*#[ ]*include[ ]+("boost/[^"]+"|<boost/[^>]+>)1.02
    + (0.000323s)
    1
    + (0.000318s)
    150
    + (0.0476s)
    1.72
    + (0.000547s)
    +
    +

    +

    Comparison 4: HTML Document Search +

    +

    For each of the following regular expressions the time taken to find all + occurrences of the expression within the html file libs/libraries.htm + was measured. 

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ExpressionBoostBoost + C++ localePOSIXPCRE
    beman|john|dave1.03
    + (0.000367s)
    1
    + (0.000357s)
    47.4
    + (0.0169s)
    1.16
    + (0.000416s)
    <p>.*?</p>1.25
    + (0.000459s)
    1
    + (0.000367s)
    NA1.03
    + (0.000376s)
    <a[^>]+href=("[^"]*"|[^[:space:]]+)[^>]*>1
    + (0.000509s)
    1.02
    + (0.000518s)
    305
    + (0.155s)
    1.1
    + (0.000558s)
    <h[12345678][^>]*>.*?</h[12345678]>1.04
    + (0.00025s)
    1
    + (0.00024s)
    NA1.16
    + (0.000279s)
    <img[^>]+src=("[^"]*"|[^[:space:]]+)[^>]*>2.22
    + (0.000489s)
    1.69
    + (0.000372s)
    148
    + (0.0326s)
    1
    + (0.00022s)
    <font[^>]+face=("[^"]*"|[^[:space:]]+)[^>]*>.*?</font>1.71
    + (0.000371s)
    1.75
    + (0.000381s)
    NA1
    + (0.000218s)
    +
    +
    +

    Comparison 3: Simple Matches

    +

    For each of the following regular expressions the time taken to match against + the text indicated was measured. 

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ExpressionTextBoostBoost + C++ localePOSIXPCRE
    abcabc1.36
    + (2.15e-07s)
    1.36
    + (2.15e-07s)
    2.76
    + (4.34e-07s)
    1
    + (1.58e-07s)
    ^([0-9]+)(\-| |$)(.*)$100- this is a line of ftp response which contains a message string1.55
    + (7.26e-07s)
    1.51
    + (7.07e-07s)
    319
    + (0.000149s)
    1
    + (4.67e-07s)
    ([[:digit:]]{4}[- ]){3}[[:digit:]]{3,4}1234-5678-1234-4561.96
    + (9.54e-07s)
    1.96
    + (9.54e-07s)
    44.5
    + (2.17e-05s)
    1
    + (4.87e-07s)
    ^([a-zA-Z0-9_\-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([a-zA-Z0-9\-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$john@johnmaddock.co.uk1.22
    + (1.51e-06s)
    1.23
    + (1.53e-06s)
    162
    + (0.000201s)
    1
    + (1.24e-06s)
    ^([a-zA-Z0-9_\-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([a-zA-Z0-9\-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$foo12@foo.edu1.28
    + (1.47e-06s)
    1.3
    + (1.49e-06s)
    104
    + (0.00012s)
    1
    + (1.15e-06s)
    ^([a-zA-Z0-9_\-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([a-zA-Z0-9\-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$bob.smith@foo.tv1.28
    + (1.47e-06s)
    1.3
    + (1.49e-06s)
    113
    + (0.00013s)
    1
    + (1.15e-06s)
    ^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$EH10 2QQ1.38
    + (4.68e-07s)
    1.41
    + (4.77e-07s)
    13.5
    + (4.59e-06s)
    1
    + (3.39e-07s)
    ^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$G1 1AA1.28
    + (4.35e-07s)
    1.25
    + (4.25e-07s)
    11.7
    + (3.97e-06s)
    1
    + (3.39e-07s)
    ^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$SW1 1ZZ1.32
    + (4.53e-07s)
    1.31
    + (4.49e-07s)
    12.2
    + (4.2e-06s)
    1
    + (3.44e-07s)
    ^[[:digit:]]{1,2}/[[:digit:]]{1,2}/[[:digit:]]{4}$4/1/20011.16
    + (3.82e-07s)
    1.2
    + (3.96e-07s)
    13.9
    + (4.59e-06s)
    1
    + (3.29e-07s)
    ^[[:digit:]]{1,2}/[[:digit:]]{1,2}/[[:digit:]]{4}$12/12/20011.38
    + (4.49e-07s)
    1.38
    + (4.49e-07s)
    16
    + (5.2e-06s)
    1
    + (3.25e-07s)
    ^[-+]?[[:digit:]]*\.?[[:digit:]]*$1231.19
    + (7.64e-07s)
    1.16
    + (7.45e-07s)
    7.51
    + (4.81e-06s)
    1
    + (6.4e-07s)
    ^[-+]?[[:digit:]]*\.?[[:digit:]]*$+3.141591.32
    + (8.97e-07s)
    1.31
    + (8.88e-07s)
    14
    + (9.48e-06s)
    1
    + (6.78e-07s)
    ^[-+]?[[:digit:]]*\.?[[:digit:]]*$-3.141591.32
    + (8.97e-07s)
    1.31
    + (8.88e-07s)
    14
    + (9.48e-06s)
    1
    + (6.78e-07s)
    +
    +
    +
    +

    © Copyright John Maddock 2003

    +

    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)

    + + + diff --git a/doc/vc71-performance.html b/doc/vc71-performance.html new file mode 100644 index 00000000..c847845a --- /dev/null +++ b/doc/vc71-performance.html @@ -0,0 +1,703 @@ + + + Regular Expression Performance Comparison + + + + + + +

    Regular Expression Performance Comparison

    +

    + The following tables provide comparisons between the following regular + expression libraries:

    +

    GRETA.

    +

    The Boost regex library.

    +

    Henry Spencer's regular expression library + - this is provided for comparison as a typical non-backtracking implementation.

    +

    Philip Hazel's PCRE library.

    +

    Details

    +

    Machine: Intel Pentium 4 2.8GHz PC.

    +

    Compiler: Microsoft Visual C++ version 7.1.

    +

    C++ Standard Library: Dinkumware standard library version 313.

    +

    OS: Win32.

    +

    Boost version: 1.31.0.

    +

    PCRE version: 3.9.

    +

    + As ever care should be taken in interpreting the results, only sensible regular + expressions (rather than pathological cases) are given, most are taken from the + Boost regex examples, or from the Library of + Regular Expressions. In addition, some variation in the relative + performance of these libraries can be expected on other machines - as memory + access and processor caching effects can be quite large for most finite state + machine algorithms.

    +

    Averages

    +

    The following are the average relative scores for all the tests: the perfect + regular expression library would score 1, in practice any small number + (say less that 4 or 5) is pretty good.

    +

    + + + + + + + + + + + + + + + + +
    GRETAGRETA
    + (non-recursive mode)
    BoostBoost + C++ localePOSIXPCRE
    2.316196.142032.306681.94363124.7522.09365
    +

    +

    Comparison 1: Long Search

    +

    For each of the following regular expressions the time taken to find all + occurrences of the expression within a long English language text was measured + (mtent12.txt + from Project Gutenberg, 19Mb). 

    +

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ExpressionGRETAGRETA
    + (non-recursive mode)
    BoostBoost + C++ localePOSIXPCRE
    Twain1
    + (0.0407s)
    1
    + (0.0407s)
    4.18
    + (0.17s)
    4.18
    + (0.17s)
    135
    + (5.48s)
    1.37
    + (0.0557s)
    Huck[[:alpha:]]+1.02
    + (0.0381s)
    1
    + (0.0375s)
    4.53
    + (0.17s)
    4.54
    + (0.17s)
    166
    + (6.23s)
    1.34
    + (0.0501s)
    [[:alpha:]]+ing4.3
    + (4.18s)
    9.93
    + (9.65s)
    1.15
    + (1.12s)
    1
    + (0.972s)
    8.15
    + (7.92s)
    5.85
    + (5.69s)
    ^[^ ]*?Twain6.25
    + (1.84s)
    20.9
    + (6.16s)
    1.56
    + (0.461s)
    1
    + (0.295s)
    NA2.58
    + (0.761s)
    Tom|Sawyer|Huckleberry|Finn6.53
    + (0.711s)
    11.5
    + (1.25s)
    2.3
    + (0.251s)
    1
    + (0.109s)
    196
    + (21.4s)
    1.77
    + (0.193s)
    (Tom|Sawyer|Huckleberry|Finn).{0,30}river|river.{0,30}(Tom|Sawyer|Huckleberry|Finn)3.88
    + (0.972s)
    6.48
    + (1.62s)
    1.66
    + (0.416s)
    1
    + (0.251s)
    NA2.48
    + (0.62s)
    +

    +

    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). 

    +

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ExpressionGRETAGRETA
    + (non-recursive mode)
    BoostBoost + C++ localePOSIXPCRE
    Twain1
    + (9.05e-005s)
    1.03
    + (9.29e-005s)
    4.92
    + (0.000445s)
    4.92
    + (0.000445s)
    43.2
    + (0.00391s)
    3.18
    + (0.000288s)
    Huck[[:alpha:]]+1
    + (8.56e-005s)
    1
    + (8.56e-005s)
    4.97
    + (0.000425s)
    4.98
    + (0.000426s)
    2.8
    + (0.000239s)
    2.2
    + (0.000188s)
    [[:alpha:]]+ing5.29
    + (0.011s)
    11.8
    + (0.0244s)
    1.19
    + (0.00246s)
    1
    + (0.00207s)
    8.77
    + (0.0182s)
    6.88
    + (0.0142s)
    ^[^ ]*?Twain5.98
    + (0.00462s)
    20.2
    + (0.0156s)
    1.54
    + (0.00119s)
    1
    + (0.000772s)
    NA2.53
    + (0.00195s)
    Tom|Sawyer|Huckleberry|Finn3.42
    + (0.00207s)
    6.31
    + (0.00383s)
    1.71
    + (0.00104s)
    1
    + (0.000606s)
    81.5
    + (0.0494s)
    1.96
    + (0.00119s)
    (Tom|Sawyer|Huckleberry|Finn).{0,30}river|river.{0,30}(Tom|Sawyer|Huckleberry|Finn)1.97
    + (0.00266s)
    3.77
    + (0.00509s)
    1.38
    + (0.00186s)
    1
    + (0.00135s)
    297
    + (0.401s)
    1.77
    + (0.00238s)
    +

    +

    Comparison 3: C++ Code Search

    +

    For each of the following regular expressions the time taken to find all + occurrences of the expression within the C++ source file + boost/crc.hpp was measured. 

    +

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ExpressionGRETAGRETA
    + (non-recursive mode)
    BoostBoost + C++ localePOSIXPCRE
    ^(template[[:space:]]*<[^;:{]+>[[:space:]]*)?(class|struct)[[:space:]]*(\<\w+\>([ + ]*\([^)]*\))?[[:space:]]*)*(\<\w*\>)[[:space:]]*(<[^;:{]+>[[:space:]]*)?(\{|:[^;\{()]*\{)6.67
    + (0.00147s)
    36.9
    + (0.00813s)
    1.03
    + (0.000227s)
    1
    + (0.00022s)
    557
    + (0.123s)
    2.57
    + (0.000566s)
    (^[ + ]*#(?:[^\\\n]|\\[^\n_[:punct:][:alnum:]]*[\n[:punct:][:word:]])*)|(//[^\n]*|/\*.*?\*/)|\<([+-]?(?:(?:0x[[:xdigit:]]+)|(?:(?:[[:digit:]]*\.)?[[:digit:]]+(?:[eE][+-]?[[:digit:]]+)?))u?(?:(?:int(?:8|16|32|64))|L)?)\>|('(?:[^\\']|\\.)*'|"(?:[^\\"]|\\.)*")|\<(__asm|__cdecl|__declspec|__export|__far16|__fastcall|__fortran|__import|__pascal|__rtti|__stdcall|_asm|_cdecl|__except|_export|_far16|_fastcall|__finally|_fortran|_import|_pascal|_stdcall|__thread|__try|asm|auto|bool|break|case|catch|cdecl|char|class|const|const_cast|continue|default|delete|do|double|dynamic_cast|else|enum|explicit|extern|false|float|for|friend|goto|if|inline|int|long|mutable|namespace|new|operator|pascal|private|protected|public|register|reinterpret_cast|return|short|signed|sizeof|static|static_cast|struct|switch|template|this|throw|true|try|typedef|typeid|typename|union|unsigned|using|virtual|void|volatile|wchar_t|while)\>1
    + (0.00555s)
    3.32
    + (0.0185s)
    2.53
    + (0.0141s)
    1.94
    + (0.0108s)
    NA3.38
    + (0.0188s)
    ^[ ]*#[ ]*include[ ]+("[^"]+"|<[^>]+>)4.77
    + (0.00156s)
    24.8
    + (0.00814s)
    1.13
    + (0.000372s)
    1
    + (0.000328s)
    120
    + (0.0394s)
    1.58
    + (0.000518s)
    ^[ ]*#[ ]*include[ ]+("boost/[^"]+"|<boost/[^>]+>)4.72
    + (0.00154s)
    24.8
    + (0.00813s)
    1.12
    + (0.000367s)
    1
    + (0.000328s)
    143
    + (0.0469s)
    1.58
    + (0.000518s)
    +

    +

    +

    Comparison 4: HTML Document Search

    + +

    For each of the following regular expressions the time taken to find all + occurrences of the expression within the html file libs/libraries.htm + was measured. 

    +

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ExpressionGRETAGRETA
    + (non-recursive mode)
    BoostBoost + C++ localePOSIXPCRE
    beman|john|dave4.07
    + (0.00111s)
    7.14
    + (0.00195s)
    1.75
    + (0.000479s)
    1
    + (0.000273s)
    54.3
    + (0.0149s)
    1.83
    + (0.000499s)
    <p>.*?</p>1
    + (6.59e-005s)
    1.04
    + (6.84e-005s)
    4.15
    + (0.000273s)
    4.23
    + (0.000279s)
    NA4.23
    + (0.000279s)
    <a[^>]+href=("[^"]*"|[^[:space:]]+)[^>]*>1.39
    + (0.000626s)
    1.83
    + (0.000821s)
    1.41
    + (0.000636s)
    1
    + (0.00045s)
    351
    + (0.158s)
    1.13
    + (0.000509s)
    <h[12345678][^>]*>.*?</h[12345678]>1
    + (0.000142s)
    1.21
    + (0.000171s)
    2.62
    + (0.000372s)
    1.48
    + (0.00021s)
    NA1.73
    + (0.000245s)
    <img[^>]+src=("[^"]*"|[^[:space:]]+)[^>]*>1
    + (5.38e-005s)
    1.05
    + (5.63e-005s)
    5
    + (0.000269s)
    5.18
    + (0.000278s)
    604
    + (0.0325s)
    4.05
    + (0.000218s)
    <font[^>]+face=("[^"]*"|[^[:space:]]+)[^>]*>.*?</font>1
    + (6.05e-005s)
    1.09
    + (6.59e-005s)
    4.45
    + (0.000269s)
    4.69
    + (0.000284s)
    NA3.64
    + (0.00022s)
    +

    +

    Comparison 3: Simple Matches

    +

    + For each of the following regular expressions the time taken to match against + the text indicated was measured. 

    +

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ExpressionTextGRETAGRETA
    + (non-recursive mode)
    BoostBoost + C++ localePOSIXPCRE
    abcabc1.32
    + (2.24e-007s)
    1.86
    + (3.15e-007s)
    1.25
    + (2.12e-007s)
    1.24
    + (2.1e-007s)
    2.98
    + (5.05e-007s)
    1
    + (1.7e-007s)
    ^([0-9]+)(\-| |$)(.*)$100- this is a line of ftp response which contains a message string1.32
    + (5.91e-007s)
    1.96
    + (8.78e-007s)
    2.68
    + (1.2e-006s)
    1.53
    + (6.88e-007s)
    332
    + (0.000149s)
    1
    + (4.49e-007s)
    ([[:digit:]]{4}[- ]){3}[[:digit:]]{3,4}1234-5678-1234-4561.44
    + (7.16e-007s)
    2.04
    + (1.01e-006s)
    3.35
    + (1.66e-006s)
    2.15
    + (1.07e-006s)
    31.4
    + (1.56e-005s)
    1
    + (4.96e-007s)
    ^([a-zA-Z0-9_\-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([a-zA-Z0-9\-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$john@johnmaddock.co.uk1
    + (1.18e-006s)
    1.42
    + (1.68e-006s)
    2.06
    + (2.44e-006s)
    1.35
    + (1.6e-006s)
    165
    + (0.000196s)
    1.06
    + (1.26e-006s)
    ^([a-zA-Z0-9_\-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([a-zA-Z0-9\-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$foo12@foo.edu1
    + (1.09e-006s)
    1.44
    + (1.57e-006s)
    2.21
    + (2.4e-006s)
    1.41
    + (1.53e-006s)
    108
    + (0.000117s)
    1.04
    + (1.13e-006s)
    ^([a-zA-Z0-9_\-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([a-zA-Z0-9\-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$bob.smith@foo.tv1
    + (1.07e-006s)
    1.43
    + (1.53e-006s)
    2.21
    + (2.37e-006s)
    1.45
    + (1.55e-006s)
    123
    + (0.000132s)
    1.05
    + (1.13e-006s)
    ^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$EH10 2QQ1
    + (3.19e-007s)
    1.67
    + (5.34e-007s)
    1.58
    + (5.05e-007s)
    1.4
    + (4.49e-007s)
    10.4
    + (3.32e-006s)
    1.15
    + (3.68e-007s)
    ^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$G1 1AA1
    + (3.29e-007s)
    1.65
    + (5.44e-007s)
    1.51
    + (4.96e-007s)
    1.36
    + (4.49e-007s)
    8.46
    + (2.79e-006s)
    1.1
    + (3.63e-007s)
    ^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$SW1 1ZZ1
    + (3.25e-007s)
    1.64
    + (5.34e-007s)
    1.56
    + (5.05e-007s)
    1.38
    + (4.49e-007s)
    9.29
    + (3.02e-006s)
    1.13
    + (3.68e-007s)
    ^[[:digit:]]{1,2}/[[:digit:]]{1,2}/[[:digit:]]{4}$4/1/20011
    + (3.44e-007s)
    1.55
    + (5.34e-007s)
    2.36
    + (8.12e-007s)
    2.2
    + (7.55e-007s)
    19.6
    + (6.72e-006s)
    1.81
    + (6.21e-007s)
    ^[[:digit:]]{1,2}/[[:digit:]]{1,2}/[[:digit:]]{4}$12/12/20011.05
    + (6.59e-007s)
    1.66
    + (1.05e-006s)
    1.44
    + (9.07e-007s)
    1.23
    + (7.73e-007s)
    11.6
    + (7.34e-006s)
    1
    + (6.3e-007s)
    ^[-+]?[[:digit:]]*\.?[[:digit:]]*$1231
    + (5.72e-007s)
    1.59
    + (9.07e-007s)
    1.6
    + (9.16e-007s)
    1.49
    + (8.5e-007s)
    6.14
    + (3.51e-006s)
    1.22
    + (6.97e-007s)
    ^[-+]?[[:digit:]]*\.?[[:digit:]]*$+3.141591
    + (6.78e-007s)
    1.52
    + (1.03e-006s)
    1.47
    + (9.94e-007s)
    1.31
    + (8.88e-007s)
    10.8
    + (7.34e-006s)
    1.08
    + (7.35e-007s)
    ^[-+]?[[:digit:]]*\.?[[:digit:]]*$-3.141591
    + (6.78e-007s)
    1.52
    + (1.03e-006s)
    1.46
    + (9.92e-007s)
    1.32
    + (8.98e-007s)
    10.5
    + (7.11e-006s)
    1.11
    + (7.54e-007s)
    +

    +
    +

    © Copyright John Maddock 2003

    +

    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)

    + + + From e5bc36d7c900faf829552c899b5ac4f5e8b2e871 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Wed, 9 Apr 2008 15:32:08 +0000 Subject: [PATCH 15/72] Fix for bug #1790. [SVN r44128] --- include/boost/regex/concepts.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/regex/concepts.hpp b/include/boost/regex/concepts.hpp index 0f5677a2..97c77978 100644 --- a/include/boost/regex/concepts.hpp +++ b/include/boost/regex/concepts.hpp @@ -368,8 +368,6 @@ struct BaseRegexConcept // access: const Regex ce; - bool b = ce.empty(); - ignore_unused_variable_warning(b); unsigned i = ce.mark_count(); ignore_unused_variable_warning(i); m_flags = ce.flags(); @@ -806,6 +804,8 @@ struct BoostRegexConcept ignore_unused_variable_warning(i2); bool b = ce == ce2; ignore_unused_variable_warning(b); + b = ce.empty(); + ignore_unused_variable_warning(b); b = ce != ce2; ignore_unused_variable_warning(b); b = ce < ce2; From 6e9b9a7995a77693e161706571f79145cab9263c Mon Sep 17 00:00:00 2001 From: John Maddock Date: Thu, 10 Apr 2008 12:46:41 +0000 Subject: [PATCH 16/72] Doh! Changes to code should actually compile! A fix for the last change. [SVN r44145] --- include/boost/regex/concepts.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/regex/concepts.hpp b/include/boost/regex/concepts.hpp index 97c77978..99c6eea5 100644 --- a/include/boost/regex/concepts.hpp +++ b/include/boost/regex/concepts.hpp @@ -383,7 +383,7 @@ struct BaseRegexConcept typedef typename sub_match_type::iterator sub_iter_type; BOOST_STATIC_ASSERT((::boost::is_same::value)); BOOST_STATIC_ASSERT((::boost::is_same::value)); - b = m_sub.matched; + bool b = m_sub.matched; ignore_unused_variable_warning(b); BidiIterator bi = m_sub.first; ignore_unused_variable_warning(bi); From c7dda1b549ae2cb9d27a77e96982e32918465b4e Mon Sep 17 00:00:00 2001 From: John Maddock Date: Fri, 11 Apr 2008 08:53:54 +0000 Subject: [PATCH 17/72] Fix doc typo from issue #1794. [SVN r44169] --- .../boost_regex/background_information.html | 2 +- .../acknowledgements.html | 2 +- .../background_information/examples.html | 2 +- .../background_information/faq.html | 2 +- .../background_information/futher.html | 2 +- .../background_information/headers.html | 2 +- .../background_information/history.html | 12 +++---- .../background_information/locale.html | 2 +- .../background_information/performance.html | 2 +- .../background_information/redist.html | 2 +- .../background_information/standards.html | 4 +-- .../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 | 2 +- doc/html/boost_regex/format/perl_format.html | 2 +- doc/html/boost_regex/format/sed_format.html | 2 +- doc/html/boost_regex/install.html | 18 +++++----- .../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 | 2 +- doc/html/boost_regex/ref/basic_regex.html | 2 +- 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 | 2 +- .../ref/deprecated_interfaces.html | 2 +- .../ref/deprecated_interfaces/old_regex.html | 2 +- .../deprecated_interfaces/regex_format.html | 2 +- .../ref/deprecated_interfaces/regex_grep.html | 2 +- .../deprecated_interfaces/regex_split.html | 2 +- doc/html/boost_regex/ref/error_type.html | 2 +- doc/html/boost_regex/ref/match_flag_type.html | 2 +- doc/html/boost_regex/ref/match_results.html | 2 +- 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 | 2 +- .../ref/non_std_strings/icu/unicode_iter.html | 2 +- .../non_std_strings/icu/unicode_types.html | 2 +- .../ref/non_std_strings/mfc_strings.html | 2 +- .../non_std_strings/mfc_strings/mfc_algo.html | 2 +- .../mfc_strings/mfc_intro.html | 2 +- .../non_std_strings/mfc_strings/mfc_iter.html | 2 +- .../mfc_strings/mfc_regex_create.html | 2 +- .../mfc_strings/mfc_regex_types.html | 2 +- doc/html/boost_regex/ref/posix.html | 2 +- doc/html/boost_regex/ref/regex_iterator.html | 2 +- doc/html/boost_regex/ref/regex_match.html | 2 +- doc/html/boost_regex/ref/regex_replace.html | 2 +- doc/html/boost_regex/ref/regex_search.html | 2 +- .../boost_regex/ref/regex_token_iterator.html | 2 +- doc/html/boost_regex/ref/regex_traits.html | 2 +- doc/html/boost_regex/ref/sub_match.html | 2 +- .../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 | 2 +- doc/html/boost_regex/syntax/basic_syntax.html | 2 +- .../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 | 36 +++++++++---------- doc/html/boost_regex/unicode.html | 6 ++-- doc/html/index.html | 6 ++-- doc/syntax_perl.qbk | 2 +- 83 files changed, 121 insertions(+), 121 deletions(-) diff --git a/doc/html/boost_regex/background_information.html b/doc/html/boost_regex/background_information.html index 44b9fc3b..d0c12bab 100644 --- a/doc/html/boost_regex/background_information.html +++ b/doc/html/boost_regex/background_information.html @@ -12,7 +12,7 @@ - + diff --git a/doc/html/boost_regex/background_information/acknowledgements.html b/doc/html/boost_regex/background_information/acknowledgements.html index 844f5874..38965407 100644 --- a/doc/html/boost_regex/background_information/acknowledgements.html +++ b/doc/html/boost_regex/background_information/acknowledgements.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/background_information/examples.html b/doc/html/boost_regex/background_information/examples.html index 0bfd3502..403074ea 100644 --- a/doc/html/boost_regex/background_information/examples.html +++ b/doc/html/boost_regex/background_information/examples.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/background_information/faq.html b/doc/html/boost_regex/background_information/faq.html index 2259e4d0..d3f8900b 100644 --- a/doc/html/boost_regex/background_information/faq.html +++ b/doc/html/boost_regex/background_information/faq.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/background_information/futher.html b/doc/html/boost_regex/background_information/futher.html index 0608408a..6573efe2 100644 --- a/doc/html/boost_regex/background_information/futher.html +++ b/doc/html/boost_regex/background_information/futher.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/background_information/headers.html b/doc/html/boost_regex/background_information/headers.html index df3a3c16..82dfc5c1 100644 --- a/doc/html/boost_regex/background_information/headers.html +++ b/doc/html/boost_regex/background_information/headers.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/background_information/history.html b/doc/html/boost_regex/background_information/history.html index 9fa64fbb..76d39eea 100644 --- a/doc/html/boost_regex/background_information/history.html +++ b/doc/html/boost_regex/background_information/history.html @@ -11,7 +11,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + @@ -26,7 +26,7 @@ History
    - + Boost 1.34
    @@ -49,7 +49,7 @@
    - + Boost 1.33.1
    @@ -119,7 +119,7 @@
    - + Boost 1.33.0
    @@ -174,7 +174,7 @@
    - + Boost 1.32.1
    @@ -182,7 +182,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 7814c60c..6d5e99d5 100644 --- a/doc/html/boost_regex/background_information/locale.html +++ b/doc/html/boost_regex/background_information/locale.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/background_information/performance.html b/doc/html/boost_regex/background_information/performance.html index 8c5d9a8c..b26c1139 100644 --- a/doc/html/boost_regex/background_information/performance.html +++ b/doc/html/boost_regex/background_information/performance.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/background_information/redist.html b/doc/html/boost_regex/background_information/redist.html index fd9f354f..a4c2158a 100644 --- a/doc/html/boost_regex/background_information/redist.html +++ b/doc/html/boost_regex/background_information/redist.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/background_information/standards.html b/doc/html/boost_regex/background_information/standards.html index 6e14c88a..db70edb4 100644 --- a/doc/html/boost_regex/background_information/standards.html +++ b/doc/html/boost_regex/background_information/standards.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + @@ -82,7 +82,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 a4bad710..7b88363c 100644 --- a/doc/html/boost_regex/background_information/thread_safety.html +++ b/doc/html/boost_regex/background_information/thread_safety.html @@ -12,7 +12,7 @@

    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/captures.html b/doc/html/boost_regex/captures.html index e3f663bb..9d48399d 100644 --- a/doc/html/boost_regex/captures.html +++ b/doc/html/boost_regex/captures.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + @@ -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 781e7acb..b8de398d 100644 --- a/doc/html/boost_regex/configuration.html +++ b/doc/html/boost_regex/configuration.html @@ -12,7 +12,7 @@

    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/configuration/algorithm.html b/doc/html/boost_regex/configuration/algorithm.html index 270537a3..479bacc9 100644 --- a/doc/html/boost_regex/configuration/algorithm.html +++ b/doc/html/boost_regex/configuration/algorithm.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/configuration/compiler.html b/doc/html/boost_regex/configuration/compiler.html index 9f578fe4..4e6a85d1 100644 --- a/doc/html/boost_regex/configuration/compiler.html +++ b/doc/html/boost_regex/configuration/compiler.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/configuration/linkage.html b/doc/html/boost_regex/configuration/linkage.html index 302e2845..511dc37c 100644 --- a/doc/html/boost_regex/configuration/linkage.html +++ b/doc/html/boost_regex/configuration/linkage.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/configuration/locale.html b/doc/html/boost_regex/configuration/locale.html index 100027de..7cca75d2 100644 --- a/doc/html/boost_regex/configuration/locale.html +++ b/doc/html/boost_regex/configuration/locale.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/configuration/tuning.html b/doc/html/boost_regex/configuration/tuning.html index 69aeffbb..d0921904 100644 --- a/doc/html/boost_regex/configuration/tuning.html +++ b/doc/html/boost_regex/configuration/tuning.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/format.html b/doc/html/boost_regex/format.html index 2e7ed141..22d67e10 100644 --- a/doc/html/boost_regex/format.html +++ b/doc/html/boost_regex/format.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/format/boost_format_syntax.html b/doc/html/boost_regex/format/boost_format_syntax.html index 24906c32..cb22bcda 100644 --- a/doc/html/boost_regex/format/boost_format_syntax.html +++ b/doc/html/boost_regex/format/boost_format_syntax.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/format/perl_format.html b/doc/html/boost_regex/format/perl_format.html index 35c849a6..5488c5f8 100644 --- a/doc/html/boost_regex/format/perl_format.html +++ b/doc/html/boost_regex/format/perl_format.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/format/sed_format.html b/doc/html/boost_regex/format/sed_format.html index 8255c298..ff55b8dc 100644 --- a/doc/html/boost_regex/format/sed_format.html +++ b/doc/html/boost_regex/format/sed_format.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/install.html b/doc/html/boost_regex/install.html index a456a1da..6d7308cc 100644 --- a/doc/html/boost_regex/install.html +++ b/doc/html/boost_regex/install.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + @@ -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/introduction_and_overview.html b/doc/html/boost_regex/introduction_and_overview.html index 23cb1edd..68adc16d 100644 --- a/doc/html/boost_regex/introduction_and_overview.html +++ b/doc/html/boost_regex/introduction_and_overview.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/partial_matches.html b/doc/html/boost_regex/partial_matches.html index 776538f4..0543b089 100644 --- a/doc/html/boost_regex/partial_matches.html +++ b/doc/html/boost_regex/partial_matches.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/ref.html b/doc/html/boost_regex/ref.html index 59d4e410..b4562707 100644 --- a/doc/html/boost_regex/ref.html +++ b/doc/html/boost_regex/ref.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/ref/bad_expression.html b/doc/html/boost_regex/ref/bad_expression.html index 957f4304..84cace8c 100644 --- a/doc/html/boost_regex/ref/bad_expression.html +++ b/doc/html/boost_regex/ref/bad_expression.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/ref/basic_regex.html b/doc/html/boost_regex/ref/basic_regex.html index 26a70308..9203286c 100644 --- a/doc/html/boost_regex/ref/basic_regex.html +++ b/doc/html/boost_regex/ref/basic_regex.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/ref/concepts.html b/doc/html/boost_regex/ref/concepts.html index ee5aee34..6a632460 100644 --- a/doc/html/boost_regex/ref/concepts.html +++ b/doc/html/boost_regex/ref/concepts.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/ref/concepts/charT_concept.html b/doc/html/boost_regex/ref/concepts/charT_concept.html index 47d68743..d7934898 100644 --- a/doc/html/boost_regex/ref/concepts/charT_concept.html +++ b/doc/html/boost_regex/ref/concepts/charT_concept.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/ref/concepts/iterator_concepts.html b/doc/html/boost_regex/ref/concepts/iterator_concepts.html index cffa1774..c6b6d4c7 100644 --- a/doc/html/boost_regex/ref/concepts/iterator_concepts.html +++ b/doc/html/boost_regex/ref/concepts/iterator_concepts.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/ref/concepts/traits_concept.html b/doc/html/boost_regex/ref/concepts/traits_concept.html index 1cf50425..147a93c3 100644 --- a/doc/html/boost_regex/ref/concepts/traits_concept.html +++ b/doc/html/boost_regex/ref/concepts/traits_concept.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/ref/deprecated_interfaces.html b/doc/html/boost_regex/ref/deprecated_interfaces.html index 2703ac51..b7724524 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + 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 42df3918..68656cb4 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/old_regex.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/old_regex.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + 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 a6036e96..0163436f 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + 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 730e8542..d293e650 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/regex_grep.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/regex_grep.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + 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 6d397b7c..d5b43e87 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/regex_split.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/regex_split.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/ref/error_type.html b/doc/html/boost_regex/ref/error_type.html index aad11718..0b3fdf2c 100644 --- a/doc/html/boost_regex/ref/error_type.html +++ b/doc/html/boost_regex/ref/error_type.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/ref/match_flag_type.html b/doc/html/boost_regex/ref/match_flag_type.html index 719e96cd..9bcc0dac 100644 --- a/doc/html/boost_regex/ref/match_flag_type.html +++ b/doc/html/boost_regex/ref/match_flag_type.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/ref/match_results.html b/doc/html/boost_regex/ref/match_results.html index 98d7adf3..9a08c670 100644 --- a/doc/html/boost_regex/ref/match_results.html +++ b/doc/html/boost_regex/ref/match_results.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/ref/non_std_strings.html b/doc/html/boost_regex/ref/non_std_strings.html index a220407d..64578031 100644 --- a/doc/html/boost_regex/ref/non_std_strings.html +++ b/doc/html/boost_regex/ref/non_std_strings.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + 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 35b20977..d051e5fc 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + 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 53cf39b6..59cbc25d 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 @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + 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 370e6fda..9000f383 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 @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + 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 85bd66e1..debc21d2 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 @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + 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 9fe3dcc9..cc35964f 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 @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + 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 3dba2d61..e58958d2 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 @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + 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 ab26844d..60541b54 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 @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + 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 e1301c4a..0c3c45d8 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 @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + 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 5aa3e26d..41b53be5 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 @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + 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 0237ebc9..cda7adca 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 @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + 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 34c99d13..ea09c6a5 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 @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/ref/posix.html b/doc/html/boost_regex/ref/posix.html index 579a4994..780e8201 100644 --- a/doc/html/boost_regex/ref/posix.html +++ b/doc/html/boost_regex/ref/posix.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/ref/regex_iterator.html b/doc/html/boost_regex/ref/regex_iterator.html index 054bca12..173e5ec1 100644 --- a/doc/html/boost_regex/ref/regex_iterator.html +++ b/doc/html/boost_regex/ref/regex_iterator.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/ref/regex_match.html b/doc/html/boost_regex/ref/regex_match.html index af02d4d3..059d6c5d 100644 --- a/doc/html/boost_regex/ref/regex_match.html +++ b/doc/html/boost_regex/ref/regex_match.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/ref/regex_replace.html b/doc/html/boost_regex/ref/regex_replace.html index b7a68262..d4df057f 100644 --- a/doc/html/boost_regex/ref/regex_replace.html +++ b/doc/html/boost_regex/ref/regex_replace.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/ref/regex_search.html b/doc/html/boost_regex/ref/regex_search.html index d10cd029..f04b1d9f 100644 --- a/doc/html/boost_regex/ref/regex_search.html +++ b/doc/html/boost_regex/ref/regex_search.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/ref/regex_token_iterator.html b/doc/html/boost_regex/ref/regex_token_iterator.html index 66d3f95b..a0c19431 100644 --- a/doc/html/boost_regex/ref/regex_token_iterator.html +++ b/doc/html/boost_regex/ref/regex_token_iterator.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/ref/regex_traits.html b/doc/html/boost_regex/ref/regex_traits.html index 7d28801a..f7c9d503 100644 --- a/doc/html/boost_regex/ref/regex_traits.html +++ b/doc/html/boost_regex/ref/regex_traits.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/ref/sub_match.html b/doc/html/boost_regex/ref/sub_match.html index 7f81828c..90af7ec8 100644 --- a/doc/html/boost_regex/ref/sub_match.html +++ b/doc/html/boost_regex/ref/sub_match.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/ref/syntax_option_type.html b/doc/html/boost_regex/ref/syntax_option_type.html index 1d462ee4..3a855b9f 100644 --- a/doc/html/boost_regex/ref/syntax_option_type.html +++ b/doc/html/boost_regex/ref/syntax_option_type.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + 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 bbf9b9fe..bb375d9c 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 @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + 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 ca2f0498..127a40b8 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 @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + 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 59951dda..5ef09b83 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 @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + 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 3921b6c7..1ce0acd9 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 @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + 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 eac297db..64365cc8 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 @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + 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 31718c69..fed4fdff 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 @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/syntax.html b/doc/html/boost_regex/syntax.html index edb7cd07..20b9a184 100644 --- a/doc/html/boost_regex/syntax.html +++ b/doc/html/boost_regex/syntax.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/syntax/basic_extended.html b/doc/html/boost_regex/syntax/basic_extended.html index 24f56fce..ab953647 100644 --- a/doc/html/boost_regex/syntax/basic_extended.html +++ b/doc/html/boost_regex/syntax/basic_extended.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/syntax/basic_syntax.html b/doc/html/boost_regex/syntax/basic_syntax.html index 6f335e00..934a8838 100644 --- a/doc/html/boost_regex/syntax/basic_syntax.html +++ b/doc/html/boost_regex/syntax/basic_syntax.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/syntax/character_classes.html b/doc/html/boost_regex/syntax/character_classes.html index 560a431e..f23ea716 100644 --- a/doc/html/boost_regex/syntax/character_classes.html +++ b/doc/html/boost_regex/syntax/character_classes.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + 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 09f3d399..e3856bba 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 @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + 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 56dad397..302a05d9 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 @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/syntax/collating_names.html b/doc/html/boost_regex/syntax/collating_names.html index 40024684..a6997bf4 100644 --- a/doc/html/boost_regex/syntax/collating_names.html +++ b/doc/html/boost_regex/syntax/collating_names.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/syntax/collating_names/digraphs.html b/doc/html/boost_regex/syntax/collating_names/digraphs.html index a0711eff..50892354 100644 --- a/doc/html/boost_regex/syntax/collating_names/digraphs.html +++ b/doc/html/boost_regex/syntax/collating_names/digraphs.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + 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 fb89eb0e..e9c3bc90 100644 --- a/doc/html/boost_regex/syntax/collating_names/named_unicode.html +++ b/doc/html/boost_regex/syntax/collating_names/named_unicode.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + 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 7298b7dd..220c7e81 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 @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/syntax/leftmost_longest_rule.html b/doc/html/boost_regex/syntax/leftmost_longest_rule.html index 92433f80..39b8e146 100644 --- a/doc/html/boost_regex/syntax/leftmost_longest_rule.html +++ b/doc/html/boost_regex/syntax/leftmost_longest_rule.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + diff --git a/doc/html/boost_regex/syntax/perl_syntax.html b/doc/html/boost_regex/syntax/perl_syntax.html index f73e386c..4911c61e 100644 --- a/doc/html/boost_regex/syntax/perl_syntax.html +++ b/doc/html/boost_regex/syntax/perl_syntax.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + @@ -28,7 +28,7 @@ Syntax

    - + Synopsis

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

    - + Perl Regular Expression Syntax

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

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

    @@ -65,7 +65,7 @@

    • The NULL character when the flag - match_no_dot_null + match_not_dot_null is passed to the matching algorithms.
    • @@ -75,7 +75,7 @@
    - + Anchors

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

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

    - + Non-marking grouping
    @@ -111,7 +111,7 @@ out any separate sub-expressions.

    - + Repeats

    @@ -197,7 +197,7 @@ operator to be applied to.

    - + Non greedy repeats
    @@ -228,7 +228,7 @@ input as possible.

    - + Back references

    @@ -248,7 +248,7 @@

    aaabba
     
    - + Alternation

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

    - + Character sets

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

    - + Single characters

    @@ -298,7 +298,7 @@ or 'c'.

    - + Character ranges
    @@ -311,7 +311,7 @@ regular expression, then ranges are locale sensitive.

    - + Negation

    @@ -320,7 +320,7 @@ range a-c.

    - + Character classes
    @@ -330,7 +330,7 @@ character class names.

    - + Collating Elements
    diff --git a/doc/html/boost_regex/unicode.html b/doc/html/boost_regex/unicode.html index 74631e32..f01c3510 100644 --- a/doc/html/boost_regex/unicode.html +++ b/doc/html/boost_regex/unicode.html @@ -12,7 +12,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + @@ -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 2c00ebe9..388dfc44 100644 --- a/doc/html/index.html +++ b/doc/html/index.html @@ -10,7 +10,7 @@
    Boost C++ LibrariesHomeHome Libraries People FAQ
    - + @@ -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 @@

    Boost C++ LibrariesHomeHome Libraries People FAQ
    - +

    Last revised: February 21, 2008 at 12:52:05 GMT

    Last revised: April 11, 2008 at 08:50:33 GMT


    diff --git a/doc/syntax_perl.qbk b/doc/syntax_perl.qbk index 916ed018..9a76276d 100644 --- a/doc/syntax_perl.qbk +++ b/doc/syntax_perl.qbk @@ -34,7 +34,7 @@ The single character '.' when used outside of a character set will match any single character except: * The NULL character when the [link boost_regex.ref.match_flag_type flag - `match_no_dot_null`] is passed to the matching algorithms. + `match_not_dot_null`] is passed to the matching algorithms. * The newline character when the [link boost_regex.ref.match_flag_type flag `match_not_dot_newline`] is passed to the matching algorithms. From 5fdf2752ae3633b6e14646a7cb7e15747721381e Mon Sep 17 00:00:00 2001 From: John Maddock Date: Tue, 15 Apr 2008 17:50:11 +0000 Subject: [PATCH 18/72] Add explicit type cast to fix GCC-C++0X mode error. [SVN r44437] --- include/boost/regex/pending/object_cache.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/regex/pending/object_cache.hpp b/include/boost/regex/pending/object_cache.hpp index bc37e276..2a7e00bc 100644 --- a/include/boost/regex/pending/object_cache.hpp +++ b/include/boost/regex/pending/object_cache.hpp @@ -119,7 +119,7 @@ boost::shared_ptr object_cache::do_get(const Key& k, // // Add it to the list, and index it: // - s_data.cont.push_back(value_type(result, 0)); + s_data.cont.push_back(value_type(result, static_cast(0))); s_data.index.insert(std::make_pair(k, --(s_data.cont.end()))); s_data.cont.back().second = &(s_data.index.find(k)->first); map_size_type s = s_data.index.size(); From 3704b9c59525dffe91acec6d7d69932bee9b6405 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Mon, 28 Apr 2008 11:07:14 +0000 Subject: [PATCH 19/72] Fixes for issue #1871 that prevents duplicate symbol errors with VC++ compilers, when building with /Zc:wchar_t-. [SVN r44842] --- src/usinstances.cpp | 3 +++ src/wc_regex_traits.cpp | 33 ++++++++++++++++++++++++++++++++- 2 files changed, 35 insertions(+), 1 deletion(-) diff --git a/src/usinstances.cpp b/src/usinstances.cpp index 337d815f..d9f600dc 100644 --- a/src/usinstances.cpp +++ b/src/usinstances.cpp @@ -49,6 +49,9 @@ template _CRTIMP2 bool __cdecl operator>( #if BOOST_WORKAROUND(BOOST_MSVC, > 1300) && BOOST_WORKAROUND(BOOST_MSVC, BOOST_TESTED_AT(1400)) template<> _CRTIMP2 std::size_t __cdecl char_traits::length(unsigned short const*); #endif +#if BOOST_WORKAROUND(BOOST_MSVC, >= 1400) +template _CRTIMP2 allocator::allocator(); +#endif } #endif diff --git a/src/wc_regex_traits.cpp b/src/wc_regex_traits.cpp index 9daf0804..29a77e15 100644 --- a/src/wc_regex_traits.cpp +++ b/src/wc_regex_traits.cpp @@ -19,9 +19,40 @@ #define BOOST_REGEX_SOURCE -#include +#include #include +#ifdef _DLL_CPPLIB +// +// This is a horrible workaround, without declaring these symbols extern we get +// duplicate symbol errors when linking if the application is built without +// /Zc:wchar_t +// +namespace std{ +template _CRTIMP2 bool __cdecl operator==( + const basic_string, allocator >&, + const basic_string, allocator >&); +template _CRTIMP2 bool __cdecl operator==( + const unsigned short *, + const basic_string, allocator >&); +template _CRTIMP2 bool __cdecl operator==( + const basic_string, allocator >&, + const unsigned short *); +template _CRTIMP2 bool __cdecl operator<( + const basic_string, allocator >&, + const basic_string, allocator >&); +template _CRTIMP2 bool __cdecl operator>( + const basic_string, allocator >&, + const basic_string, allocator >&); +#if BOOST_WORKAROUND(BOOST_MSVC, > 1300) && BOOST_WORKAROUND(BOOST_MSVC, BOOST_TESTED_AT(1400)) +template<> _CRTIMP2 std::size_t __cdecl char_traits::length(unsigned short const*); +#endif +#if BOOST_WORKAROUND(BOOST_MSVC, >= 1400) +template _CRTIMP2 allocator::allocator(); +#endif +} +#endif + #if !BOOST_WORKAROUND(__BORLANDC__, < 0x560) #include From 8928c7737e66ad15df9aaedac9f25b04f6cb9859 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Wed, 14 May 2008 11:14:30 +0000 Subject: [PATCH 20/72] Added needed #includes to source files. [SVN r45353] --- src/usinstances.cpp | 2 ++ src/wc_regex_traits.cpp | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/usinstances.cpp b/src/usinstances.cpp index d9f600dc..e633659e 100644 --- a/src/usinstances.cpp +++ b/src/usinstances.cpp @@ -25,6 +25,8 @@ #ifdef _DLL_CPPLIB #include +#include +#include // // This is a horrible workaround, without declaring these symbols extern we get // duplicate symbol errors when linking if the application is built without diff --git a/src/wc_regex_traits.cpp b/src/wc_regex_traits.cpp index 29a77e15..aee2da18 100644 --- a/src/wc_regex_traits.cpp +++ b/src/wc_regex_traits.cpp @@ -23,6 +23,8 @@ #include #ifdef _DLL_CPPLIB +#include +#include // // This is a horrible workaround, without declaring these symbols extern we get // duplicate symbol errors when linking if the application is built without From 4c105a90a1491fdd0a13840e33a3ba36bf0a2020 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Wed, 14 May 2008 11:19:58 +0000 Subject: [PATCH 21/72] Changed behaviour of \B so that it succeeds when the neither adjacent character is a word character. [SVN r45354] --- include/boost/regex/v4/perl_matcher_common.hpp | 4 ++-- test/regress/test_escapes.cpp | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/include/boost/regex/v4/perl_matcher_common.hpp b/include/boost/regex/v4/perl_matcher_common.hpp index 72e43d00..399caa3b 100644 --- a/include/boost/regex/v4/perl_matcher_common.hpp +++ b/include/boost/regex/v4/perl_matcher_common.hpp @@ -535,7 +535,7 @@ bool perl_matcher::match_within_word() if(position == last) return false; // both prev and this character must be m_word_mask: - if(traits_inst.isctype(*position, m_word_mask)) + bool prev = traits_inst.isctype(*position, m_word_mask); { bool b; if((position == backstop) && ((m_match_flags & match_prev_avail) == 0)) @@ -546,7 +546,7 @@ bool perl_matcher::match_within_word() b = traits_inst.isctype(*position, m_word_mask); ++position; } - if(b) + if(b == prev) { pstate = pstate->next.p; return true; diff --git a/test/regress/test_escapes.cpp b/test/regress/test_escapes.cpp index aa842130..ba78c454 100644 --- a/test/regress/test_escapes.cpp +++ b/test/regress/test_escapes.cpp @@ -109,6 +109,9 @@ void test_assertion_escapes() TEST_REGEX_SEARCH("a\\B", perl, "ab", match_default, make_array(0, 1, -2, -2)); TEST_REGEX_SEARCH("a\\B", perl, "a", match_default, make_array(-2, -2)); TEST_REGEX_SEARCH("a\\B", perl, "a ", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("\\By\\b", perl, "xy", match_default, make_array(1, 2, -2, -2)); + TEST_REGEX_SEARCH("\\by\\B", perl, "yz", match_default, make_array(0, 1, -2, -2)); + TEST_REGEX_SEARCH("\\B\\*\\B", perl, " * ", match_default, make_array(1, 2, -2, -2)); // buffer operators: TEST_REGEX_SEARCH("\\`abc", perl, "abc", match_default, make_array(0, 3, -2, -2)); TEST_REGEX_SEARCH("\\`abc", perl, "\nabc", match_default, make_array(-2, -2)); From 31b68369ae8c324b8a5f61e0ab2b1066b0c657eb Mon Sep 17 00:00:00 2001 From: John Maddock Date: Tue, 3 Jun 2008 12:52:55 +0000 Subject: [PATCH 22/72] Patch for VC9 explicit template instantiation. Fixes #1959. [SVN r46077] --- include/boost/regex/v4/instances.hpp | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/include/boost/regex/v4/instances.hpp b/include/boost/regex/v4/instances.hpp index b9898cb0..d12dc6b2 100644 --- a/include/boost/regex/v4/instances.hpp +++ b/include/boost/regex/v4/instances.hpp @@ -71,32 +71,39 @@ template class BOOST_REGEX_DECL ::boost::re_detail::perl_matcher 1310 +# define BOOST_REGEX_TEMPLATE_DECL +# endif # define template extern template # endif # endif +#ifndef BOOST_REGEX_TEMPLATE_DECL +# define BOOST_REGEX_TEMPLATE_DECL BOOST_REGEX_DECL +#endif + # ifdef BOOST_MSVC # pragma warning(push) # pragma warning(disable : 4251 4231 4660) # endif -template class BOOST_REGEX_DECL basic_regex< BOOST_REGEX_CHAR_T BOOST_REGEX_TRAITS_T >; +template class BOOST_REGEX_TEMPLATE_DECL basic_regex< BOOST_REGEX_CHAR_T BOOST_REGEX_TRAITS_T >; #if !BOOST_WORKAROUND(BOOST_MSVC, < 1300) -template class BOOST_REGEX_DECL match_results< const BOOST_REGEX_CHAR_T* >; +template class BOOST_REGEX_TEMPLATE_DECL match_results< const BOOST_REGEX_CHAR_T* >; #endif #ifndef BOOST_NO_STD_ALLOCATOR -template class BOOST_REGEX_DECL ::boost::re_detail::perl_matcher::allocator_type BOOST_REGEX_TRAITS_T >; +template class BOOST_REGEX_TEMPLATE_DECL ::boost::re_detail::perl_matcher::allocator_type BOOST_REGEX_TRAITS_T >; #endif #if !(defined(BOOST_DINKUMWARE_STDLIB) && (BOOST_DINKUMWARE_STDLIB <= 1))\ && !(defined(BOOST_INTEL_CXX_VERSION) && (BOOST_INTEL_CXX_VERSION <= 800))\ && !(defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION))\ && !defined(BOOST_REGEX_ICU_INSTANCES) #if !BOOST_WORKAROUND(BOOST_MSVC, < 1300) -template class BOOST_REGEX_DECL match_results< std::basic_string::const_iterator >; +template class BOOST_REGEX_TEMPLATE_DECL match_results< std::basic_string::const_iterator >; #endif #ifndef BOOST_NO_STD_ALLOCATOR -template class BOOST_REGEX_DECL ::boost::re_detail::perl_matcher< std::basic_string::const_iterator, match_results< std::basic_string::const_iterator >::allocator_type, boost::regex_traits >; +template class BOOST_REGEX_TEMPLATE_DECL ::boost::re_detail::perl_matcher< std::basic_string::const_iterator, match_results< std::basic_string::const_iterator >::allocator_type, boost::regex_traits >; #endif #endif @@ -109,6 +116,8 @@ template class BOOST_REGEX_DECL ::boost::re_detail::perl_matcher< std::basic_str # undef template # endif +#undef BOOST_REGEX_TEMPLATE_DECL + #elif (defined(__GNUC__) && (__GNUC__ >= 3)) # ifndef BOOST_REGEX_INSTANTIATE From d7d38da27fd3f56707cd7448007db2891fb16b79 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Thu, 5 Jun 2008 17:07:42 +0000 Subject: [PATCH 23/72] Changed POSIX API functions to use the global C locale. Fixes #1446. [SVN r46170] --- src/posix_api.cpp | 16 +++++++++------- src/wide_posix_api.cpp | 16 +++++++++------- 2 files changed, 18 insertions(+), 14 deletions(-) diff --git a/src/posix_api.cpp b/src/posix_api.cpp index 907c60c3..1564cedb 100644 --- a/src/posix_api.cpp +++ b/src/posix_api.cpp @@ -62,6 +62,8 @@ const char* names[] = { }; } // namespace +typedef boost::basic_regex > c_regex_type; + BOOST_REGEX_DECL int BOOST_REGEX_CCALL regcompA(regex_tA* expression, const char* ptr, int f) { if(expression->re_magic != magic_value) @@ -70,7 +72,7 @@ BOOST_REGEX_DECL int BOOST_REGEX_CCALL regcompA(regex_tA* expression, const char #ifndef BOOST_NO_EXCEPTIONS try{ #endif - expression->guts = new regex(); + expression->guts = new c_regex_type(); #ifndef BOOST_NO_EXCEPTIONS } catch(...) { @@ -120,9 +122,9 @@ BOOST_REGEX_DECL int BOOST_REGEX_CCALL regcompA(regex_tA* expression, const char try{ #endif expression->re_magic = magic_value; - static_cast(expression->guts)->set_expression(ptr, p2, flags); - expression->re_nsub = static_cast(expression->guts)->mark_count() - 1; - result = static_cast(expression->guts)->error_code(); + static_cast(expression->guts)->set_expression(ptr, p2, flags); + expression->re_nsub = static_cast(expression->guts)->mark_count() - 1; + result = static_cast(expression->guts)->error_code(); #ifndef BOOST_NO_EXCEPTIONS } catch(const boost::regex_error& be) @@ -187,7 +189,7 @@ BOOST_REGEX_DECL regsize_t BOOST_REGEX_CCALL regerrorA(int code, const regex_tA* { std::string p; if((e) && (e->re_magic == magic_value)) - p = static_cast(e->guts)->get_traits().error_string(static_cast< ::boost::regex_constants::error_type>(code)); + p = static_cast(e->guts)->get_traits().error_string(static_cast< ::boost::regex_constants::error_type>(code)); else { p = re_detail::get_default_error_string(static_cast< ::boost::regex_constants::error_type>(code)); @@ -236,7 +238,7 @@ BOOST_REGEX_DECL int BOOST_REGEX_CCALL regexecA(const regex_tA* expression, cons #endif if(expression->re_magic == magic_value) { - result = regex_search(start, end, m, *static_cast(expression->guts), flags); + result = regex_search(start, end, m, *static_cast(expression->guts), flags); } else return result; @@ -274,7 +276,7 @@ BOOST_REGEX_DECL void BOOST_REGEX_CCALL regfreeA(regex_tA* expression) { if(expression->re_magic == magic_value) { - delete static_cast(expression->guts); + delete static_cast(expression->guts); } expression->re_magic = 0; } diff --git a/src/wide_posix_api.cpp b/src/wide_posix_api.cpp index 184b1cea..83d651b8 100644 --- a/src/wide_posix_api.cpp +++ b/src/wide_posix_api.cpp @@ -69,6 +69,8 @@ const wchar_t* wnames[] = { }; } +typedef boost::basic_regex > c_regex_type; + BOOST_REGEX_DECL int BOOST_REGEX_CCALL regcompW(regex_tW* expression, const wchar_t* ptr, int f) { if(expression->re_magic != wmagic_value) @@ -77,7 +79,7 @@ BOOST_REGEX_DECL int BOOST_REGEX_CCALL regcompW(regex_tW* expression, const wcha #ifndef BOOST_NO_EXCEPTIONS try{ #endif - expression->guts = new wregex(); + expression->guts = new c_regex_type(); #ifndef BOOST_NO_EXCEPTIONS } catch(...) { @@ -127,9 +129,9 @@ BOOST_REGEX_DECL int BOOST_REGEX_CCALL regcompW(regex_tW* expression, const wcha try{ #endif expression->re_magic = wmagic_value; - static_cast(expression->guts)->set_expression(ptr, p2, flags); - expression->re_nsub = static_cast(expression->guts)->mark_count() - 1; - result = static_cast(expression->guts)->error_code(); + static_cast(expression->guts)->set_expression(ptr, p2, flags); + expression->re_nsub = static_cast(expression->guts)->mark_count() - 1; + result = static_cast(expression->guts)->error_code(); #ifndef BOOST_NO_EXCEPTIONS } catch(const boost::regex_error& be) @@ -208,7 +210,7 @@ BOOST_REGEX_DECL regsize_t BOOST_REGEX_CCALL regerrorW(int code, const regex_tW* { std::string p; if((e) && (e->re_magic == wmagic_value)) - p = static_cast(e->guts)->get_traits().error_string(static_cast< ::boost::regex_constants::error_type>(code)); + p = static_cast(e->guts)->get_traits().error_string(static_cast< ::boost::regex_constants::error_type>(code)); else { p = re_detail::get_default_error_string(static_cast< ::boost::regex_constants::error_type>(code)); @@ -257,7 +259,7 @@ BOOST_REGEX_DECL int BOOST_REGEX_CCALL regexecW(const regex_tW* expression, cons #endif if(expression->re_magic == wmagic_value) { - result = regex_search(start, end, m, *static_cast(expression->guts), flags); + result = regex_search(start, end, m, *static_cast(expression->guts), flags); } else return result; @@ -294,7 +296,7 @@ BOOST_REGEX_DECL void BOOST_REGEX_CCALL regfreeW(regex_tW* expression) { if(expression->re_magic == wmagic_value) { - delete static_cast(expression->guts); + delete static_cast(expression->guts); } expression->re_magic = 0; } From 831156d7597ddde120fc6fa55e18b56f906a2d24 Mon Sep 17 00:00:00 2001 From: Daniel James Date: Tue, 1 Jul 2008 09:58:27 +0000 Subject: [PATCH 24/72] Replace a couple of non-ascii symbols. [SVN r46943] --- example/snippets/icu_example.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/snippets/icu_example.cpp b/example/snippets/icu_example.cpp index 8e5f22ca..8f4a41ed 100644 --- a/example/snippets/icu_example.cpp +++ b/example/snippets/icu_example.cpp @@ -157,7 +157,7 @@ int main() assert(greek == L"\x0391\x039D\x0395\x0398\x0391 2004"); // extract currency symbols with associated value, use iterator interface: - std::string text2 = " $100.23 or \xC2\xA3""198.12 "; // \xC2\xA3 is the £ sign encoded in UTF-8 + std::string text2 = " $100.23 or \xC2\xA3""198.12 "; // \xC2\xA3 is the pound sign encoded in UTF-8 enumerate_currencies(text2); enumerate_currencies2(text2); From 6eb35e2cf19315901ce5b1babd2b4da5e5b05f73 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Fri, 11 Jul 2008 18:00:15 +0000 Subject: [PATCH 25/72] Fixes #2097. [SVN r47319] --- include/boost/regex/v4/cpp_regex_traits.hpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/boost/regex/v4/cpp_regex_traits.hpp b/include/boost/regex/v4/cpp_regex_traits.hpp index ddcbef43..58c82540 100644 --- a/include/boost/regex/v4/cpp_regex_traits.hpp +++ b/include/boost/regex/v4/cpp_regex_traits.hpp @@ -293,7 +293,9 @@ void cpp_regex_traits_char_layer::init() // if((int)cat >= 0) { +#ifndef BOOST_NO_EXCEPTIONS try{ +#endif for(regex_constants::syntax_type i = 1; i < regex_constants::syntax_max; ++i) { string_type mss = this->m_pmessages->get(cat, 0, i, get_default_message(i)); @@ -303,12 +305,14 @@ void cpp_regex_traits_char_layer::init() } } this->m_pmessages->close(cat); +#ifndef BOOST_NO_EXCEPTIONS } catch(...) { this->m_pmessages->close(cat); throw; } +#endif } else { @@ -1055,3 +1059,4 @@ static_mutex& cpp_regex_traits::get_mutex_inst() #endif + From be28ad44c775c2e8c5d9d972d6134234ccc45e5e Mon Sep 17 00:00:00 2001 From: John Maddock Date: Fri, 18 Jul 2008 11:29:50 +0000 Subject: [PATCH 26/72] Tentative fix for some VC failures. [SVN r47542] --- src/wc_regex_traits.cpp | 44 +++++++++++++++++++++++++++-------------- 1 file changed, 29 insertions(+), 15 deletions(-) diff --git a/src/wc_regex_traits.cpp b/src/wc_regex_traits.cpp index aee2da18..1de3dee6 100644 --- a/src/wc_regex_traits.cpp +++ b/src/wc_regex_traits.cpp @@ -19,42 +19,56 @@ #define BOOST_REGEX_SOURCE -#include #include - -#ifdef _DLL_CPPLIB #include #include + +#if defined(_DLL_CPPLIB) && !defined(_M_CEE_PURE) // -// This is a horrible workaround, without declaring these symbols extern we get +// This is a horrible workaround, but without declaring these symbols extern we get // duplicate symbol errors when linking if the application is built without // /Zc:wchar_t // +#ifdef _CRTIMP2_PURE +# define BOOST_REGEX_STDLIB_DECL _CRTIMP2_PURE +#else +# define BOOST_REGEX_STDLIB_DECL _CRTIMP2 +#endif + namespace std{ -template _CRTIMP2 bool __cdecl operator==( + +#if BOOST_WORKAROUND(BOOST_MSVC, >= 1400) +template BOOST_REGEX_STDLIB_DECL allocator::allocator(); +template class BOOST_REGEX_STDLIB_DECL _String_val >; +template class BOOST_REGEX_STDLIB_DECL basic_string, + allocator >; +#endif + +#if BOOST_WORKAROUND(BOOST_MSVC, > 1300) && BOOST_WORKAROUND(BOOST_MSVC, BOOST_TESTED_AT(1400)) +template<> BOOST_REGEX_STDLIB_DECL std::size_t __cdecl char_traits::length(unsigned short const*); +#endif + +template BOOST_REGEX_STDLIB_DECL bool __cdecl operator==( const basic_string, allocator >&, const basic_string, allocator >&); -template _CRTIMP2 bool __cdecl operator==( +template BOOST_REGEX_STDLIB_DECL bool __cdecl operator==( const unsigned short *, const basic_string, allocator >&); -template _CRTIMP2 bool __cdecl operator==( +template BOOST_REGEX_STDLIB_DECL bool __cdecl operator==( const basic_string, allocator >&, const unsigned short *); -template _CRTIMP2 bool __cdecl operator<( +template BOOST_REGEX_STDLIB_DECL bool __cdecl operator<( const basic_string, allocator >&, const basic_string, allocator >&); -template _CRTIMP2 bool __cdecl operator>( +template BOOST_REGEX_STDLIB_DECL bool __cdecl operator>( const basic_string, allocator >&, const basic_string, allocator >&); -#if BOOST_WORKAROUND(BOOST_MSVC, > 1300) && BOOST_WORKAROUND(BOOST_MSVC, BOOST_TESTED_AT(1400)) -template<> _CRTIMP2 std::size_t __cdecl char_traits::length(unsigned short const*); -#endif -#if BOOST_WORKAROUND(BOOST_MSVC, >= 1400) -template _CRTIMP2 allocator::allocator(); -#endif } #endif +#include +#include + #if !BOOST_WORKAROUND(__BORLANDC__, < 0x560) #include From 546dd9f6fb0289f711df83f0a5244c54d80e13e9 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Fri, 25 Jul 2008 09:28:01 +0000 Subject: [PATCH 27/72] Fixes #1940. [SVN r47795] --- doc/examples.qbk | 33 ++++--- .../boost_regex/background_information.html | 4 +- .../acknowledgements.html | 4 +- .../background_information/examples.html | 51 ++++++----- .../background_information/faq.html | 4 +- .../background_information/futher.html | 4 +- .../background_information/headers.html | 4 +- .../background_information/history.html | 14 +-- .../background_information/locale.html | 12 +-- .../background_information/performance.html | 4 +- .../background_information/redist.html | 4 +- .../background_information/standards.html | 14 +-- .../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 | 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 | 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 | 70 +++++++-------- doc/html/boost_regex/syntax/basic_syntax.html | 48 +++++----- .../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 | 88 +++++++++---------- doc/html/boost_regex/unicode.html | 8 +- doc/html/index.html | 8 +- 83 files changed, 395 insertions(+), 373 deletions(-) diff --git a/doc/examples.qbk b/doc/examples.qbk index f3692954..262e824e 100644 --- a/doc/examples.qbk +++ b/doc/examples.qbk @@ -18,41 +18,54 @@ library will behave as claimed - at least as far as those items tested are concerned - if anyone spots anything that isn't being tested I'd be glad to hear about it. -Directory: [@../../test/regress libs/regex/test/regress]. +Files: -Files: See directory. +* [@../../test/regress/main.cpp main.cpp] +* [@../../test/regress/basic_tests.cpp basic_tests.cpp] +* [@../../test/regress/test_alt.cpp test_alt.cpp] +* [@../../test/regress/test_anchors.cpp test_anchors.cpp] +* [@../../test/regress/test_asserts.cpp test_asserts.cpp] +* [@../../test/regress/test_backrefs.cpp test_backrefs.cpp] +* [@../../test/regress/test_deprecated.cpp test_deprecated.cpp] +* [@../../test/regress/test_emacs.cpp test_emacs.cpp] +* [@../../test/regress/test_escapes.cpp test_escapes.cpp] +* [@../../test/regress/test_grep.cpp test_grep.cpp] +* [@../../test/regress/test_icu.cpp test_icu.cpp] +* [@../../test/regress/test_locale.cpp test_locale.cpp] +* [@../../test/regress/test_mfc.cpp test_mfc.cpp] +* [@../../test/regress/test_non_greedy_repeats.cpp test_non_greedy_repeats.cpp] +* [@../../test/regress/test_operators.cpp test_operators.cpp] +* [@../../test/regress/test_overloads.cpp test_overloads.cpp] +* [@../../test/regress/test_perl_ex.cpp test_perl_ex.cpp] +* [@../../test/regress/test_replace.cpp test_replace.cpp] +* [@../../test/regress/test_sets.cpp test_sets.cpp] +* [@../../test/regress/test_simple_repeats.cpp test_simple_repeats.cpp] +* [@../../test/regress/test_tricky_cases.cpp test_tricky_cases.cpp] +* [@../../test/regress/test_unicode.cpp test_unicode.cpp] [*bad_expression_test:] Verifies that "bad" regular expressions don't cause the matcher to go into infinite loops, but to throw an exception instead. -Directory: [@../../test/pathology libs/regex/test/pathology]. - Files: [@../../test/pathology/bad_expression_test.cpp bad_expression_test.cpp]. [*recursion_test:] Verifies that the matcher can't overrun the stack (no matter what the expression). -Directory: [@../../test/pathology libs/regex/test/pathology]. - Files: [@../../test/pathology/recursion_test.cpp recursion_test.cpp]. [*concepts:] Verifies that the library meets all documented concepts (a compile only test). -Directory: [@../../test/concepts libs/regex/test/concepts]. - Files: [@../../test/concepts/concept_check.cpp concept_check.cpp]. [*captures_test:] Test code for captures. -Directory: [@../../test/captures libs/test/captures]. - Files: [@../../test/captures/captures_test.cpp captures_test.cpp]. [h4 Example programs] diff --git a/doc/html/boost_regex/background_information.html b/doc/html/boost_regex/background_information.html index d0c12bab..8296530b 100644 --- a/doc/html/boost_regex/background_information.html +++ b/doc/html/boost_regex/background_information.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/background_information/acknowledgements.html b/doc/html/boost_regex/background_information/acknowledgements.html index 38965407..b7b23fdf 100644 --- a/doc/html/boost_regex/background_information/acknowledgements.html +++ b/doc/html/boost_regex/background_information/acknowledgements.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/background_information/examples.html b/doc/html/boost_regex/background_information/examples.html index 403074ea..02183086 100644 --- a/doc/html/boost_regex/background_information/examples.html +++ b/doc/html/boost_regex/background_information/examples.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    @@ -28,7 +28,7 @@ Example Programs
    - + Test Programs
    @@ -43,11 +43,32 @@ it.

    - Directory: libs/regex/test/regress. -

    -

    - Files: See directory. + Files:

    +

    bad_expression_test:

    @@ -55,9 +76,6 @@ Verifies that "bad" regular expressions don't cause the matcher to go into infinite loops, but to throw an exception instead.

    -

    - Directory: libs/regex/test/pathology. -

    Files: bad_expression_test.cpp.

    @@ -67,9 +85,6 @@

    Verifies that the matcher can't overrun the stack (no matter what the expression).

    -

    - Directory: libs/regex/test/pathology. -

    Files: recursion_test.cpp.

    @@ -79,9 +94,6 @@

    Verifies that the library meets all documented concepts (a compile only test).

    -

    - Directory: libs/regex/test/concepts. -

    Files: concept_check.cpp.

    @@ -91,14 +103,11 @@

    Test code for captures.

    -

    - Directory: libs/test/captures. -

    Files: captures_test.cpp.

    - + Example programs
    @@ -124,7 +133,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 d3f8900b..46e9d6bd 100644 --- a/doc/html/boost_regex/background_information/faq.html +++ b/doc/html/boost_regex/background_information/faq.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/background_information/futher.html b/doc/html/boost_regex/background_information/futher.html index 6573efe2..d0347100 100644 --- a/doc/html/boost_regex/background_information/futher.html +++ b/doc/html/boost_regex/background_information/futher.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/background_information/headers.html b/doc/html/boost_regex/background_information/headers.html index 82dfc5c1..829efed8 100644 --- a/doc/html/boost_regex/background_information/headers.html +++ b/doc/html/boost_regex/background_information/headers.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/background_information/history.html b/doc/html/boost_regex/background_information/history.html index 76d39eea..3240fd5b 100644 --- a/doc/html/boost_regex/background_information/history.html +++ b/doc/html/boost_regex/background_information/history.html @@ -13,8 +13,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    @@ -26,7 +26,7 @@ History
    - + Boost 1.34
    @@ -49,7 +49,7 @@
    - + Boost 1.33.1
    @@ -119,7 +119,7 @@
    - + Boost 1.33.0
    @@ -174,7 +174,7 @@
    - + Boost 1.32.1
    @@ -182,7 +182,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 6d5e99d5..0cb063c7 100644 --- a/doc/html/boost_regex/background_information/locale.html +++ b/doc/html/boost_regex/background_information/locale.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    @@ -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 b26c1139..b6fac183 100644 --- a/doc/html/boost_regex/background_information/performance.html +++ b/doc/html/boost_regex/background_information/performance.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/background_information/redist.html b/doc/html/boost_regex/background_information/redist.html index a4c2158a..72258f79 100644 --- a/doc/html/boost_regex/background_information/redist.html +++ b/doc/html/boost_regex/background_information/redist.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/background_information/standards.html b/doc/html/boost_regex/background_information/standards.html index db70edb4..534755f3 100644 --- a/doc/html/boost_regex/background_information/standards.html +++ b/doc/html/boost_regex/background_information/standards.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    @@ -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/background_information/thread_safety.html b/doc/html/boost_regex/background_information/thread_safety.html index 7b88363c..dc167483 100644 --- a/doc/html/boost_regex/background_information/thread_safety.html +++ b/doc/html/boost_regex/background_information/thread_safety.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More


    diff --git a/doc/html/boost_regex/captures.html b/doc/html/boost_regex/captures.html index 9d48399d..f306d7c4 100644 --- a/doc/html/boost_regex/captures.html +++ b/doc/html/boost_regex/captures.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    @@ -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 b8de398d..bc93d094 100644 --- a/doc/html/boost_regex/configuration.html +++ b/doc/html/boost_regex/configuration.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More


    diff --git a/doc/html/boost_regex/configuration/algorithm.html b/doc/html/boost_regex/configuration/algorithm.html index 479bacc9..395fcfbf 100644 --- a/doc/html/boost_regex/configuration/algorithm.html +++ b/doc/html/boost_regex/configuration/algorithm.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/configuration/compiler.html b/doc/html/boost_regex/configuration/compiler.html index 4e6a85d1..e423ab16 100644 --- a/doc/html/boost_regex/configuration/compiler.html +++ b/doc/html/boost_regex/configuration/compiler.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/configuration/linkage.html b/doc/html/boost_regex/configuration/linkage.html index 511dc37c..6b21f7ff 100644 --- a/doc/html/boost_regex/configuration/linkage.html +++ b/doc/html/boost_regex/configuration/linkage.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/configuration/locale.html b/doc/html/boost_regex/configuration/locale.html index 7cca75d2..a5f3c041 100644 --- a/doc/html/boost_regex/configuration/locale.html +++ b/doc/html/boost_regex/configuration/locale.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/configuration/tuning.html b/doc/html/boost_regex/configuration/tuning.html index d0921904..c88cc880 100644 --- a/doc/html/boost_regex/configuration/tuning.html +++ b/doc/html/boost_regex/configuration/tuning.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/format.html b/doc/html/boost_regex/format.html index 22d67e10..832b6a0f 100644 --- a/doc/html/boost_regex/format.html +++ b/doc/html/boost_regex/format.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/format/boost_format_syntax.html b/doc/html/boost_regex/format/boost_format_syntax.html index cb22bcda..c733757b 100644 --- a/doc/html/boost_regex/format/boost_format_syntax.html +++ b/doc/html/boost_regex/format/boost_format_syntax.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    @@ -32,7 +32,7 @@ '$', '\', '(', ')', '?', and ':'.

    - + Grouping

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

    - + Conditionals

    @@ -66,7 +66,7 @@ with "bar" otherwise.

    - + Placeholder Sequences
    @@ -161,7 +161,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 5488c5f8..44ed90f5 100644 --- a/doc/html/boost_regex/format/perl_format.html +++ b/doc/html/boost_regex/format/perl_format.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/format/sed_format.html b/doc/html/boost_regex/format/sed_format.html index ff55b8dc..d617a7a7 100644 --- a/doc/html/boost_regex/format/sed_format.html +++ b/doc/html/boost_regex/format/sed_format.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/install.html b/doc/html/boost_regex/install.html index 6d7308cc..46755547 100644 --- a/doc/html/boost_regex/install.html +++ b/doc/html/boost_regex/install.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    @@ -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/introduction_and_overview.html b/doc/html/boost_regex/introduction_and_overview.html index 68adc16d..de04044d 100644 --- a/doc/html/boost_regex/introduction_and_overview.html +++ b/doc/html/boost_regex/introduction_and_overview.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/partial_matches.html b/doc/html/boost_regex/partial_matches.html index 0543b089..ff764a69 100644 --- a/doc/html/boost_regex/partial_matches.html +++ b/doc/html/boost_regex/partial_matches.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/ref.html b/doc/html/boost_regex/ref.html index b4562707..0ff0d198 100644 --- a/doc/html/boost_regex/ref.html +++ b/doc/html/boost_regex/ref.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/ref/bad_expression.html b/doc/html/boost_regex/ref/bad_expression.html index 84cace8c..09e0dce2 100644 --- a/doc/html/boost_regex/ref/bad_expression.html +++ b/doc/html/boost_regex/ref/bad_expression.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    @@ -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 9203286c..1a72c91a 100644
    --- a/doc/html/boost_regex/ref/basic_regex.html
    +++ b/doc/html/boost_regex/ref/basic_regex.html
    @@ -14,8 +14,8 @@
     Boost C++ Libraries
     Home
     Libraries
    -People
    -FAQ
    +People
    +FAQ
     More
     
     
    @@ -27,7 +27,7 @@ basic_regex
    - + Synopsis
    #include <boost/regex.hpp>
    @@ -243,7 +243,7 @@
     } // namespace boost
     
    - + Description

    @@ -326,7 +326,7 @@ basic_regex.

    -

    Table 1. basic_regex default construction postconditions

    +

    Table 1. basic_regex default construction postconditions

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

    -

    Table 2. Postconditions for basic_regex construction

    +

    Table 2. Postconditions for basic_regex construction

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

    -

    Table 3. Postconditions for basic_regex construction

    +

    Table 3. Postconditions for basic_regex construction

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

    -

    Table 4. Postconditions for basic_regex construction

    +

    Table 4. Postconditions for basic_regex construction

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

    -

    Table 5. Postconditions for basic_regex construction

    +

    Table 5. Postconditions for basic_regex construction

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

    -

    Table 6. Postconditions for basic_regex construction

    +

    Table 6. Postconditions for basic_regex construction

    @@ -1026,7 +1026,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.html b/doc/html/boost_regex/ref/concepts.html index 6a632460..c0b0e15a 100644 --- a/doc/html/boost_regex/ref/concepts.html +++ b/doc/html/boost_regex/ref/concepts.html @@ -14,8 +14,8 @@ - - + +
    Boost C++ Libraries Home LibrariesPeopleFAQPeopleFAQ More

    diff --git a/doc/html/boost_regex/ref/concepts/charT_concept.html b/doc/html/boost_regex/ref/concepts/charT_concept.html index d7934898..ca2b4f81 100644 --- a/doc/html/boost_regex/ref/concepts/charT_concept.html +++ b/doc/html/boost_regex/ref/concepts/charT_concept.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/ref/concepts/iterator_concepts.html b/doc/html/boost_regex/ref/concepts/iterator_concepts.html index c6b6d4c7..c7e39d13 100644 --- a/doc/html/boost_regex/ref/concepts/iterator_concepts.html +++ b/doc/html/boost_regex/ref/concepts/iterator_concepts.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/ref/concepts/traits_concept.html b/doc/html/boost_regex/ref/concepts/traits_concept.html index 147a93c3..f7f2e58a 100644 --- a/doc/html/boost_regex/ref/concepts/traits_concept.html +++ b/doc/html/boost_regex/ref/concepts/traits_concept.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    @@ -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.html b/doc/html/boost_regex/ref/deprecated_interfaces.html index b7724524..5b9ffb3e 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    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 68656cb4..a490e8d0 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/old_regex.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/old_regex.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    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 0163436f..04d02660 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    @@ -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 d293e650..92cbaa83 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/regex_grep.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/regex_grep.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    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 d5b43e87..d43db820 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/regex_split.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/regex_split.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/ref/error_type.html b/doc/html/boost_regex/ref/error_type.html index 0b3fdf2c..f18f3fdb 100644 --- a/doc/html/boost_regex/ref/error_type.html +++ b/doc/html/boost_regex/ref/error_type.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    @@ -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 9bcc0dac..f95d26d7 100644 --- a/doc/html/boost_regex/ref/match_flag_type.html +++ b/doc/html/boost_regex/ref/match_flag_type.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More


    @@ -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 9a08c670..47f364d9 100644 --- a/doc/html/boost_regex/ref/match_results.html +++ b/doc/html/boost_regex/ref/match_results.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More


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

    diff --git a/doc/html/boost_regex/ref/non_std_strings.html b/doc/html/boost_regex/ref/non_std_strings.html index 64578031..165d4bb7 100644 --- a/doc/html/boost_regex/ref/non_std_strings.html +++ b/doc/html/boost_regex/ref/non_std_strings.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More


    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 d051e5fc..e4bc06f3 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    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 59cbc25d..4472e41a 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 @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    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 9000f383..2a386b1d 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 @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    @@ -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 debc21d2..73ad7f29 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 @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More


    @@ -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/icu/unicode_types.html b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_types.html index cc35964f..6729f74d 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 @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More


    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 e58958d2..738372e3 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 @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    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 60541b54..3dc47f0c 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 @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    @@ -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 0c3c45d8..fa0da3ec 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 @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More


    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 41b53be5..794ea347 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 @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    @@ -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/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 cda7adca..dda660a7 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 @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    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 ea09c6a5..746db452 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 @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/ref/posix.html b/doc/html/boost_regex/ref/posix.html index 780e8201..e2134095 100644 --- a/doc/html/boost_regex/ref/posix.html +++ b/doc/html/boost_regex/ref/posix.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    @@ -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 173e5ec1..3bda19c5 100644 --- a/doc/html/boost_regex/ref/regex_iterator.html +++ b/doc/html/boost_regex/ref/regex_iterator.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More


    @@ -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 059d6c5d..e55dd632 100644 --- a/doc/html/boost_regex/ref/regex_match.html +++ b/doc/html/boost_regex/ref/regex_match.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More


    @@ -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 d4df057f..c7d5dabe 100644 --- a/doc/html/boost_regex/ref/regex_replace.html +++ b/doc/html/boost_regex/ref/regex_replace.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More


    @@ -53,7 +53,7 @@ match_flag_type flags = match_default);
    - + Description
    template <class OutputIterator, class BidirectionalIterator, class traits, class charT>
    @@ -163,7 +163,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 f04b1d9f..10fc7836 100644 --- a/doc/html/boost_regex/ref/regex_search.html +++ b/doc/html/boost_regex/ref/regex_search.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More


    @@ -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 a0c19431..56b09721 100644 --- a/doc/html/boost_regex/ref/regex_token_iterator.html +++ b/doc/html/boost_regex/ref/regex_token_iterator.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More


    @@ -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 f7c9d503..74b6511c 100644 --- a/doc/html/boost_regex/ref/regex_traits.html +++ b/doc/html/boost_regex/ref/regex_traits.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More


    @@ -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 90af7ec8..e2bbf19a 100644 --- a/doc/html/boost_regex/ref/sub_match.html +++ b/doc/html/boost_regex/ref/sub_match.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More


    @@ -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/ref/syntax_option_type.html b/doc/html/boost_regex/ref/syntax_option_type.html index 3a855b9f..47e16b56 100644 --- a/doc/html/boost_regex/ref/syntax_option_type.html +++ b/doc/html/boost_regex/ref/syntax_option_type.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More


    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 bb375d9c..13776798 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 @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    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 127a40b8..a3291b78 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 @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    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 5ef09b83..5914a382 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 @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    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 1ce0acd9..1ebb3e4c 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 @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    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 64365cc8..46962821 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 @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    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 fed4fdff..9fbc0e06 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 @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/syntax.html b/doc/html/boost_regex/syntax.html index 20b9a184..2509541a 100644 --- a/doc/html/boost_regex/syntax.html +++ b/doc/html/boost_regex/syntax.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/syntax/basic_extended.html b/doc/html/boost_regex/syntax/basic_extended.html index ab953647..b8490b92 100644 --- a/doc/html/boost_regex/syntax/basic_extended.html +++ b/doc/html/boost_regex/syntax/basic_extended.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    @@ -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 934a8838..6a7bde4f 100644 --- a/doc/html/boost_regex/syntax/basic_syntax.html +++ b/doc/html/boost_regex/syntax/basic_syntax.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More


    @@ -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/character_classes.html b/doc/html/boost_regex/syntax/character_classes.html index f23ea716..a149c5d5 100644 --- a/doc/html/boost_regex/syntax/character_classes.html +++ b/doc/html/boost_regex/syntax/character_classes.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More


    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 e3856bba..d9addc04 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 @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    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 302a05d9..2826f46f 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 @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/syntax/collating_names.html b/doc/html/boost_regex/syntax/collating_names.html index a6997bf4..4902501a 100644 --- a/doc/html/boost_regex/syntax/collating_names.html +++ b/doc/html/boost_regex/syntax/collating_names.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/syntax/collating_names/digraphs.html b/doc/html/boost_regex/syntax/collating_names/digraphs.html index 50892354..f7132b3d 100644 --- a/doc/html/boost_regex/syntax/collating_names/digraphs.html +++ b/doc/html/boost_regex/syntax/collating_names/digraphs.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    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 e9c3bc90..3cc6c247 100644 --- a/doc/html/boost_regex/syntax/collating_names/named_unicode.html +++ b/doc/html/boost_regex/syntax/collating_names/named_unicode.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    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 220c7e81..1ab94332 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 @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/syntax/leftmost_longest_rule.html b/doc/html/boost_regex/syntax/leftmost_longest_rule.html index 39b8e146..38cb3b76 100644 --- a/doc/html/boost_regex/syntax/leftmost_longest_rule.html +++ b/doc/html/boost_regex/syntax/leftmost_longest_rule.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    diff --git a/doc/html/boost_regex/syntax/perl_syntax.html b/doc/html/boost_regex/syntax/perl_syntax.html index 4911c61e..cfe83674 100644 --- a/doc/html/boost_regex/syntax/perl_syntax.html +++ b/doc/html/boost_regex/syntax/perl_syntax.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    @@ -28,7 +28,7 @@ Syntax

    - + Synopsis

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

    - + Perl Regular Expression Syntax

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

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

    @@ -75,7 +75,7 @@

    - + Anchors

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

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

    - + Non-marking grouping
    @@ -111,7 +111,7 @@ out any separate sub-expressions.

    - + Repeats

    @@ -197,7 +197,7 @@ operator to be applied to.

    - + Non greedy repeats
    @@ -228,7 +228,7 @@ input as possible.

    - + Back references

    @@ -248,7 +248,7 @@

    aaabba
     
    - + Alternation

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

    - + Character sets

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

    - + Single characters

    @@ -298,7 +298,7 @@ or 'c'.

    - + Character ranges
    @@ -311,7 +311,7 @@ regular expression, then ranges are locale sensitive.

    - + Negation

    @@ -320,7 +320,7 @@ range a-c.

    - + Character classes
    @@ -330,7 +330,7 @@ character class names.

    - + Collating Elements
    @@ -354,7 +354,7 @@ character.

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

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

    - + Combinations

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

    - + Escapes

    @@ -584,7 +584,7 @@

    - + "Single character" character classes:
    @@ -738,7 +738,7 @@
    - + Character Properties
    @@ -846,7 +846,7 @@ matches any "digit" character, as does \p{digit}.

    - + Word Boundaries

    @@ -868,7 +868,7 @@ Matches only when not at a word boundary.

    - + Buffer boundaries

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

    - + Continuation Escape
    @@ -905,7 +905,7 @@ match to start where the last one ended.

    - + Quoting escape

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

    - + Unicode escapes

    @@ -929,7 +929,7 @@ combining characters.

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

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

    - + Comments

    @@ -956,7 +956,7 @@ are ignored.

    - + Modifiers

    @@ -971,7 +971,7 @@ applies the specified modifiers to pattern only.

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

    - + Lookahead

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

    - + Lookbehind

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

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

    - + Conditional Expressions
    @@ -1050,7 +1050,7 @@ sub-expression has been matched).

    - + Operator precedence
    @@ -1086,7 +1086,7 @@

    - + What gets matched

    @@ -1271,7 +1271,7 @@

    - + Variations

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

    - + Options

    @@ -1293,7 +1293,7 @@ sensitivity are to be applied.

    - + Pattern Modifiers

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

    - + References

    diff --git a/doc/html/boost_regex/unicode.html b/doc/html/boost_regex/unicode.html index f01c3510..3b98caff 100644 --- a/doc/html/boost_regex/unicode.html +++ b/doc/html/boost_regex/unicode.html @@ -14,8 +14,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More


    @@ -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 388dfc44..b95c821b 100644 --- a/doc/html/index.html +++ b/doc/html/index.html @@ -12,8 +12,8 @@ Boost C++ Libraries Home Libraries -People -FAQ +People +FAQ More
    @@ -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: April 11, 2008 at 08:50:33 GMT

    Last revised: July 25, 2008 at 09:01:43 GMT


    From 3a15c301db2b66cdcf33b556aaad63d729e24fef Mon Sep 17 00:00:00 2001 From: John Maddock Date: Wed, 30 Jul 2008 09:35:44 +0000 Subject: [PATCH 28/72] Disable MSVC std lib workarounds if we're really using STLPort or Apache/RW std lib. [SVN r47880] --- src/wc_regex_traits.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/wc_regex_traits.cpp b/src/wc_regex_traits.cpp index 1de3dee6..393b2d7f 100644 --- a/src/wc_regex_traits.cpp +++ b/src/wc_regex_traits.cpp @@ -23,7 +23,8 @@ #include #include -#if defined(_DLL_CPPLIB) && !defined(_M_CEE_PURE) +#if defined(_DLL_CPPLIB) && !defined(_M_CEE_PURE) \ + && !(defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION) || defined(__STD_RWCOMPILER_H__) || defined(_RWSTD_VER)) // // This is a horrible workaround, but without declaring these symbols extern we get // duplicate symbol errors when linking if the application is built without @@ -38,7 +39,7 @@ namespace std{ #if BOOST_WORKAROUND(BOOST_MSVC, >= 1400) -template BOOST_REGEX_STDLIB_DECL allocator::allocator(); +template class BOOST_REGEX_STDLIB_DECL allocator; template class BOOST_REGEX_STDLIB_DECL _String_val >; template class BOOST_REGEX_STDLIB_DECL basic_string, allocator >; From 1012d28c32e5bc20f35ea354a495b2af72ad8a2a Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sun, 17 Aug 2008 11:15:07 +0000 Subject: [PATCH 29/72] Fix for issue #2188. [SVN r48185] --- include/boost/regex/v4/perl_matcher_non_recursive.hpp | 4 +++- test/regress/test_tricky_cases.cpp | 3 +++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/include/boost/regex/v4/perl_matcher_non_recursive.hpp b/include/boost/regex/v4/perl_matcher_non_recursive.hpp index e6bf1bba..2a6207fc 100644 --- a/include/boost/regex/v4/perl_matcher_non_recursive.hpp +++ b/include/boost/regex/v4/perl_matcher_non_recursive.hpp @@ -477,7 +477,9 @@ bool perl_matcher::match_rep() take_second = can_start(*position, rep->_map, (unsigned char)mask_skip); } - if(take_first || (next_count->get_id() != rep->id)) + if((m_backup_state->id != saved_state_repeater_count) + || (static_cast*>(m_backup_state)->count.get_id() != rep->id) + || (next_count->get_id() != rep->id)) { // we're moving to a different repeat from the last // one, so set up a counter object: diff --git a/test/regress/test_tricky_cases.cpp b/test/regress/test_tricky_cases.cpp index a0c1e532..e025dc43 100644 --- a/test/regress/test_tricky_cases.cpp +++ b/test/regress/test_tricky_cases.cpp @@ -377,6 +377,9 @@ void test_tricky_cases3() TEST_REGEX_SEARCH("(?:\\d{9}.*){2}", perl, "123456789dfsdfsdfsfsdfds123456789b", match_default, make_array(0, 34, -2, -2)); TEST_REGEX_SEARCH("(?:\\d{9}.*){2}", perl, "123456789dfsdfsdfsfsdfds12345678", match_default, make_array(-2, -2)); TEST_REGEX_SEARCH("(?:\\d{9}.*){2}", perl, "123456789dfsdfsdfsfsdfds", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("^(25[0-5]|2[0-4][0-9]|[0-1]?[0-9]?[0-9])(\\.(25[0-5]|2[0-4][0-9]|[0-1]?[0-9]?[0-9])){3}$", perl, "1.2.03", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("^(25[0-5]|2[0-4][0-9]|[0-1]?[0-9]?[0-9])(\\.(25[0-5]|2[0-4][0-9]|[0-1]?[0-9]?[0-9])){3,4}$", perl, "1.2.03", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("^(25[0-5]|2[0-4][0-9]|[0-1]?[0-9]?[0-9])(\\.(25[0-5]|2[0-4][0-9]|[0-1]?[0-9]?[0-9])){3,4}?$", perl, "1.2.03", match_default, make_array(-2, -2)); // From cb5443477bae3f4a6619d20b0b9c788c7a96f7ad Mon Sep 17 00:00:00 2001 From: John Maddock Date: Tue, 19 Aug 2008 15:54:39 +0000 Subject: [PATCH 30/72] Fix for VC8 without the service pack. [SVN r48220] --- src/usinstances.cpp | 83 ++++++++++++++++++++++++++------------------- 1 file changed, 48 insertions(+), 35 deletions(-) diff --git a/src/usinstances.cpp b/src/usinstances.cpp index e633659e..390cd254 100644 --- a/src/usinstances.cpp +++ b/src/usinstances.cpp @@ -18,46 +18,59 @@ #define BOOST_REGEX_SOURCE +#include +#include +#include + +#if defined(_DLL_CPPLIB) && !defined(_M_CEE_PURE) \ + && !(defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION) || defined(__STD_RWCOMPILER_H__) || defined(_RWSTD_VER)) +// +// This is a horrible workaround, but without declaring these symbols extern we get +// duplicate symbol errors when linking if the application is built without +// /Zc:wchar_t +// +#ifdef _CRTIMP2_PURE +# define BOOST_REGEX_STDLIB_DECL _CRTIMP2_PURE +#else +# define BOOST_REGEX_STDLIB_DECL _CRTIMP2 +#endif + +namespace std{ + +#if BOOST_WORKAROUND(BOOST_MSVC, >= 1400) +template class BOOST_REGEX_STDLIB_DECL allocator; +template class BOOST_REGEX_STDLIB_DECL _String_val >; +template class BOOST_REGEX_STDLIB_DECL basic_string, + allocator >; +#endif + +#if BOOST_WORKAROUND(BOOST_MSVC, > 1300) && BOOST_WORKAROUND(BOOST_MSVC, BOOST_TESTED_AT(1400)) +template<> BOOST_REGEX_STDLIB_DECL std::size_t __cdecl char_traits::length(unsigned short const*); +#endif + +template BOOST_REGEX_STDLIB_DECL bool __cdecl operator==( + const basic_string, allocator >&, + const basic_string, allocator >&); +template BOOST_REGEX_STDLIB_DECL bool __cdecl operator==( + const unsigned short *, + const basic_string, allocator >&); +template BOOST_REGEX_STDLIB_DECL bool __cdecl operator==( + const basic_string, allocator >&, + const unsigned short *); +template BOOST_REGEX_STDLIB_DECL bool __cdecl operator<( + const basic_string, allocator >&, + const basic_string, allocator >&); +template BOOST_REGEX_STDLIB_DECL bool __cdecl operator>( + const basic_string, allocator >&, + const basic_string, allocator >&); +} +#endif + #include #if !defined(BOOST_NO_WREGEX) && defined(BOOST_REGEX_HAS_OTHER_WCHAR_T) && !defined(BOOST_REGEX_NO_EXTERNAL_TEMPLATES) #define BOOST_REGEX_US_INSTANTIATE -#ifdef _DLL_CPPLIB -#include -#include -#include -// -// This is a horrible workaround, without declaring these symbols extern we get -// duplicate symbol errors when linking if the application is built without -// /Zc:wchar_t -// -namespace std{ -template _CRTIMP2 bool __cdecl operator==( - const basic_string, allocator >&, - const basic_string, allocator >&); -template _CRTIMP2 bool __cdecl operator==( - const unsigned short *, - const basic_string, allocator >&); -template _CRTIMP2 bool __cdecl operator==( - const basic_string, allocator >&, - const unsigned short *); -template _CRTIMP2 bool __cdecl operator<( - const basic_string, allocator >&, - const basic_string, allocator >&); -template _CRTIMP2 bool __cdecl operator>( - const basic_string, allocator >&, - const basic_string, allocator >&); -#if BOOST_WORKAROUND(BOOST_MSVC, > 1300) && BOOST_WORKAROUND(BOOST_MSVC, BOOST_TESTED_AT(1400)) -template<> _CRTIMP2 std::size_t __cdecl char_traits::length(unsigned short const*); -#endif -#if BOOST_WORKAROUND(BOOST_MSVC, >= 1400) -template _CRTIMP2 allocator::allocator(); -#endif -} -#endif - - #include #endif From 1297f92b8a1a7ff634ed4d38f9c6f58af8dc0d3d Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sat, 23 Aug 2008 11:40:58 +0000 Subject: [PATCH 31/72] Tentative fix for issue #2244: ICU uses wchar_t as UCHAR whenever sizeof(wchar_t) == 2. [SVN r48312] --- include/boost/regex/icu.hpp | 10 +++++----- include/boost/regex/v4/u32regex_iterator.hpp | 2 +- include/boost/regex/v4/u32regex_token_iterator.hpp | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/include/boost/regex/icu.hpp b/include/boost/regex/icu.hpp index 53941b64..7af1d678 100644 --- a/include/boost/regex/icu.hpp +++ b/include/boost/regex/icu.hpp @@ -355,7 +355,7 @@ inline u32regex make_u32regex(const wchar_t* p, boost::regex_constants::syntax_o return re_detail::do_make_u32regex(p, p + std::wcslen(p), opt, static_cast const*>(0)); } #endif -#ifndef U_WCHAR_IS_UTF16 +#if !defined(U_WCHAR_IS_UTF16) && (U_SIZEOF_WCHAR_T != 2) inline u32regex make_u32regex(const UChar* p, boost::regex_constants::syntax_option_type opt = boost::regex_constants::perl) { return re_detail::do_make_u32regex(p, p + u_strlen(p), opt, static_cast const*>(0)); @@ -455,7 +455,7 @@ inline bool u32regex_match(const UChar* p, { return re_detail::do_regex_match(p, p+u_strlen(p), m, e, flags, static_cast const*>(0)); } -#if !defined(U_WCHAR_IS_UTF16) && !defined(BOOST_NO_WREGEX) +#if !defined(U_WCHAR_IS_UTF16) && (U_SIZEOF_WCHAR_T != 2) && !defined(BOOST_NO_WREGEX) inline bool u32regex_match(const wchar_t* p, match_results& m, const u32regex& e, @@ -519,7 +519,7 @@ inline bool u32regex_match(const UChar* p, match_results m; return re_detail::do_regex_match(p, p+u_strlen(p), m, e, flags, static_cast const*>(0)); } -#if !defined(U_WCHAR_IS_UTF16) && !defined(BOOST_NO_WREGEX) +#if !defined(U_WCHAR_IS_UTF16) && (U_SIZEOF_WCHAR_T != 2) && !defined(BOOST_NO_WREGEX) inline bool u32regex_match(const wchar_t* p, const u32regex& e, match_flag_type flags = match_default) @@ -640,7 +640,7 @@ inline bool u32regex_search(const UChar* p, { return re_detail::do_regex_search(p, p+u_strlen(p), m, e, flags, p, static_cast const*>(0)); } -#if !defined(U_WCHAR_IS_UTF16) && !defined(BOOST_NO_WREGEX) +#if !defined(U_WCHAR_IS_UTF16) && (U_SIZEOF_WCHAR_T != 2) && !defined(BOOST_NO_WREGEX) inline bool u32regex_search(const wchar_t* p, match_results& m, const u32regex& e, @@ -701,7 +701,7 @@ inline bool u32regex_search(const UChar* p, match_results m; return re_detail::do_regex_search(p, p+u_strlen(p), m, e, flags, p, static_cast const*>(0)); } -#if !defined(U_WCHAR_IS_UTF16) && !defined(BOOST_NO_WREGEX) +#if !defined(U_WCHAR_IS_UTF16) && (U_SIZEOF_WCHAR_T != 2) && !defined(BOOST_NO_WREGEX) inline bool u32regex_search(const wchar_t* p, const u32regex& e, match_flag_type flags = match_default) diff --git a/include/boost/regex/v4/u32regex_iterator.hpp b/include/boost/regex/v4/u32regex_iterator.hpp index 9e49c6f3..7e893e69 100644 --- a/include/boost/regex/v4/u32regex_iterator.hpp +++ b/include/boost/regex/v4/u32regex_iterator.hpp @@ -166,7 +166,7 @@ inline u32regex_iterator make_u32regex_iterator(const wchar_t* p return u32regex_iterator(p, p+std::wcslen(p), e, m); } #endif -#ifndef U_WCHAR_IS_UTF16 +#if !defined(U_WCHAR_IS_UTF16) && (U_SIZEOF_WCHAR_T != 2) inline u32regex_iterator make_u32regex_iterator(const UChar* p, const u32regex& e, regex_constants::match_flag_type m = regex_constants::match_default) { return u32regex_iterator(p, p+u_strlen(p), e, m); diff --git a/include/boost/regex/v4/u32regex_token_iterator.hpp b/include/boost/regex/v4/u32regex_token_iterator.hpp index a8d394e4..d8833575 100644 --- a/include/boost/regex/v4/u32regex_token_iterator.hpp +++ b/include/boost/regex/v4/u32regex_token_iterator.hpp @@ -282,7 +282,7 @@ inline u32regex_token_iterator make_u32regex_token_iterator(cons return u32regex_token_iterator(p, p+std::wcslen(p), e, submatch, m); } #endif -#ifndef U_WCHAR_IS_UTF16 +#if !defined(U_WCHAR_IS_UTF16) && (U_SIZEOF_WCHAR_T != 2) inline u32regex_token_iterator make_u32regex_token_iterator(const UChar* p, const u32regex& e, int submatch = 0, regex_constants::match_flag_type m = regex_constants::match_default) { return u32regex_token_iterator(p, p+u_strlen(p), e, m); @@ -313,7 +313,7 @@ inline u32regex_token_iterator make_u32regex_token_iterator(cons return u32regex_token_iterator(p, p+std::wcslen(p), e, submatch, m); } #endif -#ifndef U_WCHAR_IS_UTF16 +#if !defined(U_WCHAR_IS_UTF16) && (U_SIZEOF_WCHAR_T != 2) 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) { @@ -344,7 +344,7 @@ inline u32regex_token_iterator make_u32regex_token_iterator(cons return u32regex_token_iterator(p, p+std::wcslen(p), e, submatch, m); } #endif -#ifndef U_WCHAR_IS_UTF16 +#if !defined(U_WCHAR_IS_UTF16) && (U_SIZEOF_WCHAR_T != 2) inline u32regex_token_iterator make_u32regex_token_iterator(const UChar* p, const u32regex& e, const std::vector& submatch, regex_constants::match_flag_type m = regex_constants::match_default) { return u32regex_token_iterator(p, p+u_strlen(p), e, m); From 4212c0d915ea2d5102803d3e0015c47a2e9edf04 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Thu, 28 Aug 2008 11:02:59 +0000 Subject: [PATCH 32/72] Update TR1 library to cope with GCC-4.3 in C++0x mode, and in TR1 mode. Updated regex concepts to match the TR1. Added "tricky" cmath_test to test for the functions Boost doesn't implement. [SVN r48413] --- include/boost/regex/concepts.hpp | 10 +++++----- include/boost/regex/v4/basic_regex.hpp | 2 +- include/boost/regex/v4/perl_matcher.hpp | 2 +- test/pathology/bad_expression_test.cpp | 3 ++- 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/include/boost/regex/concepts.hpp b/include/boost/regex/concepts.hpp index 99c6eea5..0a22aebd 100644 --- a/include/boost/regex/concepts.hpp +++ b/include/boost/regex/concepts.hpp @@ -87,12 +87,12 @@ struct regex_traits_architype public: regex_traits_architype(); typedef charT char_type; - typedef std::size_t size_type; + // typedef std::size_t size_type; typedef std::vector string_type; typedef copy_constructible_archetype > locale_type; typedef bitmask_archetype char_class_type; - static size_type length(const char_type* ) { return 0; } + static std::size_t length(const char_type* ) { return 0; } charT translate(charT ) const { return charT(); } charT translate_nocase(charT ) const { return static_object::get(); } @@ -163,21 +163,21 @@ struct RegexTraitsConcept RegexTraitsConcept(); // required typedefs: typedef typename traits::char_type char_type; - typedef typename traits::size_type size_type; + // typedef typename traits::size_type size_type; typedef typename traits::string_type string_type; typedef typename traits::locale_type locale_type; typedef typename traits::char_class_type char_class_type; void constraints() { - function_requires >(); + //function_requires >(); function_requires >(); function_requires >(); function_requires >(); function_requires >(); function_requires >(); - size_type n = traits::length(m_pointer); + std::size_t n = traits::length(m_pointer); ignore_unused_variable_warning(n); char_type c = m_ctraits.translate(m_char); diff --git a/include/boost/regex/v4/basic_regex.hpp b/include/boost/regex/v4/basic_regex.hpp index 2a8c0c6c..018a30f9 100644 --- a/include/boost/regex/v4/basic_regex.hpp +++ b/include/boost/regex/v4/basic_regex.hpp @@ -191,7 +191,7 @@ class basic_regex : public regbase { public: // typedefs: - typedef typename traits::size_type traits_size_type; + typedef std::size_t traits_size_type; typedef typename traits::string_type traits_string_type; typedef charT char_type; typedef traits traits_type; diff --git a/include/boost/regex/v4/perl_matcher.hpp b/include/boost/regex/v4/perl_matcher.hpp index 547cb24a..66c2d007 100644 --- a/include/boost/regex/v4/perl_matcher.hpp +++ b/include/boost/regex/v4/perl_matcher.hpp @@ -331,7 +331,7 @@ public: typedef typename traits::char_type char_type; typedef perl_matcher self_type; typedef bool (self_type::*matcher_proc_type)(void); - typedef typename traits::size_type traits_size_type; + typedef std::size_t traits_size_type; typedef typename is_byte::width_type width_type; typedef typename regex_iterator_traits::difference_type difference_type; diff --git a/test/pathology/bad_expression_test.cpp b/test/pathology/bad_expression_test.cpp index 308df422..34f21c22 100644 --- a/test/pathology/bad_expression_test.cpp +++ b/test/pathology/bad_expression_test.cpp @@ -46,7 +46,7 @@ int test_main( int , char* [] ) bad_text.assign((std::string::size_type)500000, 'a'); e2.assign("aaa*@"); - BOOST_CHECK_THROW(0 == boost::regex_search(bad_text, what, e2), std::runtime_error); + BOOST_CHECK_THROW(boost::regex_search(bad_text, what, e2), std::runtime_error); good_text.assign((std::string::size_type)5000, 'a'); BOOST_CHECK(0 == boost::regex_search(good_text, what, e2)); @@ -54,3 +54,4 @@ int test_main( int , char* [] ) } #include + From 30074a601aece3ee0a9b932c3043163a0db0b1c5 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Fri, 29 Aug 2008 17:11:18 +0000 Subject: [PATCH 33/72] Add /usr/local/include to the list of include paths for ICU on FreeBSD. [SVN r48454] --- build/Jamfile.v2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Jamfile.v2 b/build/Jamfile.v2 index 47f3de94..bc340fdf 100644 --- a/build/Jamfile.v2 +++ b/build/Jamfile.v2 @@ -169,7 +169,7 @@ rule check-icu-config ( ) if [ check-icu-config ] { - BOOST_REGEX_ICU_OPTS = "BOOST_HAS_ICU=1" ; + BOOST_REGEX_ICU_OPTS = "BOOST_HAS_ICU=1 freebsd:/usr/local/include" ; if $(ICU_PATH) { From 18623d00af7e79bf5c71c072460b2583ad4f7388 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Thu, 4 Sep 2008 08:36:34 +0000 Subject: [PATCH 34/72] Fix Jamfile logic: BOOST_REGEX_ICU_OPTS needs to be a list not a string. [SVN r48574] --- build/Jamfile.v2 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build/Jamfile.v2 b/build/Jamfile.v2 index bc340fdf..6a21561d 100644 --- a/build/Jamfile.v2 +++ b/build/Jamfile.v2 @@ -169,7 +169,8 @@ rule check-icu-config ( ) if [ check-icu-config ] { - BOOST_REGEX_ICU_OPTS = "BOOST_HAS_ICU=1 freebsd:/usr/local/include" ; + BOOST_REGEX_ICU_OPTS = "freebsd:/usr/local/include" ; + BOOST_REGEX_ICU_OPTS += "BOOST_HAS_ICU=1" ; if $(ICU_PATH) { @@ -259,3 +260,4 @@ boost-install boost_regex ; + From d70f98e65882694faab6595e852cddb31daa01a0 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Fri, 12 Sep 2008 12:40:23 +0000 Subject: [PATCH 35/72] Fixes #2306. Change "id" to "state_id". [SVN r48751] --- .../boost/regex/v4/basic_regex_creator.hpp | 18 +++++++------- include/boost/regex/v4/cpp_regex_traits.hpp | 6 ++--- include/boost/regex/v4/perl_matcher.hpp | 14 +++++------ .../regex/v4/perl_matcher_non_recursive.hpp | 18 +++++++------- .../boost/regex/v4/perl_matcher_recursive.hpp | 2 +- .../boost/regex/v4/regex_traits_defaults.hpp | 4 ++-- include/boost/regex/v4/states.hpp | 2 +- .../regex/v4/u32regex_token_iterator.hpp | 4 ++-- include/boost/regex/v4/w32_regex_traits.hpp | 24 +++++++++---------- 9 files changed, 46 insertions(+), 46 deletions(-) diff --git a/include/boost/regex/v4/basic_regex_creator.hpp b/include/boost/regex/v4/basic_regex_creator.hpp index 35de0cef..9f2cbeec 100644 --- a/include/boost/regex/v4/basic_regex_creator.hpp +++ b/include/boost/regex/v4/basic_regex_creator.hpp @@ -236,7 +236,7 @@ protected: m_traits; // convenience reference to traits class re_syntax_base* m_last_state; // the last state we added bool m_icase; // true for case insensitive matches - unsigned m_repeater_id; // the id of the next repeater + unsigned m_repeater_id; // the state_id of the next repeater bool m_has_backrefs; // true if there are actually any backrefs unsigned m_backrefs; // bitmask of permitted backrefs boost::uintmax_t m_bad_repeats; // bitmask of repeats we can't deduce a startmap for; @@ -718,8 +718,8 @@ void basic_regex_creator::fixup_pointers(re_syntax_base* state) case syntax_element_char_rep: case syntax_element_short_set_rep: case syntax_element_long_set_rep: - // set the id of this repeat: - static_cast(state)->id = m_repeater_id++; + // set the state_id of this repeat: + static_cast(state)->state_id = m_repeater_id++; // fall through: case syntax_element_alt: std::memset(static_cast(state)->_map, 0, sizeof(static_cast(state)->_map)); @@ -1194,11 +1194,11 @@ bool basic_regex_creator::is_bad_repeat(re_syntax_base* pt) case syntax_element_short_set_rep: case syntax_element_long_set_rep: { - unsigned id = static_cast(pt)->id; - if(id > sizeof(m_bad_repeats) * CHAR_BIT) + unsigned state_id = static_cast(pt)->state_id; + if(state_id > sizeof(m_bad_repeats) * CHAR_BIT) return true; // run out of bits, assume we can't traverse this one. static const boost::uintmax_t one = 1uL; - return m_bad_repeats & (one << id); + return m_bad_repeats & (one << state_id); } default: return false; @@ -1216,10 +1216,10 @@ void basic_regex_creator::set_bad_repeat(re_syntax_base* pt) case syntax_element_short_set_rep: case syntax_element_long_set_rep: { - unsigned id = static_cast(pt)->id; + unsigned state_id = static_cast(pt)->state_id; static const boost::uintmax_t one = 1uL; - if(id <= sizeof(m_bad_repeats) * CHAR_BIT) - m_bad_repeats |= (one << id); + if(state_id <= sizeof(m_bad_repeats) * CHAR_BIT) + m_bad_repeats |= (one << state_id); } default: break; diff --git a/include/boost/regex/v4/cpp_regex_traits.hpp b/include/boost/regex/v4/cpp_regex_traits.hpp index 58c82540..89fe49d8 100644 --- a/include/boost/regex/v4/cpp_regex_traits.hpp +++ b/include/boost/regex/v4/cpp_regex_traits.hpp @@ -799,9 +799,9 @@ typename cpp_regex_traits_implementation::char_class_type if(pos != m_custom_class_names.end()) return pos->second; } - std::size_t id = 1 + re_detail::get_default_class_id(p1, p2); - BOOST_ASSERT(id < sizeof(masks) / sizeof(masks[0])); - return masks[id]; + std::size_t state_id = 1 + re_detail::get_default_class_id(p1, p2); + BOOST_ASSERT(state_id < sizeof(masks) / sizeof(masks[0])); + return masks[state_id]; } #ifdef BOOST_REGEX_BUGGY_CTYPE_FACET diff --git a/include/boost/regex/v4/perl_matcher.hpp b/include/boost/regex/v4/perl_matcher.hpp index 66c2d007..a6e31f77 100644 --- a/include/boost/regex/v4/perl_matcher.hpp +++ b/include/boost/regex/v4/perl_matcher.hpp @@ -248,7 +248,7 @@ class repeater_count { repeater_count** stack; repeater_count* next; - int id; + int state_id; std::size_t count; // the number of iterations so far BidiIterator start_pos; // where the last repeat started public: @@ -256,22 +256,22 @@ public: { stack = s; next = 0; - id = -1; + state_id = -1; count = 0; } repeater_count(int i, repeater_count** s, BidiIterator start) : start_pos(start) { - id = i; + state_id = i; stack = s; next = *stack; *stack = this; - if(id > next->id) + if(state_id > next->state_id) count = 0; else { repeater_count* p = next; - while(p->id != id) + while(p->state_id != state_id) p = p->next; count = p->count; start_pos = p->start_pos; @@ -282,7 +282,7 @@ public: *stack = next; } std::size_t get_count() { return count; } - int get_id() { return id; } + int get_id() { return state_id; } std::size_t operator++() { return ++count; } bool check_null_repeat(const BidiIterator& pos, std::size_t max) { @@ -487,7 +487,7 @@ private: void push_assertion(const re_syntax_base* ps, bool positive); void push_alt(const re_syntax_base* ps); 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 id); + 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); diff --git a/include/boost/regex/v4/perl_matcher_non_recursive.hpp b/include/boost/regex/v4/perl_matcher_non_recursive.hpp index 2a6207fc..10e03477 100644 --- a/include/boost/regex/v4/perl_matcher_non_recursive.hpp +++ b/include/boost/regex/v4/perl_matcher_non_recursive.hpp @@ -50,13 +50,13 @@ inline void inplace_destroy(T* p) struct saved_state { union{ - unsigned int id; + unsigned int state_id; // this padding ensures correct alignment on 64-bit platforms: std::size_t padding1; std::ptrdiff_t padding2; void* padding3; }; - saved_state(unsigned i) : id(i) {} + saved_state(unsigned i) : state_id(i) {} }; template @@ -298,7 +298,7 @@ inline void perl_matcher::push_repeater_count(i } template -inline void perl_matcher::push_single_repeat(std::size_t c, const re_repeat* r, BidiIterator last_position, int id) +inline void perl_matcher::push_single_repeat(std::size_t c, const re_repeat* r, BidiIterator last_position, int state_id) { saved_single_repeat* pmp = static_cast*>(m_backup_state); --pmp; @@ -308,7 +308,7 @@ inline void perl_matcher::push_single_repeat(st pmp = static_cast*>(m_backup_state); --pmp; } - (void) new (pmp)saved_single_repeat(c, r, last_position, id); + (void) new (pmp)saved_single_repeat(c, r, last_position, state_id); m_backup_state = pmp; } @@ -477,13 +477,13 @@ bool perl_matcher::match_rep() take_second = can_start(*position, rep->_map, (unsigned char)mask_skip); } - if((m_backup_state->id != saved_state_repeater_count) - || (static_cast*>(m_backup_state)->count.get_id() != rep->id) - || (next_count->get_id() != rep->id)) + if((m_backup_state->state_id != saved_state_repeater_count) + || (static_cast*>(m_backup_state)->count.get_id() != rep->state_id) + || (next_count->get_id() != rep->state_id)) { // we're moving to a different repeat from the last // one, so set up a counter object: - push_repeater_count(rep->id, &next_count); + push_repeater_count(rep->state_id, &next_count); } // // If we've had at least one repeat already, and the last one @@ -884,7 +884,7 @@ bool perl_matcher::unwind(bool have_match) // do { - unwinder = s_unwind_table[m_backup_state->id]; + unwinder = s_unwind_table[m_backup_state->state_id]; cont = (this->*unwinder)(m_recursive_result); }while(cont); // diff --git a/include/boost/regex/v4/perl_matcher_recursive.hpp b/include/boost/regex/v4/perl_matcher_recursive.hpp index 746d02ab..68e1aac9 100644 --- a/include/boost/regex/v4/perl_matcher_recursive.hpp +++ b/include/boost/regex/v4/perl_matcher_recursive.hpp @@ -291,7 +291,7 @@ bool perl_matcher::match_rep() // Always copy the repeat count, so that the state is restored // when we exit this scope: // - repeater_count r(rep->id, &next_count, position); + repeater_count r(rep->state_id, &next_count, position); // // If we've had at least one repeat already, and the last one // matched the NULL string then set the repeat count to diff --git a/include/boost/regex/v4/regex_traits_defaults.hpp b/include/boost/regex/v4/regex_traits_defaults.hpp index 38c12738..42428dd8 100644 --- a/include/boost/regex/v4/regex_traits_defaults.hpp +++ b/include/boost/regex/v4/regex_traits_defaults.hpp @@ -134,8 +134,8 @@ inline bool is_separator(char c) BOOST_REGEX_DECL std::string BOOST_REGEX_CALL lookup_default_collate_name(const std::string& name); // -// get the id of a character clasification, the individual -// traits classes then transform that id into a bitmask: +// get the state_id of a character clasification, the individual +// traits classes then transform that state_id into a bitmask: // template struct character_pointer_range diff --git a/include/boost/regex/v4/states.hpp b/include/boost/regex/v4/states.hpp index 74885d2a..44dd2b4a 100644 --- a/include/boost/regex/v4/states.hpp +++ b/include/boost/regex/v4/states.hpp @@ -240,7 +240,7 @@ Repeat a section of the machine struct re_repeat : public re_alt { std::size_t min, max; // min and max allowable repeats - int id; // Unique identifier for this repeat + int state_id; // Unique identifier for this repeat bool leading; // True if this repeat is at the start of the machine (lets us optimize some searches) bool greedy; // True if this is a greedy repeat }; diff --git a/include/boost/regex/v4/u32regex_token_iterator.hpp b/include/boost/regex/v4/u32regex_token_iterator.hpp index d8833575..72669ac4 100644 --- a/include/boost/regex/v4/u32regex_token_iterator.hpp +++ b/include/boost/regex/v4/u32regex_token_iterator.hpp @@ -271,7 +271,7 @@ typedef u32regex_token_iterator utf8regex_token_iterator; typedef u32regex_token_iterator utf16regex_token_iterator; typedef u32regex_token_iterator utf32regex_token_iterator; -// construction from an integral sub_match id: +// construction from an integral sub_match state_id: inline u32regex_token_iterator make_u32regex_token_iterator(const char* p, const u32regex& e, int submatch = 0, regex_constants::match_flag_type m = regex_constants::match_default) { return u32regex_token_iterator(p, p+std::strlen(p), e, submatch, m); @@ -333,7 +333,7 @@ inline u32regex_token_iterator make_u32regex_token_iterator(const } #endif // BOOST_MSVC < 1300 -// construction from a vector of sub_match id's: +// construction from a vector of sub_match state_id's: inline u32regex_token_iterator make_u32regex_token_iterator(const char* p, const u32regex& e, const std::vector& submatch, regex_constants::match_flag_type m = regex_constants::match_default) { return u32regex_token_iterator(p, p+std::strlen(p), e, submatch, m); diff --git a/include/boost/regex/v4/w32_regex_traits.hpp b/include/boost/regex/v4/w32_regex_traits.hpp index 2f64843d..21a9694a 100644 --- a/include/boost/regex/v4/w32_regex_traits.hpp +++ b/include/boost/regex/v4/w32_regex_traits.hpp @@ -76,36 +76,36 @@ BOOST_REGEX_DECL bool BOOST_REGEX_CALL w32_is_lower(char, lcid_type); #ifndef BOOST_NO_WREGEX BOOST_REGEX_DECL bool BOOST_REGEX_CALL w32_is_lower(wchar_t, lcid_type); #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 state_id); #endif #endif BOOST_REGEX_DECL bool BOOST_REGEX_CALL w32_is_upper(char, lcid_type); #ifndef BOOST_NO_WREGEX BOOST_REGEX_DECL bool BOOST_REGEX_CALL w32_is_upper(wchar_t, lcid_type); #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 state_id); #endif #endif BOOST_REGEX_DECL cat_type BOOST_REGEX_CALL w32_cat_open(const std::string& name); -BOOST_REGEX_DECL std::string BOOST_REGEX_CALL w32_cat_get(const cat_type& cat, lcid_type id, int i, const std::string& def); +BOOST_REGEX_DECL std::string BOOST_REGEX_CALL w32_cat_get(const cat_type& cat, lcid_type state_id, int i, const std::string& def); #ifndef BOOST_NO_WREGEX -BOOST_REGEX_DECL std::wstring BOOST_REGEX_CALL w32_cat_get(const cat_type& cat, lcid_type id, int i, const std::wstring& def); +BOOST_REGEX_DECL std::wstring BOOST_REGEX_CALL w32_cat_get(const cat_type& cat, lcid_type state_id, int i, const std::wstring& def); #ifdef BOOST_REGEX_HAS_OTHER_WCHAR_T BOOST_REGEX_DECL std::basic_string BOOST_REGEX_CALL w32_cat_get(const cat_type& cat, lcid_type, int i, const std::basic_string& def); #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 state_id, const char* p1, const char* p2); #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 state_id, const wchar_t* p1, const wchar_t* p2); #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 state_id, const unsigned short* p1, const unsigned short* p2); #endif #endif BOOST_REGEX_DECL char BOOST_REGEX_CALL w32_tolower(char c, lcid_type); #ifndef BOOST_NO_WREGEX BOOST_REGEX_DECL wchar_t BOOST_REGEX_CALL w32_tolower(wchar_t c, lcid_type); #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 state_id); #endif #endif BOOST_REGEX_DECL char BOOST_REGEX_CALL w32_toupper(char c, lcid_type); @@ -116,7 +116,7 @@ BOOST_REGEX_DECL bool BOOST_REGEX_CALL w32_is(lcid_type, boost::uint32_t mask, c #ifndef BOOST_NO_WREGEX BOOST_REGEX_DECL bool BOOST_REGEX_CALL w32_is(lcid_type, boost::uint32_t mask, wchar_t c); #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 state_id, boost::uint32_t m, unsigned short c); #endif #endif // @@ -540,9 +540,9 @@ typename w32_regex_traits_implementation::char_class_type if(pos != m_custom_class_names.end()) return pos->second; } - std::size_t id = 1 + re_detail::get_default_class_id(p1, p2); - if(id < sizeof(masks) / sizeof(masks[0])) - return masks[id]; + std::size_t state_id = 1 + re_detail::get_default_class_id(p1, p2); + if(state_id < sizeof(masks) / sizeof(masks[0])) + return masks[state_id]; return masks[0]; } From 545993d3ebc2f273d0f305bf897fd27e269f3ce6 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Tue, 30 Sep 2008 10:54:38 +0000 Subject: [PATCH 36/72] Suppress configuration messages when not actually building the regex lib. [SVN r49065] --- build/Jamfile.v2 | 34 ++++++++++++++++++++++++++-------- 1 file changed, 26 insertions(+), 8 deletions(-) diff --git a/build/Jamfile.v2 b/build/Jamfile.v2 index 6a21561d..d0d0536f 100644 --- a/build/Jamfile.v2 +++ b/build/Jamfile.v2 @@ -33,8 +33,6 @@ rule check-icu-config ( ) if [ GLOB $(dir)/include/unicode : utypes.h ] { - ECHO Building Boost.Regex with Unicode/ICU support enabled ; - ECHO Using ICU in $(ICU_PATH:J=" ")/include ; gHAS_ICU = true ; # try and find ICU libraries, look for NT versions first: @@ -153,25 +151,42 @@ rule check-icu-config ( ) 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 { - ECHO Building Boost.Regex with the optional Unicode/ICU support disabled. ; - ECHO Please refer to the Boost.Regex documentation for more information ; - ECHO (don't panic: this is a strictly optional feature). ; + message icu_config + : "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) { - ECHO Couldn't find utypes.h in $(ICU_PATH:J=" ")/include/unicode ; + message icu_config2 + : WARNING! ICU configuration failed + : " Couldn't find utypes.h in " $(ICU_PATH:J=" ")/include/unicode ; + } + else + { + message icu_config2 ; } } } +explicit icu_config ; +explicit icu_config2 ; + if [ check-icu-config ] +{ +if $(gHAS_ICU) { BOOST_REGEX_ICU_OPTS = "freebsd:/usr/local/include" ; BOOST_REGEX_ICU_OPTS += "BOOST_HAS_ICU=1" ; - + if $(ICU_PATH) { if $(ICU_PATH) != "/usr" && $(ICU_PATH) != "/usr/local" @@ -212,6 +227,7 @@ if [ check-icu-config ] } #End of addition by Tommy Nordgren } + } } SOURCES = @@ -234,7 +250,7 @@ SOURCES = usinstances.cpp ; -lib boost_regex : ../src/$(SOURCES) $(ICU_EXTRA_SOURCE) +lib boost_regex : ../src/$(SOURCES) $(ICU_EXTRA_SOURCE) icu_config2 icu_config : #static:BOOST_REGEX_NO_LIB=1 #static:BOOST_REGEX_STATIC_LINK=1 @@ -261,3 +277,5 @@ boost-install boost_regex ; + + From a2eccc999ce695cf15bf050b010ae510d2c7caa4 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sat, 11 Oct 2008 16:07:45 +0000 Subject: [PATCH 37/72] Fix inspection report issues: remove tabs. [SVN r49284] --- src/usinstances.cpp | 3 +-- src/wc_regex_traits.cpp | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/usinstances.cpp b/src/usinstances.cpp index 390cd254..3f9cc2f0 100644 --- a/src/usinstances.cpp +++ b/src/usinstances.cpp @@ -40,8 +40,7 @@ namespace std{ #if BOOST_WORKAROUND(BOOST_MSVC, >= 1400) template class BOOST_REGEX_STDLIB_DECL allocator; template class BOOST_REGEX_STDLIB_DECL _String_val >; -template class BOOST_REGEX_STDLIB_DECL basic_string, - allocator >; +template class BOOST_REGEX_STDLIB_DECL basic_string, allocator >; #endif #if BOOST_WORKAROUND(BOOST_MSVC, > 1300) && BOOST_WORKAROUND(BOOST_MSVC, BOOST_TESTED_AT(1400)) diff --git a/src/wc_regex_traits.cpp b/src/wc_regex_traits.cpp index 393b2d7f..d8038d1b 100644 --- a/src/wc_regex_traits.cpp +++ b/src/wc_regex_traits.cpp @@ -41,8 +41,7 @@ namespace std{ #if BOOST_WORKAROUND(BOOST_MSVC, >= 1400) template class BOOST_REGEX_STDLIB_DECL allocator; template class BOOST_REGEX_STDLIB_DECL _String_val >; -template class BOOST_REGEX_STDLIB_DECL basic_string, - allocator >; +template class BOOST_REGEX_STDLIB_DECL basic_string, allocator >; #endif #if BOOST_WORKAROUND(BOOST_MSVC, > 1300) && BOOST_WORKAROUND(BOOST_MSVC, BOOST_TESTED_AT(1400)) From 0362d6162785471c8de1d97be6ee7f01e7174dc0 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Thu, 16 Oct 2008 12:52:17 +0000 Subject: [PATCH 38/72] Updated makefiles. [SVN r49359] --- build/bcb6.mak | 1125 ++++++++++++++++++++-------------------- build/gcc-shared.mak | 168 +++--- build/gcc.mak | 172 +++--- build/vc6-stlport.mak | 555 ++++++++++---------- build/vc6.mak | 737 +++++++++++++------------- build/vc7-stlport.mak | 555 ++++++++++---------- build/vc7.mak | 737 +++++++++++++------------- build/vc71-stlport.mak | 555 ++++++++++---------- build/vc71.mak | 737 +++++++++++++------------- build/vc8.mak | 551 ++++++++++---------- build/vc9.mak | 633 ++++++++++++++++++++++ build/vc_gen.sh | 21 +- 12 files changed, 3602 insertions(+), 2944 deletions(-) create mode 100644 build/vc9.mak diff --git a/build/bcb6.mak b/build/bcb6.mak index 12526451..bb395835 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_35 bcb\libboost_regex-bcb-s-1_35.lib bcb\libboost_regex-bcb-mt-s-1_35 bcb\libboost_regex-bcb-mt-s-1_35.lib bcb\boost_regex-bcb-mt-1_35 bcb\boost_regex-bcb-mt-1_35.lib bcb\boost_regex-bcb-1_35 bcb\boost_regex-bcb-1_35.lib bcb\libboost_regex-bcb-mt-1_35 bcb\libboost_regex-bcb-mt-1_35.lib bcb\libboost_regex-bcb-1_35 bcb\libboost_regex-bcb-1_35.lib bcb\libboost_regex-bcb-sd-1_35 bcb\libboost_regex-bcb-sd-1_35.lib bcb\libboost_regex-bcb-mt-sd-1_35 bcb\libboost_regex-bcb-mt-sd-1_35.lib bcb\boost_regex-bcb-mt-d-1_35 bcb\boost_regex-bcb-mt-d-1_35.lib bcb\boost_regex-bcb-d-1_35 bcb\boost_regex-bcb-d-1_35.lib bcb\libboost_regex-bcb-mt-d-1_35 bcb\libboost_regex-bcb-mt-d-1_35.lib bcb\libboost_regex-bcb-d-1_35 bcb\libboost_regex-bcb-d-1_35.lib +all : bcb bcb\libboost_regex-bcb-s-1_37 bcb\libboost_regex-bcb-s-1_37.lib bcb\libboost_regex-bcb-mt-s-1_37 bcb\libboost_regex-bcb-mt-s-1_37.lib bcb\boost_regex-bcb-mt-1_37 bcb\boost_regex-bcb-mt-1_37.lib bcb\boost_regex-bcb-1_37 bcb\boost_regex-bcb-1_37.lib bcb\libboost_regex-bcb-mt-1_37 bcb\libboost_regex-bcb-mt-1_37.lib bcb\libboost_regex-bcb-1_37 bcb\libboost_regex-bcb-1_37.lib bcb\libboost_regex-bcb-sd-1_37 bcb\libboost_regex-bcb-sd-1_37.lib bcb\libboost_regex-bcb-mt-sd-1_37 bcb\libboost_regex-bcb-mt-sd-1_37.lib bcb\boost_regex-bcb-mt-d-1_37 bcb\boost_regex-bcb-mt-d-1_37.lib bcb\boost_regex-bcb-d-1_37 bcb\boost_regex-bcb-d-1_37.lib bcb\libboost_regex-bcb-mt-d-1_37 bcb\libboost_regex-bcb-mt-d-1_37.lib bcb\libboost_regex-bcb-d-1_37 bcb\libboost_regex-bcb-d-1_37.lib -clean : libboost_regex-bcb-s-1_35_clean libboost_regex-bcb-mt-s-1_35_clean boost_regex-bcb-mt-1_35_clean boost_regex-bcb-1_35_clean libboost_regex-bcb-mt-1_35_clean libboost_regex-bcb-1_35_clean libboost_regex-bcb-sd-1_35_clean libboost_regex-bcb-mt-sd-1_35_clean boost_regex-bcb-mt-d-1_35_clean boost_regex-bcb-d-1_35_clean libboost_regex-bcb-mt-d-1_35_clean libboost_regex-bcb-d-1_35_clean +clean : libboost_regex-bcb-s-1_37_clean libboost_regex-bcb-mt-s-1_37_clean boost_regex-bcb-mt-1_37_clean boost_regex-bcb-1_37_clean libboost_regex-bcb-mt-1_37_clean libboost_regex-bcb-1_37_clean libboost_regex-bcb-sd-1_37_clean libboost_regex-bcb-mt-sd-1_37_clean boost_regex-bcb-mt-d-1_37_clean boost_regex-bcb-d-1_37_clean libboost_regex-bcb-mt-d-1_37_clean libboost_regex-bcb-d-1_37_clean install : all - copy bcb\libboost_regex-bcb-s-1_35.lib $(BCROOT)\lib - copy bcb\libboost_regex-bcb-mt-s-1_35.lib $(BCROOT)\lib - copy bcb\boost_regex-bcb-mt-1_35.lib $(BCROOT)\lib - copy bcb\boost_regex-bcb-mt-1_35.dll $(BCROOT)\bin - copy bcb\boost_regex-bcb-mt-1_35.tds $(BCROOT)\bin - copy bcb\boost_regex-bcb-1_35.lib $(BCROOT)\lib - copy bcb\boost_regex-bcb-1_35.dll $(BCROOT)\bin - copy bcb\boost_regex-bcb-1_35.tds $(BCROOT)\bin - copy bcb\libboost_regex-bcb-mt-1_35.lib $(BCROOT)\lib - copy bcb\libboost_regex-bcb-1_35.lib $(BCROOT)\lib - copy bcb\libboost_regex-bcb-sd-1_35.lib $(BCROOT)\lib - copy bcb\libboost_regex-bcb-mt-sd-1_35.lib $(BCROOT)\lib - copy bcb\boost_regex-bcb-mt-d-1_35.lib $(BCROOT)\lib - copy bcb\boost_regex-bcb-mt-d-1_35.dll $(BCROOT)\bin - copy bcb\boost_regex-bcb-mt-d-1_35.tds $(BCROOT)\bin - copy bcb\boost_regex-bcb-d-1_35.lib $(BCROOT)\lib - copy bcb\boost_regex-bcb-d-1_35.dll $(BCROOT)\bin - copy bcb\boost_regex-bcb-d-1_35.tds $(BCROOT)\bin - copy bcb\libboost_regex-bcb-mt-d-1_35.lib $(BCROOT)\lib - copy bcb\libboost_regex-bcb-d-1_35.lib $(BCROOT)\lib + copy bcb\libboost_regex-bcb-s-1_37.lib $(BCROOT)\lib + copy bcb\libboost_regex-bcb-mt-s-1_37.lib $(BCROOT)\lib + copy bcb\boost_regex-bcb-mt-1_37.lib $(BCROOT)\lib + copy bcb\boost_regex-bcb-mt-1_37.dll $(BCROOT)\bin + copy bcb\boost_regex-bcb-mt-1_37.tds $(BCROOT)\bin + copy bcb\boost_regex-bcb-1_37.lib $(BCROOT)\lib + copy bcb\boost_regex-bcb-1_37.dll $(BCROOT)\bin + copy bcb\boost_regex-bcb-1_37.tds $(BCROOT)\bin + copy bcb\libboost_regex-bcb-mt-1_37.lib $(BCROOT)\lib + copy bcb\libboost_regex-bcb-1_37.lib $(BCROOT)\lib + copy bcb\libboost_regex-bcb-sd-1_37.lib $(BCROOT)\lib + copy bcb\libboost_regex-bcb-mt-sd-1_37.lib $(BCROOT)\lib + copy bcb\boost_regex-bcb-mt-d-1_37.lib $(BCROOT)\lib + copy bcb\boost_regex-bcb-mt-d-1_37.dll $(BCROOT)\bin + copy bcb\boost_regex-bcb-mt-d-1_37.tds $(BCROOT)\bin + copy bcb\boost_regex-bcb-d-1_37.lib $(BCROOT)\lib + copy bcb\boost_regex-bcb-d-1_37.dll $(BCROOT)\bin + copy bcb\boost_regex-bcb-d-1_37.tds $(BCROOT)\bin + copy bcb\libboost_regex-bcb-mt-d-1_37.lib $(BCROOT)\lib + copy bcb\libboost_regex-bcb-d-1_37.lib $(BCROOT)\lib bcb : -@mkdir bcb @@ -73,1265 +73,1266 @@ bcb : ######################################################## # -# section for libboost_regex-bcb-s-1_35.lib +# section for libboost_regex-bcb-s-1_37.lib # ######################################################## -bcb\libboost_regex-bcb-s-1_35\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_37\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_35\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_37\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\libboost_regex-bcb-s-1_35\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_37\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_35\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_37\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\libboost_regex-bcb-s-1_35\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_37\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_35\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_37\cregex.obj ../src/cregex.cpp | -bcb\libboost_regex-bcb-s-1_35\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_37\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_35\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_37\fileiter.obj ../src/fileiter.cpp | -bcb\libboost_regex-bcb-s-1_35\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_37\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_35\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_37\icu.obj ../src/icu.cpp | -bcb\libboost_regex-bcb-s-1_35\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_37\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_35\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_37\instances.obj ../src/instances.cpp | -bcb\libboost_regex-bcb-s-1_35\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_37\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_35\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_37\posix_api.obj ../src/posix_api.cpp | -bcb\libboost_regex-bcb-s-1_35\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_37\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_35\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_37\regex.obj ../src/regex.cpp | -bcb\libboost_regex-bcb-s-1_35\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_37\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_35\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_37\regex_debug.obj ../src/regex_debug.cpp | -bcb\libboost_regex-bcb-s-1_35\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_37\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_35\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_37\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\libboost_regex-bcb-s-1_35\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_37\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_35\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_37\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\libboost_regex-bcb-s-1_35\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_37\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_35\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_37\static_mutex.obj ../src/static_mutex.cpp | -bcb\libboost_regex-bcb-s-1_35\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_37\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_35\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_37\usinstances.obj ../src/usinstances.cpp | -bcb\libboost_regex-bcb-s-1_35\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_37\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_35\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_37\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\libboost_regex-bcb-s-1_35\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_37\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_35\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_37\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\libboost_regex-bcb-s-1_35\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_37\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_35\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_37\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\libboost_regex-bcb-s-1_35\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_37\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_35\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_37\winstances.obj ../src/winstances.cpp | -bcb\libboost_regex-bcb-s-1_35 : - -@mkdir bcb\libboost_regex-bcb-s-1_35 +bcb\libboost_regex-bcb-s-1_37 : + -@mkdir bcb\libboost_regex-bcb-s-1_37 -libboost_regex-bcb-s-1_35_clean : - del bcb\libboost_regex-bcb-s-1_35\*.obj - del bcb\libboost_regex-bcb-s-1_35\*.il? - del bcb\libboost_regex-bcb-s-1_35\*.csm - del bcb\libboost_regex-bcb-s-1_35\*.tds +libboost_regex-bcb-s-1_37_clean : + del bcb\libboost_regex-bcb-s-1_37\*.obj + del bcb\libboost_regex-bcb-s-1_37\*.il? + del bcb\libboost_regex-bcb-s-1_37\*.csm + del bcb\libboost_regex-bcb-s-1_37\*.tds -bcb\libboost_regex-bcb-s-1_35.lib : bcb\libboost_regex-bcb-s-1_35\c_regex_traits.obj bcb\libboost_regex-bcb-s-1_35\cpp_regex_traits.obj bcb\libboost_regex-bcb-s-1_35\cregex.obj bcb\libboost_regex-bcb-s-1_35\fileiter.obj bcb\libboost_regex-bcb-s-1_35\icu.obj bcb\libboost_regex-bcb-s-1_35\instances.obj bcb\libboost_regex-bcb-s-1_35\posix_api.obj bcb\libboost_regex-bcb-s-1_35\regex.obj bcb\libboost_regex-bcb-s-1_35\regex_debug.obj bcb\libboost_regex-bcb-s-1_35\regex_raw_buffer.obj bcb\libboost_regex-bcb-s-1_35\regex_traits_defaults.obj bcb\libboost_regex-bcb-s-1_35\static_mutex.obj bcb\libboost_regex-bcb-s-1_35\usinstances.obj bcb\libboost_regex-bcb-s-1_35\w32_regex_traits.obj bcb\libboost_regex-bcb-s-1_35\wc_regex_traits.obj bcb\libboost_regex-bcb-s-1_35\wide_posix_api.obj bcb\libboost_regex-bcb-s-1_35\winstances.obj - if exist bcb\libboost_regex-bcb-s-1_35.lib del bcb\libboost_regex-bcb-s-1_35.lib +bcb\libboost_regex-bcb-s-1_37.lib : bcb\libboost_regex-bcb-s-1_37\c_regex_traits.obj bcb\libboost_regex-bcb-s-1_37\cpp_regex_traits.obj bcb\libboost_regex-bcb-s-1_37\cregex.obj bcb\libboost_regex-bcb-s-1_37\fileiter.obj bcb\libboost_regex-bcb-s-1_37\icu.obj bcb\libboost_regex-bcb-s-1_37\instances.obj bcb\libboost_regex-bcb-s-1_37\posix_api.obj bcb\libboost_regex-bcb-s-1_37\regex.obj bcb\libboost_regex-bcb-s-1_37\regex_debug.obj bcb\libboost_regex-bcb-s-1_37\regex_raw_buffer.obj bcb\libboost_regex-bcb-s-1_37\regex_traits_defaults.obj bcb\libboost_regex-bcb-s-1_37\static_mutex.obj bcb\libboost_regex-bcb-s-1_37\usinstances.obj bcb\libboost_regex-bcb-s-1_37\w32_regex_traits.obj bcb\libboost_regex-bcb-s-1_37\wc_regex_traits.obj bcb\libboost_regex-bcb-s-1_37\wide_posix_api.obj bcb\libboost_regex-bcb-s-1_37\winstances.obj + if exist bcb\libboost_regex-bcb-s-1_37.lib del bcb\libboost_regex-bcb-s-1_37.lib tlib @&&| -/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-s-1_35.lib" +"bcb\libboost_regex-bcb-s-1_35\c_regex_traits.obj" +"bcb\libboost_regex-bcb-s-1_35\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-s-1_35\cregex.obj" +"bcb\libboost_regex-bcb-s-1_35\fileiter.obj" +"bcb\libboost_regex-bcb-s-1_35\icu.obj" +"bcb\libboost_regex-bcb-s-1_35\instances.obj" +"bcb\libboost_regex-bcb-s-1_35\posix_api.obj" +"bcb\libboost_regex-bcb-s-1_35\regex.obj" +"bcb\libboost_regex-bcb-s-1_35\regex_debug.obj" +"bcb\libboost_regex-bcb-s-1_35\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-s-1_35\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-s-1_35\static_mutex.obj" +"bcb\libboost_regex-bcb-s-1_35\usinstances.obj" +"bcb\libboost_regex-bcb-s-1_35\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-s-1_35\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-s-1_35\wide_posix_api.obj" +"bcb\libboost_regex-bcb-s-1_35\winstances.obj" +/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-s-1_37.lib" +"bcb\libboost_regex-bcb-s-1_37\c_regex_traits.obj" +"bcb\libboost_regex-bcb-s-1_37\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-s-1_37\cregex.obj" +"bcb\libboost_regex-bcb-s-1_37\fileiter.obj" +"bcb\libboost_regex-bcb-s-1_37\icu.obj" +"bcb\libboost_regex-bcb-s-1_37\instances.obj" +"bcb\libboost_regex-bcb-s-1_37\posix_api.obj" +"bcb\libboost_regex-bcb-s-1_37\regex.obj" +"bcb\libboost_regex-bcb-s-1_37\regex_debug.obj" +"bcb\libboost_regex-bcb-s-1_37\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-s-1_37\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-s-1_37\static_mutex.obj" +"bcb\libboost_regex-bcb-s-1_37\usinstances.obj" +"bcb\libboost_regex-bcb-s-1_37\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-s-1_37\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-s-1_37\wide_posix_api.obj" +"bcb\libboost_regex-bcb-s-1_37\winstances.obj" | ######################################################## # -# section for libboost_regex-bcb-mt-s-1_35.lib +# section for libboost_regex-bcb-mt-s-1_37.lib # ######################################################## -bcb\libboost_regex-bcb-mt-s-1_35\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_37\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_35\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_37\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-s-1_35\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_37\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_35\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_37\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-s-1_35\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_37\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_35\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_37\cregex.obj ../src/cregex.cpp | -bcb\libboost_regex-bcb-mt-s-1_35\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_37\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_35\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_37\fileiter.obj ../src/fileiter.cpp | -bcb\libboost_regex-bcb-mt-s-1_35\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_37\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_35\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_37\icu.obj ../src/icu.cpp | -bcb\libboost_regex-bcb-mt-s-1_35\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_37\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_35\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_37\instances.obj ../src/instances.cpp | -bcb\libboost_regex-bcb-mt-s-1_35\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_37\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_35\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_37\posix_api.obj ../src/posix_api.cpp | -bcb\libboost_regex-bcb-mt-s-1_35\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_37\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_35\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_37\regex.obj ../src/regex.cpp | -bcb\libboost_regex-bcb-mt-s-1_35\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_37\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_35\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_37\regex_debug.obj ../src/regex_debug.cpp | -bcb\libboost_regex-bcb-mt-s-1_35\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_37\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_35\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_37\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\libboost_regex-bcb-mt-s-1_35\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_37\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_35\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_37\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\libboost_regex-bcb-mt-s-1_35\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_37\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_35\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_37\static_mutex.obj ../src/static_mutex.cpp | -bcb\libboost_regex-bcb-mt-s-1_35\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_37\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_35\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_37\usinstances.obj ../src/usinstances.cpp | -bcb\libboost_regex-bcb-mt-s-1_35\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_37\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_35\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_37\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-s-1_35\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_37\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_35\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_37\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-s-1_35\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_37\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_35\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_37\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\libboost_regex-bcb-mt-s-1_35\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_37\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_35\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_37\winstances.obj ../src/winstances.cpp | -bcb\libboost_regex-bcb-mt-s-1_35 : - -@mkdir bcb\libboost_regex-bcb-mt-s-1_35 +bcb\libboost_regex-bcb-mt-s-1_37 : + -@mkdir bcb\libboost_regex-bcb-mt-s-1_37 -libboost_regex-bcb-mt-s-1_35_clean : - del bcb\libboost_regex-bcb-mt-s-1_35\*.obj - del bcb\libboost_regex-bcb-mt-s-1_35\*.il? - del bcb\libboost_regex-bcb-mt-s-1_35\*.csm - del bcb\libboost_regex-bcb-mt-s-1_35\*.tds +libboost_regex-bcb-mt-s-1_37_clean : + del bcb\libboost_regex-bcb-mt-s-1_37\*.obj + del bcb\libboost_regex-bcb-mt-s-1_37\*.il? + del bcb\libboost_regex-bcb-mt-s-1_37\*.csm + del bcb\libboost_regex-bcb-mt-s-1_37\*.tds -bcb\libboost_regex-bcb-mt-s-1_35.lib : bcb\libboost_regex-bcb-mt-s-1_35\c_regex_traits.obj bcb\libboost_regex-bcb-mt-s-1_35\cpp_regex_traits.obj bcb\libboost_regex-bcb-mt-s-1_35\cregex.obj bcb\libboost_regex-bcb-mt-s-1_35\fileiter.obj bcb\libboost_regex-bcb-mt-s-1_35\icu.obj bcb\libboost_regex-bcb-mt-s-1_35\instances.obj bcb\libboost_regex-bcb-mt-s-1_35\posix_api.obj bcb\libboost_regex-bcb-mt-s-1_35\regex.obj bcb\libboost_regex-bcb-mt-s-1_35\regex_debug.obj bcb\libboost_regex-bcb-mt-s-1_35\regex_raw_buffer.obj bcb\libboost_regex-bcb-mt-s-1_35\regex_traits_defaults.obj bcb\libboost_regex-bcb-mt-s-1_35\static_mutex.obj bcb\libboost_regex-bcb-mt-s-1_35\usinstances.obj bcb\libboost_regex-bcb-mt-s-1_35\w32_regex_traits.obj bcb\libboost_regex-bcb-mt-s-1_35\wc_regex_traits.obj bcb\libboost_regex-bcb-mt-s-1_35\wide_posix_api.obj bcb\libboost_regex-bcb-mt-s-1_35\winstances.obj - if exist bcb\libboost_regex-bcb-mt-s-1_35.lib del bcb\libboost_regex-bcb-mt-s-1_35.lib +bcb\libboost_regex-bcb-mt-s-1_37.lib : bcb\libboost_regex-bcb-mt-s-1_37\c_regex_traits.obj bcb\libboost_regex-bcb-mt-s-1_37\cpp_regex_traits.obj bcb\libboost_regex-bcb-mt-s-1_37\cregex.obj bcb\libboost_regex-bcb-mt-s-1_37\fileiter.obj bcb\libboost_regex-bcb-mt-s-1_37\icu.obj bcb\libboost_regex-bcb-mt-s-1_37\instances.obj bcb\libboost_regex-bcb-mt-s-1_37\posix_api.obj bcb\libboost_regex-bcb-mt-s-1_37\regex.obj bcb\libboost_regex-bcb-mt-s-1_37\regex_debug.obj bcb\libboost_regex-bcb-mt-s-1_37\regex_raw_buffer.obj bcb\libboost_regex-bcb-mt-s-1_37\regex_traits_defaults.obj bcb\libboost_regex-bcb-mt-s-1_37\static_mutex.obj bcb\libboost_regex-bcb-mt-s-1_37\usinstances.obj bcb\libboost_regex-bcb-mt-s-1_37\w32_regex_traits.obj bcb\libboost_regex-bcb-mt-s-1_37\wc_regex_traits.obj bcb\libboost_regex-bcb-mt-s-1_37\wide_posix_api.obj bcb\libboost_regex-bcb-mt-s-1_37\winstances.obj + if exist bcb\libboost_regex-bcb-mt-s-1_37.lib del bcb\libboost_regex-bcb-mt-s-1_37.lib tlib @&&| -/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-mt-s-1_35.lib" +"bcb\libboost_regex-bcb-mt-s-1_35\c_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-s-1_35\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-s-1_35\cregex.obj" +"bcb\libboost_regex-bcb-mt-s-1_35\fileiter.obj" +"bcb\libboost_regex-bcb-mt-s-1_35\icu.obj" +"bcb\libboost_regex-bcb-mt-s-1_35\instances.obj" +"bcb\libboost_regex-bcb-mt-s-1_35\posix_api.obj" +"bcb\libboost_regex-bcb-mt-s-1_35\regex.obj" +"bcb\libboost_regex-bcb-mt-s-1_35\regex_debug.obj" +"bcb\libboost_regex-bcb-mt-s-1_35\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-mt-s-1_35\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-mt-s-1_35\static_mutex.obj" +"bcb\libboost_regex-bcb-mt-s-1_35\usinstances.obj" +"bcb\libboost_regex-bcb-mt-s-1_35\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-s-1_35\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-s-1_35\wide_posix_api.obj" +"bcb\libboost_regex-bcb-mt-s-1_35\winstances.obj" +/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-mt-s-1_37.lib" +"bcb\libboost_regex-bcb-mt-s-1_37\c_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-s-1_37\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-s-1_37\cregex.obj" +"bcb\libboost_regex-bcb-mt-s-1_37\fileiter.obj" +"bcb\libboost_regex-bcb-mt-s-1_37\icu.obj" +"bcb\libboost_regex-bcb-mt-s-1_37\instances.obj" +"bcb\libboost_regex-bcb-mt-s-1_37\posix_api.obj" +"bcb\libboost_regex-bcb-mt-s-1_37\regex.obj" +"bcb\libboost_regex-bcb-mt-s-1_37\regex_debug.obj" +"bcb\libboost_regex-bcb-mt-s-1_37\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-mt-s-1_37\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-mt-s-1_37\static_mutex.obj" +"bcb\libboost_regex-bcb-mt-s-1_37\usinstances.obj" +"bcb\libboost_regex-bcb-mt-s-1_37\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-s-1_37\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-s-1_37\wide_posix_api.obj" +"bcb\libboost_regex-bcb-mt-s-1_37\winstances.obj" | ######################################################## # -# section for boost_regex-bcb-mt-1_35.lib +# section for boost_regex-bcb-mt-1_37.lib # ######################################################## -bcb\boost_regex-bcb-mt-1_35\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_37\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_35\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_37\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\boost_regex-bcb-mt-1_35\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_37\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_35\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_37\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\boost_regex-bcb-mt-1_35\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_37\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_35\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_37\cregex.obj ../src/cregex.cpp | -bcb\boost_regex-bcb-mt-1_35\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_37\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_35\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_37\fileiter.obj ../src/fileiter.cpp | -bcb\boost_regex-bcb-mt-1_35\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_37\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_35\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_37\icu.obj ../src/icu.cpp | -bcb\boost_regex-bcb-mt-1_35\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_37\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_35\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_37\instances.obj ../src/instances.cpp | -bcb\boost_regex-bcb-mt-1_35\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_37\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_35\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_37\posix_api.obj ../src/posix_api.cpp | -bcb\boost_regex-bcb-mt-1_35\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_37\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_35\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_37\regex.obj ../src/regex.cpp | -bcb\boost_regex-bcb-mt-1_35\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_37\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_35\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_37\regex_debug.obj ../src/regex_debug.cpp | -bcb\boost_regex-bcb-mt-1_35\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_37\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_35\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_37\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\boost_regex-bcb-mt-1_35\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_37\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_35\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_37\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\boost_regex-bcb-mt-1_35\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_37\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_35\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_37\static_mutex.obj ../src/static_mutex.cpp | -bcb\boost_regex-bcb-mt-1_35\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_37\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_35\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_37\usinstances.obj ../src/usinstances.cpp | -bcb\boost_regex-bcb-mt-1_35\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_37\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_35\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_37\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\boost_regex-bcb-mt-1_35\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_37\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_35\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_37\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\boost_regex-bcb-mt-1_35\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_37\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_35\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_37\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\boost_regex-bcb-mt-1_35\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_37\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_35\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_37\winstances.obj ../src/winstances.cpp | -bcb\boost_regex-bcb-mt-1_35 : - -@mkdir bcb\boost_regex-bcb-mt-1_35 +bcb\boost_regex-bcb-mt-1_37 : + -@mkdir bcb\boost_regex-bcb-mt-1_37 -boost_regex-bcb-mt-1_35_clean : - del bcb\boost_regex-bcb-mt-1_35\*.obj - del bcb\boost_regex-bcb-mt-1_35\*.il? - del bcb\boost_regex-bcb-mt-1_35\*.csm - del bcb\boost_regex-bcb-mt-1_35\*.tds +boost_regex-bcb-mt-1_37_clean : + del bcb\boost_regex-bcb-mt-1_37\*.obj + del bcb\boost_regex-bcb-mt-1_37\*.il? + del bcb\boost_regex-bcb-mt-1_37\*.csm + del bcb\boost_regex-bcb-mt-1_37\*.tds del bcb\*.tds -bcb\boost_regex-bcb-mt-1_35.lib : bcb\boost_regex-bcb-mt-1_35\c_regex_traits.obj bcb\boost_regex-bcb-mt-1_35\cpp_regex_traits.obj bcb\boost_regex-bcb-mt-1_35\cregex.obj bcb\boost_regex-bcb-mt-1_35\fileiter.obj bcb\boost_regex-bcb-mt-1_35\icu.obj bcb\boost_regex-bcb-mt-1_35\instances.obj bcb\boost_regex-bcb-mt-1_35\posix_api.obj bcb\boost_regex-bcb-mt-1_35\regex.obj bcb\boost_regex-bcb-mt-1_35\regex_debug.obj bcb\boost_regex-bcb-mt-1_35\regex_raw_buffer.obj bcb\boost_regex-bcb-mt-1_35\regex_traits_defaults.obj bcb\boost_regex-bcb-mt-1_35\static_mutex.obj bcb\boost_regex-bcb-mt-1_35\usinstances.obj bcb\boost_regex-bcb-mt-1_35\w32_regex_traits.obj bcb\boost_regex-bcb-mt-1_35\wc_regex_traits.obj bcb\boost_regex-bcb-mt-1_35\wide_posix_api.obj bcb\boost_regex-bcb-mt-1_35\winstances.obj +bcb\boost_regex-bcb-mt-1_37.lib : bcb\boost_regex-bcb-mt-1_37\c_regex_traits.obj bcb\boost_regex-bcb-mt-1_37\cpp_regex_traits.obj bcb\boost_regex-bcb-mt-1_37\cregex.obj bcb\boost_regex-bcb-mt-1_37\fileiter.obj bcb\boost_regex-bcb-mt-1_37\icu.obj bcb\boost_regex-bcb-mt-1_37\instances.obj bcb\boost_regex-bcb-mt-1_37\posix_api.obj bcb\boost_regex-bcb-mt-1_37\regex.obj bcb\boost_regex-bcb-mt-1_37\regex_debug.obj bcb\boost_regex-bcb-mt-1_37\regex_raw_buffer.obj bcb\boost_regex-bcb-mt-1_37\regex_traits_defaults.obj bcb\boost_regex-bcb-mt-1_37\static_mutex.obj bcb\boost_regex-bcb-mt-1_37\usinstances.obj bcb\boost_regex-bcb-mt-1_37\w32_regex_traits.obj bcb\boost_regex-bcb-mt-1_37\wc_regex_traits.obj bcb\boost_regex-bcb-mt-1_37\wide_posix_api.obj bcb\boost_regex-bcb-mt-1_37\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_35.dll $(XLFLAGS) bcb\boost_regex-bcb-mt-1_35\c_regex_traits.obj bcb\boost_regex-bcb-mt-1_35\cpp_regex_traits.obj bcb\boost_regex-bcb-mt-1_35\cregex.obj bcb\boost_regex-bcb-mt-1_35\fileiter.obj bcb\boost_regex-bcb-mt-1_35\icu.obj bcb\boost_regex-bcb-mt-1_35\instances.obj bcb\boost_regex-bcb-mt-1_35\posix_api.obj bcb\boost_regex-bcb-mt-1_35\regex.obj bcb\boost_regex-bcb-mt-1_35\regex_debug.obj bcb\boost_regex-bcb-mt-1_35\regex_raw_buffer.obj bcb\boost_regex-bcb-mt-1_35\regex_traits_defaults.obj bcb\boost_regex-bcb-mt-1_35\static_mutex.obj bcb\boost_regex-bcb-mt-1_35\usinstances.obj bcb\boost_regex-bcb-mt-1_35\w32_regex_traits.obj bcb\boost_regex-bcb-mt-1_35\wc_regex_traits.obj bcb\boost_regex-bcb-mt-1_35\wide_posix_api.obj bcb\boost_regex-bcb-mt-1_35\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_37.dll $(XLFLAGS) bcb\boost_regex-bcb-mt-1_37\c_regex_traits.obj bcb\boost_regex-bcb-mt-1_37\cpp_regex_traits.obj bcb\boost_regex-bcb-mt-1_37\cregex.obj bcb\boost_regex-bcb-mt-1_37\fileiter.obj bcb\boost_regex-bcb-mt-1_37\icu.obj bcb\boost_regex-bcb-mt-1_37\instances.obj bcb\boost_regex-bcb-mt-1_37\posix_api.obj bcb\boost_regex-bcb-mt-1_37\regex.obj bcb\boost_regex-bcb-mt-1_37\regex_debug.obj bcb\boost_regex-bcb-mt-1_37\regex_raw_buffer.obj bcb\boost_regex-bcb-mt-1_37\regex_traits_defaults.obj bcb\boost_regex-bcb-mt-1_37\static_mutex.obj bcb\boost_regex-bcb-mt-1_37\usinstances.obj bcb\boost_regex-bcb-mt-1_37\w32_regex_traits.obj bcb\boost_regex-bcb-mt-1_37\wc_regex_traits.obj bcb\boost_regex-bcb-mt-1_37\wide_posix_api.obj bcb\boost_regex-bcb-mt-1_37\winstances.obj $(LIBS) | - implib -w bcb\boost_regex-bcb-mt-1_35.lib bcb\boost_regex-bcb-mt-1_35.dll + implib -w bcb\boost_regex-bcb-mt-1_37.lib bcb\boost_regex-bcb-mt-1_37.dll ######################################################## # -# section for boost_regex-bcb-1_35.lib +# section for boost_regex-bcb-1_37.lib # ######################################################## -bcb\boost_regex-bcb-1_35\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_37\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_35\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_37\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\boost_regex-bcb-1_35\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_37\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_35\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_37\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\boost_regex-bcb-1_35\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_37\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_35\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_37\cregex.obj ../src/cregex.cpp | -bcb\boost_regex-bcb-1_35\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_37\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_35\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_37\fileiter.obj ../src/fileiter.cpp | -bcb\boost_regex-bcb-1_35\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_37\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_35\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_37\icu.obj ../src/icu.cpp | -bcb\boost_regex-bcb-1_35\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_37\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_35\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_37\instances.obj ../src/instances.cpp | -bcb\boost_regex-bcb-1_35\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_37\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_35\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_37\posix_api.obj ../src/posix_api.cpp | -bcb\boost_regex-bcb-1_35\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_37\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_35\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_37\regex.obj ../src/regex.cpp | -bcb\boost_regex-bcb-1_35\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_37\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_35\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_37\regex_debug.obj ../src/regex_debug.cpp | -bcb\boost_regex-bcb-1_35\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_37\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_35\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_37\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\boost_regex-bcb-1_35\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_37\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_35\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_37\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\boost_regex-bcb-1_35\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_37\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_35\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_37\static_mutex.obj ../src/static_mutex.cpp | -bcb\boost_regex-bcb-1_35\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_37\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_35\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_37\usinstances.obj ../src/usinstances.cpp | -bcb\boost_regex-bcb-1_35\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_37\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_35\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_37\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\boost_regex-bcb-1_35\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_37\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_35\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_37\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\boost_regex-bcb-1_35\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_37\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_35\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_37\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\boost_regex-bcb-1_35\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_37\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_35\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_37\winstances.obj ../src/winstances.cpp | -bcb\boost_regex-bcb-1_35 : - -@mkdir bcb\boost_regex-bcb-1_35 +bcb\boost_regex-bcb-1_37 : + -@mkdir bcb\boost_regex-bcb-1_37 -boost_regex-bcb-1_35_clean : - del bcb\boost_regex-bcb-1_35\*.obj - del bcb\boost_regex-bcb-1_35\*.il? - del bcb\boost_regex-bcb-1_35\*.csm - del bcb\boost_regex-bcb-1_35\*.tds +boost_regex-bcb-1_37_clean : + del bcb\boost_regex-bcb-1_37\*.obj + del bcb\boost_regex-bcb-1_37\*.il? + del bcb\boost_regex-bcb-1_37\*.csm + del bcb\boost_regex-bcb-1_37\*.tds del bcb\*.tds -bcb\boost_regex-bcb-1_35.lib : bcb\boost_regex-bcb-1_35\c_regex_traits.obj bcb\boost_regex-bcb-1_35\cpp_regex_traits.obj bcb\boost_regex-bcb-1_35\cregex.obj bcb\boost_regex-bcb-1_35\fileiter.obj bcb\boost_regex-bcb-1_35\icu.obj bcb\boost_regex-bcb-1_35\instances.obj bcb\boost_regex-bcb-1_35\posix_api.obj bcb\boost_regex-bcb-1_35\regex.obj bcb\boost_regex-bcb-1_35\regex_debug.obj bcb\boost_regex-bcb-1_35\regex_raw_buffer.obj bcb\boost_regex-bcb-1_35\regex_traits_defaults.obj bcb\boost_regex-bcb-1_35\static_mutex.obj bcb\boost_regex-bcb-1_35\usinstances.obj bcb\boost_regex-bcb-1_35\w32_regex_traits.obj bcb\boost_regex-bcb-1_35\wc_regex_traits.obj bcb\boost_regex-bcb-1_35\wide_posix_api.obj bcb\boost_regex-bcb-1_35\winstances.obj +bcb\boost_regex-bcb-1_37.lib : bcb\boost_regex-bcb-1_37\c_regex_traits.obj bcb\boost_regex-bcb-1_37\cpp_regex_traits.obj bcb\boost_regex-bcb-1_37\cregex.obj bcb\boost_regex-bcb-1_37\fileiter.obj bcb\boost_regex-bcb-1_37\icu.obj bcb\boost_regex-bcb-1_37\instances.obj bcb\boost_regex-bcb-1_37\posix_api.obj bcb\boost_regex-bcb-1_37\regex.obj bcb\boost_regex-bcb-1_37\regex_debug.obj bcb\boost_regex-bcb-1_37\regex_raw_buffer.obj bcb\boost_regex-bcb-1_37\regex_traits_defaults.obj bcb\boost_regex-bcb-1_37\static_mutex.obj bcb\boost_regex-bcb-1_37\usinstances.obj bcb\boost_regex-bcb-1_37\w32_regex_traits.obj bcb\boost_regex-bcb-1_37\wc_regex_traits.obj bcb\boost_regex-bcb-1_37\wide_posix_api.obj bcb\boost_regex-bcb-1_37\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_35.dll $(XLFLAGS) bcb\boost_regex-bcb-1_35\c_regex_traits.obj bcb\boost_regex-bcb-1_35\cpp_regex_traits.obj bcb\boost_regex-bcb-1_35\cregex.obj bcb\boost_regex-bcb-1_35\fileiter.obj bcb\boost_regex-bcb-1_35\icu.obj bcb\boost_regex-bcb-1_35\instances.obj bcb\boost_regex-bcb-1_35\posix_api.obj bcb\boost_regex-bcb-1_35\regex.obj bcb\boost_regex-bcb-1_35\regex_debug.obj bcb\boost_regex-bcb-1_35\regex_raw_buffer.obj bcb\boost_regex-bcb-1_35\regex_traits_defaults.obj bcb\boost_regex-bcb-1_35\static_mutex.obj bcb\boost_regex-bcb-1_35\usinstances.obj bcb\boost_regex-bcb-1_35\w32_regex_traits.obj bcb\boost_regex-bcb-1_35\wc_regex_traits.obj bcb\boost_regex-bcb-1_35\wide_posix_api.obj bcb\boost_regex-bcb-1_35\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_37.dll $(XLFLAGS) bcb\boost_regex-bcb-1_37\c_regex_traits.obj bcb\boost_regex-bcb-1_37\cpp_regex_traits.obj bcb\boost_regex-bcb-1_37\cregex.obj bcb\boost_regex-bcb-1_37\fileiter.obj bcb\boost_regex-bcb-1_37\icu.obj bcb\boost_regex-bcb-1_37\instances.obj bcb\boost_regex-bcb-1_37\posix_api.obj bcb\boost_regex-bcb-1_37\regex.obj bcb\boost_regex-bcb-1_37\regex_debug.obj bcb\boost_regex-bcb-1_37\regex_raw_buffer.obj bcb\boost_regex-bcb-1_37\regex_traits_defaults.obj bcb\boost_regex-bcb-1_37\static_mutex.obj bcb\boost_regex-bcb-1_37\usinstances.obj bcb\boost_regex-bcb-1_37\w32_regex_traits.obj bcb\boost_regex-bcb-1_37\wc_regex_traits.obj bcb\boost_regex-bcb-1_37\wide_posix_api.obj bcb\boost_regex-bcb-1_37\winstances.obj $(LIBS) | - implib -w bcb\boost_regex-bcb-1_35.lib bcb\boost_regex-bcb-1_35.dll + implib -w bcb\boost_regex-bcb-1_37.lib bcb\boost_regex-bcb-1_37.dll ######################################################## # -# section for libboost_regex-bcb-mt-1_35.lib +# section for libboost_regex-bcb-mt-1_37.lib # ######################################################## -bcb\libboost_regex-bcb-mt-1_35\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_37\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_35\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_37\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-1_35\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_37\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_35\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_37\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-1_35\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_37\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_35\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_37\cregex.obj ../src/cregex.cpp | -bcb\libboost_regex-bcb-mt-1_35\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_37\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_35\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_37\fileiter.obj ../src/fileiter.cpp | -bcb\libboost_regex-bcb-mt-1_35\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_37\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_35\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_37\icu.obj ../src/icu.cpp | -bcb\libboost_regex-bcb-mt-1_35\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_37\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_35\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_37\instances.obj ../src/instances.cpp | -bcb\libboost_regex-bcb-mt-1_35\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_37\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_35\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_37\posix_api.obj ../src/posix_api.cpp | -bcb\libboost_regex-bcb-mt-1_35\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_37\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_35\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_37\regex.obj ../src/regex.cpp | -bcb\libboost_regex-bcb-mt-1_35\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_37\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_35\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_37\regex_debug.obj ../src/regex_debug.cpp | -bcb\libboost_regex-bcb-mt-1_35\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_37\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_35\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_37\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\libboost_regex-bcb-mt-1_35\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_37\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_35\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_37\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\libboost_regex-bcb-mt-1_35\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_37\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_35\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_37\static_mutex.obj ../src/static_mutex.cpp | -bcb\libboost_regex-bcb-mt-1_35\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_37\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_35\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_37\usinstances.obj ../src/usinstances.cpp | -bcb\libboost_regex-bcb-mt-1_35\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_37\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_35\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_37\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-1_35\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_37\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_35\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_37\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-1_35\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_37\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_35\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_37\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\libboost_regex-bcb-mt-1_35\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_37\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_35\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_37\winstances.obj ../src/winstances.cpp | -bcb\libboost_regex-bcb-mt-1_35 : - -@mkdir bcb\libboost_regex-bcb-mt-1_35 +bcb\libboost_regex-bcb-mt-1_37 : + -@mkdir bcb\libboost_regex-bcb-mt-1_37 -libboost_regex-bcb-mt-1_35_clean : - del bcb\libboost_regex-bcb-mt-1_35\*.obj - del bcb\libboost_regex-bcb-mt-1_35\*.il? - del bcb\libboost_regex-bcb-mt-1_35\*.csm - del bcb\libboost_regex-bcb-mt-1_35\*.tds +libboost_regex-bcb-mt-1_37_clean : + del bcb\libboost_regex-bcb-mt-1_37\*.obj + del bcb\libboost_regex-bcb-mt-1_37\*.il? + del bcb\libboost_regex-bcb-mt-1_37\*.csm + del bcb\libboost_regex-bcb-mt-1_37\*.tds -bcb\libboost_regex-bcb-mt-1_35.lib : bcb\libboost_regex-bcb-mt-1_35\c_regex_traits.obj bcb\libboost_regex-bcb-mt-1_35\cpp_regex_traits.obj bcb\libboost_regex-bcb-mt-1_35\cregex.obj bcb\libboost_regex-bcb-mt-1_35\fileiter.obj bcb\libboost_regex-bcb-mt-1_35\icu.obj bcb\libboost_regex-bcb-mt-1_35\instances.obj bcb\libboost_regex-bcb-mt-1_35\posix_api.obj bcb\libboost_regex-bcb-mt-1_35\regex.obj bcb\libboost_regex-bcb-mt-1_35\regex_debug.obj bcb\libboost_regex-bcb-mt-1_35\regex_raw_buffer.obj bcb\libboost_regex-bcb-mt-1_35\regex_traits_defaults.obj bcb\libboost_regex-bcb-mt-1_35\static_mutex.obj bcb\libboost_regex-bcb-mt-1_35\usinstances.obj bcb\libboost_regex-bcb-mt-1_35\w32_regex_traits.obj bcb\libboost_regex-bcb-mt-1_35\wc_regex_traits.obj bcb\libboost_regex-bcb-mt-1_35\wide_posix_api.obj bcb\libboost_regex-bcb-mt-1_35\winstances.obj - if exist bcb\libboost_regex-bcb-mt-1_35.lib del bcb\libboost_regex-bcb-mt-1_35.lib +bcb\libboost_regex-bcb-mt-1_37.lib : bcb\libboost_regex-bcb-mt-1_37\c_regex_traits.obj bcb\libboost_regex-bcb-mt-1_37\cpp_regex_traits.obj bcb\libboost_regex-bcb-mt-1_37\cregex.obj bcb\libboost_regex-bcb-mt-1_37\fileiter.obj bcb\libboost_regex-bcb-mt-1_37\icu.obj bcb\libboost_regex-bcb-mt-1_37\instances.obj bcb\libboost_regex-bcb-mt-1_37\posix_api.obj bcb\libboost_regex-bcb-mt-1_37\regex.obj bcb\libboost_regex-bcb-mt-1_37\regex_debug.obj bcb\libboost_regex-bcb-mt-1_37\regex_raw_buffer.obj bcb\libboost_regex-bcb-mt-1_37\regex_traits_defaults.obj bcb\libboost_regex-bcb-mt-1_37\static_mutex.obj bcb\libboost_regex-bcb-mt-1_37\usinstances.obj bcb\libboost_regex-bcb-mt-1_37\w32_regex_traits.obj bcb\libboost_regex-bcb-mt-1_37\wc_regex_traits.obj bcb\libboost_regex-bcb-mt-1_37\wide_posix_api.obj bcb\libboost_regex-bcb-mt-1_37\winstances.obj + if exist bcb\libboost_regex-bcb-mt-1_37.lib del bcb\libboost_regex-bcb-mt-1_37.lib tlib @&&| -/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-mt-1_35.lib" +"bcb\libboost_regex-bcb-mt-1_35\c_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-1_35\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-1_35\cregex.obj" +"bcb\libboost_regex-bcb-mt-1_35\fileiter.obj" +"bcb\libboost_regex-bcb-mt-1_35\icu.obj" +"bcb\libboost_regex-bcb-mt-1_35\instances.obj" +"bcb\libboost_regex-bcb-mt-1_35\posix_api.obj" +"bcb\libboost_regex-bcb-mt-1_35\regex.obj" +"bcb\libboost_regex-bcb-mt-1_35\regex_debug.obj" +"bcb\libboost_regex-bcb-mt-1_35\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-mt-1_35\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-mt-1_35\static_mutex.obj" +"bcb\libboost_regex-bcb-mt-1_35\usinstances.obj" +"bcb\libboost_regex-bcb-mt-1_35\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-1_35\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-1_35\wide_posix_api.obj" +"bcb\libboost_regex-bcb-mt-1_35\winstances.obj" +/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-mt-1_37.lib" +"bcb\libboost_regex-bcb-mt-1_37\c_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-1_37\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-1_37\cregex.obj" +"bcb\libboost_regex-bcb-mt-1_37\fileiter.obj" +"bcb\libboost_regex-bcb-mt-1_37\icu.obj" +"bcb\libboost_regex-bcb-mt-1_37\instances.obj" +"bcb\libboost_regex-bcb-mt-1_37\posix_api.obj" +"bcb\libboost_regex-bcb-mt-1_37\regex.obj" +"bcb\libboost_regex-bcb-mt-1_37\regex_debug.obj" +"bcb\libboost_regex-bcb-mt-1_37\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-mt-1_37\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-mt-1_37\static_mutex.obj" +"bcb\libboost_regex-bcb-mt-1_37\usinstances.obj" +"bcb\libboost_regex-bcb-mt-1_37\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-1_37\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-1_37\wide_posix_api.obj" +"bcb\libboost_regex-bcb-mt-1_37\winstances.obj" | ######################################################## # -# section for libboost_regex-bcb-1_35.lib +# section for libboost_regex-bcb-1_37.lib # ######################################################## -bcb\libboost_regex-bcb-1_35\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_37\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_35\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_37\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\libboost_regex-bcb-1_35\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_37\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_35\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_37\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\libboost_regex-bcb-1_35\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_37\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_35\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_37\cregex.obj ../src/cregex.cpp | -bcb\libboost_regex-bcb-1_35\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_37\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_35\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_37\fileiter.obj ../src/fileiter.cpp | -bcb\libboost_regex-bcb-1_35\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_37\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_35\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_37\icu.obj ../src/icu.cpp | -bcb\libboost_regex-bcb-1_35\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_37\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_35\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_37\instances.obj ../src/instances.cpp | -bcb\libboost_regex-bcb-1_35\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_37\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_35\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_37\posix_api.obj ../src/posix_api.cpp | -bcb\libboost_regex-bcb-1_35\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_37\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_35\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_37\regex.obj ../src/regex.cpp | -bcb\libboost_regex-bcb-1_35\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_37\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_35\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_37\regex_debug.obj ../src/regex_debug.cpp | -bcb\libboost_regex-bcb-1_35\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_37\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_35\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_37\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\libboost_regex-bcb-1_35\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_37\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_35\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_37\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\libboost_regex-bcb-1_35\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_37\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_35\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_37\static_mutex.obj ../src/static_mutex.cpp | -bcb\libboost_regex-bcb-1_35\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_37\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_35\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_37\usinstances.obj ../src/usinstances.cpp | -bcb\libboost_regex-bcb-1_35\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_37\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_35\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_37\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\libboost_regex-bcb-1_35\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_37\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_35\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_37\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\libboost_regex-bcb-1_35\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_37\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_35\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_37\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\libboost_regex-bcb-1_35\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_37\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_35\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_37\winstances.obj ../src/winstances.cpp | -bcb\libboost_regex-bcb-1_35 : - -@mkdir bcb\libboost_regex-bcb-1_35 +bcb\libboost_regex-bcb-1_37 : + -@mkdir bcb\libboost_regex-bcb-1_37 -libboost_regex-bcb-1_35_clean : - del bcb\libboost_regex-bcb-1_35\*.obj - del bcb\libboost_regex-bcb-1_35\*.il? - del bcb\libboost_regex-bcb-1_35\*.csm - del bcb\libboost_regex-bcb-1_35\*.tds +libboost_regex-bcb-1_37_clean : + del bcb\libboost_regex-bcb-1_37\*.obj + del bcb\libboost_regex-bcb-1_37\*.il? + del bcb\libboost_regex-bcb-1_37\*.csm + del bcb\libboost_regex-bcb-1_37\*.tds -bcb\libboost_regex-bcb-1_35.lib : bcb\libboost_regex-bcb-1_35\c_regex_traits.obj bcb\libboost_regex-bcb-1_35\cpp_regex_traits.obj bcb\libboost_regex-bcb-1_35\cregex.obj bcb\libboost_regex-bcb-1_35\fileiter.obj bcb\libboost_regex-bcb-1_35\icu.obj bcb\libboost_regex-bcb-1_35\instances.obj bcb\libboost_regex-bcb-1_35\posix_api.obj bcb\libboost_regex-bcb-1_35\regex.obj bcb\libboost_regex-bcb-1_35\regex_debug.obj bcb\libboost_regex-bcb-1_35\regex_raw_buffer.obj bcb\libboost_regex-bcb-1_35\regex_traits_defaults.obj bcb\libboost_regex-bcb-1_35\static_mutex.obj bcb\libboost_regex-bcb-1_35\usinstances.obj bcb\libboost_regex-bcb-1_35\w32_regex_traits.obj bcb\libboost_regex-bcb-1_35\wc_regex_traits.obj bcb\libboost_regex-bcb-1_35\wide_posix_api.obj bcb\libboost_regex-bcb-1_35\winstances.obj - if exist bcb\libboost_regex-bcb-1_35.lib del bcb\libboost_regex-bcb-1_35.lib +bcb\libboost_regex-bcb-1_37.lib : bcb\libboost_regex-bcb-1_37\c_regex_traits.obj bcb\libboost_regex-bcb-1_37\cpp_regex_traits.obj bcb\libboost_regex-bcb-1_37\cregex.obj bcb\libboost_regex-bcb-1_37\fileiter.obj bcb\libboost_regex-bcb-1_37\icu.obj bcb\libboost_regex-bcb-1_37\instances.obj bcb\libboost_regex-bcb-1_37\posix_api.obj bcb\libboost_regex-bcb-1_37\regex.obj bcb\libboost_regex-bcb-1_37\regex_debug.obj bcb\libboost_regex-bcb-1_37\regex_raw_buffer.obj bcb\libboost_regex-bcb-1_37\regex_traits_defaults.obj bcb\libboost_regex-bcb-1_37\static_mutex.obj bcb\libboost_regex-bcb-1_37\usinstances.obj bcb\libboost_regex-bcb-1_37\w32_regex_traits.obj bcb\libboost_regex-bcb-1_37\wc_regex_traits.obj bcb\libboost_regex-bcb-1_37\wide_posix_api.obj bcb\libboost_regex-bcb-1_37\winstances.obj + if exist bcb\libboost_regex-bcb-1_37.lib del bcb\libboost_regex-bcb-1_37.lib tlib @&&| -/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-1_35.lib" +"bcb\libboost_regex-bcb-1_35\c_regex_traits.obj" +"bcb\libboost_regex-bcb-1_35\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-1_35\cregex.obj" +"bcb\libboost_regex-bcb-1_35\fileiter.obj" +"bcb\libboost_regex-bcb-1_35\icu.obj" +"bcb\libboost_regex-bcb-1_35\instances.obj" +"bcb\libboost_regex-bcb-1_35\posix_api.obj" +"bcb\libboost_regex-bcb-1_35\regex.obj" +"bcb\libboost_regex-bcb-1_35\regex_debug.obj" +"bcb\libboost_regex-bcb-1_35\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-1_35\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-1_35\static_mutex.obj" +"bcb\libboost_regex-bcb-1_35\usinstances.obj" +"bcb\libboost_regex-bcb-1_35\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-1_35\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-1_35\wide_posix_api.obj" +"bcb\libboost_regex-bcb-1_35\winstances.obj" +/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-1_37.lib" +"bcb\libboost_regex-bcb-1_37\c_regex_traits.obj" +"bcb\libboost_regex-bcb-1_37\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-1_37\cregex.obj" +"bcb\libboost_regex-bcb-1_37\fileiter.obj" +"bcb\libboost_regex-bcb-1_37\icu.obj" +"bcb\libboost_regex-bcb-1_37\instances.obj" +"bcb\libboost_regex-bcb-1_37\posix_api.obj" +"bcb\libboost_regex-bcb-1_37\regex.obj" +"bcb\libboost_regex-bcb-1_37\regex_debug.obj" +"bcb\libboost_regex-bcb-1_37\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-1_37\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-1_37\static_mutex.obj" +"bcb\libboost_regex-bcb-1_37\usinstances.obj" +"bcb\libboost_regex-bcb-1_37\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-1_37\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-1_37\wide_posix_api.obj" +"bcb\libboost_regex-bcb-1_37\winstances.obj" | ######################################################## # -# section for libboost_regex-bcb-sd-1_35.lib +# section for libboost_regex-bcb-sd-1_37.lib # ######################################################## -bcb\libboost_regex-bcb-sd-1_35\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_37\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_35\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_37\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\libboost_regex-bcb-sd-1_35\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_37\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_35\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_37\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\libboost_regex-bcb-sd-1_35\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_37\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_35\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_37\cregex.obj ../src/cregex.cpp | -bcb\libboost_regex-bcb-sd-1_35\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_37\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_35\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_37\fileiter.obj ../src/fileiter.cpp | -bcb\libboost_regex-bcb-sd-1_35\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_37\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_35\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_37\icu.obj ../src/icu.cpp | -bcb\libboost_regex-bcb-sd-1_35\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_37\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_35\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_37\instances.obj ../src/instances.cpp | -bcb\libboost_regex-bcb-sd-1_35\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_37\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_35\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_37\posix_api.obj ../src/posix_api.cpp | -bcb\libboost_regex-bcb-sd-1_35\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_37\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_35\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_37\regex.obj ../src/regex.cpp | -bcb\libboost_regex-bcb-sd-1_35\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_37\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_35\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_37\regex_debug.obj ../src/regex_debug.cpp | -bcb\libboost_regex-bcb-sd-1_35\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_37\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_35\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_37\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\libboost_regex-bcb-sd-1_35\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_37\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_35\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_37\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\libboost_regex-bcb-sd-1_35\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_37\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_35\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_37\static_mutex.obj ../src/static_mutex.cpp | -bcb\libboost_regex-bcb-sd-1_35\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_37\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_35\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_37\usinstances.obj ../src/usinstances.cpp | -bcb\libboost_regex-bcb-sd-1_35\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_37\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_35\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_37\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\libboost_regex-bcb-sd-1_35\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_37\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_35\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_37\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\libboost_regex-bcb-sd-1_35\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_37\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_35\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_37\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\libboost_regex-bcb-sd-1_35\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_37\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_35\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_37\winstances.obj ../src/winstances.cpp | -bcb\libboost_regex-bcb-sd-1_35 : - -@mkdir bcb\libboost_regex-bcb-sd-1_35 +bcb\libboost_regex-bcb-sd-1_37 : + -@mkdir bcb\libboost_regex-bcb-sd-1_37 -libboost_regex-bcb-sd-1_35_clean : - del bcb\libboost_regex-bcb-sd-1_35\*.obj - del bcb\libboost_regex-bcb-sd-1_35\*.il? - del bcb\libboost_regex-bcb-sd-1_35\*.csm - del bcb\libboost_regex-bcb-sd-1_35\*.tds +libboost_regex-bcb-sd-1_37_clean : + del bcb\libboost_regex-bcb-sd-1_37\*.obj + del bcb\libboost_regex-bcb-sd-1_37\*.il? + del bcb\libboost_regex-bcb-sd-1_37\*.csm + del bcb\libboost_regex-bcb-sd-1_37\*.tds -bcb\libboost_regex-bcb-sd-1_35.lib : bcb\libboost_regex-bcb-sd-1_35\c_regex_traits.obj bcb\libboost_regex-bcb-sd-1_35\cpp_regex_traits.obj bcb\libboost_regex-bcb-sd-1_35\cregex.obj bcb\libboost_regex-bcb-sd-1_35\fileiter.obj bcb\libboost_regex-bcb-sd-1_35\icu.obj bcb\libboost_regex-bcb-sd-1_35\instances.obj bcb\libboost_regex-bcb-sd-1_35\posix_api.obj bcb\libboost_regex-bcb-sd-1_35\regex.obj bcb\libboost_regex-bcb-sd-1_35\regex_debug.obj bcb\libboost_regex-bcb-sd-1_35\regex_raw_buffer.obj bcb\libboost_regex-bcb-sd-1_35\regex_traits_defaults.obj bcb\libboost_regex-bcb-sd-1_35\static_mutex.obj bcb\libboost_regex-bcb-sd-1_35\usinstances.obj bcb\libboost_regex-bcb-sd-1_35\w32_regex_traits.obj bcb\libboost_regex-bcb-sd-1_35\wc_regex_traits.obj bcb\libboost_regex-bcb-sd-1_35\wide_posix_api.obj bcb\libboost_regex-bcb-sd-1_35\winstances.obj - if exist bcb\libboost_regex-bcb-sd-1_35.lib del bcb\libboost_regex-bcb-sd-1_35.lib +bcb\libboost_regex-bcb-sd-1_37.lib : bcb\libboost_regex-bcb-sd-1_37\c_regex_traits.obj bcb\libboost_regex-bcb-sd-1_37\cpp_regex_traits.obj bcb\libboost_regex-bcb-sd-1_37\cregex.obj bcb\libboost_regex-bcb-sd-1_37\fileiter.obj bcb\libboost_regex-bcb-sd-1_37\icu.obj bcb\libboost_regex-bcb-sd-1_37\instances.obj bcb\libboost_regex-bcb-sd-1_37\posix_api.obj bcb\libboost_regex-bcb-sd-1_37\regex.obj bcb\libboost_regex-bcb-sd-1_37\regex_debug.obj bcb\libboost_regex-bcb-sd-1_37\regex_raw_buffer.obj bcb\libboost_regex-bcb-sd-1_37\regex_traits_defaults.obj bcb\libboost_regex-bcb-sd-1_37\static_mutex.obj bcb\libboost_regex-bcb-sd-1_37\usinstances.obj bcb\libboost_regex-bcb-sd-1_37\w32_regex_traits.obj bcb\libboost_regex-bcb-sd-1_37\wc_regex_traits.obj bcb\libboost_regex-bcb-sd-1_37\wide_posix_api.obj bcb\libboost_regex-bcb-sd-1_37\winstances.obj + if exist bcb\libboost_regex-bcb-sd-1_37.lib del bcb\libboost_regex-bcb-sd-1_37.lib tlib @&&| -/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-sd-1_35.lib" +"bcb\libboost_regex-bcb-sd-1_35\c_regex_traits.obj" +"bcb\libboost_regex-bcb-sd-1_35\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-sd-1_35\cregex.obj" +"bcb\libboost_regex-bcb-sd-1_35\fileiter.obj" +"bcb\libboost_regex-bcb-sd-1_35\icu.obj" +"bcb\libboost_regex-bcb-sd-1_35\instances.obj" +"bcb\libboost_regex-bcb-sd-1_35\posix_api.obj" +"bcb\libboost_regex-bcb-sd-1_35\regex.obj" +"bcb\libboost_regex-bcb-sd-1_35\regex_debug.obj" +"bcb\libboost_regex-bcb-sd-1_35\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-sd-1_35\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-sd-1_35\static_mutex.obj" +"bcb\libboost_regex-bcb-sd-1_35\usinstances.obj" +"bcb\libboost_regex-bcb-sd-1_35\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-sd-1_35\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-sd-1_35\wide_posix_api.obj" +"bcb\libboost_regex-bcb-sd-1_35\winstances.obj" +/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-sd-1_37.lib" +"bcb\libboost_regex-bcb-sd-1_37\c_regex_traits.obj" +"bcb\libboost_regex-bcb-sd-1_37\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-sd-1_37\cregex.obj" +"bcb\libboost_regex-bcb-sd-1_37\fileiter.obj" +"bcb\libboost_regex-bcb-sd-1_37\icu.obj" +"bcb\libboost_regex-bcb-sd-1_37\instances.obj" +"bcb\libboost_regex-bcb-sd-1_37\posix_api.obj" +"bcb\libboost_regex-bcb-sd-1_37\regex.obj" +"bcb\libboost_regex-bcb-sd-1_37\regex_debug.obj" +"bcb\libboost_regex-bcb-sd-1_37\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-sd-1_37\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-sd-1_37\static_mutex.obj" +"bcb\libboost_regex-bcb-sd-1_37\usinstances.obj" +"bcb\libboost_regex-bcb-sd-1_37\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-sd-1_37\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-sd-1_37\wide_posix_api.obj" +"bcb\libboost_regex-bcb-sd-1_37\winstances.obj" | ######################################################## # -# section for libboost_regex-bcb-mt-sd-1_35.lib +# section for libboost_regex-bcb-mt-sd-1_37.lib # ######################################################## -bcb\libboost_regex-bcb-mt-sd-1_35\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_37\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_35\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_37\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-sd-1_35\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_37\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_35\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_37\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-sd-1_35\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_37\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_35\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_37\cregex.obj ../src/cregex.cpp | -bcb\libboost_regex-bcb-mt-sd-1_35\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_37\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_35\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_37\fileiter.obj ../src/fileiter.cpp | -bcb\libboost_regex-bcb-mt-sd-1_35\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_37\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_35\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_37\icu.obj ../src/icu.cpp | -bcb\libboost_regex-bcb-mt-sd-1_35\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_37\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_35\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_37\instances.obj ../src/instances.cpp | -bcb\libboost_regex-bcb-mt-sd-1_35\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_37\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_35\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_37\posix_api.obj ../src/posix_api.cpp | -bcb\libboost_regex-bcb-mt-sd-1_35\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_37\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_35\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_37\regex.obj ../src/regex.cpp | -bcb\libboost_regex-bcb-mt-sd-1_35\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_37\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_35\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_37\regex_debug.obj ../src/regex_debug.cpp | -bcb\libboost_regex-bcb-mt-sd-1_35\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_37\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_35\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_37\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\libboost_regex-bcb-mt-sd-1_35\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_37\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_35\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_37\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\libboost_regex-bcb-mt-sd-1_35\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_37\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_35\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_37\static_mutex.obj ../src/static_mutex.cpp | -bcb\libboost_regex-bcb-mt-sd-1_35\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_37\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_35\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_37\usinstances.obj ../src/usinstances.cpp | -bcb\libboost_regex-bcb-mt-sd-1_35\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_37\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_35\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_37\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-sd-1_35\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_37\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_35\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_37\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-sd-1_35\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_37\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_35\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_37\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\libboost_regex-bcb-mt-sd-1_35\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_37\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_35\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_37\winstances.obj ../src/winstances.cpp | -bcb\libboost_regex-bcb-mt-sd-1_35 : - -@mkdir bcb\libboost_regex-bcb-mt-sd-1_35 +bcb\libboost_regex-bcb-mt-sd-1_37 : + -@mkdir bcb\libboost_regex-bcb-mt-sd-1_37 -libboost_regex-bcb-mt-sd-1_35_clean : - del bcb\libboost_regex-bcb-mt-sd-1_35\*.obj - del bcb\libboost_regex-bcb-mt-sd-1_35\*.il? - del bcb\libboost_regex-bcb-mt-sd-1_35\*.csm - del bcb\libboost_regex-bcb-mt-sd-1_35\*.tds +libboost_regex-bcb-mt-sd-1_37_clean : + del bcb\libboost_regex-bcb-mt-sd-1_37\*.obj + del bcb\libboost_regex-bcb-mt-sd-1_37\*.il? + del bcb\libboost_regex-bcb-mt-sd-1_37\*.csm + del bcb\libboost_regex-bcb-mt-sd-1_37\*.tds -bcb\libboost_regex-bcb-mt-sd-1_35.lib : bcb\libboost_regex-bcb-mt-sd-1_35\c_regex_traits.obj bcb\libboost_regex-bcb-mt-sd-1_35\cpp_regex_traits.obj bcb\libboost_regex-bcb-mt-sd-1_35\cregex.obj bcb\libboost_regex-bcb-mt-sd-1_35\fileiter.obj bcb\libboost_regex-bcb-mt-sd-1_35\icu.obj bcb\libboost_regex-bcb-mt-sd-1_35\instances.obj bcb\libboost_regex-bcb-mt-sd-1_35\posix_api.obj bcb\libboost_regex-bcb-mt-sd-1_35\regex.obj bcb\libboost_regex-bcb-mt-sd-1_35\regex_debug.obj bcb\libboost_regex-bcb-mt-sd-1_35\regex_raw_buffer.obj bcb\libboost_regex-bcb-mt-sd-1_35\regex_traits_defaults.obj bcb\libboost_regex-bcb-mt-sd-1_35\static_mutex.obj bcb\libboost_regex-bcb-mt-sd-1_35\usinstances.obj bcb\libboost_regex-bcb-mt-sd-1_35\w32_regex_traits.obj bcb\libboost_regex-bcb-mt-sd-1_35\wc_regex_traits.obj bcb\libboost_regex-bcb-mt-sd-1_35\wide_posix_api.obj bcb\libboost_regex-bcb-mt-sd-1_35\winstances.obj - if exist bcb\libboost_regex-bcb-mt-sd-1_35.lib del bcb\libboost_regex-bcb-mt-sd-1_35.lib +bcb\libboost_regex-bcb-mt-sd-1_37.lib : bcb\libboost_regex-bcb-mt-sd-1_37\c_regex_traits.obj bcb\libboost_regex-bcb-mt-sd-1_37\cpp_regex_traits.obj bcb\libboost_regex-bcb-mt-sd-1_37\cregex.obj bcb\libboost_regex-bcb-mt-sd-1_37\fileiter.obj bcb\libboost_regex-bcb-mt-sd-1_37\icu.obj bcb\libboost_regex-bcb-mt-sd-1_37\instances.obj bcb\libboost_regex-bcb-mt-sd-1_37\posix_api.obj bcb\libboost_regex-bcb-mt-sd-1_37\regex.obj bcb\libboost_regex-bcb-mt-sd-1_37\regex_debug.obj bcb\libboost_regex-bcb-mt-sd-1_37\regex_raw_buffer.obj bcb\libboost_regex-bcb-mt-sd-1_37\regex_traits_defaults.obj bcb\libboost_regex-bcb-mt-sd-1_37\static_mutex.obj bcb\libboost_regex-bcb-mt-sd-1_37\usinstances.obj bcb\libboost_regex-bcb-mt-sd-1_37\w32_regex_traits.obj bcb\libboost_regex-bcb-mt-sd-1_37\wc_regex_traits.obj bcb\libboost_regex-bcb-mt-sd-1_37\wide_posix_api.obj bcb\libboost_regex-bcb-mt-sd-1_37\winstances.obj + if exist bcb\libboost_regex-bcb-mt-sd-1_37.lib del bcb\libboost_regex-bcb-mt-sd-1_37.lib tlib @&&| -/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-mt-sd-1_35.lib" +"bcb\libboost_regex-bcb-mt-sd-1_35\c_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-sd-1_35\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-sd-1_35\cregex.obj" +"bcb\libboost_regex-bcb-mt-sd-1_35\fileiter.obj" +"bcb\libboost_regex-bcb-mt-sd-1_35\icu.obj" +"bcb\libboost_regex-bcb-mt-sd-1_35\instances.obj" +"bcb\libboost_regex-bcb-mt-sd-1_35\posix_api.obj" +"bcb\libboost_regex-bcb-mt-sd-1_35\regex.obj" +"bcb\libboost_regex-bcb-mt-sd-1_35\regex_debug.obj" +"bcb\libboost_regex-bcb-mt-sd-1_35\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-mt-sd-1_35\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-mt-sd-1_35\static_mutex.obj" +"bcb\libboost_regex-bcb-mt-sd-1_35\usinstances.obj" +"bcb\libboost_regex-bcb-mt-sd-1_35\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-sd-1_35\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-sd-1_35\wide_posix_api.obj" +"bcb\libboost_regex-bcb-mt-sd-1_35\winstances.obj" +/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-mt-sd-1_37.lib" +"bcb\libboost_regex-bcb-mt-sd-1_37\c_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-sd-1_37\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-sd-1_37\cregex.obj" +"bcb\libboost_regex-bcb-mt-sd-1_37\fileiter.obj" +"bcb\libboost_regex-bcb-mt-sd-1_37\icu.obj" +"bcb\libboost_regex-bcb-mt-sd-1_37\instances.obj" +"bcb\libboost_regex-bcb-mt-sd-1_37\posix_api.obj" +"bcb\libboost_regex-bcb-mt-sd-1_37\regex.obj" +"bcb\libboost_regex-bcb-mt-sd-1_37\regex_debug.obj" +"bcb\libboost_regex-bcb-mt-sd-1_37\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-mt-sd-1_37\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-mt-sd-1_37\static_mutex.obj" +"bcb\libboost_regex-bcb-mt-sd-1_37\usinstances.obj" +"bcb\libboost_regex-bcb-mt-sd-1_37\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-sd-1_37\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-sd-1_37\wide_posix_api.obj" +"bcb\libboost_regex-bcb-mt-sd-1_37\winstances.obj" | ######################################################## # -# section for boost_regex-bcb-mt-d-1_35.lib +# section for boost_regex-bcb-mt-d-1_37.lib # ######################################################## -bcb\boost_regex-bcb-mt-d-1_35\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_37\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_35\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_37\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\boost_regex-bcb-mt-d-1_35\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_37\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_35\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_37\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\boost_regex-bcb-mt-d-1_35\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_37\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_35\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_37\cregex.obj ../src/cregex.cpp | -bcb\boost_regex-bcb-mt-d-1_35\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_37\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_35\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_37\fileiter.obj ../src/fileiter.cpp | -bcb\boost_regex-bcb-mt-d-1_35\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_37\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_35\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_37\icu.obj ../src/icu.cpp | -bcb\boost_regex-bcb-mt-d-1_35\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_37\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_35\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_37\instances.obj ../src/instances.cpp | -bcb\boost_regex-bcb-mt-d-1_35\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_37\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_35\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_37\posix_api.obj ../src/posix_api.cpp | -bcb\boost_regex-bcb-mt-d-1_35\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_37\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_35\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_37\regex.obj ../src/regex.cpp | -bcb\boost_regex-bcb-mt-d-1_35\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_37\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_35\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_37\regex_debug.obj ../src/regex_debug.cpp | -bcb\boost_regex-bcb-mt-d-1_35\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_37\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_35\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_37\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\boost_regex-bcb-mt-d-1_35\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_37\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_35\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_37\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\boost_regex-bcb-mt-d-1_35\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_37\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_35\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_37\static_mutex.obj ../src/static_mutex.cpp | -bcb\boost_regex-bcb-mt-d-1_35\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_37\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_35\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_37\usinstances.obj ../src/usinstances.cpp | -bcb\boost_regex-bcb-mt-d-1_35\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_37\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_35\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_37\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\boost_regex-bcb-mt-d-1_35\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_37\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_35\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_37\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\boost_regex-bcb-mt-d-1_35\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_37\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_35\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_37\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\boost_regex-bcb-mt-d-1_35\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_37\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_35\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_37\winstances.obj ../src/winstances.cpp | -bcb\boost_regex-bcb-mt-d-1_35 : - -@mkdir bcb\boost_regex-bcb-mt-d-1_35 +bcb\boost_regex-bcb-mt-d-1_37 : + -@mkdir bcb\boost_regex-bcb-mt-d-1_37 -boost_regex-bcb-mt-d-1_35_clean : - del bcb\boost_regex-bcb-mt-d-1_35\*.obj - del bcb\boost_regex-bcb-mt-d-1_35\*.il? - del bcb\boost_regex-bcb-mt-d-1_35\*.csm - del bcb\boost_regex-bcb-mt-d-1_35\*.tds +boost_regex-bcb-mt-d-1_37_clean : + del bcb\boost_regex-bcb-mt-d-1_37\*.obj + del bcb\boost_regex-bcb-mt-d-1_37\*.il? + del bcb\boost_regex-bcb-mt-d-1_37\*.csm + del bcb\boost_regex-bcb-mt-d-1_37\*.tds del bcb\*.tds -bcb\boost_regex-bcb-mt-d-1_35.lib : bcb\boost_regex-bcb-mt-d-1_35\c_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_35\cpp_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_35\cregex.obj bcb\boost_regex-bcb-mt-d-1_35\fileiter.obj bcb\boost_regex-bcb-mt-d-1_35\icu.obj bcb\boost_regex-bcb-mt-d-1_35\instances.obj bcb\boost_regex-bcb-mt-d-1_35\posix_api.obj bcb\boost_regex-bcb-mt-d-1_35\regex.obj bcb\boost_regex-bcb-mt-d-1_35\regex_debug.obj bcb\boost_regex-bcb-mt-d-1_35\regex_raw_buffer.obj bcb\boost_regex-bcb-mt-d-1_35\regex_traits_defaults.obj bcb\boost_regex-bcb-mt-d-1_35\static_mutex.obj bcb\boost_regex-bcb-mt-d-1_35\usinstances.obj bcb\boost_regex-bcb-mt-d-1_35\w32_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_35\wc_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_35\wide_posix_api.obj bcb\boost_regex-bcb-mt-d-1_35\winstances.obj +bcb\boost_regex-bcb-mt-d-1_37.lib : bcb\boost_regex-bcb-mt-d-1_37\c_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_37\cpp_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_37\cregex.obj bcb\boost_regex-bcb-mt-d-1_37\fileiter.obj bcb\boost_regex-bcb-mt-d-1_37\icu.obj bcb\boost_regex-bcb-mt-d-1_37\instances.obj bcb\boost_regex-bcb-mt-d-1_37\posix_api.obj bcb\boost_regex-bcb-mt-d-1_37\regex.obj bcb\boost_regex-bcb-mt-d-1_37\regex_debug.obj bcb\boost_regex-bcb-mt-d-1_37\regex_raw_buffer.obj bcb\boost_regex-bcb-mt-d-1_37\regex_traits_defaults.obj bcb\boost_regex-bcb-mt-d-1_37\static_mutex.obj bcb\boost_regex-bcb-mt-d-1_37\usinstances.obj bcb\boost_regex-bcb-mt-d-1_37\w32_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_37\wc_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_37\wide_posix_api.obj bcb\boost_regex-bcb-mt-d-1_37\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_35.dll $(XLFLAGS) bcb\boost_regex-bcb-mt-d-1_35\c_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_35\cpp_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_35\cregex.obj bcb\boost_regex-bcb-mt-d-1_35\fileiter.obj bcb\boost_regex-bcb-mt-d-1_35\icu.obj bcb\boost_regex-bcb-mt-d-1_35\instances.obj bcb\boost_regex-bcb-mt-d-1_35\posix_api.obj bcb\boost_regex-bcb-mt-d-1_35\regex.obj bcb\boost_regex-bcb-mt-d-1_35\regex_debug.obj bcb\boost_regex-bcb-mt-d-1_35\regex_raw_buffer.obj bcb\boost_regex-bcb-mt-d-1_35\regex_traits_defaults.obj bcb\boost_regex-bcb-mt-d-1_35\static_mutex.obj bcb\boost_regex-bcb-mt-d-1_35\usinstances.obj bcb\boost_regex-bcb-mt-d-1_35\w32_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_35\wc_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_35\wide_posix_api.obj bcb\boost_regex-bcb-mt-d-1_35\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_37.dll $(XLFLAGS) bcb\boost_regex-bcb-mt-d-1_37\c_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_37\cpp_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_37\cregex.obj bcb\boost_regex-bcb-mt-d-1_37\fileiter.obj bcb\boost_regex-bcb-mt-d-1_37\icu.obj bcb\boost_regex-bcb-mt-d-1_37\instances.obj bcb\boost_regex-bcb-mt-d-1_37\posix_api.obj bcb\boost_regex-bcb-mt-d-1_37\regex.obj bcb\boost_regex-bcb-mt-d-1_37\regex_debug.obj bcb\boost_regex-bcb-mt-d-1_37\regex_raw_buffer.obj bcb\boost_regex-bcb-mt-d-1_37\regex_traits_defaults.obj bcb\boost_regex-bcb-mt-d-1_37\static_mutex.obj bcb\boost_regex-bcb-mt-d-1_37\usinstances.obj bcb\boost_regex-bcb-mt-d-1_37\w32_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_37\wc_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_37\wide_posix_api.obj bcb\boost_regex-bcb-mt-d-1_37\winstances.obj $(LIBS) | - implib -w bcb\boost_regex-bcb-mt-d-1_35.lib bcb\boost_regex-bcb-mt-d-1_35.dll + implib -w bcb\boost_regex-bcb-mt-d-1_37.lib bcb\boost_regex-bcb-mt-d-1_37.dll ######################################################## # -# section for boost_regex-bcb-d-1_35.lib +# section for boost_regex-bcb-d-1_37.lib # ######################################################## -bcb\boost_regex-bcb-d-1_35\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_37\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_35\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_37\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\boost_regex-bcb-d-1_35\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_37\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_35\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_37\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\boost_regex-bcb-d-1_35\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_37\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_35\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_37\cregex.obj ../src/cregex.cpp | -bcb\boost_regex-bcb-d-1_35\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_37\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_35\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_37\fileiter.obj ../src/fileiter.cpp | -bcb\boost_regex-bcb-d-1_35\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_37\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_35\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_37\icu.obj ../src/icu.cpp | -bcb\boost_regex-bcb-d-1_35\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_37\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_35\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_37\instances.obj ../src/instances.cpp | -bcb\boost_regex-bcb-d-1_35\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_37\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_35\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_37\posix_api.obj ../src/posix_api.cpp | -bcb\boost_regex-bcb-d-1_35\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_37\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_35\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_37\regex.obj ../src/regex.cpp | -bcb\boost_regex-bcb-d-1_35\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_37\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_35\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_37\regex_debug.obj ../src/regex_debug.cpp | -bcb\boost_regex-bcb-d-1_35\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_37\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_35\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_37\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\boost_regex-bcb-d-1_35\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_37\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_35\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_37\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\boost_regex-bcb-d-1_35\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_37\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_35\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_37\static_mutex.obj ../src/static_mutex.cpp | -bcb\boost_regex-bcb-d-1_35\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_37\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_35\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_37\usinstances.obj ../src/usinstances.cpp | -bcb\boost_regex-bcb-d-1_35\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_37\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_35\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_37\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\boost_regex-bcb-d-1_35\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_37\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_35\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_37\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\boost_regex-bcb-d-1_35\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_37\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_35\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_37\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\boost_regex-bcb-d-1_35\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_37\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_35\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_37\winstances.obj ../src/winstances.cpp | -bcb\boost_regex-bcb-d-1_35 : - -@mkdir bcb\boost_regex-bcb-d-1_35 +bcb\boost_regex-bcb-d-1_37 : + -@mkdir bcb\boost_regex-bcb-d-1_37 -boost_regex-bcb-d-1_35_clean : - del bcb\boost_regex-bcb-d-1_35\*.obj - del bcb\boost_regex-bcb-d-1_35\*.il? - del bcb\boost_regex-bcb-d-1_35\*.csm - del bcb\boost_regex-bcb-d-1_35\*.tds +boost_regex-bcb-d-1_37_clean : + del bcb\boost_regex-bcb-d-1_37\*.obj + del bcb\boost_regex-bcb-d-1_37\*.il? + del bcb\boost_regex-bcb-d-1_37\*.csm + del bcb\boost_regex-bcb-d-1_37\*.tds del bcb\*.tds -bcb\boost_regex-bcb-d-1_35.lib : bcb\boost_regex-bcb-d-1_35\c_regex_traits.obj bcb\boost_regex-bcb-d-1_35\cpp_regex_traits.obj bcb\boost_regex-bcb-d-1_35\cregex.obj bcb\boost_regex-bcb-d-1_35\fileiter.obj bcb\boost_regex-bcb-d-1_35\icu.obj bcb\boost_regex-bcb-d-1_35\instances.obj bcb\boost_regex-bcb-d-1_35\posix_api.obj bcb\boost_regex-bcb-d-1_35\regex.obj bcb\boost_regex-bcb-d-1_35\regex_debug.obj bcb\boost_regex-bcb-d-1_35\regex_raw_buffer.obj bcb\boost_regex-bcb-d-1_35\regex_traits_defaults.obj bcb\boost_regex-bcb-d-1_35\static_mutex.obj bcb\boost_regex-bcb-d-1_35\usinstances.obj bcb\boost_regex-bcb-d-1_35\w32_regex_traits.obj bcb\boost_regex-bcb-d-1_35\wc_regex_traits.obj bcb\boost_regex-bcb-d-1_35\wide_posix_api.obj bcb\boost_regex-bcb-d-1_35\winstances.obj +bcb\boost_regex-bcb-d-1_37.lib : bcb\boost_regex-bcb-d-1_37\c_regex_traits.obj bcb\boost_regex-bcb-d-1_37\cpp_regex_traits.obj bcb\boost_regex-bcb-d-1_37\cregex.obj bcb\boost_regex-bcb-d-1_37\fileiter.obj bcb\boost_regex-bcb-d-1_37\icu.obj bcb\boost_regex-bcb-d-1_37\instances.obj bcb\boost_regex-bcb-d-1_37\posix_api.obj bcb\boost_regex-bcb-d-1_37\regex.obj bcb\boost_regex-bcb-d-1_37\regex_debug.obj bcb\boost_regex-bcb-d-1_37\regex_raw_buffer.obj bcb\boost_regex-bcb-d-1_37\regex_traits_defaults.obj bcb\boost_regex-bcb-d-1_37\static_mutex.obj bcb\boost_regex-bcb-d-1_37\usinstances.obj bcb\boost_regex-bcb-d-1_37\w32_regex_traits.obj bcb\boost_regex-bcb-d-1_37\wc_regex_traits.obj bcb\boost_regex-bcb-d-1_37\wide_posix_api.obj bcb\boost_regex-bcb-d-1_37\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_35.dll $(XLFLAGS) bcb\boost_regex-bcb-d-1_35\c_regex_traits.obj bcb\boost_regex-bcb-d-1_35\cpp_regex_traits.obj bcb\boost_regex-bcb-d-1_35\cregex.obj bcb\boost_regex-bcb-d-1_35\fileiter.obj bcb\boost_regex-bcb-d-1_35\icu.obj bcb\boost_regex-bcb-d-1_35\instances.obj bcb\boost_regex-bcb-d-1_35\posix_api.obj bcb\boost_regex-bcb-d-1_35\regex.obj bcb\boost_regex-bcb-d-1_35\regex_debug.obj bcb\boost_regex-bcb-d-1_35\regex_raw_buffer.obj bcb\boost_regex-bcb-d-1_35\regex_traits_defaults.obj bcb\boost_regex-bcb-d-1_35\static_mutex.obj bcb\boost_regex-bcb-d-1_35\usinstances.obj bcb\boost_regex-bcb-d-1_35\w32_regex_traits.obj bcb\boost_regex-bcb-d-1_35\wc_regex_traits.obj bcb\boost_regex-bcb-d-1_35\wide_posix_api.obj bcb\boost_regex-bcb-d-1_35\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_37.dll $(XLFLAGS) bcb\boost_regex-bcb-d-1_37\c_regex_traits.obj bcb\boost_regex-bcb-d-1_37\cpp_regex_traits.obj bcb\boost_regex-bcb-d-1_37\cregex.obj bcb\boost_regex-bcb-d-1_37\fileiter.obj bcb\boost_regex-bcb-d-1_37\icu.obj bcb\boost_regex-bcb-d-1_37\instances.obj bcb\boost_regex-bcb-d-1_37\posix_api.obj bcb\boost_regex-bcb-d-1_37\regex.obj bcb\boost_regex-bcb-d-1_37\regex_debug.obj bcb\boost_regex-bcb-d-1_37\regex_raw_buffer.obj bcb\boost_regex-bcb-d-1_37\regex_traits_defaults.obj bcb\boost_regex-bcb-d-1_37\static_mutex.obj bcb\boost_regex-bcb-d-1_37\usinstances.obj bcb\boost_regex-bcb-d-1_37\w32_regex_traits.obj bcb\boost_regex-bcb-d-1_37\wc_regex_traits.obj bcb\boost_regex-bcb-d-1_37\wide_posix_api.obj bcb\boost_regex-bcb-d-1_37\winstances.obj $(LIBS) | - implib -w bcb\boost_regex-bcb-d-1_35.lib bcb\boost_regex-bcb-d-1_35.dll + implib -w bcb\boost_regex-bcb-d-1_37.lib bcb\boost_regex-bcb-d-1_37.dll ######################################################## # -# section for libboost_regex-bcb-mt-d-1_35.lib +# section for libboost_regex-bcb-mt-d-1_37.lib # ######################################################## -bcb\libboost_regex-bcb-mt-d-1_35\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_37\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_35\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_37\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-d-1_35\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_37\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_35\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_37\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-d-1_35\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_37\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_35\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_37\cregex.obj ../src/cregex.cpp | -bcb\libboost_regex-bcb-mt-d-1_35\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_37\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_35\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_37\fileiter.obj ../src/fileiter.cpp | -bcb\libboost_regex-bcb-mt-d-1_35\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_37\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_35\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_37\icu.obj ../src/icu.cpp | -bcb\libboost_regex-bcb-mt-d-1_35\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_37\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_35\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_37\instances.obj ../src/instances.cpp | -bcb\libboost_regex-bcb-mt-d-1_35\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_37\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_35\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_37\posix_api.obj ../src/posix_api.cpp | -bcb\libboost_regex-bcb-mt-d-1_35\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_37\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_35\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_37\regex.obj ../src/regex.cpp | -bcb\libboost_regex-bcb-mt-d-1_35\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_37\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_35\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_37\regex_debug.obj ../src/regex_debug.cpp | -bcb\libboost_regex-bcb-mt-d-1_35\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_37\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_35\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_37\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\libboost_regex-bcb-mt-d-1_35\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_37\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_35\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_37\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\libboost_regex-bcb-mt-d-1_35\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_37\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_35\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_37\static_mutex.obj ../src/static_mutex.cpp | -bcb\libboost_regex-bcb-mt-d-1_35\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_37\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_35\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_37\usinstances.obj ../src/usinstances.cpp | -bcb\libboost_regex-bcb-mt-d-1_35\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_37\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_35\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_37\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-d-1_35\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_37\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_35\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_37\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-d-1_35\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_37\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_35\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_37\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\libboost_regex-bcb-mt-d-1_35\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_37\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_35\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_37\winstances.obj ../src/winstances.cpp | -bcb\libboost_regex-bcb-mt-d-1_35 : - -@mkdir bcb\libboost_regex-bcb-mt-d-1_35 +bcb\libboost_regex-bcb-mt-d-1_37 : + -@mkdir bcb\libboost_regex-bcb-mt-d-1_37 -libboost_regex-bcb-mt-d-1_35_clean : - del bcb\libboost_regex-bcb-mt-d-1_35\*.obj - del bcb\libboost_regex-bcb-mt-d-1_35\*.il? - del bcb\libboost_regex-bcb-mt-d-1_35\*.csm - del bcb\libboost_regex-bcb-mt-d-1_35\*.tds +libboost_regex-bcb-mt-d-1_37_clean : + del bcb\libboost_regex-bcb-mt-d-1_37\*.obj + del bcb\libboost_regex-bcb-mt-d-1_37\*.il? + del bcb\libboost_regex-bcb-mt-d-1_37\*.csm + del bcb\libboost_regex-bcb-mt-d-1_37\*.tds -bcb\libboost_regex-bcb-mt-d-1_35.lib : bcb\libboost_regex-bcb-mt-d-1_35\c_regex_traits.obj bcb\libboost_regex-bcb-mt-d-1_35\cpp_regex_traits.obj bcb\libboost_regex-bcb-mt-d-1_35\cregex.obj bcb\libboost_regex-bcb-mt-d-1_35\fileiter.obj bcb\libboost_regex-bcb-mt-d-1_35\icu.obj bcb\libboost_regex-bcb-mt-d-1_35\instances.obj bcb\libboost_regex-bcb-mt-d-1_35\posix_api.obj bcb\libboost_regex-bcb-mt-d-1_35\regex.obj bcb\libboost_regex-bcb-mt-d-1_35\regex_debug.obj bcb\libboost_regex-bcb-mt-d-1_35\regex_raw_buffer.obj bcb\libboost_regex-bcb-mt-d-1_35\regex_traits_defaults.obj bcb\libboost_regex-bcb-mt-d-1_35\static_mutex.obj bcb\libboost_regex-bcb-mt-d-1_35\usinstances.obj bcb\libboost_regex-bcb-mt-d-1_35\w32_regex_traits.obj bcb\libboost_regex-bcb-mt-d-1_35\wc_regex_traits.obj bcb\libboost_regex-bcb-mt-d-1_35\wide_posix_api.obj bcb\libboost_regex-bcb-mt-d-1_35\winstances.obj - if exist bcb\libboost_regex-bcb-mt-d-1_35.lib del bcb\libboost_regex-bcb-mt-d-1_35.lib +bcb\libboost_regex-bcb-mt-d-1_37.lib : bcb\libboost_regex-bcb-mt-d-1_37\c_regex_traits.obj bcb\libboost_regex-bcb-mt-d-1_37\cpp_regex_traits.obj bcb\libboost_regex-bcb-mt-d-1_37\cregex.obj bcb\libboost_regex-bcb-mt-d-1_37\fileiter.obj bcb\libboost_regex-bcb-mt-d-1_37\icu.obj bcb\libboost_regex-bcb-mt-d-1_37\instances.obj bcb\libboost_regex-bcb-mt-d-1_37\posix_api.obj bcb\libboost_regex-bcb-mt-d-1_37\regex.obj bcb\libboost_regex-bcb-mt-d-1_37\regex_debug.obj bcb\libboost_regex-bcb-mt-d-1_37\regex_raw_buffer.obj bcb\libboost_regex-bcb-mt-d-1_37\regex_traits_defaults.obj bcb\libboost_regex-bcb-mt-d-1_37\static_mutex.obj bcb\libboost_regex-bcb-mt-d-1_37\usinstances.obj bcb\libboost_regex-bcb-mt-d-1_37\w32_regex_traits.obj bcb\libboost_regex-bcb-mt-d-1_37\wc_regex_traits.obj bcb\libboost_regex-bcb-mt-d-1_37\wide_posix_api.obj bcb\libboost_regex-bcb-mt-d-1_37\winstances.obj + if exist bcb\libboost_regex-bcb-mt-d-1_37.lib del bcb\libboost_regex-bcb-mt-d-1_37.lib tlib @&&| -/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-mt-d-1_35.lib" +"bcb\libboost_regex-bcb-mt-d-1_35\c_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-d-1_35\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-d-1_35\cregex.obj" +"bcb\libboost_regex-bcb-mt-d-1_35\fileiter.obj" +"bcb\libboost_regex-bcb-mt-d-1_35\icu.obj" +"bcb\libboost_regex-bcb-mt-d-1_35\instances.obj" +"bcb\libboost_regex-bcb-mt-d-1_35\posix_api.obj" +"bcb\libboost_regex-bcb-mt-d-1_35\regex.obj" +"bcb\libboost_regex-bcb-mt-d-1_35\regex_debug.obj" +"bcb\libboost_regex-bcb-mt-d-1_35\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-mt-d-1_35\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-mt-d-1_35\static_mutex.obj" +"bcb\libboost_regex-bcb-mt-d-1_35\usinstances.obj" +"bcb\libboost_regex-bcb-mt-d-1_35\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-d-1_35\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-d-1_35\wide_posix_api.obj" +"bcb\libboost_regex-bcb-mt-d-1_35\winstances.obj" +/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-mt-d-1_37.lib" +"bcb\libboost_regex-bcb-mt-d-1_37\c_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-d-1_37\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-d-1_37\cregex.obj" +"bcb\libboost_regex-bcb-mt-d-1_37\fileiter.obj" +"bcb\libboost_regex-bcb-mt-d-1_37\icu.obj" +"bcb\libboost_regex-bcb-mt-d-1_37\instances.obj" +"bcb\libboost_regex-bcb-mt-d-1_37\posix_api.obj" +"bcb\libboost_regex-bcb-mt-d-1_37\regex.obj" +"bcb\libboost_regex-bcb-mt-d-1_37\regex_debug.obj" +"bcb\libboost_regex-bcb-mt-d-1_37\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-mt-d-1_37\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-mt-d-1_37\static_mutex.obj" +"bcb\libboost_regex-bcb-mt-d-1_37\usinstances.obj" +"bcb\libboost_regex-bcb-mt-d-1_37\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-d-1_37\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-d-1_37\wide_posix_api.obj" +"bcb\libboost_regex-bcb-mt-d-1_37\winstances.obj" | ######################################################## # -# section for libboost_regex-bcb-d-1_35.lib +# section for libboost_regex-bcb-d-1_37.lib # ######################################################## -bcb\libboost_regex-bcb-d-1_35\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_37\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_35\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_37\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\libboost_regex-bcb-d-1_35\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_37\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_35\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_37\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\libboost_regex-bcb-d-1_35\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_37\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_35\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_37\cregex.obj ../src/cregex.cpp | -bcb\libboost_regex-bcb-d-1_35\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_37\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_35\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_37\fileiter.obj ../src/fileiter.cpp | -bcb\libboost_regex-bcb-d-1_35\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_37\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_35\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_37\icu.obj ../src/icu.cpp | -bcb\libboost_regex-bcb-d-1_35\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_37\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_35\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_37\instances.obj ../src/instances.cpp | -bcb\libboost_regex-bcb-d-1_35\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_37\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_35\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_37\posix_api.obj ../src/posix_api.cpp | -bcb\libboost_regex-bcb-d-1_35\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_37\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_35\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_37\regex.obj ../src/regex.cpp | -bcb\libboost_regex-bcb-d-1_35\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_37\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_35\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_37\regex_debug.obj ../src/regex_debug.cpp | -bcb\libboost_regex-bcb-d-1_35\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_37\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_35\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_37\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\libboost_regex-bcb-d-1_35\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_37\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_35\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_37\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\libboost_regex-bcb-d-1_35\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_37\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_35\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_37\static_mutex.obj ../src/static_mutex.cpp | -bcb\libboost_regex-bcb-d-1_35\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_37\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_35\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_37\usinstances.obj ../src/usinstances.cpp | -bcb\libboost_regex-bcb-d-1_35\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_37\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_35\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_37\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\libboost_regex-bcb-d-1_35\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_37\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_35\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_37\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\libboost_regex-bcb-d-1_35\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_37\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_35\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_37\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\libboost_regex-bcb-d-1_35\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_37\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_35\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_37\winstances.obj ../src/winstances.cpp | -bcb\libboost_regex-bcb-d-1_35 : - -@mkdir bcb\libboost_regex-bcb-d-1_35 +bcb\libboost_regex-bcb-d-1_37 : + -@mkdir bcb\libboost_regex-bcb-d-1_37 -libboost_regex-bcb-d-1_35_clean : - del bcb\libboost_regex-bcb-d-1_35\*.obj - del bcb\libboost_regex-bcb-d-1_35\*.il? - del bcb\libboost_regex-bcb-d-1_35\*.csm - del bcb\libboost_regex-bcb-d-1_35\*.tds +libboost_regex-bcb-d-1_37_clean : + del bcb\libboost_regex-bcb-d-1_37\*.obj + del bcb\libboost_regex-bcb-d-1_37\*.il? + del bcb\libboost_regex-bcb-d-1_37\*.csm + del bcb\libboost_regex-bcb-d-1_37\*.tds -bcb\libboost_regex-bcb-d-1_35.lib : bcb\libboost_regex-bcb-d-1_35\c_regex_traits.obj bcb\libboost_regex-bcb-d-1_35\cpp_regex_traits.obj bcb\libboost_regex-bcb-d-1_35\cregex.obj bcb\libboost_regex-bcb-d-1_35\fileiter.obj bcb\libboost_regex-bcb-d-1_35\icu.obj bcb\libboost_regex-bcb-d-1_35\instances.obj bcb\libboost_regex-bcb-d-1_35\posix_api.obj bcb\libboost_regex-bcb-d-1_35\regex.obj bcb\libboost_regex-bcb-d-1_35\regex_debug.obj bcb\libboost_regex-bcb-d-1_35\regex_raw_buffer.obj bcb\libboost_regex-bcb-d-1_35\regex_traits_defaults.obj bcb\libboost_regex-bcb-d-1_35\static_mutex.obj bcb\libboost_regex-bcb-d-1_35\usinstances.obj bcb\libboost_regex-bcb-d-1_35\w32_regex_traits.obj bcb\libboost_regex-bcb-d-1_35\wc_regex_traits.obj bcb\libboost_regex-bcb-d-1_35\wide_posix_api.obj bcb\libboost_regex-bcb-d-1_35\winstances.obj - if exist bcb\libboost_regex-bcb-d-1_35.lib del bcb\libboost_regex-bcb-d-1_35.lib +bcb\libboost_regex-bcb-d-1_37.lib : bcb\libboost_regex-bcb-d-1_37\c_regex_traits.obj bcb\libboost_regex-bcb-d-1_37\cpp_regex_traits.obj bcb\libboost_regex-bcb-d-1_37\cregex.obj bcb\libboost_regex-bcb-d-1_37\fileiter.obj bcb\libboost_regex-bcb-d-1_37\icu.obj bcb\libboost_regex-bcb-d-1_37\instances.obj bcb\libboost_regex-bcb-d-1_37\posix_api.obj bcb\libboost_regex-bcb-d-1_37\regex.obj bcb\libboost_regex-bcb-d-1_37\regex_debug.obj bcb\libboost_regex-bcb-d-1_37\regex_raw_buffer.obj bcb\libboost_regex-bcb-d-1_37\regex_traits_defaults.obj bcb\libboost_regex-bcb-d-1_37\static_mutex.obj bcb\libboost_regex-bcb-d-1_37\usinstances.obj bcb\libboost_regex-bcb-d-1_37\w32_regex_traits.obj bcb\libboost_regex-bcb-d-1_37\wc_regex_traits.obj bcb\libboost_regex-bcb-d-1_37\wide_posix_api.obj bcb\libboost_regex-bcb-d-1_37\winstances.obj + if exist bcb\libboost_regex-bcb-d-1_37.lib del bcb\libboost_regex-bcb-d-1_37.lib tlib @&&| -/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-d-1_35.lib" +"bcb\libboost_regex-bcb-d-1_35\c_regex_traits.obj" +"bcb\libboost_regex-bcb-d-1_35\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-d-1_35\cregex.obj" +"bcb\libboost_regex-bcb-d-1_35\fileiter.obj" +"bcb\libboost_regex-bcb-d-1_35\icu.obj" +"bcb\libboost_regex-bcb-d-1_35\instances.obj" +"bcb\libboost_regex-bcb-d-1_35\posix_api.obj" +"bcb\libboost_regex-bcb-d-1_35\regex.obj" +"bcb\libboost_regex-bcb-d-1_35\regex_debug.obj" +"bcb\libboost_regex-bcb-d-1_35\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-d-1_35\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-d-1_35\static_mutex.obj" +"bcb\libboost_regex-bcb-d-1_35\usinstances.obj" +"bcb\libboost_regex-bcb-d-1_35\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-d-1_35\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-d-1_35\wide_posix_api.obj" +"bcb\libboost_regex-bcb-d-1_35\winstances.obj" +/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-d-1_37.lib" +"bcb\libboost_regex-bcb-d-1_37\c_regex_traits.obj" +"bcb\libboost_regex-bcb-d-1_37\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-d-1_37\cregex.obj" +"bcb\libboost_regex-bcb-d-1_37\fileiter.obj" +"bcb\libboost_regex-bcb-d-1_37\icu.obj" +"bcb\libboost_regex-bcb-d-1_37\instances.obj" +"bcb\libboost_regex-bcb-d-1_37\posix_api.obj" +"bcb\libboost_regex-bcb-d-1_37\regex.obj" +"bcb\libboost_regex-bcb-d-1_37\regex_debug.obj" +"bcb\libboost_regex-bcb-d-1_37\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-d-1_37\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-d-1_37\static_mutex.obj" +"bcb\libboost_regex-bcb-d-1_37\usinstances.obj" +"bcb\libboost_regex-bcb-d-1_37\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-d-1_37\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-d-1_37\wide_posix_api.obj" +"bcb\libboost_regex-bcb-d-1_37\winstances.obj" | + diff --git a/build/gcc-shared.mak b/build/gcc-shared.mak index 7aca2a0d..f049f7aa 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_35_shared ./gcc/libboost_regex-gcc-1_35.so gcc gcc/boost_regex-gcc-d-1_35_shared ./gcc/libboost_regex-gcc-d-1_35.so +all : gcc gcc gcc/boost_regex-gcc-1_37_shared ./gcc/libboost_regex-gcc-1_37.so gcc gcc/boost_regex-gcc-d-1_37_shared ./gcc/libboost_regex-gcc-d-1_37.so gcc : mkdir -p gcc -clean : boost_regex-gcc-1_35_clean boost_regex-gcc-d-1_35_clean +clean : boost_regex-gcc-1_37_clean boost_regex-gcc-d-1_37_clean install : all @@ -60,132 +60,132 @@ install : all ######################################################## # -# section for libboost_regex-gcc-1_35.a +# section for libboost_regex-gcc-1_37.a # ######################################################## -gcc/boost_regex-gcc-1_35_shared/c_regex_traits.o: ../src/c_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_35_shared/c_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/c_regex_traits.cpp +gcc/boost_regex-gcc-1_37_shared/c_regex_traits.o: ../src/c_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37_shared/c_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/c_regex_traits.cpp -gcc/boost_regex-gcc-1_35_shared/cpp_regex_traits.o: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_35_shared/cpp_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cpp_regex_traits.cpp +gcc/boost_regex-gcc-1_37_shared/cpp_regex_traits.o: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37_shared/cpp_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cpp_regex_traits.cpp -gcc/boost_regex-gcc-1_35_shared/cregex.o: ../src/cregex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_35_shared/cregex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cregex.cpp +gcc/boost_regex-gcc-1_37_shared/cregex.o: ../src/cregex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37_shared/cregex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cregex.cpp -gcc/boost_regex-gcc-1_35_shared/fileiter.o: ../src/fileiter.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_35_shared/fileiter.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/fileiter.cpp +gcc/boost_regex-gcc-1_37_shared/fileiter.o: ../src/fileiter.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37_shared/fileiter.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/fileiter.cpp -gcc/boost_regex-gcc-1_35_shared/icu.o: ../src/icu.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_35_shared/icu.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/icu.cpp +gcc/boost_regex-gcc-1_37_shared/icu.o: ../src/icu.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37_shared/icu.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/icu.cpp -gcc/boost_regex-gcc-1_35_shared/instances.o: ../src/instances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_35_shared/instances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/instances.cpp +gcc/boost_regex-gcc-1_37_shared/instances.o: ../src/instances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37_shared/instances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/instances.cpp -gcc/boost_regex-gcc-1_35_shared/posix_api.o: ../src/posix_api.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_35_shared/posix_api.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/posix_api.cpp +gcc/boost_regex-gcc-1_37_shared/posix_api.o: ../src/posix_api.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37_shared/posix_api.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/posix_api.cpp -gcc/boost_regex-gcc-1_35_shared/regex.o: ../src/regex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_35_shared/regex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex.cpp +gcc/boost_regex-gcc-1_37_shared/regex.o: ../src/regex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37_shared/regex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex.cpp -gcc/boost_regex-gcc-1_35_shared/regex_debug.o: ../src/regex_debug.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_35_shared/regex_debug.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_debug.cpp +gcc/boost_regex-gcc-1_37_shared/regex_debug.o: ../src/regex_debug.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37_shared/regex_debug.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_debug.cpp -gcc/boost_regex-gcc-1_35_shared/regex_raw_buffer.o: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_35_shared/regex_raw_buffer.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_raw_buffer.cpp +gcc/boost_regex-gcc-1_37_shared/regex_raw_buffer.o: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37_shared/regex_raw_buffer.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_raw_buffer.cpp -gcc/boost_regex-gcc-1_35_shared/regex_traits_defaults.o: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_35_shared/regex_traits_defaults.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_traits_defaults.cpp +gcc/boost_regex-gcc-1_37_shared/regex_traits_defaults.o: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37_shared/regex_traits_defaults.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_traits_defaults.cpp -gcc/boost_regex-gcc-1_35_shared/static_mutex.o: ../src/static_mutex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_35_shared/static_mutex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/static_mutex.cpp +gcc/boost_regex-gcc-1_37_shared/static_mutex.o: ../src/static_mutex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37_shared/static_mutex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/static_mutex.cpp -gcc/boost_regex-gcc-1_35_shared/usinstances.o: ../src/usinstances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_35_shared/usinstances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/usinstances.cpp +gcc/boost_regex-gcc-1_37_shared/usinstances.o: ../src/usinstances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37_shared/usinstances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/usinstances.cpp -gcc/boost_regex-gcc-1_35_shared/w32_regex_traits.o: ../src/w32_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_35_shared/w32_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/w32_regex_traits.cpp +gcc/boost_regex-gcc-1_37_shared/w32_regex_traits.o: ../src/w32_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37_shared/w32_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/w32_regex_traits.cpp -gcc/boost_regex-gcc-1_35_shared/wc_regex_traits.o: ../src/wc_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_35_shared/wc_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wc_regex_traits.cpp +gcc/boost_regex-gcc-1_37_shared/wc_regex_traits.o: ../src/wc_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37_shared/wc_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wc_regex_traits.cpp -gcc/boost_regex-gcc-1_35_shared/wide_posix_api.o: ../src/wide_posix_api.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_35_shared/wide_posix_api.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wide_posix_api.cpp +gcc/boost_regex-gcc-1_37_shared/wide_posix_api.o: ../src/wide_posix_api.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37_shared/wide_posix_api.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wide_posix_api.cpp -gcc/boost_regex-gcc-1_35_shared/winstances.o: ../src/winstances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_35_shared/winstances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/winstances.cpp +gcc/boost_regex-gcc-1_37_shared/winstances.o: ../src/winstances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37_shared/winstances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/winstances.cpp -gcc/boost_regex-gcc-1_35_shared : - mkdir -p gcc/boost_regex-gcc-1_35_shared +gcc/boost_regex-gcc-1_37_shared : + mkdir -p gcc/boost_regex-gcc-1_37_shared -boost_regex-gcc-1_35_clean : - rm -f gcc/boost_regex-gcc-1_35_shared/*.o +boost_regex-gcc-1_37_clean : + rm -f gcc/boost_regex-gcc-1_37_shared/*.o -./gcc/libboost_regex-gcc-1_35.so : gcc/boost_regex-gcc-1_35_shared/c_regex_traits.o gcc/boost_regex-gcc-1_35_shared/cpp_regex_traits.o gcc/boost_regex-gcc-1_35_shared/cregex.o gcc/boost_regex-gcc-1_35_shared/fileiter.o gcc/boost_regex-gcc-1_35_shared/icu.o gcc/boost_regex-gcc-1_35_shared/instances.o gcc/boost_regex-gcc-1_35_shared/posix_api.o gcc/boost_regex-gcc-1_35_shared/regex.o gcc/boost_regex-gcc-1_35_shared/regex_debug.o gcc/boost_regex-gcc-1_35_shared/regex_raw_buffer.o gcc/boost_regex-gcc-1_35_shared/regex_traits_defaults.o gcc/boost_regex-gcc-1_35_shared/static_mutex.o gcc/boost_regex-gcc-1_35_shared/usinstances.o gcc/boost_regex-gcc-1_35_shared/w32_regex_traits.o gcc/boost_regex-gcc-1_35_shared/wc_regex_traits.o gcc/boost_regex-gcc-1_35_shared/wide_posix_api.o gcc/boost_regex-gcc-1_35_shared/winstances.o - $(LINKER) -o gcc/libboost_regex-gcc-1_35.so $(LDFLAGS) $(ICU_LDFLAGS) gcc/boost_regex-gcc-1_35_shared/c_regex_traits.o gcc/boost_regex-gcc-1_35_shared/cpp_regex_traits.o gcc/boost_regex-gcc-1_35_shared/cregex.o gcc/boost_regex-gcc-1_35_shared/fileiter.o gcc/boost_regex-gcc-1_35_shared/icu.o gcc/boost_regex-gcc-1_35_shared/instances.o gcc/boost_regex-gcc-1_35_shared/posix_api.o gcc/boost_regex-gcc-1_35_shared/regex.o gcc/boost_regex-gcc-1_35_shared/regex_debug.o gcc/boost_regex-gcc-1_35_shared/regex_raw_buffer.o gcc/boost_regex-gcc-1_35_shared/regex_traits_defaults.o gcc/boost_regex-gcc-1_35_shared/static_mutex.o gcc/boost_regex-gcc-1_35_shared/usinstances.o gcc/boost_regex-gcc-1_35_shared/w32_regex_traits.o gcc/boost_regex-gcc-1_35_shared/wc_regex_traits.o gcc/boost_regex-gcc-1_35_shared/wide_posix_api.o gcc/boost_regex-gcc-1_35_shared/winstances.o $(ICU_LIBS) $(LIBS) +./gcc/libboost_regex-gcc-1_37.so : gcc/boost_regex-gcc-1_37_shared/c_regex_traits.o gcc/boost_regex-gcc-1_37_shared/cpp_regex_traits.o gcc/boost_regex-gcc-1_37_shared/cregex.o gcc/boost_regex-gcc-1_37_shared/fileiter.o gcc/boost_regex-gcc-1_37_shared/icu.o gcc/boost_regex-gcc-1_37_shared/instances.o gcc/boost_regex-gcc-1_37_shared/posix_api.o gcc/boost_regex-gcc-1_37_shared/regex.o gcc/boost_regex-gcc-1_37_shared/regex_debug.o gcc/boost_regex-gcc-1_37_shared/regex_raw_buffer.o gcc/boost_regex-gcc-1_37_shared/regex_traits_defaults.o gcc/boost_regex-gcc-1_37_shared/static_mutex.o gcc/boost_regex-gcc-1_37_shared/usinstances.o gcc/boost_regex-gcc-1_37_shared/w32_regex_traits.o gcc/boost_regex-gcc-1_37_shared/wc_regex_traits.o gcc/boost_regex-gcc-1_37_shared/wide_posix_api.o gcc/boost_regex-gcc-1_37_shared/winstances.o + $(LINKER) -o gcc/libboost_regex-gcc-1_37.so $(LDFLAGS) $(ICU_LDFLAGS) gcc/boost_regex-gcc-1_37_shared/c_regex_traits.o gcc/boost_regex-gcc-1_37_shared/cpp_regex_traits.o gcc/boost_regex-gcc-1_37_shared/cregex.o gcc/boost_regex-gcc-1_37_shared/fileiter.o gcc/boost_regex-gcc-1_37_shared/icu.o gcc/boost_regex-gcc-1_37_shared/instances.o gcc/boost_regex-gcc-1_37_shared/posix_api.o gcc/boost_regex-gcc-1_37_shared/regex.o gcc/boost_regex-gcc-1_37_shared/regex_debug.o gcc/boost_regex-gcc-1_37_shared/regex_raw_buffer.o gcc/boost_regex-gcc-1_37_shared/regex_traits_defaults.o gcc/boost_regex-gcc-1_37_shared/static_mutex.o gcc/boost_regex-gcc-1_37_shared/usinstances.o gcc/boost_regex-gcc-1_37_shared/w32_regex_traits.o gcc/boost_regex-gcc-1_37_shared/wc_regex_traits.o gcc/boost_regex-gcc-1_37_shared/wide_posix_api.o gcc/boost_regex-gcc-1_37_shared/winstances.o $(ICU_LIBS) $(LIBS) ######################################################## # -# section for libboost_regex-gcc-d-1_35.a +# section for libboost_regex-gcc-d-1_37.a # ######################################################## -gcc/boost_regex-gcc-d-1_35_shared/c_regex_traits.o: ../src/c_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_35_shared/c_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/c_regex_traits.cpp +gcc/boost_regex-gcc-d-1_37_shared/c_regex_traits.o: ../src/c_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37_shared/c_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/c_regex_traits.cpp -gcc/boost_regex-gcc-d-1_35_shared/cpp_regex_traits.o: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_35_shared/cpp_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cpp_regex_traits.cpp +gcc/boost_regex-gcc-d-1_37_shared/cpp_regex_traits.o: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37_shared/cpp_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cpp_regex_traits.cpp -gcc/boost_regex-gcc-d-1_35_shared/cregex.o: ../src/cregex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_35_shared/cregex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cregex.cpp +gcc/boost_regex-gcc-d-1_37_shared/cregex.o: ../src/cregex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37_shared/cregex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cregex.cpp -gcc/boost_regex-gcc-d-1_35_shared/fileiter.o: ../src/fileiter.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_35_shared/fileiter.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/fileiter.cpp +gcc/boost_regex-gcc-d-1_37_shared/fileiter.o: ../src/fileiter.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37_shared/fileiter.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/fileiter.cpp -gcc/boost_regex-gcc-d-1_35_shared/icu.o: ../src/icu.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_35_shared/icu.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/icu.cpp +gcc/boost_regex-gcc-d-1_37_shared/icu.o: ../src/icu.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37_shared/icu.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/icu.cpp -gcc/boost_regex-gcc-d-1_35_shared/instances.o: ../src/instances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_35_shared/instances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/instances.cpp +gcc/boost_regex-gcc-d-1_37_shared/instances.o: ../src/instances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37_shared/instances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/instances.cpp -gcc/boost_regex-gcc-d-1_35_shared/posix_api.o: ../src/posix_api.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_35_shared/posix_api.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/posix_api.cpp +gcc/boost_regex-gcc-d-1_37_shared/posix_api.o: ../src/posix_api.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37_shared/posix_api.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/posix_api.cpp -gcc/boost_regex-gcc-d-1_35_shared/regex.o: ../src/regex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_35_shared/regex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex.cpp +gcc/boost_regex-gcc-d-1_37_shared/regex.o: ../src/regex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37_shared/regex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex.cpp -gcc/boost_regex-gcc-d-1_35_shared/regex_debug.o: ../src/regex_debug.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_35_shared/regex_debug.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_debug.cpp +gcc/boost_regex-gcc-d-1_37_shared/regex_debug.o: ../src/regex_debug.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37_shared/regex_debug.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_debug.cpp -gcc/boost_regex-gcc-d-1_35_shared/regex_raw_buffer.o: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_35_shared/regex_raw_buffer.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_raw_buffer.cpp +gcc/boost_regex-gcc-d-1_37_shared/regex_raw_buffer.o: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37_shared/regex_raw_buffer.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_raw_buffer.cpp -gcc/boost_regex-gcc-d-1_35_shared/regex_traits_defaults.o: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_35_shared/regex_traits_defaults.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_traits_defaults.cpp +gcc/boost_regex-gcc-d-1_37_shared/regex_traits_defaults.o: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37_shared/regex_traits_defaults.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_traits_defaults.cpp -gcc/boost_regex-gcc-d-1_35_shared/static_mutex.o: ../src/static_mutex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_35_shared/static_mutex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/static_mutex.cpp +gcc/boost_regex-gcc-d-1_37_shared/static_mutex.o: ../src/static_mutex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37_shared/static_mutex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/static_mutex.cpp -gcc/boost_regex-gcc-d-1_35_shared/usinstances.o: ../src/usinstances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_35_shared/usinstances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/usinstances.cpp +gcc/boost_regex-gcc-d-1_37_shared/usinstances.o: ../src/usinstances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37_shared/usinstances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/usinstances.cpp -gcc/boost_regex-gcc-d-1_35_shared/w32_regex_traits.o: ../src/w32_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_35_shared/w32_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/w32_regex_traits.cpp +gcc/boost_regex-gcc-d-1_37_shared/w32_regex_traits.o: ../src/w32_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37_shared/w32_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/w32_regex_traits.cpp -gcc/boost_regex-gcc-d-1_35_shared/wc_regex_traits.o: ../src/wc_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_35_shared/wc_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wc_regex_traits.cpp +gcc/boost_regex-gcc-d-1_37_shared/wc_regex_traits.o: ../src/wc_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37_shared/wc_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wc_regex_traits.cpp -gcc/boost_regex-gcc-d-1_35_shared/wide_posix_api.o: ../src/wide_posix_api.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_35_shared/wide_posix_api.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wide_posix_api.cpp +gcc/boost_regex-gcc-d-1_37_shared/wide_posix_api.o: ../src/wide_posix_api.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37_shared/wide_posix_api.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wide_posix_api.cpp -gcc/boost_regex-gcc-d-1_35_shared/winstances.o: ../src/winstances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_35_shared/winstances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/winstances.cpp +gcc/boost_regex-gcc-d-1_37_shared/winstances.o: ../src/winstances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37_shared/winstances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/winstances.cpp -gcc/boost_regex-gcc-d-1_35_shared : - mkdir -p gcc/boost_regex-gcc-d-1_35_shared +gcc/boost_regex-gcc-d-1_37_shared : + mkdir -p gcc/boost_regex-gcc-d-1_37_shared -boost_regex-gcc-d-1_35_clean : - rm -f gcc/boost_regex-gcc-d-1_35_shared/*.o +boost_regex-gcc-d-1_37_clean : + rm -f gcc/boost_regex-gcc-d-1_37_shared/*.o -./gcc/libboost_regex-gcc-d-1_35.so : gcc/boost_regex-gcc-d-1_35_shared/c_regex_traits.o gcc/boost_regex-gcc-d-1_35_shared/cpp_regex_traits.o gcc/boost_regex-gcc-d-1_35_shared/cregex.o gcc/boost_regex-gcc-d-1_35_shared/fileiter.o gcc/boost_regex-gcc-d-1_35_shared/icu.o gcc/boost_regex-gcc-d-1_35_shared/instances.o gcc/boost_regex-gcc-d-1_35_shared/posix_api.o gcc/boost_regex-gcc-d-1_35_shared/regex.o gcc/boost_regex-gcc-d-1_35_shared/regex_debug.o gcc/boost_regex-gcc-d-1_35_shared/regex_raw_buffer.o gcc/boost_regex-gcc-d-1_35_shared/regex_traits_defaults.o gcc/boost_regex-gcc-d-1_35_shared/static_mutex.o gcc/boost_regex-gcc-d-1_35_shared/usinstances.o gcc/boost_regex-gcc-d-1_35_shared/w32_regex_traits.o gcc/boost_regex-gcc-d-1_35_shared/wc_regex_traits.o gcc/boost_regex-gcc-d-1_35_shared/wide_posix_api.o gcc/boost_regex-gcc-d-1_35_shared/winstances.o - $(LINKER) -o gcc/libboost_regex-gcc-d-1_35.so $(LDFLAGS) $(ICU_LDFLAGS) gcc/boost_regex-gcc-d-1_35_shared/c_regex_traits.o gcc/boost_regex-gcc-d-1_35_shared/cpp_regex_traits.o gcc/boost_regex-gcc-d-1_35_shared/cregex.o gcc/boost_regex-gcc-d-1_35_shared/fileiter.o gcc/boost_regex-gcc-d-1_35_shared/icu.o gcc/boost_regex-gcc-d-1_35_shared/instances.o gcc/boost_regex-gcc-d-1_35_shared/posix_api.o gcc/boost_regex-gcc-d-1_35_shared/regex.o gcc/boost_regex-gcc-d-1_35_shared/regex_debug.o gcc/boost_regex-gcc-d-1_35_shared/regex_raw_buffer.o gcc/boost_regex-gcc-d-1_35_shared/regex_traits_defaults.o gcc/boost_regex-gcc-d-1_35_shared/static_mutex.o gcc/boost_regex-gcc-d-1_35_shared/usinstances.o gcc/boost_regex-gcc-d-1_35_shared/w32_regex_traits.o gcc/boost_regex-gcc-d-1_35_shared/wc_regex_traits.o gcc/boost_regex-gcc-d-1_35_shared/wide_posix_api.o gcc/boost_regex-gcc-d-1_35_shared/winstances.o $(ICU_LIBS) $(LIBS) +./gcc/libboost_regex-gcc-d-1_37.so : gcc/boost_regex-gcc-d-1_37_shared/c_regex_traits.o gcc/boost_regex-gcc-d-1_37_shared/cpp_regex_traits.o gcc/boost_regex-gcc-d-1_37_shared/cregex.o gcc/boost_regex-gcc-d-1_37_shared/fileiter.o gcc/boost_regex-gcc-d-1_37_shared/icu.o gcc/boost_regex-gcc-d-1_37_shared/instances.o gcc/boost_regex-gcc-d-1_37_shared/posix_api.o gcc/boost_regex-gcc-d-1_37_shared/regex.o gcc/boost_regex-gcc-d-1_37_shared/regex_debug.o gcc/boost_regex-gcc-d-1_37_shared/regex_raw_buffer.o gcc/boost_regex-gcc-d-1_37_shared/regex_traits_defaults.o gcc/boost_regex-gcc-d-1_37_shared/static_mutex.o gcc/boost_regex-gcc-d-1_37_shared/usinstances.o gcc/boost_regex-gcc-d-1_37_shared/w32_regex_traits.o gcc/boost_regex-gcc-d-1_37_shared/wc_regex_traits.o gcc/boost_regex-gcc-d-1_37_shared/wide_posix_api.o gcc/boost_regex-gcc-d-1_37_shared/winstances.o + $(LINKER) -o gcc/libboost_regex-gcc-d-1_37.so $(LDFLAGS) $(ICU_LDFLAGS) gcc/boost_regex-gcc-d-1_37_shared/c_regex_traits.o gcc/boost_regex-gcc-d-1_37_shared/cpp_regex_traits.o gcc/boost_regex-gcc-d-1_37_shared/cregex.o gcc/boost_regex-gcc-d-1_37_shared/fileiter.o gcc/boost_regex-gcc-d-1_37_shared/icu.o gcc/boost_regex-gcc-d-1_37_shared/instances.o gcc/boost_regex-gcc-d-1_37_shared/posix_api.o gcc/boost_regex-gcc-d-1_37_shared/regex.o gcc/boost_regex-gcc-d-1_37_shared/regex_debug.o gcc/boost_regex-gcc-d-1_37_shared/regex_raw_buffer.o gcc/boost_regex-gcc-d-1_37_shared/regex_traits_defaults.o gcc/boost_regex-gcc-d-1_37_shared/static_mutex.o gcc/boost_regex-gcc-d-1_37_shared/usinstances.o gcc/boost_regex-gcc-d-1_37_shared/w32_regex_traits.o gcc/boost_regex-gcc-d-1_37_shared/wc_regex_traits.o gcc/boost_regex-gcc-d-1_37_shared/wide_posix_api.o gcc/boost_regex-gcc-d-1_37_shared/winstances.o $(ICU_LIBS) $(LIBS) diff --git a/build/gcc.mak b/build/gcc.mak index 715a02ca..20075b06 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_35 ./gcc/libboost_regex-gcc-1_35.a gcc gcc/boost_regex-gcc-d-1_35 ./gcc/libboost_regex-gcc-d-1_35.a +all : gcc gcc gcc/boost_regex-gcc-1_37 ./gcc/libboost_regex-gcc-1_37.a gcc gcc/boost_regex-gcc-d-1_37 ./gcc/libboost_regex-gcc-d-1_37.a gcc : mkdir -p gcc -clean : boost_regex-gcc-1_35_clean boost_regex-gcc-d-1_35_clean +clean : boost_regex-gcc-1_37_clean boost_regex-gcc-d-1_37_clean install : all @@ -60,134 +60,134 @@ install : all ######################################################## # -# section for libboost_regex-gcc-1_35.a +# section for libboost_regex-gcc-1_37.a # ######################################################## -gcc/boost_regex-gcc-1_35/c_regex_traits.o: ../src/c_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_35/c_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/c_regex_traits.cpp +gcc/boost_regex-gcc-1_37/c_regex_traits.o: ../src/c_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37/c_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/c_regex_traits.cpp -gcc/boost_regex-gcc-1_35/cpp_regex_traits.o: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_35/cpp_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cpp_regex_traits.cpp +gcc/boost_regex-gcc-1_37/cpp_regex_traits.o: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37/cpp_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cpp_regex_traits.cpp -gcc/boost_regex-gcc-1_35/cregex.o: ../src/cregex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_35/cregex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cregex.cpp +gcc/boost_regex-gcc-1_37/cregex.o: ../src/cregex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37/cregex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cregex.cpp -gcc/boost_regex-gcc-1_35/fileiter.o: ../src/fileiter.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_35/fileiter.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/fileiter.cpp +gcc/boost_regex-gcc-1_37/fileiter.o: ../src/fileiter.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37/fileiter.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/fileiter.cpp -gcc/boost_regex-gcc-1_35/icu.o: ../src/icu.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_35/icu.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/icu.cpp +gcc/boost_regex-gcc-1_37/icu.o: ../src/icu.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37/icu.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/icu.cpp -gcc/boost_regex-gcc-1_35/instances.o: ../src/instances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_35/instances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/instances.cpp +gcc/boost_regex-gcc-1_37/instances.o: ../src/instances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37/instances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/instances.cpp -gcc/boost_regex-gcc-1_35/posix_api.o: ../src/posix_api.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_35/posix_api.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/posix_api.cpp +gcc/boost_regex-gcc-1_37/posix_api.o: ../src/posix_api.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37/posix_api.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/posix_api.cpp -gcc/boost_regex-gcc-1_35/regex.o: ../src/regex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_35/regex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex.cpp +gcc/boost_regex-gcc-1_37/regex.o: ../src/regex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37/regex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex.cpp -gcc/boost_regex-gcc-1_35/regex_debug.o: ../src/regex_debug.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_35/regex_debug.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_debug.cpp +gcc/boost_regex-gcc-1_37/regex_debug.o: ../src/regex_debug.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37/regex_debug.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_debug.cpp -gcc/boost_regex-gcc-1_35/regex_raw_buffer.o: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_35/regex_raw_buffer.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_raw_buffer.cpp +gcc/boost_regex-gcc-1_37/regex_raw_buffer.o: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37/regex_raw_buffer.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_raw_buffer.cpp -gcc/boost_regex-gcc-1_35/regex_traits_defaults.o: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_35/regex_traits_defaults.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_traits_defaults.cpp +gcc/boost_regex-gcc-1_37/regex_traits_defaults.o: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37/regex_traits_defaults.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_traits_defaults.cpp -gcc/boost_regex-gcc-1_35/static_mutex.o: ../src/static_mutex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_35/static_mutex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/static_mutex.cpp +gcc/boost_regex-gcc-1_37/static_mutex.o: ../src/static_mutex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37/static_mutex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/static_mutex.cpp -gcc/boost_regex-gcc-1_35/usinstances.o: ../src/usinstances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_35/usinstances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/usinstances.cpp +gcc/boost_regex-gcc-1_37/usinstances.o: ../src/usinstances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37/usinstances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/usinstances.cpp -gcc/boost_regex-gcc-1_35/w32_regex_traits.o: ../src/w32_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_35/w32_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/w32_regex_traits.cpp +gcc/boost_regex-gcc-1_37/w32_regex_traits.o: ../src/w32_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37/w32_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/w32_regex_traits.cpp -gcc/boost_regex-gcc-1_35/wc_regex_traits.o: ../src/wc_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_35/wc_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wc_regex_traits.cpp +gcc/boost_regex-gcc-1_37/wc_regex_traits.o: ../src/wc_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37/wc_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wc_regex_traits.cpp -gcc/boost_regex-gcc-1_35/wide_posix_api.o: ../src/wide_posix_api.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_35/wide_posix_api.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wide_posix_api.cpp +gcc/boost_regex-gcc-1_37/wide_posix_api.o: ../src/wide_posix_api.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37/wide_posix_api.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wide_posix_api.cpp -gcc/boost_regex-gcc-1_35/winstances.o: ../src/winstances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_35/winstances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/winstances.cpp +gcc/boost_regex-gcc-1_37/winstances.o: ../src/winstances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37/winstances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/winstances.cpp -gcc/boost_regex-gcc-1_35 : - mkdir -p gcc/boost_regex-gcc-1_35 +gcc/boost_regex-gcc-1_37 : + mkdir -p gcc/boost_regex-gcc-1_37 -boost_regex-gcc-1_35_clean : - rm -f gcc/boost_regex-gcc-1_35/*.o +boost_regex-gcc-1_37_clean : + rm -f gcc/boost_regex-gcc-1_37/*.o -./gcc/libboost_regex-gcc-1_35.a : gcc/boost_regex-gcc-1_35/c_regex_traits.o gcc/boost_regex-gcc-1_35/cpp_regex_traits.o gcc/boost_regex-gcc-1_35/cregex.o gcc/boost_regex-gcc-1_35/fileiter.o gcc/boost_regex-gcc-1_35/icu.o gcc/boost_regex-gcc-1_35/instances.o gcc/boost_regex-gcc-1_35/posix_api.o gcc/boost_regex-gcc-1_35/regex.o gcc/boost_regex-gcc-1_35/regex_debug.o gcc/boost_regex-gcc-1_35/regex_raw_buffer.o gcc/boost_regex-gcc-1_35/regex_traits_defaults.o gcc/boost_regex-gcc-1_35/static_mutex.o gcc/boost_regex-gcc-1_35/usinstances.o gcc/boost_regex-gcc-1_35/w32_regex_traits.o gcc/boost_regex-gcc-1_35/wc_regex_traits.o gcc/boost_regex-gcc-1_35/wide_posix_api.o gcc/boost_regex-gcc-1_35/winstances.o - ar -r gcc/libboost_regex-gcc-1_35.a gcc/boost_regex-gcc-1_35/c_regex_traits.o gcc/boost_regex-gcc-1_35/cpp_regex_traits.o gcc/boost_regex-gcc-1_35/cregex.o gcc/boost_regex-gcc-1_35/fileiter.o gcc/boost_regex-gcc-1_35/icu.o gcc/boost_regex-gcc-1_35/instances.o gcc/boost_regex-gcc-1_35/posix_api.o gcc/boost_regex-gcc-1_35/regex.o gcc/boost_regex-gcc-1_35/regex_debug.o gcc/boost_regex-gcc-1_35/regex_raw_buffer.o gcc/boost_regex-gcc-1_35/regex_traits_defaults.o gcc/boost_regex-gcc-1_35/static_mutex.o gcc/boost_regex-gcc-1_35/usinstances.o gcc/boost_regex-gcc-1_35/w32_regex_traits.o gcc/boost_regex-gcc-1_35/wc_regex_traits.o gcc/boost_regex-gcc-1_35/wide_posix_api.o gcc/boost_regex-gcc-1_35/winstances.o - -ar -s gcc/libboost_regex-gcc-1_35.a +./gcc/libboost_regex-gcc-1_37.a : gcc/boost_regex-gcc-1_37/c_regex_traits.o gcc/boost_regex-gcc-1_37/cpp_regex_traits.o gcc/boost_regex-gcc-1_37/cregex.o gcc/boost_regex-gcc-1_37/fileiter.o gcc/boost_regex-gcc-1_37/icu.o gcc/boost_regex-gcc-1_37/instances.o gcc/boost_regex-gcc-1_37/posix_api.o gcc/boost_regex-gcc-1_37/regex.o gcc/boost_regex-gcc-1_37/regex_debug.o gcc/boost_regex-gcc-1_37/regex_raw_buffer.o gcc/boost_regex-gcc-1_37/regex_traits_defaults.o gcc/boost_regex-gcc-1_37/static_mutex.o gcc/boost_regex-gcc-1_37/usinstances.o gcc/boost_regex-gcc-1_37/w32_regex_traits.o gcc/boost_regex-gcc-1_37/wc_regex_traits.o gcc/boost_regex-gcc-1_37/wide_posix_api.o gcc/boost_regex-gcc-1_37/winstances.o + ar -r gcc/libboost_regex-gcc-1_37.a gcc/boost_regex-gcc-1_37/c_regex_traits.o gcc/boost_regex-gcc-1_37/cpp_regex_traits.o gcc/boost_regex-gcc-1_37/cregex.o gcc/boost_regex-gcc-1_37/fileiter.o gcc/boost_regex-gcc-1_37/icu.o gcc/boost_regex-gcc-1_37/instances.o gcc/boost_regex-gcc-1_37/posix_api.o gcc/boost_regex-gcc-1_37/regex.o gcc/boost_regex-gcc-1_37/regex_debug.o gcc/boost_regex-gcc-1_37/regex_raw_buffer.o gcc/boost_regex-gcc-1_37/regex_traits_defaults.o gcc/boost_regex-gcc-1_37/static_mutex.o gcc/boost_regex-gcc-1_37/usinstances.o gcc/boost_regex-gcc-1_37/w32_regex_traits.o gcc/boost_regex-gcc-1_37/wc_regex_traits.o gcc/boost_regex-gcc-1_37/wide_posix_api.o gcc/boost_regex-gcc-1_37/winstances.o + -ar -s gcc/libboost_regex-gcc-1_37.a ######################################################## # -# section for libboost_regex-gcc-d-1_35.a +# section for libboost_regex-gcc-d-1_37.a # ######################################################## -gcc/boost_regex-gcc-d-1_35/c_regex_traits.o: ../src/c_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_35/c_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/c_regex_traits.cpp +gcc/boost_regex-gcc-d-1_37/c_regex_traits.o: ../src/c_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37/c_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/c_regex_traits.cpp -gcc/boost_regex-gcc-d-1_35/cpp_regex_traits.o: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_35/cpp_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cpp_regex_traits.cpp +gcc/boost_regex-gcc-d-1_37/cpp_regex_traits.o: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37/cpp_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cpp_regex_traits.cpp -gcc/boost_regex-gcc-d-1_35/cregex.o: ../src/cregex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_35/cregex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cregex.cpp +gcc/boost_regex-gcc-d-1_37/cregex.o: ../src/cregex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37/cregex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cregex.cpp -gcc/boost_regex-gcc-d-1_35/fileiter.o: ../src/fileiter.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_35/fileiter.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/fileiter.cpp +gcc/boost_regex-gcc-d-1_37/fileiter.o: ../src/fileiter.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37/fileiter.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/fileiter.cpp -gcc/boost_regex-gcc-d-1_35/icu.o: ../src/icu.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_35/icu.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/icu.cpp +gcc/boost_regex-gcc-d-1_37/icu.o: ../src/icu.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37/icu.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/icu.cpp -gcc/boost_regex-gcc-d-1_35/instances.o: ../src/instances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_35/instances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/instances.cpp +gcc/boost_regex-gcc-d-1_37/instances.o: ../src/instances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37/instances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/instances.cpp -gcc/boost_regex-gcc-d-1_35/posix_api.o: ../src/posix_api.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_35/posix_api.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/posix_api.cpp +gcc/boost_regex-gcc-d-1_37/posix_api.o: ../src/posix_api.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37/posix_api.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/posix_api.cpp -gcc/boost_regex-gcc-d-1_35/regex.o: ../src/regex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_35/regex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex.cpp +gcc/boost_regex-gcc-d-1_37/regex.o: ../src/regex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37/regex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex.cpp -gcc/boost_regex-gcc-d-1_35/regex_debug.o: ../src/regex_debug.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_35/regex_debug.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_debug.cpp +gcc/boost_regex-gcc-d-1_37/regex_debug.o: ../src/regex_debug.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37/regex_debug.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_debug.cpp -gcc/boost_regex-gcc-d-1_35/regex_raw_buffer.o: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_35/regex_raw_buffer.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_raw_buffer.cpp +gcc/boost_regex-gcc-d-1_37/regex_raw_buffer.o: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37/regex_raw_buffer.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_raw_buffer.cpp -gcc/boost_regex-gcc-d-1_35/regex_traits_defaults.o: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_35/regex_traits_defaults.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_traits_defaults.cpp +gcc/boost_regex-gcc-d-1_37/regex_traits_defaults.o: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37/regex_traits_defaults.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_traits_defaults.cpp -gcc/boost_regex-gcc-d-1_35/static_mutex.o: ../src/static_mutex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_35/static_mutex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/static_mutex.cpp +gcc/boost_regex-gcc-d-1_37/static_mutex.o: ../src/static_mutex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37/static_mutex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/static_mutex.cpp -gcc/boost_regex-gcc-d-1_35/usinstances.o: ../src/usinstances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_35/usinstances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/usinstances.cpp +gcc/boost_regex-gcc-d-1_37/usinstances.o: ../src/usinstances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37/usinstances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/usinstances.cpp -gcc/boost_regex-gcc-d-1_35/w32_regex_traits.o: ../src/w32_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_35/w32_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/w32_regex_traits.cpp +gcc/boost_regex-gcc-d-1_37/w32_regex_traits.o: ../src/w32_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37/w32_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/w32_regex_traits.cpp -gcc/boost_regex-gcc-d-1_35/wc_regex_traits.o: ../src/wc_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_35/wc_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wc_regex_traits.cpp +gcc/boost_regex-gcc-d-1_37/wc_regex_traits.o: ../src/wc_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37/wc_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wc_regex_traits.cpp -gcc/boost_regex-gcc-d-1_35/wide_posix_api.o: ../src/wide_posix_api.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_35/wide_posix_api.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wide_posix_api.cpp +gcc/boost_regex-gcc-d-1_37/wide_posix_api.o: ../src/wide_posix_api.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37/wide_posix_api.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wide_posix_api.cpp -gcc/boost_regex-gcc-d-1_35/winstances.o: ../src/winstances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_35/winstances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/winstances.cpp +gcc/boost_regex-gcc-d-1_37/winstances.o: ../src/winstances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37/winstances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/winstances.cpp -gcc/boost_regex-gcc-d-1_35 : - mkdir -p gcc/boost_regex-gcc-d-1_35 +gcc/boost_regex-gcc-d-1_37 : + mkdir -p gcc/boost_regex-gcc-d-1_37 -boost_regex-gcc-d-1_35_clean : - rm -f gcc/boost_regex-gcc-d-1_35/*.o +boost_regex-gcc-d-1_37_clean : + rm -f gcc/boost_regex-gcc-d-1_37/*.o -./gcc/libboost_regex-gcc-d-1_35.a : gcc/boost_regex-gcc-d-1_35/c_regex_traits.o gcc/boost_regex-gcc-d-1_35/cpp_regex_traits.o gcc/boost_regex-gcc-d-1_35/cregex.o gcc/boost_regex-gcc-d-1_35/fileiter.o gcc/boost_regex-gcc-d-1_35/icu.o gcc/boost_regex-gcc-d-1_35/instances.o gcc/boost_regex-gcc-d-1_35/posix_api.o gcc/boost_regex-gcc-d-1_35/regex.o gcc/boost_regex-gcc-d-1_35/regex_debug.o gcc/boost_regex-gcc-d-1_35/regex_raw_buffer.o gcc/boost_regex-gcc-d-1_35/regex_traits_defaults.o gcc/boost_regex-gcc-d-1_35/static_mutex.o gcc/boost_regex-gcc-d-1_35/usinstances.o gcc/boost_regex-gcc-d-1_35/w32_regex_traits.o gcc/boost_regex-gcc-d-1_35/wc_regex_traits.o gcc/boost_regex-gcc-d-1_35/wide_posix_api.o gcc/boost_regex-gcc-d-1_35/winstances.o - ar -r gcc/libboost_regex-gcc-d-1_35.a gcc/boost_regex-gcc-d-1_35/c_regex_traits.o gcc/boost_regex-gcc-d-1_35/cpp_regex_traits.o gcc/boost_regex-gcc-d-1_35/cregex.o gcc/boost_regex-gcc-d-1_35/fileiter.o gcc/boost_regex-gcc-d-1_35/icu.o gcc/boost_regex-gcc-d-1_35/instances.o gcc/boost_regex-gcc-d-1_35/posix_api.o gcc/boost_regex-gcc-d-1_35/regex.o gcc/boost_regex-gcc-d-1_35/regex_debug.o gcc/boost_regex-gcc-d-1_35/regex_raw_buffer.o gcc/boost_regex-gcc-d-1_35/regex_traits_defaults.o gcc/boost_regex-gcc-d-1_35/static_mutex.o gcc/boost_regex-gcc-d-1_35/usinstances.o gcc/boost_regex-gcc-d-1_35/w32_regex_traits.o gcc/boost_regex-gcc-d-1_35/wc_regex_traits.o gcc/boost_regex-gcc-d-1_35/wide_posix_api.o gcc/boost_regex-gcc-d-1_35/winstances.o - -ar -s gcc/libboost_regex-gcc-d-1_35.a +./gcc/libboost_regex-gcc-d-1_37.a : gcc/boost_regex-gcc-d-1_37/c_regex_traits.o gcc/boost_regex-gcc-d-1_37/cpp_regex_traits.o gcc/boost_regex-gcc-d-1_37/cregex.o gcc/boost_regex-gcc-d-1_37/fileiter.o gcc/boost_regex-gcc-d-1_37/icu.o gcc/boost_regex-gcc-d-1_37/instances.o gcc/boost_regex-gcc-d-1_37/posix_api.o gcc/boost_regex-gcc-d-1_37/regex.o gcc/boost_regex-gcc-d-1_37/regex_debug.o gcc/boost_regex-gcc-d-1_37/regex_raw_buffer.o gcc/boost_regex-gcc-d-1_37/regex_traits_defaults.o gcc/boost_regex-gcc-d-1_37/static_mutex.o gcc/boost_regex-gcc-d-1_37/usinstances.o gcc/boost_regex-gcc-d-1_37/w32_regex_traits.o gcc/boost_regex-gcc-d-1_37/wc_regex_traits.o gcc/boost_regex-gcc-d-1_37/wide_posix_api.o gcc/boost_regex-gcc-d-1_37/winstances.o + ar -r gcc/libboost_regex-gcc-d-1_37.a gcc/boost_regex-gcc-d-1_37/c_regex_traits.o gcc/boost_regex-gcc-d-1_37/cpp_regex_traits.o gcc/boost_regex-gcc-d-1_37/cregex.o gcc/boost_regex-gcc-d-1_37/fileiter.o gcc/boost_regex-gcc-d-1_37/icu.o gcc/boost_regex-gcc-d-1_37/instances.o gcc/boost_regex-gcc-d-1_37/posix_api.o gcc/boost_regex-gcc-d-1_37/regex.o gcc/boost_regex-gcc-d-1_37/regex_debug.o gcc/boost_regex-gcc-d-1_37/regex_raw_buffer.o gcc/boost_regex-gcc-d-1_37/regex_traits_defaults.o gcc/boost_regex-gcc-d-1_37/static_mutex.o gcc/boost_regex-gcc-d-1_37/usinstances.o gcc/boost_regex-gcc-d-1_37/w32_regex_traits.o gcc/boost_regex-gcc-d-1_37/wc_regex_traits.o gcc/boost_regex-gcc-d-1_37/wide_posix_api.o gcc/boost_regex-gcc-d-1_37/winstances.o + -ar -s gcc/libboost_regex-gcc-d-1_37.a diff --git a/build/vc6-stlport.mak b/build/vc6-stlport.mak index 7c37ac58..3d0c10bc 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_35_dir ./vc6-stlport/libboost_regex-vc6-mt-sp-1_35.lib boost_regex-vc6-mt-p-1_35_dir ./vc6-stlport/boost_regex-vc6-mt-p-1_35.lib libboost_regex-vc6-mt-p-1_35_dir ./vc6-stlport/libboost_regex-vc6-mt-p-1_35.lib boost_regex-vc6-mt-gdp-1_35_dir ./vc6-stlport/boost_regex-vc6-mt-gdp-1_35.lib libboost_regex-vc6-mt-sgdp-1_35_dir ./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35.lib libboost_regex-vc6-mt-gdp-1_35_dir ./vc6-stlport/libboost_regex-vc6-mt-gdp-1_35.lib +all : main_dir libboost_regex-vc6-mt-sp-1_37_dir ./vc6-stlport/libboost_regex-vc6-mt-sp-1_37.lib boost_regex-vc6-mt-p-1_37_dir ./vc6-stlport/boost_regex-vc6-mt-p-1_37.lib libboost_regex-vc6-mt-p-1_37_dir ./vc6-stlport/libboost_regex-vc6-mt-p-1_37.lib boost_regex-vc6-mt-gdp-1_37_dir ./vc6-stlport/boost_regex-vc6-mt-gdp-1_37.lib libboost_regex-vc6-mt-sgdp-1_37_dir ./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37.lib libboost_regex-vc6-mt-gdp-1_37_dir ./vc6-stlport/libboost_regex-vc6-mt-gdp-1_37.lib -clean : libboost_regex-vc6-mt-sp-1_35_clean boost_regex-vc6-mt-p-1_35_clean libboost_regex-vc6-mt-p-1_35_clean boost_regex-vc6-mt-gdp-1_35_clean libboost_regex-vc6-mt-sgdp-1_35_clean libboost_regex-vc6-mt-gdp-1_35_clean +clean : libboost_regex-vc6-mt-sp-1_37_clean boost_regex-vc6-mt-p-1_37_clean libboost_regex-vc6-mt-p-1_37_clean boost_regex-vc6-mt-gdp-1_37_clean libboost_regex-vc6-mt-sgdp-1_37_clean libboost_regex-vc6-mt-gdp-1_37_clean install : stlport_check all - copy vc6-stlport\libboost_regex-vc6-mt-sp-1_35.lib "$(MSVCDIR)\lib" - copy vc6-stlport\boost_regex-vc6-mt-p-1_35.lib "$(MSVCDIR)\lib" - copy vc6-stlport\boost_regex-vc6-mt-p-1_35.dll "$(MSVCDIR)\bin" - copy vc6-stlport\libboost_regex-vc6-mt-p-1_35.lib "$(MSVCDIR)\lib" - copy vc6-stlport\boost_regex-vc6-mt-gdp-1_35.lib "$(MSVCDIR)\lib" - copy vc6-stlport\boost_regex-vc6-mt-gdp-1_35.dll "$(MSVCDIR)\bin" - copy vc6-stlport\boost_regex-vc6-mt-gdp-1_35.pdb "$(MSVCDIR)\lib" - copy vc6-stlport\libboost_regex-vc6-mt-sgdp-1_35.lib "$(MSVCDIR)\lib" - copy vc6-stlport\libboost_regex-vc6-mt-sgdp-1_35.pdb "$(MSVCDIR)\lib" - copy vc6-stlport\libboost_regex-vc6-mt-gdp-1_35.lib "$(MSVCDIR)\lib" - copy vc6-stlport\libboost_regex-vc6-mt-gdp-1_35.pdb "$(MSVCDIR)\lib" + copy vc6-stlport\libboost_regex-vc6-mt-sp-1_37.lib "$(MSVCDIR)\lib" + copy vc6-stlport\boost_regex-vc6-mt-p-1_37.lib "$(MSVCDIR)\lib" + copy vc6-stlport\boost_regex-vc6-mt-p-1_37.dll "$(MSVCDIR)\bin" + copy vc6-stlport\libboost_regex-vc6-mt-p-1_37.lib "$(MSVCDIR)\lib" + copy vc6-stlport\boost_regex-vc6-mt-gdp-1_37.lib "$(MSVCDIR)\lib" + copy vc6-stlport\boost_regex-vc6-mt-gdp-1_37.dll "$(MSVCDIR)\bin" + copy vc6-stlport\boost_regex-vc6-mt-gdp-1_37.pdb "$(MSVCDIR)\lib" + copy vc6-stlport\libboost_regex-vc6-mt-sgdp-1_37.lib "$(MSVCDIR)\lib" + copy vc6-stlport\libboost_regex-vc6-mt-sgdp-1_37.pdb "$(MSVCDIR)\lib" + copy vc6-stlport\libboost_regex-vc6-mt-gdp-1_37.lib "$(MSVCDIR)\lib" + copy vc6-stlport\libboost_regex-vc6-mt-gdp-1_37.pdb "$(MSVCDIR)\lib" main_dir : @if not exist "vc6-stlport\$(NULL)" mkdir vc6-stlport @@ -88,409 +88,410 @@ stlport_check : "$(STLPORT_PATH)\stlport\string" ######################################################## # -# section for libboost_regex-vc6-mt-sp-1_35.lib +# section for libboost_regex-vc6-mt-sp-1_37.lib # ######################################################## -vc6-stlport/libboost_regex-vc6-mt-sp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_35.pdb ../src/c_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_37.pdb ../src/c_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_35.pdb ../src/cpp_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_37.pdb ../src/cpp_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_35.pdb ../src/cregex.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_37.pdb ../src/cregex.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_35.pdb ../src/fileiter.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_37.pdb ../src/fileiter.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_35.pdb ../src/icu.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_37.pdb ../src/icu.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_35.pdb ../src/instances.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_37.pdb ../src/instances.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_35.pdb ../src/posix_api.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_37.pdb ../src/posix_api.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_35.pdb ../src/regex.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_37.pdb ../src/regex.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_35.pdb ../src/regex_debug.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_37.pdb ../src/regex_debug.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_35.pdb ../src/regex_raw_buffer.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_37.pdb ../src/regex_raw_buffer.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_35.pdb ../src/regex_traits_defaults.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_37.pdb ../src/regex_traits_defaults.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_35.pdb ../src/static_mutex.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_37.pdb ../src/static_mutex.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_35.pdb ../src/usinstances.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_37.pdb ../src/usinstances.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_35.pdb ../src/w32_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_37.pdb ../src/w32_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_35.pdb ../src/wc_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_37.pdb ../src/wc_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_35.pdb ../src/wide_posix_api.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_37.pdb ../src/wide_posix_api.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_35.pdb ../src/winstances.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_37.pdb ../src/winstances.cpp -libboost_regex-vc6-mt-sp-1_35_dir : - @if not exist "vc6-stlport\libboost_regex-vc6-mt-sp-1_35\$(NULL)" mkdir vc6-stlport\libboost_regex-vc6-mt-sp-1_35 +libboost_regex-vc6-mt-sp-1_37_dir : + @if not exist "vc6-stlport\libboost_regex-vc6-mt-sp-1_37\$(NULL)" mkdir vc6-stlport\libboost_regex-vc6-mt-sp-1_37 -libboost_regex-vc6-mt-sp-1_35_clean : - del vc6-stlport\libboost_regex-vc6-mt-sp-1_35\*.obj - del vc6-stlport\libboost_regex-vc6-mt-sp-1_35\*.idb - del vc6-stlport\libboost_regex-vc6-mt-sp-1_35\*.exp - del vc6-stlport\libboost_regex-vc6-mt-sp-1_35\*.pch +libboost_regex-vc6-mt-sp-1_37_clean : + del vc6-stlport\libboost_regex-vc6-mt-sp-1_37\*.obj + del vc6-stlport\libboost_regex-vc6-mt-sp-1_37\*.idb + del vc6-stlport\libboost_regex-vc6-mt-sp-1_37\*.exp + del vc6-stlport\libboost_regex-vc6-mt-sp-1_37\*.pch -./vc6-stlport/libboost_regex-vc6-mt-sp-1_35.lib : vc6-stlport/libboost_regex-vc6-mt-sp-1_35/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_35/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_35/cregex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_35/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_35/icu.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_35/instances.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_35/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_35/regex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_35/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_35/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_35/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_35/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_35/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_35/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_35/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_35/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_35/winstances.obj - link -lib /nologo /out:vc6-stlport/libboost_regex-vc6-mt-sp-1_35.lib $(XSFLAGS) vc6-stlport/libboost_regex-vc6-mt-sp-1_35/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_35/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_35/cregex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_35/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_35/icu.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_35/instances.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_35/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_35/regex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_35/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_35/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_35/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_35/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_35/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_35/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_35/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_35/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_35/winstances.obj +./vc6-stlport/libboost_regex-vc6-mt-sp-1_37.lib : vc6-stlport/libboost_regex-vc6-mt-sp-1_37/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/cregex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/icu.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/instances.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/regex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/winstances.obj + link -lib /nologo /out:vc6-stlport/libboost_regex-vc6-mt-sp-1_37.lib $(XSFLAGS) vc6-stlport/libboost_regex-vc6-mt-sp-1_37/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/cregex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/icu.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/instances.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/regex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/winstances.obj ######################################################## # -# section for boost_regex-vc6-mt-p-1_35.lib +# section for boost_regex-vc6-mt-p-1_37.lib # ######################################################## -vc6-stlport/boost_regex-vc6-mt-p-1_35/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_35/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_35.pdb ../src/c_regex_traits.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_37.pdb ../src/c_regex_traits.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_35/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_35/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_35.pdb ../src/cpp_regex_traits.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_37.pdb ../src/cpp_regex_traits.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_35/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_35/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_35.pdb ../src/cregex.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_37.pdb ../src/cregex.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_35/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_35/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_35.pdb ../src/fileiter.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_37.pdb ../src/fileiter.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_35/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_35/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_35.pdb ../src/icu.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_37.pdb ../src/icu.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_35/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_35/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_35.pdb ../src/instances.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_37.pdb ../src/instances.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_35/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_35/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_35.pdb ../src/posix_api.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_37.pdb ../src/posix_api.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_35/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_35/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_35.pdb ../src/regex.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_37.pdb ../src/regex.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_35/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_35/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_35.pdb ../src/regex_debug.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_37.pdb ../src/regex_debug.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_35/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_35/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_35.pdb ../src/regex_raw_buffer.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_37.pdb ../src/regex_raw_buffer.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_35/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_35/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_35.pdb ../src/regex_traits_defaults.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_37.pdb ../src/regex_traits_defaults.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_35/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_35/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_35.pdb ../src/static_mutex.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_37.pdb ../src/static_mutex.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_35/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_35/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_35.pdb ../src/usinstances.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_37.pdb ../src/usinstances.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_35/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_35/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_35.pdb ../src/w32_regex_traits.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_37.pdb ../src/w32_regex_traits.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_35/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_35/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_35.pdb ../src/wc_regex_traits.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_37.pdb ../src/wc_regex_traits.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_35/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_35/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_35.pdb ../src/wide_posix_api.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_37.pdb ../src/wide_posix_api.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_35/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_35/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_35.pdb ../src/winstances.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_37.pdb ../src/winstances.cpp -boost_regex-vc6-mt-p-1_35_dir : - @if not exist "vc6-stlport\boost_regex-vc6-mt-p-1_35\$(NULL)" mkdir vc6-stlport\boost_regex-vc6-mt-p-1_35 +boost_regex-vc6-mt-p-1_37_dir : + @if not exist "vc6-stlport\boost_regex-vc6-mt-p-1_37\$(NULL)" mkdir vc6-stlport\boost_regex-vc6-mt-p-1_37 -boost_regex-vc6-mt-p-1_35_clean : - del vc6-stlport\boost_regex-vc6-mt-p-1_35\*.obj - del vc6-stlport\boost_regex-vc6-mt-p-1_35\*.idb - del vc6-stlport\boost_regex-vc6-mt-p-1_35\*.exp - del vc6-stlport\boost_regex-vc6-mt-p-1_35\*.pch +boost_regex-vc6-mt-p-1_37_clean : + del vc6-stlport\boost_regex-vc6-mt-p-1_37\*.obj + del vc6-stlport\boost_regex-vc6-mt-p-1_37\*.idb + del vc6-stlport\boost_regex-vc6-mt-p-1_37\*.exp + del vc6-stlport\boost_regex-vc6-mt-p-1_37\*.pch -./vc6-stlport/boost_regex-vc6-mt-p-1_35.lib : vc6-stlport/boost_regex-vc6-mt-p-1_35/c_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_35/cpp_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_35/cregex.obj vc6-stlport/boost_regex-vc6-mt-p-1_35/fileiter.obj vc6-stlport/boost_regex-vc6-mt-p-1_35/icu.obj vc6-stlport/boost_regex-vc6-mt-p-1_35/instances.obj vc6-stlport/boost_regex-vc6-mt-p-1_35/posix_api.obj vc6-stlport/boost_regex-vc6-mt-p-1_35/regex.obj vc6-stlport/boost_regex-vc6-mt-p-1_35/regex_debug.obj vc6-stlport/boost_regex-vc6-mt-p-1_35/regex_raw_buffer.obj vc6-stlport/boost_regex-vc6-mt-p-1_35/regex_traits_defaults.obj vc6-stlport/boost_regex-vc6-mt-p-1_35/static_mutex.obj vc6-stlport/boost_regex-vc6-mt-p-1_35/usinstances.obj vc6-stlport/boost_regex-vc6-mt-p-1_35/w32_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_35/wc_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_35/wide_posix_api.obj vc6-stlport/boost_regex-vc6-mt-p-1_35/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_35.pdb" /debug /machine:I386 /out:"vc6-stlport/boost_regex-vc6-mt-p-1_35.dll" /implib:"vc6-stlport/boost_regex-vc6-mt-p-1_35.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc6-stlport/boost_regex-vc6-mt-p-1_35/c_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_35/cpp_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_35/cregex.obj vc6-stlport/boost_regex-vc6-mt-p-1_35/fileiter.obj vc6-stlport/boost_regex-vc6-mt-p-1_35/icu.obj vc6-stlport/boost_regex-vc6-mt-p-1_35/instances.obj vc6-stlport/boost_regex-vc6-mt-p-1_35/posix_api.obj vc6-stlport/boost_regex-vc6-mt-p-1_35/regex.obj vc6-stlport/boost_regex-vc6-mt-p-1_35/regex_debug.obj vc6-stlport/boost_regex-vc6-mt-p-1_35/regex_raw_buffer.obj vc6-stlport/boost_regex-vc6-mt-p-1_35/regex_traits_defaults.obj vc6-stlport/boost_regex-vc6-mt-p-1_35/static_mutex.obj vc6-stlport/boost_regex-vc6-mt-p-1_35/usinstances.obj vc6-stlport/boost_regex-vc6-mt-p-1_35/w32_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_35/wc_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_35/wide_posix_api.obj vc6-stlport/boost_regex-vc6-mt-p-1_35/winstances.obj +./vc6-stlport/boost_regex-vc6-mt-p-1_37.lib : vc6-stlport/boost_regex-vc6-mt-p-1_37/c_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/cpp_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/cregex.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/fileiter.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/icu.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/instances.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/posix_api.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/regex.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/regex_debug.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/regex_raw_buffer.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/regex_traits_defaults.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/static_mutex.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/usinstances.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/w32_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/wc_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/wide_posix_api.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/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_37.pdb" /debug /machine:I386 /out:"vc6-stlport/boost_regex-vc6-mt-p-1_37.dll" /implib:"vc6-stlport/boost_regex-vc6-mt-p-1_37.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc6-stlport/boost_regex-vc6-mt-p-1_37/c_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/cpp_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/cregex.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/fileiter.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/icu.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/instances.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/posix_api.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/regex.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/regex_debug.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/regex_raw_buffer.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/regex_traits_defaults.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/static_mutex.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/usinstances.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/w32_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/wc_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/wide_posix_api.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/winstances.obj ######################################################## # -# section for libboost_regex-vc6-mt-p-1_35.lib +# section for libboost_regex-vc6-mt-p-1_37.lib # ######################################################## -vc6-stlport/libboost_regex-vc6-mt-p-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_35.pdb ../src/c_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_37.pdb ../src/c_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_35.pdb ../src/cpp_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_37.pdb ../src/cpp_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_35.pdb ../src/cregex.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_37.pdb ../src/cregex.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_35.pdb ../src/fileiter.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_37.pdb ../src/fileiter.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_35.pdb ../src/icu.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_37.pdb ../src/icu.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_35.pdb ../src/instances.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_37.pdb ../src/instances.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_35.pdb ../src/posix_api.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_37.pdb ../src/posix_api.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_35.pdb ../src/regex.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_37.pdb ../src/regex.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_35.pdb ../src/regex_debug.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_37.pdb ../src/regex_debug.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_35.pdb ../src/regex_raw_buffer.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_37.pdb ../src/regex_raw_buffer.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_35.pdb ../src/regex_traits_defaults.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_37.pdb ../src/regex_traits_defaults.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_35.pdb ../src/static_mutex.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_37.pdb ../src/static_mutex.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_35.pdb ../src/usinstances.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_37.pdb ../src/usinstances.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_35.pdb ../src/w32_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_37.pdb ../src/w32_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_35.pdb ../src/wc_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_37.pdb ../src/wc_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_35.pdb ../src/wide_posix_api.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_37.pdb ../src/wide_posix_api.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_35.pdb ../src/winstances.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_37.pdb ../src/winstances.cpp -libboost_regex-vc6-mt-p-1_35_dir : - @if not exist "vc6-stlport\libboost_regex-vc6-mt-p-1_35\$(NULL)" mkdir vc6-stlport\libboost_regex-vc6-mt-p-1_35 +libboost_regex-vc6-mt-p-1_37_dir : + @if not exist "vc6-stlport\libboost_regex-vc6-mt-p-1_37\$(NULL)" mkdir vc6-stlport\libboost_regex-vc6-mt-p-1_37 -libboost_regex-vc6-mt-p-1_35_clean : - del vc6-stlport\libboost_regex-vc6-mt-p-1_35\*.obj - del vc6-stlport\libboost_regex-vc6-mt-p-1_35\*.idb - del vc6-stlport\libboost_regex-vc6-mt-p-1_35\*.exp - del vc6-stlport\libboost_regex-vc6-mt-p-1_35\*.pch +libboost_regex-vc6-mt-p-1_37_clean : + del vc6-stlport\libboost_regex-vc6-mt-p-1_37\*.obj + del vc6-stlport\libboost_regex-vc6-mt-p-1_37\*.idb + del vc6-stlport\libboost_regex-vc6-mt-p-1_37\*.exp + del vc6-stlport\libboost_regex-vc6-mt-p-1_37\*.pch -./vc6-stlport/libboost_regex-vc6-mt-p-1_35.lib : vc6-stlport/libboost_regex-vc6-mt-p-1_35/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_35/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_35/cregex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_35/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-p-1_35/icu.obj vc6-stlport/libboost_regex-vc6-mt-p-1_35/instances.obj vc6-stlport/libboost_regex-vc6-mt-p-1_35/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-p-1_35/regex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_35/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-p-1_35/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-p-1_35/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-p-1_35/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_35/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-p-1_35/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_35/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_35/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-p-1_35/winstances.obj - link -lib /nologo /out:vc6-stlport/libboost_regex-vc6-mt-p-1_35.lib $(XSFLAGS) vc6-stlport/libboost_regex-vc6-mt-p-1_35/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_35/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_35/cregex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_35/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-p-1_35/icu.obj vc6-stlport/libboost_regex-vc6-mt-p-1_35/instances.obj vc6-stlport/libboost_regex-vc6-mt-p-1_35/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-p-1_35/regex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_35/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-p-1_35/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-p-1_35/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-p-1_35/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_35/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-p-1_35/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_35/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_35/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-p-1_35/winstances.obj +./vc6-stlport/libboost_regex-vc6-mt-p-1_37.lib : vc6-stlport/libboost_regex-vc6-mt-p-1_37/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/cregex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/icu.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/instances.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/regex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/winstances.obj + link -lib /nologo /out:vc6-stlport/libboost_regex-vc6-mt-p-1_37.lib $(XSFLAGS) vc6-stlport/libboost_regex-vc6-mt-p-1_37/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/cregex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/icu.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/instances.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/regex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/winstances.obj ######################################################## # -# section for boost_regex-vc6-mt-gdp-1_35.lib +# section for boost_regex-vc6-mt-gdp-1_37.lib # ######################################################## -vc6-stlport/boost_regex-vc6-mt-gdp-1_35/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_35/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_35.pdb ../src/c_regex_traits.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_37.pdb ../src/c_regex_traits.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_35/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_35/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_35.pdb ../src/cpp_regex_traits.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_37.pdb ../src/cpp_regex_traits.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_35/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_35/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_35.pdb ../src/cregex.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_37.pdb ../src/cregex.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_35/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_35/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_35.pdb ../src/fileiter.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_37.pdb ../src/fileiter.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_35/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_35/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_35.pdb ../src/icu.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_37.pdb ../src/icu.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_35/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_35/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_35.pdb ../src/instances.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_37.pdb ../src/instances.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_35/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_35/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_35.pdb ../src/posix_api.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_37.pdb ../src/posix_api.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_35/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_35/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_35.pdb ../src/regex.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_37.pdb ../src/regex.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_35/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_35/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_35.pdb ../src/regex_debug.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_37.pdb ../src/regex_debug.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_35/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_35/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_35.pdb ../src/regex_raw_buffer.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_37.pdb ../src/regex_raw_buffer.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_35/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_35/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_35.pdb ../src/regex_traits_defaults.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_37.pdb ../src/regex_traits_defaults.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_35/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_35/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_35.pdb ../src/static_mutex.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_37.pdb ../src/static_mutex.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_35/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_35/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_35.pdb ../src/usinstances.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_37.pdb ../src/usinstances.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_35/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_35/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_35.pdb ../src/w32_regex_traits.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_37.pdb ../src/w32_regex_traits.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_35/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_35/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_35.pdb ../src/wc_regex_traits.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_37.pdb ../src/wc_regex_traits.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_35/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_35/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_35.pdb ../src/wide_posix_api.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_37.pdb ../src/wide_posix_api.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_35/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_35/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_35.pdb ../src/winstances.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_37.pdb ../src/winstances.cpp -boost_regex-vc6-mt-gdp-1_35_dir : - @if not exist "vc6-stlport\boost_regex-vc6-mt-gdp-1_35\$(NULL)" mkdir vc6-stlport\boost_regex-vc6-mt-gdp-1_35 +boost_regex-vc6-mt-gdp-1_37_dir : + @if not exist "vc6-stlport\boost_regex-vc6-mt-gdp-1_37\$(NULL)" mkdir vc6-stlport\boost_regex-vc6-mt-gdp-1_37 -boost_regex-vc6-mt-gdp-1_35_clean : - del vc6-stlport\boost_regex-vc6-mt-gdp-1_35\*.obj - del vc6-stlport\boost_regex-vc6-mt-gdp-1_35\*.idb - del vc6-stlport\boost_regex-vc6-mt-gdp-1_35\*.exp - del vc6-stlport\boost_regex-vc6-mt-gdp-1_35\*.pch +boost_regex-vc6-mt-gdp-1_37_clean : + del vc6-stlport\boost_regex-vc6-mt-gdp-1_37\*.obj + del vc6-stlport\boost_regex-vc6-mt-gdp-1_37\*.idb + del vc6-stlport\boost_regex-vc6-mt-gdp-1_37\*.exp + del vc6-stlport\boost_regex-vc6-mt-gdp-1_37\*.pch -./vc6-stlport/boost_regex-vc6-mt-gdp-1_35.lib : vc6-stlport/boost_regex-vc6-mt-gdp-1_35/c_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_35/cpp_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_35/cregex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_35/fileiter.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_35/icu.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_35/instances.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_35/posix_api.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_35/regex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_35/regex_debug.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_35/regex_raw_buffer.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_35/regex_traits_defaults.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_35/static_mutex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_35/usinstances.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_35/w32_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_35/wc_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_35/wide_posix_api.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_35/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_35.pdb" /debug /machine:I386 /out:"vc6-stlport/boost_regex-vc6-mt-gdp-1_35.dll" /implib:"vc6-stlport/boost_regex-vc6-mt-gdp-1_35.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc6-stlport/boost_regex-vc6-mt-gdp-1_35/c_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_35/cpp_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_35/cregex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_35/fileiter.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_35/icu.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_35/instances.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_35/posix_api.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_35/regex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_35/regex_debug.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_35/regex_raw_buffer.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_35/regex_traits_defaults.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_35/static_mutex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_35/usinstances.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_35/w32_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_35/wc_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_35/wide_posix_api.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_35/winstances.obj +./vc6-stlport/boost_regex-vc6-mt-gdp-1_37.lib : vc6-stlport/boost_regex-vc6-mt-gdp-1_37/c_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/cpp_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/cregex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/fileiter.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/icu.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/instances.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/posix_api.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/regex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/regex_debug.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/regex_raw_buffer.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/regex_traits_defaults.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/static_mutex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/usinstances.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/w32_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/wc_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/wide_posix_api.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/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_37.pdb" /debug /machine:I386 /out:"vc6-stlport/boost_regex-vc6-mt-gdp-1_37.dll" /implib:"vc6-stlport/boost_regex-vc6-mt-gdp-1_37.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc6-stlport/boost_regex-vc6-mt-gdp-1_37/c_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/cpp_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/cregex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/fileiter.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/icu.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/instances.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/posix_api.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/regex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/regex_debug.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/regex_raw_buffer.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/regex_traits_defaults.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/static_mutex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/usinstances.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/w32_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/wc_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/wide_posix_api.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/winstances.obj ######################################################## # -# section for libboost_regex-vc6-mt-sgdp-1_35.lib +# section for libboost_regex-vc6-mt-sgdp-1_37.lib # ######################################################## -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_35.pdb ../src/c_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_37.pdb ../src/c_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_35.pdb ../src/cpp_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_37.pdb ../src/cpp_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_35.pdb ../src/cregex.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_37.pdb ../src/cregex.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_35.pdb ../src/fileiter.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_37.pdb ../src/fileiter.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_35.pdb ../src/icu.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_37.pdb ../src/icu.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_35.pdb ../src/instances.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_37.pdb ../src/instances.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_35.pdb ../src/posix_api.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_37.pdb ../src/posix_api.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_35.pdb ../src/regex.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_37.pdb ../src/regex.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_35.pdb ../src/regex_debug.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_37.pdb ../src/regex_debug.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_35.pdb ../src/regex_raw_buffer.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_37.pdb ../src/regex_raw_buffer.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_35.pdb ../src/regex_traits_defaults.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_37.pdb ../src/regex_traits_defaults.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_35.pdb ../src/static_mutex.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_37.pdb ../src/static_mutex.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_35.pdb ../src/usinstances.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_37.pdb ../src/usinstances.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_35.pdb ../src/w32_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_37.pdb ../src/w32_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_35.pdb ../src/wc_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_37.pdb ../src/wc_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_35.pdb ../src/wide_posix_api.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_37.pdb ../src/wide_posix_api.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_35.pdb ../src/winstances.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_37.pdb ../src/winstances.cpp -libboost_regex-vc6-mt-sgdp-1_35_dir : - @if not exist "vc6-stlport\libboost_regex-vc6-mt-sgdp-1_35\$(NULL)" mkdir vc6-stlport\libboost_regex-vc6-mt-sgdp-1_35 +libboost_regex-vc6-mt-sgdp-1_37_dir : + @if not exist "vc6-stlport\libboost_regex-vc6-mt-sgdp-1_37\$(NULL)" mkdir vc6-stlport\libboost_regex-vc6-mt-sgdp-1_37 -libboost_regex-vc6-mt-sgdp-1_35_clean : - del vc6-stlport\libboost_regex-vc6-mt-sgdp-1_35\*.obj - del vc6-stlport\libboost_regex-vc6-mt-sgdp-1_35\*.idb - del vc6-stlport\libboost_regex-vc6-mt-sgdp-1_35\*.exp - del vc6-stlport\libboost_regex-vc6-mt-sgdp-1_35\*.pch +libboost_regex-vc6-mt-sgdp-1_37_clean : + del vc6-stlport\libboost_regex-vc6-mt-sgdp-1_37\*.obj + del vc6-stlport\libboost_regex-vc6-mt-sgdp-1_37\*.idb + del vc6-stlport\libboost_regex-vc6-mt-sgdp-1_37\*.exp + del vc6-stlport\libboost_regex-vc6-mt-sgdp-1_37\*.pch -./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35.lib : vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/cregex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/icu.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/instances.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/regex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/winstances.obj - link -lib /nologo /out:vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35.lib $(XSFLAGS) vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/cregex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/icu.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/instances.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/regex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_35/winstances.obj +./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37.lib : vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/cregex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/icu.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/instances.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/regex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/winstances.obj + link -lib /nologo /out:vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37.lib $(XSFLAGS) vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/cregex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/icu.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/instances.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/regex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/winstances.obj ######################################################## # -# section for libboost_regex-vc6-mt-gdp-1_35.lib +# section for libboost_regex-vc6-mt-gdp-1_37.lib # ######################################################## -vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_35.pdb ../src/c_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_37.pdb ../src/c_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_35.pdb ../src/cpp_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_37.pdb ../src/cpp_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_35.pdb ../src/cregex.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_37.pdb ../src/cregex.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_35.pdb ../src/fileiter.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_37.pdb ../src/fileiter.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_35.pdb ../src/icu.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_37.pdb ../src/icu.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_35.pdb ../src/instances.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_37.pdb ../src/instances.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_35.pdb ../src/posix_api.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_37.pdb ../src/posix_api.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_35.pdb ../src/regex.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_37.pdb ../src/regex.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_35.pdb ../src/regex_debug.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_37.pdb ../src/regex_debug.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_35.pdb ../src/regex_raw_buffer.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_37.pdb ../src/regex_raw_buffer.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_35.pdb ../src/regex_traits_defaults.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_37.pdb ../src/regex_traits_defaults.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_35.pdb ../src/static_mutex.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_37.pdb ../src/static_mutex.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_35.pdb ../src/usinstances.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_37.pdb ../src/usinstances.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_35.pdb ../src/w32_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_37.pdb ../src/w32_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_35.pdb ../src/wc_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_37.pdb ../src/wc_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_35.pdb ../src/wide_posix_api.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_37.pdb ../src/wide_posix_api.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/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_35/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_35.pdb ../src/winstances.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_37.pdb ../src/winstances.cpp -libboost_regex-vc6-mt-gdp-1_35_dir : - @if not exist "vc6-stlport\libboost_regex-vc6-mt-gdp-1_35\$(NULL)" mkdir vc6-stlport\libboost_regex-vc6-mt-gdp-1_35 +libboost_regex-vc6-mt-gdp-1_37_dir : + @if not exist "vc6-stlport\libboost_regex-vc6-mt-gdp-1_37\$(NULL)" mkdir vc6-stlport\libboost_regex-vc6-mt-gdp-1_37 -libboost_regex-vc6-mt-gdp-1_35_clean : - del vc6-stlport\libboost_regex-vc6-mt-gdp-1_35\*.obj - del vc6-stlport\libboost_regex-vc6-mt-gdp-1_35\*.idb - del vc6-stlport\libboost_regex-vc6-mt-gdp-1_35\*.exp - del vc6-stlport\libboost_regex-vc6-mt-gdp-1_35\*.pch +libboost_regex-vc6-mt-gdp-1_37_clean : + del vc6-stlport\libboost_regex-vc6-mt-gdp-1_37\*.obj + del vc6-stlport\libboost_regex-vc6-mt-gdp-1_37\*.idb + del vc6-stlport\libboost_regex-vc6-mt-gdp-1_37\*.exp + del vc6-stlport\libboost_regex-vc6-mt-gdp-1_37\*.pch + +./vc6-stlport/libboost_regex-vc6-mt-gdp-1_37.lib : vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/cregex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/icu.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/instances.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/regex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/winstances.obj + link -lib /nologo /out:vc6-stlport/libboost_regex-vc6-mt-gdp-1_37.lib $(XSFLAGS) vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/cregex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/icu.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/instances.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/regex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/winstances.obj -./vc6-stlport/libboost_regex-vc6-mt-gdp-1_35.lib : vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/cregex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/icu.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/instances.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/regex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/winstances.obj - link -lib /nologo /out:vc6-stlport/libboost_regex-vc6-mt-gdp-1_35.lib $(XSFLAGS) vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/cregex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/icu.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/instances.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/regex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_35/winstances.obj diff --git a/build/vc6.mak b/build/vc6.mak index 398f99e5..4a7fa5c4 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_35_dir ./vc6/libboost_regex-vc6-s-1_35.lib libboost_regex-vc6-mt-s-1_35_dir ./vc6/libboost_regex-vc6-mt-s-1_35.lib libboost_regex-vc6-sgd-1_35_dir ./vc6/libboost_regex-vc6-sgd-1_35.lib libboost_regex-vc6-mt-sgd-1_35_dir ./vc6/libboost_regex-vc6-mt-sgd-1_35.lib boost_regex-vc6-mt-gd-1_35_dir ./vc6/boost_regex-vc6-mt-gd-1_35.lib boost_regex-vc6-mt-1_35_dir ./vc6/boost_regex-vc6-mt-1_35.lib libboost_regex-vc6-mt-1_35_dir ./vc6/libboost_regex-vc6-mt-1_35.lib libboost_regex-vc6-mt-gd-1_35_dir ./vc6/libboost_regex-vc6-mt-gd-1_35.lib +all : main_dir libboost_regex-vc6-s-1_37_dir ./vc6/libboost_regex-vc6-s-1_37.lib libboost_regex-vc6-mt-s-1_37_dir ./vc6/libboost_regex-vc6-mt-s-1_37.lib libboost_regex-vc6-sgd-1_37_dir ./vc6/libboost_regex-vc6-sgd-1_37.lib libboost_regex-vc6-mt-sgd-1_37_dir ./vc6/libboost_regex-vc6-mt-sgd-1_37.lib boost_regex-vc6-mt-gd-1_37_dir ./vc6/boost_regex-vc6-mt-gd-1_37.lib boost_regex-vc6-mt-1_37_dir ./vc6/boost_regex-vc6-mt-1_37.lib libboost_regex-vc6-mt-1_37_dir ./vc6/libboost_regex-vc6-mt-1_37.lib libboost_regex-vc6-mt-gd-1_37_dir ./vc6/libboost_regex-vc6-mt-gd-1_37.lib -clean : libboost_regex-vc6-s-1_35_clean libboost_regex-vc6-mt-s-1_35_clean libboost_regex-vc6-sgd-1_35_clean libboost_regex-vc6-mt-sgd-1_35_clean boost_regex-vc6-mt-gd-1_35_clean boost_regex-vc6-mt-1_35_clean libboost_regex-vc6-mt-1_35_clean libboost_regex-vc6-mt-gd-1_35_clean +clean : libboost_regex-vc6-s-1_37_clean libboost_regex-vc6-mt-s-1_37_clean libboost_regex-vc6-sgd-1_37_clean libboost_regex-vc6-mt-sgd-1_37_clean boost_regex-vc6-mt-gd-1_37_clean boost_regex-vc6-mt-1_37_clean libboost_regex-vc6-mt-1_37_clean libboost_regex-vc6-mt-gd-1_37_clean install : all - copy vc6\libboost_regex-vc6-s-1_35.lib "$(MSVCDIR)\lib" - copy vc6\libboost_regex-vc6-mt-s-1_35.lib "$(MSVCDIR)\lib" - copy vc6\libboost_regex-vc6-sgd-1_35.lib "$(MSVCDIR)\lib" - copy vc6\libboost_regex-vc6-sgd-1_35.pdb "$(MSVCDIR)\lib" - copy vc6\libboost_regex-vc6-mt-sgd-1_35.lib "$(MSVCDIR)\lib" - copy vc6\libboost_regex-vc6-mt-sgd-1_35.pdb "$(MSVCDIR)\lib" - copy vc6\boost_regex-vc6-mt-gd-1_35.lib "$(MSVCDIR)\lib" - copy vc6\boost_regex-vc6-mt-gd-1_35.dll "$(MSVCDIR)\bin" - copy vc6\boost_regex-vc6-mt-gd-1_35.pdb "$(MSVCDIR)\lib" - copy vc6\boost_regex-vc6-mt-1_35.lib "$(MSVCDIR)\lib" - copy vc6\boost_regex-vc6-mt-1_35.dll "$(MSVCDIR)\bin" - copy vc6\libboost_regex-vc6-mt-1_35.lib "$(MSVCDIR)\lib" - copy vc6\libboost_regex-vc6-mt-gd-1_35.lib "$(MSVCDIR)\lib" - copy vc6\libboost_regex-vc6-mt-gd-1_35.pdb "$(MSVCDIR)\lib" + copy vc6\libboost_regex-vc6-s-1_37.lib "$(MSVCDIR)\lib" + copy vc6\libboost_regex-vc6-mt-s-1_37.lib "$(MSVCDIR)\lib" + copy vc6\libboost_regex-vc6-sgd-1_37.lib "$(MSVCDIR)\lib" + copy vc6\libboost_regex-vc6-sgd-1_37.pdb "$(MSVCDIR)\lib" + copy vc6\libboost_regex-vc6-mt-sgd-1_37.lib "$(MSVCDIR)\lib" + copy vc6\libboost_regex-vc6-mt-sgd-1_37.pdb "$(MSVCDIR)\lib" + copy vc6\boost_regex-vc6-mt-gd-1_37.lib "$(MSVCDIR)\lib" + copy vc6\boost_regex-vc6-mt-gd-1_37.dll "$(MSVCDIR)\bin" + copy vc6\boost_regex-vc6-mt-gd-1_37.pdb "$(MSVCDIR)\lib" + copy vc6\boost_regex-vc6-mt-1_37.lib "$(MSVCDIR)\lib" + copy vc6\boost_regex-vc6-mt-1_37.dll "$(MSVCDIR)\bin" + copy vc6\libboost_regex-vc6-mt-1_37.lib "$(MSVCDIR)\lib" + copy vc6\libboost_regex-vc6-mt-gd-1_37.lib "$(MSVCDIR)\lib" + copy vc6\libboost_regex-vc6-mt-gd-1_37.pdb "$(MSVCDIR)\lib" main_dir : @if not exist "vc6\$(NULL)" mkdir vc6 @@ -88,545 +88,546 @@ main_dir : ######################################################## # -# section for libboost_regex-vc6-s-1_35.lib +# section for libboost_regex-vc6-s-1_37.lib # ######################################################## -vc6/libboost_regex-vc6-s-1_35/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_35/ -Fdvc6/libboost_regex-vc6-s-1_35.pdb ../src/c_regex_traits.cpp +vc6/libboost_regex-vc6-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-s-1_37.pdb ../src/c_regex_traits.cpp -vc6/libboost_regex-vc6-s-1_35/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_35/ -Fdvc6/libboost_regex-vc6-s-1_35.pdb ../src/cpp_regex_traits.cpp +vc6/libboost_regex-vc6-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-s-1_37.pdb ../src/cpp_regex_traits.cpp -vc6/libboost_regex-vc6-s-1_35/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_35/ -Fdvc6/libboost_regex-vc6-s-1_35.pdb ../src/cregex.cpp +vc6/libboost_regex-vc6-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-s-1_37.pdb ../src/cregex.cpp -vc6/libboost_regex-vc6-s-1_35/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_35/ -Fdvc6/libboost_regex-vc6-s-1_35.pdb ../src/fileiter.cpp +vc6/libboost_regex-vc6-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-s-1_37.pdb ../src/fileiter.cpp -vc6/libboost_regex-vc6-s-1_35/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_35/ -Fdvc6/libboost_regex-vc6-s-1_35.pdb ../src/icu.cpp +vc6/libboost_regex-vc6-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-s-1_37.pdb ../src/icu.cpp -vc6/libboost_regex-vc6-s-1_35/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_35/ -Fdvc6/libboost_regex-vc6-s-1_35.pdb ../src/instances.cpp +vc6/libboost_regex-vc6-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-s-1_37.pdb ../src/instances.cpp -vc6/libboost_regex-vc6-s-1_35/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_35/ -Fdvc6/libboost_regex-vc6-s-1_35.pdb ../src/posix_api.cpp +vc6/libboost_regex-vc6-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-s-1_37.pdb ../src/posix_api.cpp -vc6/libboost_regex-vc6-s-1_35/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_35/ -Fdvc6/libboost_regex-vc6-s-1_35.pdb ../src/regex.cpp +vc6/libboost_regex-vc6-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-s-1_37.pdb ../src/regex.cpp -vc6/libboost_regex-vc6-s-1_35/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_35/ -Fdvc6/libboost_regex-vc6-s-1_35.pdb ../src/regex_debug.cpp +vc6/libboost_regex-vc6-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-s-1_37.pdb ../src/regex_debug.cpp -vc6/libboost_regex-vc6-s-1_35/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_35/ -Fdvc6/libboost_regex-vc6-s-1_35.pdb ../src/regex_raw_buffer.cpp +vc6/libboost_regex-vc6-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-s-1_37.pdb ../src/regex_raw_buffer.cpp -vc6/libboost_regex-vc6-s-1_35/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_35/ -Fdvc6/libboost_regex-vc6-s-1_35.pdb ../src/regex_traits_defaults.cpp +vc6/libboost_regex-vc6-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-s-1_37.pdb ../src/regex_traits_defaults.cpp -vc6/libboost_regex-vc6-s-1_35/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_35/ -Fdvc6/libboost_regex-vc6-s-1_35.pdb ../src/static_mutex.cpp +vc6/libboost_regex-vc6-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-s-1_37.pdb ../src/static_mutex.cpp -vc6/libboost_regex-vc6-s-1_35/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_35/ -Fdvc6/libboost_regex-vc6-s-1_35.pdb ../src/usinstances.cpp +vc6/libboost_regex-vc6-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-s-1_37.pdb ../src/usinstances.cpp -vc6/libboost_regex-vc6-s-1_35/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_35/ -Fdvc6/libboost_regex-vc6-s-1_35.pdb ../src/w32_regex_traits.cpp +vc6/libboost_regex-vc6-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-s-1_37.pdb ../src/w32_regex_traits.cpp -vc6/libboost_regex-vc6-s-1_35/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_35/ -Fdvc6/libboost_regex-vc6-s-1_35.pdb ../src/wc_regex_traits.cpp +vc6/libboost_regex-vc6-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-s-1_37.pdb ../src/wc_regex_traits.cpp -vc6/libboost_regex-vc6-s-1_35/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_35/ -Fdvc6/libboost_regex-vc6-s-1_35.pdb ../src/wide_posix_api.cpp +vc6/libboost_regex-vc6-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-s-1_37.pdb ../src/wide_posix_api.cpp -vc6/libboost_regex-vc6-s-1_35/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_35/ -Fdvc6/libboost_regex-vc6-s-1_35.pdb ../src/winstances.cpp +vc6/libboost_regex-vc6-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-s-1_37.pdb ../src/winstances.cpp -libboost_regex-vc6-s-1_35_dir : - @if not exist "vc6\libboost_regex-vc6-s-1_35\$(NULL)" mkdir vc6\libboost_regex-vc6-s-1_35 +libboost_regex-vc6-s-1_37_dir : + @if not exist "vc6\libboost_regex-vc6-s-1_37\$(NULL)" mkdir vc6\libboost_regex-vc6-s-1_37 -libboost_regex-vc6-s-1_35_clean : - del vc6\libboost_regex-vc6-s-1_35\*.obj - del vc6\libboost_regex-vc6-s-1_35\*.idb - del vc6\libboost_regex-vc6-s-1_35\*.exp - del vc6\libboost_regex-vc6-s-1_35\*.pch +libboost_regex-vc6-s-1_37_clean : + del vc6\libboost_regex-vc6-s-1_37\*.obj + del vc6\libboost_regex-vc6-s-1_37\*.idb + del vc6\libboost_regex-vc6-s-1_37\*.exp + del vc6\libboost_regex-vc6-s-1_37\*.pch -./vc6/libboost_regex-vc6-s-1_35.lib : vc6/libboost_regex-vc6-s-1_35/c_regex_traits.obj vc6/libboost_regex-vc6-s-1_35/cpp_regex_traits.obj vc6/libboost_regex-vc6-s-1_35/cregex.obj vc6/libboost_regex-vc6-s-1_35/fileiter.obj vc6/libboost_regex-vc6-s-1_35/icu.obj vc6/libboost_regex-vc6-s-1_35/instances.obj vc6/libboost_regex-vc6-s-1_35/posix_api.obj vc6/libboost_regex-vc6-s-1_35/regex.obj vc6/libboost_regex-vc6-s-1_35/regex_debug.obj vc6/libboost_regex-vc6-s-1_35/regex_raw_buffer.obj vc6/libboost_regex-vc6-s-1_35/regex_traits_defaults.obj vc6/libboost_regex-vc6-s-1_35/static_mutex.obj vc6/libboost_regex-vc6-s-1_35/usinstances.obj vc6/libboost_regex-vc6-s-1_35/w32_regex_traits.obj vc6/libboost_regex-vc6-s-1_35/wc_regex_traits.obj vc6/libboost_regex-vc6-s-1_35/wide_posix_api.obj vc6/libboost_regex-vc6-s-1_35/winstances.obj - link -lib /nologo /out:vc6/libboost_regex-vc6-s-1_35.lib $(XSFLAGS) vc6/libboost_regex-vc6-s-1_35/c_regex_traits.obj vc6/libboost_regex-vc6-s-1_35/cpp_regex_traits.obj vc6/libboost_regex-vc6-s-1_35/cregex.obj vc6/libboost_regex-vc6-s-1_35/fileiter.obj vc6/libboost_regex-vc6-s-1_35/icu.obj vc6/libboost_regex-vc6-s-1_35/instances.obj vc6/libboost_regex-vc6-s-1_35/posix_api.obj vc6/libboost_regex-vc6-s-1_35/regex.obj vc6/libboost_regex-vc6-s-1_35/regex_debug.obj vc6/libboost_regex-vc6-s-1_35/regex_raw_buffer.obj vc6/libboost_regex-vc6-s-1_35/regex_traits_defaults.obj vc6/libboost_regex-vc6-s-1_35/static_mutex.obj vc6/libboost_regex-vc6-s-1_35/usinstances.obj vc6/libboost_regex-vc6-s-1_35/w32_regex_traits.obj vc6/libboost_regex-vc6-s-1_35/wc_regex_traits.obj vc6/libboost_regex-vc6-s-1_35/wide_posix_api.obj vc6/libboost_regex-vc6-s-1_35/winstances.obj +./vc6/libboost_regex-vc6-s-1_37.lib : vc6/libboost_regex-vc6-s-1_37/c_regex_traits.obj vc6/libboost_regex-vc6-s-1_37/cpp_regex_traits.obj vc6/libboost_regex-vc6-s-1_37/cregex.obj vc6/libboost_regex-vc6-s-1_37/fileiter.obj vc6/libboost_regex-vc6-s-1_37/icu.obj vc6/libboost_regex-vc6-s-1_37/instances.obj vc6/libboost_regex-vc6-s-1_37/posix_api.obj vc6/libboost_regex-vc6-s-1_37/regex.obj vc6/libboost_regex-vc6-s-1_37/regex_debug.obj vc6/libboost_regex-vc6-s-1_37/regex_raw_buffer.obj vc6/libboost_regex-vc6-s-1_37/regex_traits_defaults.obj vc6/libboost_regex-vc6-s-1_37/static_mutex.obj vc6/libboost_regex-vc6-s-1_37/usinstances.obj vc6/libboost_regex-vc6-s-1_37/w32_regex_traits.obj vc6/libboost_regex-vc6-s-1_37/wc_regex_traits.obj vc6/libboost_regex-vc6-s-1_37/wide_posix_api.obj vc6/libboost_regex-vc6-s-1_37/winstances.obj + link -lib /nologo /out:vc6/libboost_regex-vc6-s-1_37.lib $(XSFLAGS) vc6/libboost_regex-vc6-s-1_37/c_regex_traits.obj vc6/libboost_regex-vc6-s-1_37/cpp_regex_traits.obj vc6/libboost_regex-vc6-s-1_37/cregex.obj vc6/libboost_regex-vc6-s-1_37/fileiter.obj vc6/libboost_regex-vc6-s-1_37/icu.obj vc6/libboost_regex-vc6-s-1_37/instances.obj vc6/libboost_regex-vc6-s-1_37/posix_api.obj vc6/libboost_regex-vc6-s-1_37/regex.obj vc6/libboost_regex-vc6-s-1_37/regex_debug.obj vc6/libboost_regex-vc6-s-1_37/regex_raw_buffer.obj vc6/libboost_regex-vc6-s-1_37/regex_traits_defaults.obj vc6/libboost_regex-vc6-s-1_37/static_mutex.obj vc6/libboost_regex-vc6-s-1_37/usinstances.obj vc6/libboost_regex-vc6-s-1_37/w32_regex_traits.obj vc6/libboost_regex-vc6-s-1_37/wc_regex_traits.obj vc6/libboost_regex-vc6-s-1_37/wide_posix_api.obj vc6/libboost_regex-vc6-s-1_37/winstances.obj ######################################################## # -# section for libboost_regex-vc6-mt-s-1_35.lib +# section for libboost_regex-vc6-mt-s-1_37.lib # ######################################################## -vc6/libboost_regex-vc6-mt-s-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-s-1_35.pdb ../src/c_regex_traits.cpp +vc6/libboost_regex-vc6-mt-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-s-1_37.pdb ../src/c_regex_traits.cpp -vc6/libboost_regex-vc6-mt-s-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-s-1_35.pdb ../src/cpp_regex_traits.cpp +vc6/libboost_regex-vc6-mt-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-s-1_37.pdb ../src/cpp_regex_traits.cpp -vc6/libboost_regex-vc6-mt-s-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-s-1_35.pdb ../src/cregex.cpp +vc6/libboost_regex-vc6-mt-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-s-1_37.pdb ../src/cregex.cpp -vc6/libboost_regex-vc6-mt-s-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-s-1_35.pdb ../src/fileiter.cpp +vc6/libboost_regex-vc6-mt-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-s-1_37.pdb ../src/fileiter.cpp -vc6/libboost_regex-vc6-mt-s-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-s-1_35.pdb ../src/icu.cpp +vc6/libboost_regex-vc6-mt-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-s-1_37.pdb ../src/icu.cpp -vc6/libboost_regex-vc6-mt-s-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-s-1_35.pdb ../src/instances.cpp +vc6/libboost_regex-vc6-mt-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-s-1_37.pdb ../src/instances.cpp -vc6/libboost_regex-vc6-mt-s-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-s-1_35.pdb ../src/posix_api.cpp +vc6/libboost_regex-vc6-mt-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-s-1_37.pdb ../src/posix_api.cpp -vc6/libboost_regex-vc6-mt-s-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-s-1_35.pdb ../src/regex.cpp +vc6/libboost_regex-vc6-mt-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-s-1_37.pdb ../src/regex.cpp -vc6/libboost_regex-vc6-mt-s-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-s-1_35.pdb ../src/regex_debug.cpp +vc6/libboost_regex-vc6-mt-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-s-1_37.pdb ../src/regex_debug.cpp -vc6/libboost_regex-vc6-mt-s-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-s-1_35.pdb ../src/regex_raw_buffer.cpp +vc6/libboost_regex-vc6-mt-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-s-1_37.pdb ../src/regex_raw_buffer.cpp -vc6/libboost_regex-vc6-mt-s-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-s-1_35.pdb ../src/regex_traits_defaults.cpp +vc6/libboost_regex-vc6-mt-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-s-1_37.pdb ../src/regex_traits_defaults.cpp -vc6/libboost_regex-vc6-mt-s-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-s-1_35.pdb ../src/static_mutex.cpp +vc6/libboost_regex-vc6-mt-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-s-1_37.pdb ../src/static_mutex.cpp -vc6/libboost_regex-vc6-mt-s-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-s-1_35.pdb ../src/usinstances.cpp +vc6/libboost_regex-vc6-mt-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-s-1_37.pdb ../src/usinstances.cpp -vc6/libboost_regex-vc6-mt-s-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-s-1_35.pdb ../src/w32_regex_traits.cpp +vc6/libboost_regex-vc6-mt-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-s-1_37.pdb ../src/w32_regex_traits.cpp -vc6/libboost_regex-vc6-mt-s-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-s-1_35.pdb ../src/wc_regex_traits.cpp +vc6/libboost_regex-vc6-mt-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-s-1_37.pdb ../src/wc_regex_traits.cpp -vc6/libboost_regex-vc6-mt-s-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-s-1_35.pdb ../src/wide_posix_api.cpp +vc6/libboost_regex-vc6-mt-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-s-1_37.pdb ../src/wide_posix_api.cpp -vc6/libboost_regex-vc6-mt-s-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-s-1_35.pdb ../src/winstances.cpp +vc6/libboost_regex-vc6-mt-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-s-1_37.pdb ../src/winstances.cpp -libboost_regex-vc6-mt-s-1_35_dir : - @if not exist "vc6\libboost_regex-vc6-mt-s-1_35\$(NULL)" mkdir vc6\libboost_regex-vc6-mt-s-1_35 +libboost_regex-vc6-mt-s-1_37_dir : + @if not exist "vc6\libboost_regex-vc6-mt-s-1_37\$(NULL)" mkdir vc6\libboost_regex-vc6-mt-s-1_37 -libboost_regex-vc6-mt-s-1_35_clean : - del vc6\libboost_regex-vc6-mt-s-1_35\*.obj - del vc6\libboost_regex-vc6-mt-s-1_35\*.idb - del vc6\libboost_regex-vc6-mt-s-1_35\*.exp - del vc6\libboost_regex-vc6-mt-s-1_35\*.pch +libboost_regex-vc6-mt-s-1_37_clean : + del vc6\libboost_regex-vc6-mt-s-1_37\*.obj + del vc6\libboost_regex-vc6-mt-s-1_37\*.idb + del vc6\libboost_regex-vc6-mt-s-1_37\*.exp + del vc6\libboost_regex-vc6-mt-s-1_37\*.pch -./vc6/libboost_regex-vc6-mt-s-1_35.lib : vc6/libboost_regex-vc6-mt-s-1_35/c_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_35/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_35/cregex.obj vc6/libboost_regex-vc6-mt-s-1_35/fileiter.obj vc6/libboost_regex-vc6-mt-s-1_35/icu.obj vc6/libboost_regex-vc6-mt-s-1_35/instances.obj vc6/libboost_regex-vc6-mt-s-1_35/posix_api.obj vc6/libboost_regex-vc6-mt-s-1_35/regex.obj vc6/libboost_regex-vc6-mt-s-1_35/regex_debug.obj vc6/libboost_regex-vc6-mt-s-1_35/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-s-1_35/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-s-1_35/static_mutex.obj vc6/libboost_regex-vc6-mt-s-1_35/usinstances.obj vc6/libboost_regex-vc6-mt-s-1_35/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_35/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_35/wide_posix_api.obj vc6/libboost_regex-vc6-mt-s-1_35/winstances.obj - link -lib /nologo /out:vc6/libboost_regex-vc6-mt-s-1_35.lib $(XSFLAGS) vc6/libboost_regex-vc6-mt-s-1_35/c_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_35/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_35/cregex.obj vc6/libboost_regex-vc6-mt-s-1_35/fileiter.obj vc6/libboost_regex-vc6-mt-s-1_35/icu.obj vc6/libboost_regex-vc6-mt-s-1_35/instances.obj vc6/libboost_regex-vc6-mt-s-1_35/posix_api.obj vc6/libboost_regex-vc6-mt-s-1_35/regex.obj vc6/libboost_regex-vc6-mt-s-1_35/regex_debug.obj vc6/libboost_regex-vc6-mt-s-1_35/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-s-1_35/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-s-1_35/static_mutex.obj vc6/libboost_regex-vc6-mt-s-1_35/usinstances.obj vc6/libboost_regex-vc6-mt-s-1_35/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_35/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_35/wide_posix_api.obj vc6/libboost_regex-vc6-mt-s-1_35/winstances.obj +./vc6/libboost_regex-vc6-mt-s-1_37.lib : vc6/libboost_regex-vc6-mt-s-1_37/c_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_37/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_37/cregex.obj vc6/libboost_regex-vc6-mt-s-1_37/fileiter.obj vc6/libboost_regex-vc6-mt-s-1_37/icu.obj vc6/libboost_regex-vc6-mt-s-1_37/instances.obj vc6/libboost_regex-vc6-mt-s-1_37/posix_api.obj vc6/libboost_regex-vc6-mt-s-1_37/regex.obj vc6/libboost_regex-vc6-mt-s-1_37/regex_debug.obj vc6/libboost_regex-vc6-mt-s-1_37/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-s-1_37/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-s-1_37/static_mutex.obj vc6/libboost_regex-vc6-mt-s-1_37/usinstances.obj vc6/libboost_regex-vc6-mt-s-1_37/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_37/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_37/wide_posix_api.obj vc6/libboost_regex-vc6-mt-s-1_37/winstances.obj + link -lib /nologo /out:vc6/libboost_regex-vc6-mt-s-1_37.lib $(XSFLAGS) vc6/libboost_regex-vc6-mt-s-1_37/c_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_37/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_37/cregex.obj vc6/libboost_regex-vc6-mt-s-1_37/fileiter.obj vc6/libboost_regex-vc6-mt-s-1_37/icu.obj vc6/libboost_regex-vc6-mt-s-1_37/instances.obj vc6/libboost_regex-vc6-mt-s-1_37/posix_api.obj vc6/libboost_regex-vc6-mt-s-1_37/regex.obj vc6/libboost_regex-vc6-mt-s-1_37/regex_debug.obj vc6/libboost_regex-vc6-mt-s-1_37/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-s-1_37/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-s-1_37/static_mutex.obj vc6/libboost_regex-vc6-mt-s-1_37/usinstances.obj vc6/libboost_regex-vc6-mt-s-1_37/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_37/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_37/wide_posix_api.obj vc6/libboost_regex-vc6-mt-s-1_37/winstances.obj ######################################################## # -# section for libboost_regex-vc6-sgd-1_35.lib +# section for libboost_regex-vc6-sgd-1_37.lib # ######################################################## -vc6/libboost_regex-vc6-sgd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-sgd-1_35.pdb ../src/c_regex_traits.cpp +vc6/libboost_regex-vc6-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-sgd-1_37.pdb ../src/c_regex_traits.cpp -vc6/libboost_regex-vc6-sgd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-sgd-1_35.pdb ../src/cpp_regex_traits.cpp +vc6/libboost_regex-vc6-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-sgd-1_37.pdb ../src/cpp_regex_traits.cpp -vc6/libboost_regex-vc6-sgd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-sgd-1_35.pdb ../src/cregex.cpp +vc6/libboost_regex-vc6-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-sgd-1_37.pdb ../src/cregex.cpp -vc6/libboost_regex-vc6-sgd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-sgd-1_35.pdb ../src/fileiter.cpp +vc6/libboost_regex-vc6-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-sgd-1_37.pdb ../src/fileiter.cpp -vc6/libboost_regex-vc6-sgd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-sgd-1_35.pdb ../src/icu.cpp +vc6/libboost_regex-vc6-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-sgd-1_37.pdb ../src/icu.cpp -vc6/libboost_regex-vc6-sgd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-sgd-1_35.pdb ../src/instances.cpp +vc6/libboost_regex-vc6-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-sgd-1_37.pdb ../src/instances.cpp -vc6/libboost_regex-vc6-sgd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-sgd-1_35.pdb ../src/posix_api.cpp +vc6/libboost_regex-vc6-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-sgd-1_37.pdb ../src/posix_api.cpp -vc6/libboost_regex-vc6-sgd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-sgd-1_35.pdb ../src/regex.cpp +vc6/libboost_regex-vc6-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-sgd-1_37.pdb ../src/regex.cpp -vc6/libboost_regex-vc6-sgd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-sgd-1_35.pdb ../src/regex_debug.cpp +vc6/libboost_regex-vc6-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-sgd-1_37.pdb ../src/regex_debug.cpp -vc6/libboost_regex-vc6-sgd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-sgd-1_35.pdb ../src/regex_raw_buffer.cpp +vc6/libboost_regex-vc6-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-sgd-1_37.pdb ../src/regex_raw_buffer.cpp -vc6/libboost_regex-vc6-sgd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-sgd-1_35.pdb ../src/regex_traits_defaults.cpp +vc6/libboost_regex-vc6-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-sgd-1_37.pdb ../src/regex_traits_defaults.cpp -vc6/libboost_regex-vc6-sgd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-sgd-1_35.pdb ../src/static_mutex.cpp +vc6/libboost_regex-vc6-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-sgd-1_37.pdb ../src/static_mutex.cpp -vc6/libboost_regex-vc6-sgd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-sgd-1_35.pdb ../src/usinstances.cpp +vc6/libboost_regex-vc6-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-sgd-1_37.pdb ../src/usinstances.cpp -vc6/libboost_regex-vc6-sgd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-sgd-1_35.pdb ../src/w32_regex_traits.cpp +vc6/libboost_regex-vc6-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-sgd-1_37.pdb ../src/w32_regex_traits.cpp -vc6/libboost_regex-vc6-sgd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-sgd-1_35.pdb ../src/wc_regex_traits.cpp +vc6/libboost_regex-vc6-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-sgd-1_37.pdb ../src/wc_regex_traits.cpp -vc6/libboost_regex-vc6-sgd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-sgd-1_35.pdb ../src/wide_posix_api.cpp +vc6/libboost_regex-vc6-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-sgd-1_37.pdb ../src/wide_posix_api.cpp -vc6/libboost_regex-vc6-sgd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-sgd-1_35.pdb ../src/winstances.cpp +vc6/libboost_regex-vc6-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-sgd-1_37.pdb ../src/winstances.cpp -libboost_regex-vc6-sgd-1_35_dir : - @if not exist "vc6\libboost_regex-vc6-sgd-1_35\$(NULL)" mkdir vc6\libboost_regex-vc6-sgd-1_35 +libboost_regex-vc6-sgd-1_37_dir : + @if not exist "vc6\libboost_regex-vc6-sgd-1_37\$(NULL)" mkdir vc6\libboost_regex-vc6-sgd-1_37 -libboost_regex-vc6-sgd-1_35_clean : - del vc6\libboost_regex-vc6-sgd-1_35\*.obj - del vc6\libboost_regex-vc6-sgd-1_35\*.idb - del vc6\libboost_regex-vc6-sgd-1_35\*.exp - del vc6\libboost_regex-vc6-sgd-1_35\*.pch +libboost_regex-vc6-sgd-1_37_clean : + del vc6\libboost_regex-vc6-sgd-1_37\*.obj + del vc6\libboost_regex-vc6-sgd-1_37\*.idb + del vc6\libboost_regex-vc6-sgd-1_37\*.exp + del vc6\libboost_regex-vc6-sgd-1_37\*.pch -./vc6/libboost_regex-vc6-sgd-1_35.lib : vc6/libboost_regex-vc6-sgd-1_35/c_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_35/cpp_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_35/cregex.obj vc6/libboost_regex-vc6-sgd-1_35/fileiter.obj vc6/libboost_regex-vc6-sgd-1_35/icu.obj vc6/libboost_regex-vc6-sgd-1_35/instances.obj vc6/libboost_regex-vc6-sgd-1_35/posix_api.obj vc6/libboost_regex-vc6-sgd-1_35/regex.obj vc6/libboost_regex-vc6-sgd-1_35/regex_debug.obj vc6/libboost_regex-vc6-sgd-1_35/regex_raw_buffer.obj vc6/libboost_regex-vc6-sgd-1_35/regex_traits_defaults.obj vc6/libboost_regex-vc6-sgd-1_35/static_mutex.obj vc6/libboost_regex-vc6-sgd-1_35/usinstances.obj vc6/libboost_regex-vc6-sgd-1_35/w32_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_35/wc_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_35/wide_posix_api.obj vc6/libboost_regex-vc6-sgd-1_35/winstances.obj - link -lib /nologo /out:vc6/libboost_regex-vc6-sgd-1_35.lib $(XSFLAGS) vc6/libboost_regex-vc6-sgd-1_35/c_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_35/cpp_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_35/cregex.obj vc6/libboost_regex-vc6-sgd-1_35/fileiter.obj vc6/libboost_regex-vc6-sgd-1_35/icu.obj vc6/libboost_regex-vc6-sgd-1_35/instances.obj vc6/libboost_regex-vc6-sgd-1_35/posix_api.obj vc6/libboost_regex-vc6-sgd-1_35/regex.obj vc6/libboost_regex-vc6-sgd-1_35/regex_debug.obj vc6/libboost_regex-vc6-sgd-1_35/regex_raw_buffer.obj vc6/libboost_regex-vc6-sgd-1_35/regex_traits_defaults.obj vc6/libboost_regex-vc6-sgd-1_35/static_mutex.obj vc6/libboost_regex-vc6-sgd-1_35/usinstances.obj vc6/libboost_regex-vc6-sgd-1_35/w32_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_35/wc_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_35/wide_posix_api.obj vc6/libboost_regex-vc6-sgd-1_35/winstances.obj +./vc6/libboost_regex-vc6-sgd-1_37.lib : vc6/libboost_regex-vc6-sgd-1_37/c_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_37/cpp_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_37/cregex.obj vc6/libboost_regex-vc6-sgd-1_37/fileiter.obj vc6/libboost_regex-vc6-sgd-1_37/icu.obj vc6/libboost_regex-vc6-sgd-1_37/instances.obj vc6/libboost_regex-vc6-sgd-1_37/posix_api.obj vc6/libboost_regex-vc6-sgd-1_37/regex.obj vc6/libboost_regex-vc6-sgd-1_37/regex_debug.obj vc6/libboost_regex-vc6-sgd-1_37/regex_raw_buffer.obj vc6/libboost_regex-vc6-sgd-1_37/regex_traits_defaults.obj vc6/libboost_regex-vc6-sgd-1_37/static_mutex.obj vc6/libboost_regex-vc6-sgd-1_37/usinstances.obj vc6/libboost_regex-vc6-sgd-1_37/w32_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_37/wc_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_37/wide_posix_api.obj vc6/libboost_regex-vc6-sgd-1_37/winstances.obj + link -lib /nologo /out:vc6/libboost_regex-vc6-sgd-1_37.lib $(XSFLAGS) vc6/libboost_regex-vc6-sgd-1_37/c_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_37/cpp_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_37/cregex.obj vc6/libboost_regex-vc6-sgd-1_37/fileiter.obj vc6/libboost_regex-vc6-sgd-1_37/icu.obj vc6/libboost_regex-vc6-sgd-1_37/instances.obj vc6/libboost_regex-vc6-sgd-1_37/posix_api.obj vc6/libboost_regex-vc6-sgd-1_37/regex.obj vc6/libboost_regex-vc6-sgd-1_37/regex_debug.obj vc6/libboost_regex-vc6-sgd-1_37/regex_raw_buffer.obj vc6/libboost_regex-vc6-sgd-1_37/regex_traits_defaults.obj vc6/libboost_regex-vc6-sgd-1_37/static_mutex.obj vc6/libboost_regex-vc6-sgd-1_37/usinstances.obj vc6/libboost_regex-vc6-sgd-1_37/w32_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_37/wc_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_37/wide_posix_api.obj vc6/libboost_regex-vc6-sgd-1_37/winstances.obj ######################################################## # -# section for libboost_regex-vc6-mt-sgd-1_35.lib +# section for libboost_regex-vc6-mt-sgd-1_37.lib # ######################################################## -vc6/libboost_regex-vc6-mt-sgd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_35.pdb ../src/c_regex_traits.cpp +vc6/libboost_regex-vc6-mt-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_37.pdb ../src/c_regex_traits.cpp -vc6/libboost_regex-vc6-mt-sgd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_35.pdb ../src/cpp_regex_traits.cpp +vc6/libboost_regex-vc6-mt-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_37.pdb ../src/cpp_regex_traits.cpp -vc6/libboost_regex-vc6-mt-sgd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_35.pdb ../src/cregex.cpp +vc6/libboost_regex-vc6-mt-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_37.pdb ../src/cregex.cpp -vc6/libboost_regex-vc6-mt-sgd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_35.pdb ../src/fileiter.cpp +vc6/libboost_regex-vc6-mt-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_37.pdb ../src/fileiter.cpp -vc6/libboost_regex-vc6-mt-sgd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_35.pdb ../src/icu.cpp +vc6/libboost_regex-vc6-mt-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_37.pdb ../src/icu.cpp -vc6/libboost_regex-vc6-mt-sgd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_35.pdb ../src/instances.cpp +vc6/libboost_regex-vc6-mt-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_37.pdb ../src/instances.cpp -vc6/libboost_regex-vc6-mt-sgd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_35.pdb ../src/posix_api.cpp +vc6/libboost_regex-vc6-mt-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_37.pdb ../src/posix_api.cpp -vc6/libboost_regex-vc6-mt-sgd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_35.pdb ../src/regex.cpp +vc6/libboost_regex-vc6-mt-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_37.pdb ../src/regex.cpp -vc6/libboost_regex-vc6-mt-sgd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_35.pdb ../src/regex_debug.cpp +vc6/libboost_regex-vc6-mt-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_37.pdb ../src/regex_debug.cpp -vc6/libboost_regex-vc6-mt-sgd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_35.pdb ../src/regex_raw_buffer.cpp +vc6/libboost_regex-vc6-mt-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_37.pdb ../src/regex_raw_buffer.cpp -vc6/libboost_regex-vc6-mt-sgd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_35.pdb ../src/regex_traits_defaults.cpp +vc6/libboost_regex-vc6-mt-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_37.pdb ../src/regex_traits_defaults.cpp -vc6/libboost_regex-vc6-mt-sgd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_35.pdb ../src/static_mutex.cpp +vc6/libboost_regex-vc6-mt-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_37.pdb ../src/static_mutex.cpp -vc6/libboost_regex-vc6-mt-sgd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_35.pdb ../src/usinstances.cpp +vc6/libboost_regex-vc6-mt-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_37.pdb ../src/usinstances.cpp -vc6/libboost_regex-vc6-mt-sgd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_35.pdb ../src/w32_regex_traits.cpp +vc6/libboost_regex-vc6-mt-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_37.pdb ../src/w32_regex_traits.cpp -vc6/libboost_regex-vc6-mt-sgd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_35.pdb ../src/wc_regex_traits.cpp +vc6/libboost_regex-vc6-mt-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_37.pdb ../src/wc_regex_traits.cpp -vc6/libboost_regex-vc6-mt-sgd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_35.pdb ../src/wide_posix_api.cpp +vc6/libboost_regex-vc6-mt-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_37.pdb ../src/wide_posix_api.cpp -vc6/libboost_regex-vc6-mt-sgd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_35.pdb ../src/winstances.cpp +vc6/libboost_regex-vc6-mt-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_37.pdb ../src/winstances.cpp -libboost_regex-vc6-mt-sgd-1_35_dir : - @if not exist "vc6\libboost_regex-vc6-mt-sgd-1_35\$(NULL)" mkdir vc6\libboost_regex-vc6-mt-sgd-1_35 +libboost_regex-vc6-mt-sgd-1_37_dir : + @if not exist "vc6\libboost_regex-vc6-mt-sgd-1_37\$(NULL)" mkdir vc6\libboost_regex-vc6-mt-sgd-1_37 -libboost_regex-vc6-mt-sgd-1_35_clean : - del vc6\libboost_regex-vc6-mt-sgd-1_35\*.obj - del vc6\libboost_regex-vc6-mt-sgd-1_35\*.idb - del vc6\libboost_regex-vc6-mt-sgd-1_35\*.exp - del vc6\libboost_regex-vc6-mt-sgd-1_35\*.pch +libboost_regex-vc6-mt-sgd-1_37_clean : + del vc6\libboost_regex-vc6-mt-sgd-1_37\*.obj + del vc6\libboost_regex-vc6-mt-sgd-1_37\*.idb + del vc6\libboost_regex-vc6-mt-sgd-1_37\*.exp + del vc6\libboost_regex-vc6-mt-sgd-1_37\*.pch -./vc6/libboost_regex-vc6-mt-sgd-1_35.lib : vc6/libboost_regex-vc6-mt-sgd-1_35/c_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_35/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_35/cregex.obj vc6/libboost_regex-vc6-mt-sgd-1_35/fileiter.obj vc6/libboost_regex-vc6-mt-sgd-1_35/icu.obj vc6/libboost_regex-vc6-mt-sgd-1_35/instances.obj vc6/libboost_regex-vc6-mt-sgd-1_35/posix_api.obj vc6/libboost_regex-vc6-mt-sgd-1_35/regex.obj vc6/libboost_regex-vc6-mt-sgd-1_35/regex_debug.obj vc6/libboost_regex-vc6-mt-sgd-1_35/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-sgd-1_35/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-sgd-1_35/static_mutex.obj vc6/libboost_regex-vc6-mt-sgd-1_35/usinstances.obj vc6/libboost_regex-vc6-mt-sgd-1_35/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_35/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_35/wide_posix_api.obj vc6/libboost_regex-vc6-mt-sgd-1_35/winstances.obj - link -lib /nologo /out:vc6/libboost_regex-vc6-mt-sgd-1_35.lib $(XSFLAGS) vc6/libboost_regex-vc6-mt-sgd-1_35/c_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_35/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_35/cregex.obj vc6/libboost_regex-vc6-mt-sgd-1_35/fileiter.obj vc6/libboost_regex-vc6-mt-sgd-1_35/icu.obj vc6/libboost_regex-vc6-mt-sgd-1_35/instances.obj vc6/libboost_regex-vc6-mt-sgd-1_35/posix_api.obj vc6/libboost_regex-vc6-mt-sgd-1_35/regex.obj vc6/libboost_regex-vc6-mt-sgd-1_35/regex_debug.obj vc6/libboost_regex-vc6-mt-sgd-1_35/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-sgd-1_35/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-sgd-1_35/static_mutex.obj vc6/libboost_regex-vc6-mt-sgd-1_35/usinstances.obj vc6/libboost_regex-vc6-mt-sgd-1_35/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_35/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_35/wide_posix_api.obj vc6/libboost_regex-vc6-mt-sgd-1_35/winstances.obj +./vc6/libboost_regex-vc6-mt-sgd-1_37.lib : vc6/libboost_regex-vc6-mt-sgd-1_37/c_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_37/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_37/cregex.obj vc6/libboost_regex-vc6-mt-sgd-1_37/fileiter.obj vc6/libboost_regex-vc6-mt-sgd-1_37/icu.obj vc6/libboost_regex-vc6-mt-sgd-1_37/instances.obj vc6/libboost_regex-vc6-mt-sgd-1_37/posix_api.obj vc6/libboost_regex-vc6-mt-sgd-1_37/regex.obj vc6/libboost_regex-vc6-mt-sgd-1_37/regex_debug.obj vc6/libboost_regex-vc6-mt-sgd-1_37/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-sgd-1_37/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-sgd-1_37/static_mutex.obj vc6/libboost_regex-vc6-mt-sgd-1_37/usinstances.obj vc6/libboost_regex-vc6-mt-sgd-1_37/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_37/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_37/wide_posix_api.obj vc6/libboost_regex-vc6-mt-sgd-1_37/winstances.obj + link -lib /nologo /out:vc6/libboost_regex-vc6-mt-sgd-1_37.lib $(XSFLAGS) vc6/libboost_regex-vc6-mt-sgd-1_37/c_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_37/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_37/cregex.obj vc6/libboost_regex-vc6-mt-sgd-1_37/fileiter.obj vc6/libboost_regex-vc6-mt-sgd-1_37/icu.obj vc6/libboost_regex-vc6-mt-sgd-1_37/instances.obj vc6/libboost_regex-vc6-mt-sgd-1_37/posix_api.obj vc6/libboost_regex-vc6-mt-sgd-1_37/regex.obj vc6/libboost_regex-vc6-mt-sgd-1_37/regex_debug.obj vc6/libboost_regex-vc6-mt-sgd-1_37/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-sgd-1_37/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-sgd-1_37/static_mutex.obj vc6/libboost_regex-vc6-mt-sgd-1_37/usinstances.obj vc6/libboost_regex-vc6-mt-sgd-1_37/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_37/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_37/wide_posix_api.obj vc6/libboost_regex-vc6-mt-sgd-1_37/winstances.obj ######################################################## # -# section for boost_regex-vc6-mt-gd-1_35.lib +# section for boost_regex-vc6-mt-gd-1_37.lib # ######################################################## -vc6/boost_regex-vc6-mt-gd-1_35/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_35/ -Fdvc6/boost_regex-vc6-mt-gd-1_35.pdb ../src/c_regex_traits.cpp +vc6/boost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-gd-1_37.pdb ../src/c_regex_traits.cpp -vc6/boost_regex-vc6-mt-gd-1_35/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_35/ -Fdvc6/boost_regex-vc6-mt-gd-1_35.pdb ../src/cpp_regex_traits.cpp +vc6/boost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-gd-1_37.pdb ../src/cpp_regex_traits.cpp -vc6/boost_regex-vc6-mt-gd-1_35/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_35/ -Fdvc6/boost_regex-vc6-mt-gd-1_35.pdb ../src/cregex.cpp +vc6/boost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-gd-1_37.pdb ../src/cregex.cpp -vc6/boost_regex-vc6-mt-gd-1_35/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_35/ -Fdvc6/boost_regex-vc6-mt-gd-1_35.pdb ../src/fileiter.cpp +vc6/boost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-gd-1_37.pdb ../src/fileiter.cpp -vc6/boost_regex-vc6-mt-gd-1_35/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_35/ -Fdvc6/boost_regex-vc6-mt-gd-1_35.pdb ../src/icu.cpp +vc6/boost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-gd-1_37.pdb ../src/icu.cpp -vc6/boost_regex-vc6-mt-gd-1_35/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_35/ -Fdvc6/boost_regex-vc6-mt-gd-1_35.pdb ../src/instances.cpp +vc6/boost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-gd-1_37.pdb ../src/instances.cpp -vc6/boost_regex-vc6-mt-gd-1_35/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_35/ -Fdvc6/boost_regex-vc6-mt-gd-1_35.pdb ../src/posix_api.cpp +vc6/boost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-gd-1_37.pdb ../src/posix_api.cpp -vc6/boost_regex-vc6-mt-gd-1_35/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_35/ -Fdvc6/boost_regex-vc6-mt-gd-1_35.pdb ../src/regex.cpp +vc6/boost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-gd-1_37.pdb ../src/regex.cpp -vc6/boost_regex-vc6-mt-gd-1_35/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_35/ -Fdvc6/boost_regex-vc6-mt-gd-1_35.pdb ../src/regex_debug.cpp +vc6/boost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-gd-1_37.pdb ../src/regex_debug.cpp -vc6/boost_regex-vc6-mt-gd-1_35/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_35/ -Fdvc6/boost_regex-vc6-mt-gd-1_35.pdb ../src/regex_raw_buffer.cpp +vc6/boost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-gd-1_37.pdb ../src/regex_raw_buffer.cpp -vc6/boost_regex-vc6-mt-gd-1_35/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_35/ -Fdvc6/boost_regex-vc6-mt-gd-1_35.pdb ../src/regex_traits_defaults.cpp +vc6/boost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-gd-1_37.pdb ../src/regex_traits_defaults.cpp -vc6/boost_regex-vc6-mt-gd-1_35/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_35/ -Fdvc6/boost_regex-vc6-mt-gd-1_35.pdb ../src/static_mutex.cpp +vc6/boost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-gd-1_37.pdb ../src/static_mutex.cpp -vc6/boost_regex-vc6-mt-gd-1_35/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_35/ -Fdvc6/boost_regex-vc6-mt-gd-1_35.pdb ../src/usinstances.cpp +vc6/boost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-gd-1_37.pdb ../src/usinstances.cpp -vc6/boost_regex-vc6-mt-gd-1_35/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_35/ -Fdvc6/boost_regex-vc6-mt-gd-1_35.pdb ../src/w32_regex_traits.cpp +vc6/boost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-gd-1_37.pdb ../src/w32_regex_traits.cpp -vc6/boost_regex-vc6-mt-gd-1_35/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_35/ -Fdvc6/boost_regex-vc6-mt-gd-1_35.pdb ../src/wc_regex_traits.cpp +vc6/boost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-gd-1_37.pdb ../src/wc_regex_traits.cpp -vc6/boost_regex-vc6-mt-gd-1_35/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_35/ -Fdvc6/boost_regex-vc6-mt-gd-1_35.pdb ../src/wide_posix_api.cpp +vc6/boost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-gd-1_37.pdb ../src/wide_posix_api.cpp -vc6/boost_regex-vc6-mt-gd-1_35/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_35/ -Fdvc6/boost_regex-vc6-mt-gd-1_35.pdb ../src/winstances.cpp +vc6/boost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-gd-1_37.pdb ../src/winstances.cpp -boost_regex-vc6-mt-gd-1_35_dir : - @if not exist "vc6\boost_regex-vc6-mt-gd-1_35\$(NULL)" mkdir vc6\boost_regex-vc6-mt-gd-1_35 +boost_regex-vc6-mt-gd-1_37_dir : + @if not exist "vc6\boost_regex-vc6-mt-gd-1_37\$(NULL)" mkdir vc6\boost_regex-vc6-mt-gd-1_37 -boost_regex-vc6-mt-gd-1_35_clean : - del vc6\boost_regex-vc6-mt-gd-1_35\*.obj - del vc6\boost_regex-vc6-mt-gd-1_35\*.idb - del vc6\boost_regex-vc6-mt-gd-1_35\*.exp - del vc6\boost_regex-vc6-mt-gd-1_35\*.pch +boost_regex-vc6-mt-gd-1_37_clean : + del vc6\boost_regex-vc6-mt-gd-1_37\*.obj + del vc6\boost_regex-vc6-mt-gd-1_37\*.idb + del vc6\boost_regex-vc6-mt-gd-1_37\*.exp + del vc6\boost_regex-vc6-mt-gd-1_37\*.pch -./vc6/boost_regex-vc6-mt-gd-1_35.lib : vc6/boost_regex-vc6-mt-gd-1_35/c_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_35/cpp_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_35/cregex.obj vc6/boost_regex-vc6-mt-gd-1_35/fileiter.obj vc6/boost_regex-vc6-mt-gd-1_35/icu.obj vc6/boost_regex-vc6-mt-gd-1_35/instances.obj vc6/boost_regex-vc6-mt-gd-1_35/posix_api.obj vc6/boost_regex-vc6-mt-gd-1_35/regex.obj vc6/boost_regex-vc6-mt-gd-1_35/regex_debug.obj vc6/boost_regex-vc6-mt-gd-1_35/regex_raw_buffer.obj vc6/boost_regex-vc6-mt-gd-1_35/regex_traits_defaults.obj vc6/boost_regex-vc6-mt-gd-1_35/static_mutex.obj vc6/boost_regex-vc6-mt-gd-1_35/usinstances.obj vc6/boost_regex-vc6-mt-gd-1_35/w32_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_35/wc_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_35/wide_posix_api.obj vc6/boost_regex-vc6-mt-gd-1_35/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_35.pdb" /debug /machine:I386 /out:"vc6/boost_regex-vc6-mt-gd-1_35.dll" /implib:"vc6/boost_regex-vc6-mt-gd-1_35.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc6/boost_regex-vc6-mt-gd-1_35/c_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_35/cpp_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_35/cregex.obj vc6/boost_regex-vc6-mt-gd-1_35/fileiter.obj vc6/boost_regex-vc6-mt-gd-1_35/icu.obj vc6/boost_regex-vc6-mt-gd-1_35/instances.obj vc6/boost_regex-vc6-mt-gd-1_35/posix_api.obj vc6/boost_regex-vc6-mt-gd-1_35/regex.obj vc6/boost_regex-vc6-mt-gd-1_35/regex_debug.obj vc6/boost_regex-vc6-mt-gd-1_35/regex_raw_buffer.obj vc6/boost_regex-vc6-mt-gd-1_35/regex_traits_defaults.obj vc6/boost_regex-vc6-mt-gd-1_35/static_mutex.obj vc6/boost_regex-vc6-mt-gd-1_35/usinstances.obj vc6/boost_regex-vc6-mt-gd-1_35/w32_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_35/wc_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_35/wide_posix_api.obj vc6/boost_regex-vc6-mt-gd-1_35/winstances.obj +./vc6/boost_regex-vc6-mt-gd-1_37.lib : vc6/boost_regex-vc6-mt-gd-1_37/c_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_37/cpp_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_37/cregex.obj vc6/boost_regex-vc6-mt-gd-1_37/fileiter.obj vc6/boost_regex-vc6-mt-gd-1_37/icu.obj vc6/boost_regex-vc6-mt-gd-1_37/instances.obj vc6/boost_regex-vc6-mt-gd-1_37/posix_api.obj vc6/boost_regex-vc6-mt-gd-1_37/regex.obj vc6/boost_regex-vc6-mt-gd-1_37/regex_debug.obj vc6/boost_regex-vc6-mt-gd-1_37/regex_raw_buffer.obj vc6/boost_regex-vc6-mt-gd-1_37/regex_traits_defaults.obj vc6/boost_regex-vc6-mt-gd-1_37/static_mutex.obj vc6/boost_regex-vc6-mt-gd-1_37/usinstances.obj vc6/boost_regex-vc6-mt-gd-1_37/w32_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_37/wc_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_37/wide_posix_api.obj vc6/boost_regex-vc6-mt-gd-1_37/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_37.pdb" /debug /machine:I386 /out:"vc6/boost_regex-vc6-mt-gd-1_37.dll" /implib:"vc6/boost_regex-vc6-mt-gd-1_37.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc6/boost_regex-vc6-mt-gd-1_37/c_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_37/cpp_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_37/cregex.obj vc6/boost_regex-vc6-mt-gd-1_37/fileiter.obj vc6/boost_regex-vc6-mt-gd-1_37/icu.obj vc6/boost_regex-vc6-mt-gd-1_37/instances.obj vc6/boost_regex-vc6-mt-gd-1_37/posix_api.obj vc6/boost_regex-vc6-mt-gd-1_37/regex.obj vc6/boost_regex-vc6-mt-gd-1_37/regex_debug.obj vc6/boost_regex-vc6-mt-gd-1_37/regex_raw_buffer.obj vc6/boost_regex-vc6-mt-gd-1_37/regex_traits_defaults.obj vc6/boost_regex-vc6-mt-gd-1_37/static_mutex.obj vc6/boost_regex-vc6-mt-gd-1_37/usinstances.obj vc6/boost_regex-vc6-mt-gd-1_37/w32_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_37/wc_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_37/wide_posix_api.obj vc6/boost_regex-vc6-mt-gd-1_37/winstances.obj ######################################################## # -# section for boost_regex-vc6-mt-1_35.lib +# section for boost_regex-vc6-mt-1_37.lib # ######################################################## -vc6/boost_regex-vc6-mt-1_35/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_35/ -Fdvc6/boost_regex-vc6-mt-1_35.pdb ../src/c_regex_traits.cpp +vc6/boost_regex-vc6-mt-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-1_37.pdb ../src/c_regex_traits.cpp -vc6/boost_regex-vc6-mt-1_35/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_35/ -Fdvc6/boost_regex-vc6-mt-1_35.pdb ../src/cpp_regex_traits.cpp +vc6/boost_regex-vc6-mt-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-1_37.pdb ../src/cpp_regex_traits.cpp -vc6/boost_regex-vc6-mt-1_35/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_35/ -Fdvc6/boost_regex-vc6-mt-1_35.pdb ../src/cregex.cpp +vc6/boost_regex-vc6-mt-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-1_37.pdb ../src/cregex.cpp -vc6/boost_regex-vc6-mt-1_35/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_35/ -Fdvc6/boost_regex-vc6-mt-1_35.pdb ../src/fileiter.cpp +vc6/boost_regex-vc6-mt-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-1_37.pdb ../src/fileiter.cpp -vc6/boost_regex-vc6-mt-1_35/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_35/ -Fdvc6/boost_regex-vc6-mt-1_35.pdb ../src/icu.cpp +vc6/boost_regex-vc6-mt-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-1_37.pdb ../src/icu.cpp -vc6/boost_regex-vc6-mt-1_35/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_35/ -Fdvc6/boost_regex-vc6-mt-1_35.pdb ../src/instances.cpp +vc6/boost_regex-vc6-mt-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-1_37.pdb ../src/instances.cpp -vc6/boost_regex-vc6-mt-1_35/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_35/ -Fdvc6/boost_regex-vc6-mt-1_35.pdb ../src/posix_api.cpp +vc6/boost_regex-vc6-mt-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-1_37.pdb ../src/posix_api.cpp -vc6/boost_regex-vc6-mt-1_35/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_35/ -Fdvc6/boost_regex-vc6-mt-1_35.pdb ../src/regex.cpp +vc6/boost_regex-vc6-mt-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-1_37.pdb ../src/regex.cpp -vc6/boost_regex-vc6-mt-1_35/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_35/ -Fdvc6/boost_regex-vc6-mt-1_35.pdb ../src/regex_debug.cpp +vc6/boost_regex-vc6-mt-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-1_37.pdb ../src/regex_debug.cpp -vc6/boost_regex-vc6-mt-1_35/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_35/ -Fdvc6/boost_regex-vc6-mt-1_35.pdb ../src/regex_raw_buffer.cpp +vc6/boost_regex-vc6-mt-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-1_37.pdb ../src/regex_raw_buffer.cpp -vc6/boost_regex-vc6-mt-1_35/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_35/ -Fdvc6/boost_regex-vc6-mt-1_35.pdb ../src/regex_traits_defaults.cpp +vc6/boost_regex-vc6-mt-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-1_37.pdb ../src/regex_traits_defaults.cpp -vc6/boost_regex-vc6-mt-1_35/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_35/ -Fdvc6/boost_regex-vc6-mt-1_35.pdb ../src/static_mutex.cpp +vc6/boost_regex-vc6-mt-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-1_37.pdb ../src/static_mutex.cpp -vc6/boost_regex-vc6-mt-1_35/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_35/ -Fdvc6/boost_regex-vc6-mt-1_35.pdb ../src/usinstances.cpp +vc6/boost_regex-vc6-mt-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-1_37.pdb ../src/usinstances.cpp -vc6/boost_regex-vc6-mt-1_35/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_35/ -Fdvc6/boost_regex-vc6-mt-1_35.pdb ../src/w32_regex_traits.cpp +vc6/boost_regex-vc6-mt-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-1_37.pdb ../src/w32_regex_traits.cpp -vc6/boost_regex-vc6-mt-1_35/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_35/ -Fdvc6/boost_regex-vc6-mt-1_35.pdb ../src/wc_regex_traits.cpp +vc6/boost_regex-vc6-mt-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-1_37.pdb ../src/wc_regex_traits.cpp -vc6/boost_regex-vc6-mt-1_35/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_35/ -Fdvc6/boost_regex-vc6-mt-1_35.pdb ../src/wide_posix_api.cpp +vc6/boost_regex-vc6-mt-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-1_37.pdb ../src/wide_posix_api.cpp -vc6/boost_regex-vc6-mt-1_35/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_35/ -Fdvc6/boost_regex-vc6-mt-1_35.pdb ../src/winstances.cpp +vc6/boost_regex-vc6-mt-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-1_37.pdb ../src/winstances.cpp -boost_regex-vc6-mt-1_35_dir : - @if not exist "vc6\boost_regex-vc6-mt-1_35\$(NULL)" mkdir vc6\boost_regex-vc6-mt-1_35 +boost_regex-vc6-mt-1_37_dir : + @if not exist "vc6\boost_regex-vc6-mt-1_37\$(NULL)" mkdir vc6\boost_regex-vc6-mt-1_37 -boost_regex-vc6-mt-1_35_clean : - del vc6\boost_regex-vc6-mt-1_35\*.obj - del vc6\boost_regex-vc6-mt-1_35\*.idb - del vc6\boost_regex-vc6-mt-1_35\*.exp - del vc6\boost_regex-vc6-mt-1_35\*.pch +boost_regex-vc6-mt-1_37_clean : + del vc6\boost_regex-vc6-mt-1_37\*.obj + del vc6\boost_regex-vc6-mt-1_37\*.idb + del vc6\boost_regex-vc6-mt-1_37\*.exp + del vc6\boost_regex-vc6-mt-1_37\*.pch -./vc6/boost_regex-vc6-mt-1_35.lib : vc6/boost_regex-vc6-mt-1_35/c_regex_traits.obj vc6/boost_regex-vc6-mt-1_35/cpp_regex_traits.obj vc6/boost_regex-vc6-mt-1_35/cregex.obj vc6/boost_regex-vc6-mt-1_35/fileiter.obj vc6/boost_regex-vc6-mt-1_35/icu.obj vc6/boost_regex-vc6-mt-1_35/instances.obj vc6/boost_regex-vc6-mt-1_35/posix_api.obj vc6/boost_regex-vc6-mt-1_35/regex.obj vc6/boost_regex-vc6-mt-1_35/regex_debug.obj vc6/boost_regex-vc6-mt-1_35/regex_raw_buffer.obj vc6/boost_regex-vc6-mt-1_35/regex_traits_defaults.obj vc6/boost_regex-vc6-mt-1_35/static_mutex.obj vc6/boost_regex-vc6-mt-1_35/usinstances.obj vc6/boost_regex-vc6-mt-1_35/w32_regex_traits.obj vc6/boost_regex-vc6-mt-1_35/wc_regex_traits.obj vc6/boost_regex-vc6-mt-1_35/wide_posix_api.obj vc6/boost_regex-vc6-mt-1_35/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_35.pdb" /debug /machine:I386 /out:"vc6/boost_regex-vc6-mt-1_35.dll" /implib:"vc6/boost_regex-vc6-mt-1_35.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc6/boost_regex-vc6-mt-1_35/c_regex_traits.obj vc6/boost_regex-vc6-mt-1_35/cpp_regex_traits.obj vc6/boost_regex-vc6-mt-1_35/cregex.obj vc6/boost_regex-vc6-mt-1_35/fileiter.obj vc6/boost_regex-vc6-mt-1_35/icu.obj vc6/boost_regex-vc6-mt-1_35/instances.obj vc6/boost_regex-vc6-mt-1_35/posix_api.obj vc6/boost_regex-vc6-mt-1_35/regex.obj vc6/boost_regex-vc6-mt-1_35/regex_debug.obj vc6/boost_regex-vc6-mt-1_35/regex_raw_buffer.obj vc6/boost_regex-vc6-mt-1_35/regex_traits_defaults.obj vc6/boost_regex-vc6-mt-1_35/static_mutex.obj vc6/boost_regex-vc6-mt-1_35/usinstances.obj vc6/boost_regex-vc6-mt-1_35/w32_regex_traits.obj vc6/boost_regex-vc6-mt-1_35/wc_regex_traits.obj vc6/boost_regex-vc6-mt-1_35/wide_posix_api.obj vc6/boost_regex-vc6-mt-1_35/winstances.obj +./vc6/boost_regex-vc6-mt-1_37.lib : vc6/boost_regex-vc6-mt-1_37/c_regex_traits.obj vc6/boost_regex-vc6-mt-1_37/cpp_regex_traits.obj vc6/boost_regex-vc6-mt-1_37/cregex.obj vc6/boost_regex-vc6-mt-1_37/fileiter.obj vc6/boost_regex-vc6-mt-1_37/icu.obj vc6/boost_regex-vc6-mt-1_37/instances.obj vc6/boost_regex-vc6-mt-1_37/posix_api.obj vc6/boost_regex-vc6-mt-1_37/regex.obj vc6/boost_regex-vc6-mt-1_37/regex_debug.obj vc6/boost_regex-vc6-mt-1_37/regex_raw_buffer.obj vc6/boost_regex-vc6-mt-1_37/regex_traits_defaults.obj vc6/boost_regex-vc6-mt-1_37/static_mutex.obj vc6/boost_regex-vc6-mt-1_37/usinstances.obj vc6/boost_regex-vc6-mt-1_37/w32_regex_traits.obj vc6/boost_regex-vc6-mt-1_37/wc_regex_traits.obj vc6/boost_regex-vc6-mt-1_37/wide_posix_api.obj vc6/boost_regex-vc6-mt-1_37/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_37.pdb" /debug /machine:I386 /out:"vc6/boost_regex-vc6-mt-1_37.dll" /implib:"vc6/boost_regex-vc6-mt-1_37.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc6/boost_regex-vc6-mt-1_37/c_regex_traits.obj vc6/boost_regex-vc6-mt-1_37/cpp_regex_traits.obj vc6/boost_regex-vc6-mt-1_37/cregex.obj vc6/boost_regex-vc6-mt-1_37/fileiter.obj vc6/boost_regex-vc6-mt-1_37/icu.obj vc6/boost_regex-vc6-mt-1_37/instances.obj vc6/boost_regex-vc6-mt-1_37/posix_api.obj vc6/boost_regex-vc6-mt-1_37/regex.obj vc6/boost_regex-vc6-mt-1_37/regex_debug.obj vc6/boost_regex-vc6-mt-1_37/regex_raw_buffer.obj vc6/boost_regex-vc6-mt-1_37/regex_traits_defaults.obj vc6/boost_regex-vc6-mt-1_37/static_mutex.obj vc6/boost_regex-vc6-mt-1_37/usinstances.obj vc6/boost_regex-vc6-mt-1_37/w32_regex_traits.obj vc6/boost_regex-vc6-mt-1_37/wc_regex_traits.obj vc6/boost_regex-vc6-mt-1_37/wide_posix_api.obj vc6/boost_regex-vc6-mt-1_37/winstances.obj ######################################################## # -# section for libboost_regex-vc6-mt-1_35.lib +# section for libboost_regex-vc6-mt-1_37.lib # ######################################################## -vc6/libboost_regex-vc6-mt-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-1_35.pdb ../src/c_regex_traits.cpp +vc6/libboost_regex-vc6-mt-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-1_37.pdb ../src/c_regex_traits.cpp -vc6/libboost_regex-vc6-mt-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-1_35.pdb ../src/cpp_regex_traits.cpp +vc6/libboost_regex-vc6-mt-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-1_37.pdb ../src/cpp_regex_traits.cpp -vc6/libboost_regex-vc6-mt-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-1_35.pdb ../src/cregex.cpp +vc6/libboost_regex-vc6-mt-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-1_37.pdb ../src/cregex.cpp -vc6/libboost_regex-vc6-mt-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-1_35.pdb ../src/fileiter.cpp +vc6/libboost_regex-vc6-mt-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-1_37.pdb ../src/fileiter.cpp -vc6/libboost_regex-vc6-mt-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-1_35.pdb ../src/icu.cpp +vc6/libboost_regex-vc6-mt-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-1_37.pdb ../src/icu.cpp -vc6/libboost_regex-vc6-mt-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-1_35.pdb ../src/instances.cpp +vc6/libboost_regex-vc6-mt-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-1_37.pdb ../src/instances.cpp -vc6/libboost_regex-vc6-mt-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-1_35.pdb ../src/posix_api.cpp +vc6/libboost_regex-vc6-mt-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-1_37.pdb ../src/posix_api.cpp -vc6/libboost_regex-vc6-mt-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-1_35.pdb ../src/regex.cpp +vc6/libboost_regex-vc6-mt-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-1_37.pdb ../src/regex.cpp -vc6/libboost_regex-vc6-mt-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-1_35.pdb ../src/regex_debug.cpp +vc6/libboost_regex-vc6-mt-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-1_37.pdb ../src/regex_debug.cpp -vc6/libboost_regex-vc6-mt-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-1_35.pdb ../src/regex_raw_buffer.cpp +vc6/libboost_regex-vc6-mt-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-1_37.pdb ../src/regex_raw_buffer.cpp -vc6/libboost_regex-vc6-mt-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-1_35.pdb ../src/regex_traits_defaults.cpp +vc6/libboost_regex-vc6-mt-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-1_37.pdb ../src/regex_traits_defaults.cpp -vc6/libboost_regex-vc6-mt-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-1_35.pdb ../src/static_mutex.cpp +vc6/libboost_regex-vc6-mt-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-1_37.pdb ../src/static_mutex.cpp -vc6/libboost_regex-vc6-mt-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-1_35.pdb ../src/usinstances.cpp +vc6/libboost_regex-vc6-mt-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-1_37.pdb ../src/usinstances.cpp -vc6/libboost_regex-vc6-mt-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-1_35.pdb ../src/w32_regex_traits.cpp +vc6/libboost_regex-vc6-mt-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-1_37.pdb ../src/w32_regex_traits.cpp -vc6/libboost_regex-vc6-mt-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-1_35.pdb ../src/wc_regex_traits.cpp +vc6/libboost_regex-vc6-mt-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-1_37.pdb ../src/wc_regex_traits.cpp -vc6/libboost_regex-vc6-mt-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-1_35.pdb ../src/wide_posix_api.cpp +vc6/libboost_regex-vc6-mt-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-1_37.pdb ../src/wide_posix_api.cpp -vc6/libboost_regex-vc6-mt-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-1_35.pdb ../src/winstances.cpp +vc6/libboost_regex-vc6-mt-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-1_37.pdb ../src/winstances.cpp -libboost_regex-vc6-mt-1_35_dir : - @if not exist "vc6\libboost_regex-vc6-mt-1_35\$(NULL)" mkdir vc6\libboost_regex-vc6-mt-1_35 +libboost_regex-vc6-mt-1_37_dir : + @if not exist "vc6\libboost_regex-vc6-mt-1_37\$(NULL)" mkdir vc6\libboost_regex-vc6-mt-1_37 -libboost_regex-vc6-mt-1_35_clean : - del vc6\libboost_regex-vc6-mt-1_35\*.obj - del vc6\libboost_regex-vc6-mt-1_35\*.idb - del vc6\libboost_regex-vc6-mt-1_35\*.exp - del vc6\libboost_regex-vc6-mt-1_35\*.pch +libboost_regex-vc6-mt-1_37_clean : + del vc6\libboost_regex-vc6-mt-1_37\*.obj + del vc6\libboost_regex-vc6-mt-1_37\*.idb + del vc6\libboost_regex-vc6-mt-1_37\*.exp + del vc6\libboost_regex-vc6-mt-1_37\*.pch -./vc6/libboost_regex-vc6-mt-1_35.lib : vc6/libboost_regex-vc6-mt-1_35/c_regex_traits.obj vc6/libboost_regex-vc6-mt-1_35/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-1_35/cregex.obj vc6/libboost_regex-vc6-mt-1_35/fileiter.obj vc6/libboost_regex-vc6-mt-1_35/icu.obj vc6/libboost_regex-vc6-mt-1_35/instances.obj vc6/libboost_regex-vc6-mt-1_35/posix_api.obj vc6/libboost_regex-vc6-mt-1_35/regex.obj vc6/libboost_regex-vc6-mt-1_35/regex_debug.obj vc6/libboost_regex-vc6-mt-1_35/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-1_35/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-1_35/static_mutex.obj vc6/libboost_regex-vc6-mt-1_35/usinstances.obj vc6/libboost_regex-vc6-mt-1_35/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-1_35/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-1_35/wide_posix_api.obj vc6/libboost_regex-vc6-mt-1_35/winstances.obj - link -lib /nologo /out:vc6/libboost_regex-vc6-mt-1_35.lib $(XSFLAGS) vc6/libboost_regex-vc6-mt-1_35/c_regex_traits.obj vc6/libboost_regex-vc6-mt-1_35/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-1_35/cregex.obj vc6/libboost_regex-vc6-mt-1_35/fileiter.obj vc6/libboost_regex-vc6-mt-1_35/icu.obj vc6/libboost_regex-vc6-mt-1_35/instances.obj vc6/libboost_regex-vc6-mt-1_35/posix_api.obj vc6/libboost_regex-vc6-mt-1_35/regex.obj vc6/libboost_regex-vc6-mt-1_35/regex_debug.obj vc6/libboost_regex-vc6-mt-1_35/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-1_35/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-1_35/static_mutex.obj vc6/libboost_regex-vc6-mt-1_35/usinstances.obj vc6/libboost_regex-vc6-mt-1_35/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-1_35/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-1_35/wide_posix_api.obj vc6/libboost_regex-vc6-mt-1_35/winstances.obj +./vc6/libboost_regex-vc6-mt-1_37.lib : vc6/libboost_regex-vc6-mt-1_37/c_regex_traits.obj vc6/libboost_regex-vc6-mt-1_37/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-1_37/cregex.obj vc6/libboost_regex-vc6-mt-1_37/fileiter.obj vc6/libboost_regex-vc6-mt-1_37/icu.obj vc6/libboost_regex-vc6-mt-1_37/instances.obj vc6/libboost_regex-vc6-mt-1_37/posix_api.obj vc6/libboost_regex-vc6-mt-1_37/regex.obj vc6/libboost_regex-vc6-mt-1_37/regex_debug.obj vc6/libboost_regex-vc6-mt-1_37/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-1_37/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-1_37/static_mutex.obj vc6/libboost_regex-vc6-mt-1_37/usinstances.obj vc6/libboost_regex-vc6-mt-1_37/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-1_37/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-1_37/wide_posix_api.obj vc6/libboost_regex-vc6-mt-1_37/winstances.obj + link -lib /nologo /out:vc6/libboost_regex-vc6-mt-1_37.lib $(XSFLAGS) vc6/libboost_regex-vc6-mt-1_37/c_regex_traits.obj vc6/libboost_regex-vc6-mt-1_37/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-1_37/cregex.obj vc6/libboost_regex-vc6-mt-1_37/fileiter.obj vc6/libboost_regex-vc6-mt-1_37/icu.obj vc6/libboost_regex-vc6-mt-1_37/instances.obj vc6/libboost_regex-vc6-mt-1_37/posix_api.obj vc6/libboost_regex-vc6-mt-1_37/regex.obj vc6/libboost_regex-vc6-mt-1_37/regex_debug.obj vc6/libboost_regex-vc6-mt-1_37/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-1_37/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-1_37/static_mutex.obj vc6/libboost_regex-vc6-mt-1_37/usinstances.obj vc6/libboost_regex-vc6-mt-1_37/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-1_37/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-1_37/wide_posix_api.obj vc6/libboost_regex-vc6-mt-1_37/winstances.obj ######################################################## # -# section for libboost_regex-vc6-mt-gd-1_35.lib +# section for libboost_regex-vc6-mt-gd-1_37.lib # ######################################################## -vc6/libboost_regex-vc6-mt-gd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-gd-1_35.pdb ../src/c_regex_traits.cpp +vc6/libboost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-gd-1_37.pdb ../src/c_regex_traits.cpp -vc6/libboost_regex-vc6-mt-gd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-gd-1_35.pdb ../src/cpp_regex_traits.cpp +vc6/libboost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-gd-1_37.pdb ../src/cpp_regex_traits.cpp -vc6/libboost_regex-vc6-mt-gd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-gd-1_35.pdb ../src/cregex.cpp +vc6/libboost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-gd-1_37.pdb ../src/cregex.cpp -vc6/libboost_regex-vc6-mt-gd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-gd-1_35.pdb ../src/fileiter.cpp +vc6/libboost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-gd-1_37.pdb ../src/fileiter.cpp -vc6/libboost_regex-vc6-mt-gd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-gd-1_35.pdb ../src/icu.cpp +vc6/libboost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-gd-1_37.pdb ../src/icu.cpp -vc6/libboost_regex-vc6-mt-gd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-gd-1_35.pdb ../src/instances.cpp +vc6/libboost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-gd-1_37.pdb ../src/instances.cpp -vc6/libboost_regex-vc6-mt-gd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-gd-1_35.pdb ../src/posix_api.cpp +vc6/libboost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-gd-1_37.pdb ../src/posix_api.cpp -vc6/libboost_regex-vc6-mt-gd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-gd-1_35.pdb ../src/regex.cpp +vc6/libboost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-gd-1_37.pdb ../src/regex.cpp -vc6/libboost_regex-vc6-mt-gd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-gd-1_35.pdb ../src/regex_debug.cpp +vc6/libboost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-gd-1_37.pdb ../src/regex_debug.cpp -vc6/libboost_regex-vc6-mt-gd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-gd-1_35.pdb ../src/regex_raw_buffer.cpp +vc6/libboost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-gd-1_37.pdb ../src/regex_raw_buffer.cpp -vc6/libboost_regex-vc6-mt-gd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-gd-1_35.pdb ../src/regex_traits_defaults.cpp +vc6/libboost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-gd-1_37.pdb ../src/regex_traits_defaults.cpp -vc6/libboost_regex-vc6-mt-gd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-gd-1_35.pdb ../src/static_mutex.cpp +vc6/libboost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-gd-1_37.pdb ../src/static_mutex.cpp -vc6/libboost_regex-vc6-mt-gd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-gd-1_35.pdb ../src/usinstances.cpp +vc6/libboost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-gd-1_37.pdb ../src/usinstances.cpp -vc6/libboost_regex-vc6-mt-gd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-gd-1_35.pdb ../src/w32_regex_traits.cpp +vc6/libboost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-gd-1_37.pdb ../src/w32_regex_traits.cpp -vc6/libboost_regex-vc6-mt-gd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-gd-1_35.pdb ../src/wc_regex_traits.cpp +vc6/libboost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-gd-1_37.pdb ../src/wc_regex_traits.cpp -vc6/libboost_regex-vc6-mt-gd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-gd-1_35.pdb ../src/wide_posix_api.cpp +vc6/libboost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-gd-1_37.pdb ../src/wide_posix_api.cpp -vc6/libboost_regex-vc6-mt-gd-1_35/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_35/ -Fdvc6/libboost_regex-vc6-mt-gd-1_35.pdb ../src/winstances.cpp +vc6/libboost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-gd-1_37.pdb ../src/winstances.cpp -libboost_regex-vc6-mt-gd-1_35_dir : - @if not exist "vc6\libboost_regex-vc6-mt-gd-1_35\$(NULL)" mkdir vc6\libboost_regex-vc6-mt-gd-1_35 +libboost_regex-vc6-mt-gd-1_37_dir : + @if not exist "vc6\libboost_regex-vc6-mt-gd-1_37\$(NULL)" mkdir vc6\libboost_regex-vc6-mt-gd-1_37 -libboost_regex-vc6-mt-gd-1_35_clean : - del vc6\libboost_regex-vc6-mt-gd-1_35\*.obj - del vc6\libboost_regex-vc6-mt-gd-1_35\*.idb - del vc6\libboost_regex-vc6-mt-gd-1_35\*.exp - del vc6\libboost_regex-vc6-mt-gd-1_35\*.pch +libboost_regex-vc6-mt-gd-1_37_clean : + del vc6\libboost_regex-vc6-mt-gd-1_37\*.obj + del vc6\libboost_regex-vc6-mt-gd-1_37\*.idb + del vc6\libboost_regex-vc6-mt-gd-1_37\*.exp + del vc6\libboost_regex-vc6-mt-gd-1_37\*.pch + +./vc6/libboost_regex-vc6-mt-gd-1_37.lib : vc6/libboost_regex-vc6-mt-gd-1_37/c_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_37/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_37/cregex.obj vc6/libboost_regex-vc6-mt-gd-1_37/fileiter.obj vc6/libboost_regex-vc6-mt-gd-1_37/icu.obj vc6/libboost_regex-vc6-mt-gd-1_37/instances.obj vc6/libboost_regex-vc6-mt-gd-1_37/posix_api.obj vc6/libboost_regex-vc6-mt-gd-1_37/regex.obj vc6/libboost_regex-vc6-mt-gd-1_37/regex_debug.obj vc6/libboost_regex-vc6-mt-gd-1_37/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-gd-1_37/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-gd-1_37/static_mutex.obj vc6/libboost_regex-vc6-mt-gd-1_37/usinstances.obj vc6/libboost_regex-vc6-mt-gd-1_37/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_37/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_37/wide_posix_api.obj vc6/libboost_regex-vc6-mt-gd-1_37/winstances.obj + link -lib /nologo /out:vc6/libboost_regex-vc6-mt-gd-1_37.lib $(XSFLAGS) vc6/libboost_regex-vc6-mt-gd-1_37/c_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_37/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_37/cregex.obj vc6/libboost_regex-vc6-mt-gd-1_37/fileiter.obj vc6/libboost_regex-vc6-mt-gd-1_37/icu.obj vc6/libboost_regex-vc6-mt-gd-1_37/instances.obj vc6/libboost_regex-vc6-mt-gd-1_37/posix_api.obj vc6/libboost_regex-vc6-mt-gd-1_37/regex.obj vc6/libboost_regex-vc6-mt-gd-1_37/regex_debug.obj vc6/libboost_regex-vc6-mt-gd-1_37/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-gd-1_37/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-gd-1_37/static_mutex.obj vc6/libboost_regex-vc6-mt-gd-1_37/usinstances.obj vc6/libboost_regex-vc6-mt-gd-1_37/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_37/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_37/wide_posix_api.obj vc6/libboost_regex-vc6-mt-gd-1_37/winstances.obj -./vc6/libboost_regex-vc6-mt-gd-1_35.lib : vc6/libboost_regex-vc6-mt-gd-1_35/c_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_35/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_35/cregex.obj vc6/libboost_regex-vc6-mt-gd-1_35/fileiter.obj vc6/libboost_regex-vc6-mt-gd-1_35/icu.obj vc6/libboost_regex-vc6-mt-gd-1_35/instances.obj vc6/libboost_regex-vc6-mt-gd-1_35/posix_api.obj vc6/libboost_regex-vc6-mt-gd-1_35/regex.obj vc6/libboost_regex-vc6-mt-gd-1_35/regex_debug.obj vc6/libboost_regex-vc6-mt-gd-1_35/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-gd-1_35/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-gd-1_35/static_mutex.obj vc6/libboost_regex-vc6-mt-gd-1_35/usinstances.obj vc6/libboost_regex-vc6-mt-gd-1_35/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_35/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_35/wide_posix_api.obj vc6/libboost_regex-vc6-mt-gd-1_35/winstances.obj - link -lib /nologo /out:vc6/libboost_regex-vc6-mt-gd-1_35.lib $(XSFLAGS) vc6/libboost_regex-vc6-mt-gd-1_35/c_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_35/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_35/cregex.obj vc6/libboost_regex-vc6-mt-gd-1_35/fileiter.obj vc6/libboost_regex-vc6-mt-gd-1_35/icu.obj vc6/libboost_regex-vc6-mt-gd-1_35/instances.obj vc6/libboost_regex-vc6-mt-gd-1_35/posix_api.obj vc6/libboost_regex-vc6-mt-gd-1_35/regex.obj vc6/libboost_regex-vc6-mt-gd-1_35/regex_debug.obj vc6/libboost_regex-vc6-mt-gd-1_35/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-gd-1_35/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-gd-1_35/static_mutex.obj vc6/libboost_regex-vc6-mt-gd-1_35/usinstances.obj vc6/libboost_regex-vc6-mt-gd-1_35/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_35/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_35/wide_posix_api.obj vc6/libboost_regex-vc6-mt-gd-1_35/winstances.obj diff --git a/build/vc7-stlport.mak b/build/vc7-stlport.mak index 967b9a7c..5fdefa5f 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_35_dir ./vc7-stlport/libboost_regex-vc7-mt-sp-1_35.lib boost_regex-vc7-mt-p-1_35_dir ./vc7-stlport/boost_regex-vc7-mt-p-1_35.lib libboost_regex-vc7-mt-p-1_35_dir ./vc7-stlport/libboost_regex-vc7-mt-p-1_35.lib boost_regex-vc7-mt-gdp-1_35_dir ./vc7-stlport/boost_regex-vc7-mt-gdp-1_35.lib libboost_regex-vc7-mt-sgdp-1_35_dir ./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35.lib libboost_regex-vc7-mt-gdp-1_35_dir ./vc7-stlport/libboost_regex-vc7-mt-gdp-1_35.lib +all : main_dir libboost_regex-vc7-mt-sp-1_37_dir ./vc7-stlport/libboost_regex-vc7-mt-sp-1_37.lib boost_regex-vc7-mt-p-1_37_dir ./vc7-stlport/boost_regex-vc7-mt-p-1_37.lib libboost_regex-vc7-mt-p-1_37_dir ./vc7-stlport/libboost_regex-vc7-mt-p-1_37.lib boost_regex-vc7-mt-gdp-1_37_dir ./vc7-stlport/boost_regex-vc7-mt-gdp-1_37.lib libboost_regex-vc7-mt-sgdp-1_37_dir ./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37.lib libboost_regex-vc7-mt-gdp-1_37_dir ./vc7-stlport/libboost_regex-vc7-mt-gdp-1_37.lib -clean : libboost_regex-vc7-mt-sp-1_35_clean boost_regex-vc7-mt-p-1_35_clean libboost_regex-vc7-mt-p-1_35_clean boost_regex-vc7-mt-gdp-1_35_clean libboost_regex-vc7-mt-sgdp-1_35_clean libboost_regex-vc7-mt-gdp-1_35_clean +clean : libboost_regex-vc7-mt-sp-1_37_clean boost_regex-vc7-mt-p-1_37_clean libboost_regex-vc7-mt-p-1_37_clean boost_regex-vc7-mt-gdp-1_37_clean libboost_regex-vc7-mt-sgdp-1_37_clean libboost_regex-vc7-mt-gdp-1_37_clean install : stlport_check all - copy vc7-stlport\libboost_regex-vc7-mt-sp-1_35.lib "$(MSVCDIR)\lib" - copy vc7-stlport\boost_regex-vc7-mt-p-1_35.lib "$(MSVCDIR)\lib" - copy vc7-stlport\boost_regex-vc7-mt-p-1_35.dll "$(MSVCDIR)\bin" - copy vc7-stlport\libboost_regex-vc7-mt-p-1_35.lib "$(MSVCDIR)\lib" - copy vc7-stlport\boost_regex-vc7-mt-gdp-1_35.lib "$(MSVCDIR)\lib" - copy vc7-stlport\boost_regex-vc7-mt-gdp-1_35.dll "$(MSVCDIR)\bin" - copy vc7-stlport\boost_regex-vc7-mt-gdp-1_35.pdb "$(MSVCDIR)\lib" - copy vc7-stlport\libboost_regex-vc7-mt-sgdp-1_35.lib "$(MSVCDIR)\lib" - copy vc7-stlport\libboost_regex-vc7-mt-sgdp-1_35.pdb "$(MSVCDIR)\lib" - copy vc7-stlport\libboost_regex-vc7-mt-gdp-1_35.lib "$(MSVCDIR)\lib" - copy vc7-stlport\libboost_regex-vc7-mt-gdp-1_35.pdb "$(MSVCDIR)\lib" + copy vc7-stlport\libboost_regex-vc7-mt-sp-1_37.lib "$(MSVCDIR)\lib" + copy vc7-stlport\boost_regex-vc7-mt-p-1_37.lib "$(MSVCDIR)\lib" + copy vc7-stlport\boost_regex-vc7-mt-p-1_37.dll "$(MSVCDIR)\bin" + copy vc7-stlport\libboost_regex-vc7-mt-p-1_37.lib "$(MSVCDIR)\lib" + copy vc7-stlport\boost_regex-vc7-mt-gdp-1_37.lib "$(MSVCDIR)\lib" + copy vc7-stlport\boost_regex-vc7-mt-gdp-1_37.dll "$(MSVCDIR)\bin" + copy vc7-stlport\boost_regex-vc7-mt-gdp-1_37.pdb "$(MSVCDIR)\lib" + copy vc7-stlport\libboost_regex-vc7-mt-sgdp-1_37.lib "$(MSVCDIR)\lib" + copy vc7-stlport\libboost_regex-vc7-mt-sgdp-1_37.pdb "$(MSVCDIR)\lib" + copy vc7-stlport\libboost_regex-vc7-mt-gdp-1_37.lib "$(MSVCDIR)\lib" + copy vc7-stlport\libboost_regex-vc7-mt-gdp-1_37.pdb "$(MSVCDIR)\lib" main_dir : @if not exist "vc7-stlport\$(NULL)" mkdir vc7-stlport @@ -88,409 +88,410 @@ stlport_check : "$(STLPORT_PATH)\stlport\string" ######################################################## # -# section for libboost_regex-vc7-mt-sp-1_35.lib +# section for libboost_regex-vc7-mt-sp-1_37.lib # ######################################################## -vc7-stlport/libboost_regex-vc7-mt-sp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_35.pdb ../src/c_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_37.pdb ../src/c_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_35.pdb ../src/cpp_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_37.pdb ../src/cpp_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_35.pdb ../src/cregex.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_37.pdb ../src/cregex.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_35.pdb ../src/fileiter.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_37.pdb ../src/fileiter.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_35.pdb ../src/icu.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_37.pdb ../src/icu.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_35.pdb ../src/instances.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_37.pdb ../src/instances.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_35.pdb ../src/posix_api.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_37.pdb ../src/posix_api.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_35.pdb ../src/regex.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_37.pdb ../src/regex.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_35.pdb ../src/regex_debug.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_37.pdb ../src/regex_debug.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_35.pdb ../src/regex_raw_buffer.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_37.pdb ../src/regex_raw_buffer.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_35.pdb ../src/regex_traits_defaults.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_37.pdb ../src/regex_traits_defaults.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_35.pdb ../src/static_mutex.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_37.pdb ../src/static_mutex.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_35.pdb ../src/usinstances.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_37.pdb ../src/usinstances.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_35.pdb ../src/w32_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_37.pdb ../src/w32_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_35.pdb ../src/wc_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_37.pdb ../src/wc_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_35.pdb ../src/wide_posix_api.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_37.pdb ../src/wide_posix_api.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_35.pdb ../src/winstances.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_37.pdb ../src/winstances.cpp -libboost_regex-vc7-mt-sp-1_35_dir : - @if not exist "vc7-stlport\libboost_regex-vc7-mt-sp-1_35\$(NULL)" mkdir vc7-stlport\libboost_regex-vc7-mt-sp-1_35 +libboost_regex-vc7-mt-sp-1_37_dir : + @if not exist "vc7-stlport\libboost_regex-vc7-mt-sp-1_37\$(NULL)" mkdir vc7-stlport\libboost_regex-vc7-mt-sp-1_37 -libboost_regex-vc7-mt-sp-1_35_clean : - del vc7-stlport\libboost_regex-vc7-mt-sp-1_35\*.obj - del vc7-stlport\libboost_regex-vc7-mt-sp-1_35\*.idb - del vc7-stlport\libboost_regex-vc7-mt-sp-1_35\*.exp - del vc7-stlport\libboost_regex-vc7-mt-sp-1_35\*.pch +libboost_regex-vc7-mt-sp-1_37_clean : + del vc7-stlport\libboost_regex-vc7-mt-sp-1_37\*.obj + del vc7-stlport\libboost_regex-vc7-mt-sp-1_37\*.idb + del vc7-stlport\libboost_regex-vc7-mt-sp-1_37\*.exp + del vc7-stlport\libboost_regex-vc7-mt-sp-1_37\*.pch -./vc7-stlport/libboost_regex-vc7-mt-sp-1_35.lib : vc7-stlport/libboost_regex-vc7-mt-sp-1_35/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_35/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_35/cregex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_35/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_35/icu.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_35/instances.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_35/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_35/regex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_35/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_35/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_35/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_35/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_35/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_35/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_35/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_35/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_35/winstances.obj - link -lib /nologo /out:vc7-stlport/libboost_regex-vc7-mt-sp-1_35.lib $(XSFLAGS) vc7-stlport/libboost_regex-vc7-mt-sp-1_35/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_35/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_35/cregex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_35/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_35/icu.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_35/instances.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_35/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_35/regex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_35/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_35/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_35/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_35/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_35/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_35/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_35/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_35/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_35/winstances.obj +./vc7-stlport/libboost_regex-vc7-mt-sp-1_37.lib : vc7-stlport/libboost_regex-vc7-mt-sp-1_37/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/cregex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/icu.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/instances.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/regex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/winstances.obj + link -lib /nologo /out:vc7-stlport/libboost_regex-vc7-mt-sp-1_37.lib $(XSFLAGS) vc7-stlport/libboost_regex-vc7-mt-sp-1_37/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/cregex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/icu.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/instances.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/regex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/winstances.obj ######################################################## # -# section for boost_regex-vc7-mt-p-1_35.lib +# section for boost_regex-vc7-mt-p-1_37.lib # ######################################################## -vc7-stlport/boost_regex-vc7-mt-p-1_35/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_35/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_35.pdb ../src/c_regex_traits.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_37.pdb ../src/c_regex_traits.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_35/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_35/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_35.pdb ../src/cpp_regex_traits.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_37.pdb ../src/cpp_regex_traits.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_35/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_35/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_35.pdb ../src/cregex.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_37.pdb ../src/cregex.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_35/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_35/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_35.pdb ../src/fileiter.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_37.pdb ../src/fileiter.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_35/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_35/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_35.pdb ../src/icu.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_37.pdb ../src/icu.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_35/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_35/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_35.pdb ../src/instances.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_37.pdb ../src/instances.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_35/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_35/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_35.pdb ../src/posix_api.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_37.pdb ../src/posix_api.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_35/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_35/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_35.pdb ../src/regex.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_37.pdb ../src/regex.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_35/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_35/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_35.pdb ../src/regex_debug.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_37.pdb ../src/regex_debug.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_35/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_35/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_35.pdb ../src/regex_raw_buffer.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_37.pdb ../src/regex_raw_buffer.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_35/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_35/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_35.pdb ../src/regex_traits_defaults.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_37.pdb ../src/regex_traits_defaults.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_35/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_35/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_35.pdb ../src/static_mutex.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_37.pdb ../src/static_mutex.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_35/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_35/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_35.pdb ../src/usinstances.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_37.pdb ../src/usinstances.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_35/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_35/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_35.pdb ../src/w32_regex_traits.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_37.pdb ../src/w32_regex_traits.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_35/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_35/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_35.pdb ../src/wc_regex_traits.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_37.pdb ../src/wc_regex_traits.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_35/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_35/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_35.pdb ../src/wide_posix_api.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_37.pdb ../src/wide_posix_api.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_35/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_35/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_35.pdb ../src/winstances.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_37.pdb ../src/winstances.cpp -boost_regex-vc7-mt-p-1_35_dir : - @if not exist "vc7-stlport\boost_regex-vc7-mt-p-1_35\$(NULL)" mkdir vc7-stlport\boost_regex-vc7-mt-p-1_35 +boost_regex-vc7-mt-p-1_37_dir : + @if not exist "vc7-stlport\boost_regex-vc7-mt-p-1_37\$(NULL)" mkdir vc7-stlport\boost_regex-vc7-mt-p-1_37 -boost_regex-vc7-mt-p-1_35_clean : - del vc7-stlport\boost_regex-vc7-mt-p-1_35\*.obj - del vc7-stlport\boost_regex-vc7-mt-p-1_35\*.idb - del vc7-stlport\boost_regex-vc7-mt-p-1_35\*.exp - del vc7-stlport\boost_regex-vc7-mt-p-1_35\*.pch +boost_regex-vc7-mt-p-1_37_clean : + del vc7-stlport\boost_regex-vc7-mt-p-1_37\*.obj + del vc7-stlport\boost_regex-vc7-mt-p-1_37\*.idb + del vc7-stlport\boost_regex-vc7-mt-p-1_37\*.exp + del vc7-stlport\boost_regex-vc7-mt-p-1_37\*.pch -./vc7-stlport/boost_regex-vc7-mt-p-1_35.lib : vc7-stlport/boost_regex-vc7-mt-p-1_35/c_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_35/cpp_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_35/cregex.obj vc7-stlport/boost_regex-vc7-mt-p-1_35/fileiter.obj vc7-stlport/boost_regex-vc7-mt-p-1_35/icu.obj vc7-stlport/boost_regex-vc7-mt-p-1_35/instances.obj vc7-stlport/boost_regex-vc7-mt-p-1_35/posix_api.obj vc7-stlport/boost_regex-vc7-mt-p-1_35/regex.obj vc7-stlport/boost_regex-vc7-mt-p-1_35/regex_debug.obj vc7-stlport/boost_regex-vc7-mt-p-1_35/regex_raw_buffer.obj vc7-stlport/boost_regex-vc7-mt-p-1_35/regex_traits_defaults.obj vc7-stlport/boost_regex-vc7-mt-p-1_35/static_mutex.obj vc7-stlport/boost_regex-vc7-mt-p-1_35/usinstances.obj vc7-stlport/boost_regex-vc7-mt-p-1_35/w32_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_35/wc_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_35/wide_posix_api.obj vc7-stlport/boost_regex-vc7-mt-p-1_35/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_35.pdb" /debug /machine:I386 /out:"vc7-stlport/boost_regex-vc7-mt-p-1_35.dll" /implib:"vc7-stlport/boost_regex-vc7-mt-p-1_35.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc7-stlport/boost_regex-vc7-mt-p-1_35/c_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_35/cpp_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_35/cregex.obj vc7-stlport/boost_regex-vc7-mt-p-1_35/fileiter.obj vc7-stlport/boost_regex-vc7-mt-p-1_35/icu.obj vc7-stlport/boost_regex-vc7-mt-p-1_35/instances.obj vc7-stlport/boost_regex-vc7-mt-p-1_35/posix_api.obj vc7-stlport/boost_regex-vc7-mt-p-1_35/regex.obj vc7-stlport/boost_regex-vc7-mt-p-1_35/regex_debug.obj vc7-stlport/boost_regex-vc7-mt-p-1_35/regex_raw_buffer.obj vc7-stlport/boost_regex-vc7-mt-p-1_35/regex_traits_defaults.obj vc7-stlport/boost_regex-vc7-mt-p-1_35/static_mutex.obj vc7-stlport/boost_regex-vc7-mt-p-1_35/usinstances.obj vc7-stlport/boost_regex-vc7-mt-p-1_35/w32_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_35/wc_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_35/wide_posix_api.obj vc7-stlport/boost_regex-vc7-mt-p-1_35/winstances.obj +./vc7-stlport/boost_regex-vc7-mt-p-1_37.lib : vc7-stlport/boost_regex-vc7-mt-p-1_37/c_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/cpp_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/cregex.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/fileiter.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/icu.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/instances.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/posix_api.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/regex.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/regex_debug.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/regex_raw_buffer.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/regex_traits_defaults.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/static_mutex.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/usinstances.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/w32_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/wc_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/wide_posix_api.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/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_37.pdb" /debug /machine:I386 /out:"vc7-stlport/boost_regex-vc7-mt-p-1_37.dll" /implib:"vc7-stlport/boost_regex-vc7-mt-p-1_37.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc7-stlport/boost_regex-vc7-mt-p-1_37/c_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/cpp_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/cregex.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/fileiter.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/icu.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/instances.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/posix_api.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/regex.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/regex_debug.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/regex_raw_buffer.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/regex_traits_defaults.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/static_mutex.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/usinstances.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/w32_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/wc_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/wide_posix_api.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/winstances.obj ######################################################## # -# section for libboost_regex-vc7-mt-p-1_35.lib +# section for libboost_regex-vc7-mt-p-1_37.lib # ######################################################## -vc7-stlport/libboost_regex-vc7-mt-p-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_35.pdb ../src/c_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_37.pdb ../src/c_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_35.pdb ../src/cpp_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_37.pdb ../src/cpp_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_35.pdb ../src/cregex.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_37.pdb ../src/cregex.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_35.pdb ../src/fileiter.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_37.pdb ../src/fileiter.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_35.pdb ../src/icu.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_37.pdb ../src/icu.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_35.pdb ../src/instances.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_37.pdb ../src/instances.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_35.pdb ../src/posix_api.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_37.pdb ../src/posix_api.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_35.pdb ../src/regex.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_37.pdb ../src/regex.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_35.pdb ../src/regex_debug.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_37.pdb ../src/regex_debug.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_35.pdb ../src/regex_raw_buffer.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_37.pdb ../src/regex_raw_buffer.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_35.pdb ../src/regex_traits_defaults.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_37.pdb ../src/regex_traits_defaults.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_35.pdb ../src/static_mutex.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_37.pdb ../src/static_mutex.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_35.pdb ../src/usinstances.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_37.pdb ../src/usinstances.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_35.pdb ../src/w32_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_37.pdb ../src/w32_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_35.pdb ../src/wc_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_37.pdb ../src/wc_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_35.pdb ../src/wide_posix_api.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_37.pdb ../src/wide_posix_api.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_35.pdb ../src/winstances.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_37.pdb ../src/winstances.cpp -libboost_regex-vc7-mt-p-1_35_dir : - @if not exist "vc7-stlport\libboost_regex-vc7-mt-p-1_35\$(NULL)" mkdir vc7-stlport\libboost_regex-vc7-mt-p-1_35 +libboost_regex-vc7-mt-p-1_37_dir : + @if not exist "vc7-stlport\libboost_regex-vc7-mt-p-1_37\$(NULL)" mkdir vc7-stlport\libboost_regex-vc7-mt-p-1_37 -libboost_regex-vc7-mt-p-1_35_clean : - del vc7-stlport\libboost_regex-vc7-mt-p-1_35\*.obj - del vc7-stlport\libboost_regex-vc7-mt-p-1_35\*.idb - del vc7-stlport\libboost_regex-vc7-mt-p-1_35\*.exp - del vc7-stlport\libboost_regex-vc7-mt-p-1_35\*.pch +libboost_regex-vc7-mt-p-1_37_clean : + del vc7-stlport\libboost_regex-vc7-mt-p-1_37\*.obj + del vc7-stlport\libboost_regex-vc7-mt-p-1_37\*.idb + del vc7-stlport\libboost_regex-vc7-mt-p-1_37\*.exp + del vc7-stlport\libboost_regex-vc7-mt-p-1_37\*.pch -./vc7-stlport/libboost_regex-vc7-mt-p-1_35.lib : vc7-stlport/libboost_regex-vc7-mt-p-1_35/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_35/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_35/cregex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_35/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-p-1_35/icu.obj vc7-stlport/libboost_regex-vc7-mt-p-1_35/instances.obj vc7-stlport/libboost_regex-vc7-mt-p-1_35/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-p-1_35/regex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_35/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-p-1_35/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-p-1_35/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-p-1_35/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_35/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-p-1_35/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_35/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_35/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-p-1_35/winstances.obj - link -lib /nologo /out:vc7-stlport/libboost_regex-vc7-mt-p-1_35.lib $(XSFLAGS) vc7-stlport/libboost_regex-vc7-mt-p-1_35/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_35/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_35/cregex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_35/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-p-1_35/icu.obj vc7-stlport/libboost_regex-vc7-mt-p-1_35/instances.obj vc7-stlport/libboost_regex-vc7-mt-p-1_35/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-p-1_35/regex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_35/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-p-1_35/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-p-1_35/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-p-1_35/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_35/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-p-1_35/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_35/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_35/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-p-1_35/winstances.obj +./vc7-stlport/libboost_regex-vc7-mt-p-1_37.lib : vc7-stlport/libboost_regex-vc7-mt-p-1_37/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/cregex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/icu.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/instances.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/regex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/winstances.obj + link -lib /nologo /out:vc7-stlport/libboost_regex-vc7-mt-p-1_37.lib $(XSFLAGS) vc7-stlport/libboost_regex-vc7-mt-p-1_37/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/cregex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/icu.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/instances.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/regex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/winstances.obj ######################################################## # -# section for boost_regex-vc7-mt-gdp-1_35.lib +# section for boost_regex-vc7-mt-gdp-1_37.lib # ######################################################## -vc7-stlport/boost_regex-vc7-mt-gdp-1_35/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_35/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_35.pdb ../src/c_regex_traits.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_37.pdb ../src/c_regex_traits.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_35/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_35/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_35.pdb ../src/cpp_regex_traits.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_37.pdb ../src/cpp_regex_traits.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_35/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_35/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_35.pdb ../src/cregex.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_37.pdb ../src/cregex.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_35/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_35/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_35.pdb ../src/fileiter.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_37.pdb ../src/fileiter.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_35/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_35/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_35.pdb ../src/icu.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_37.pdb ../src/icu.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_35/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_35/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_35.pdb ../src/instances.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_37.pdb ../src/instances.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_35/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_35/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_35.pdb ../src/posix_api.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_37.pdb ../src/posix_api.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_35/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_35/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_35.pdb ../src/regex.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_37.pdb ../src/regex.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_35/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_35/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_35.pdb ../src/regex_debug.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_37.pdb ../src/regex_debug.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_35/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_35/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_35.pdb ../src/regex_raw_buffer.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_37.pdb ../src/regex_raw_buffer.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_35/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_35/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_35.pdb ../src/regex_traits_defaults.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_37.pdb ../src/regex_traits_defaults.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_35/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_35/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_35.pdb ../src/static_mutex.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_37.pdb ../src/static_mutex.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_35/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_35/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_35.pdb ../src/usinstances.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_37.pdb ../src/usinstances.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_35/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_35/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_35.pdb ../src/w32_regex_traits.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_37.pdb ../src/w32_regex_traits.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_35/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_35/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_35.pdb ../src/wc_regex_traits.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_37.pdb ../src/wc_regex_traits.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_35/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_35/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_35.pdb ../src/wide_posix_api.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_37.pdb ../src/wide_posix_api.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_35/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_35/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_35.pdb ../src/winstances.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_37.pdb ../src/winstances.cpp -boost_regex-vc7-mt-gdp-1_35_dir : - @if not exist "vc7-stlport\boost_regex-vc7-mt-gdp-1_35\$(NULL)" mkdir vc7-stlport\boost_regex-vc7-mt-gdp-1_35 +boost_regex-vc7-mt-gdp-1_37_dir : + @if not exist "vc7-stlport\boost_regex-vc7-mt-gdp-1_37\$(NULL)" mkdir vc7-stlport\boost_regex-vc7-mt-gdp-1_37 -boost_regex-vc7-mt-gdp-1_35_clean : - del vc7-stlport\boost_regex-vc7-mt-gdp-1_35\*.obj - del vc7-stlport\boost_regex-vc7-mt-gdp-1_35\*.idb - del vc7-stlport\boost_regex-vc7-mt-gdp-1_35\*.exp - del vc7-stlport\boost_regex-vc7-mt-gdp-1_35\*.pch +boost_regex-vc7-mt-gdp-1_37_clean : + del vc7-stlport\boost_regex-vc7-mt-gdp-1_37\*.obj + del vc7-stlport\boost_regex-vc7-mt-gdp-1_37\*.idb + del vc7-stlport\boost_regex-vc7-mt-gdp-1_37\*.exp + del vc7-stlport\boost_regex-vc7-mt-gdp-1_37\*.pch -./vc7-stlport/boost_regex-vc7-mt-gdp-1_35.lib : vc7-stlport/boost_regex-vc7-mt-gdp-1_35/c_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_35/cpp_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_35/cregex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_35/fileiter.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_35/icu.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_35/instances.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_35/posix_api.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_35/regex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_35/regex_debug.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_35/regex_raw_buffer.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_35/regex_traits_defaults.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_35/static_mutex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_35/usinstances.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_35/w32_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_35/wc_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_35/wide_posix_api.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_35/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_35.pdb" /debug /machine:I386 /out:"vc7-stlport/boost_regex-vc7-mt-gdp-1_35.dll" /implib:"vc7-stlport/boost_regex-vc7-mt-gdp-1_35.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc7-stlport/boost_regex-vc7-mt-gdp-1_35/c_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_35/cpp_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_35/cregex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_35/fileiter.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_35/icu.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_35/instances.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_35/posix_api.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_35/regex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_35/regex_debug.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_35/regex_raw_buffer.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_35/regex_traits_defaults.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_35/static_mutex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_35/usinstances.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_35/w32_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_35/wc_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_35/wide_posix_api.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_35/winstances.obj +./vc7-stlport/boost_regex-vc7-mt-gdp-1_37.lib : vc7-stlport/boost_regex-vc7-mt-gdp-1_37/c_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/cpp_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/cregex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/fileiter.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/icu.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/instances.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/posix_api.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/regex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/regex_debug.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/regex_raw_buffer.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/regex_traits_defaults.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/static_mutex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/usinstances.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/w32_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/wc_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/wide_posix_api.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/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_37.pdb" /debug /machine:I386 /out:"vc7-stlport/boost_regex-vc7-mt-gdp-1_37.dll" /implib:"vc7-stlport/boost_regex-vc7-mt-gdp-1_37.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc7-stlport/boost_regex-vc7-mt-gdp-1_37/c_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/cpp_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/cregex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/fileiter.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/icu.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/instances.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/posix_api.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/regex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/regex_debug.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/regex_raw_buffer.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/regex_traits_defaults.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/static_mutex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/usinstances.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/w32_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/wc_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/wide_posix_api.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/winstances.obj ######################################################## # -# section for libboost_regex-vc7-mt-sgdp-1_35.lib +# section for libboost_regex-vc7-mt-sgdp-1_37.lib # ######################################################## -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_35.pdb ../src/c_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_37.pdb ../src/c_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_35.pdb ../src/cpp_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_37.pdb ../src/cpp_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_35.pdb ../src/cregex.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_37.pdb ../src/cregex.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_35.pdb ../src/fileiter.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_37.pdb ../src/fileiter.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_35.pdb ../src/icu.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_37.pdb ../src/icu.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_35.pdb ../src/instances.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_37.pdb ../src/instances.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_35.pdb ../src/posix_api.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_37.pdb ../src/posix_api.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_35.pdb ../src/regex.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_37.pdb ../src/regex.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_35.pdb ../src/regex_debug.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_37.pdb ../src/regex_debug.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_35.pdb ../src/regex_raw_buffer.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_37.pdb ../src/regex_raw_buffer.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_35.pdb ../src/regex_traits_defaults.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_37.pdb ../src/regex_traits_defaults.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_35.pdb ../src/static_mutex.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_37.pdb ../src/static_mutex.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_35.pdb ../src/usinstances.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_37.pdb ../src/usinstances.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_35.pdb ../src/w32_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_37.pdb ../src/w32_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_35.pdb ../src/wc_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_37.pdb ../src/wc_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_35.pdb ../src/wide_posix_api.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_37.pdb ../src/wide_posix_api.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_35.pdb ../src/winstances.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_37.pdb ../src/winstances.cpp -libboost_regex-vc7-mt-sgdp-1_35_dir : - @if not exist "vc7-stlport\libboost_regex-vc7-mt-sgdp-1_35\$(NULL)" mkdir vc7-stlport\libboost_regex-vc7-mt-sgdp-1_35 +libboost_regex-vc7-mt-sgdp-1_37_dir : + @if not exist "vc7-stlport\libboost_regex-vc7-mt-sgdp-1_37\$(NULL)" mkdir vc7-stlport\libboost_regex-vc7-mt-sgdp-1_37 -libboost_regex-vc7-mt-sgdp-1_35_clean : - del vc7-stlport\libboost_regex-vc7-mt-sgdp-1_35\*.obj - del vc7-stlport\libboost_regex-vc7-mt-sgdp-1_35\*.idb - del vc7-stlport\libboost_regex-vc7-mt-sgdp-1_35\*.exp - del vc7-stlport\libboost_regex-vc7-mt-sgdp-1_35\*.pch +libboost_regex-vc7-mt-sgdp-1_37_clean : + del vc7-stlport\libboost_regex-vc7-mt-sgdp-1_37\*.obj + del vc7-stlport\libboost_regex-vc7-mt-sgdp-1_37\*.idb + del vc7-stlport\libboost_regex-vc7-mt-sgdp-1_37\*.exp + del vc7-stlport\libboost_regex-vc7-mt-sgdp-1_37\*.pch -./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35.lib : vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/cregex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/icu.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/instances.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/regex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/winstances.obj - link -lib /nologo /out:vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35.lib $(XSFLAGS) vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/cregex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/icu.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/instances.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/regex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_35/winstances.obj +./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37.lib : vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/cregex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/icu.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/instances.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/regex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/winstances.obj + link -lib /nologo /out:vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37.lib $(XSFLAGS) vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/cregex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/icu.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/instances.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/regex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/winstances.obj ######################################################## # -# section for libboost_regex-vc7-mt-gdp-1_35.lib +# section for libboost_regex-vc7-mt-gdp-1_37.lib # ######################################################## -vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_35.pdb ../src/c_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_37.pdb ../src/c_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_35.pdb ../src/cpp_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_37.pdb ../src/cpp_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_35.pdb ../src/cregex.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_37.pdb ../src/cregex.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_35.pdb ../src/fileiter.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_37.pdb ../src/fileiter.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_35.pdb ../src/icu.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_37.pdb ../src/icu.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_35.pdb ../src/instances.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_37.pdb ../src/instances.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_35.pdb ../src/posix_api.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_37.pdb ../src/posix_api.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_35.pdb ../src/regex.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_37.pdb ../src/regex.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_35.pdb ../src/regex_debug.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_37.pdb ../src/regex_debug.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_35.pdb ../src/regex_raw_buffer.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_37.pdb ../src/regex_raw_buffer.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_35.pdb ../src/regex_traits_defaults.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_37.pdb ../src/regex_traits_defaults.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_35.pdb ../src/static_mutex.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_37.pdb ../src/static_mutex.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_35.pdb ../src/usinstances.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_37.pdb ../src/usinstances.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_35.pdb ../src/w32_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_37.pdb ../src/w32_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_35.pdb ../src/wc_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_37.pdb ../src/wc_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_35.pdb ../src/wide_posix_api.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_37.pdb ../src/wide_posix_api.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/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_35/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_35.pdb ../src/winstances.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_37.pdb ../src/winstances.cpp -libboost_regex-vc7-mt-gdp-1_35_dir : - @if not exist "vc7-stlport\libboost_regex-vc7-mt-gdp-1_35\$(NULL)" mkdir vc7-stlport\libboost_regex-vc7-mt-gdp-1_35 +libboost_regex-vc7-mt-gdp-1_37_dir : + @if not exist "vc7-stlport\libboost_regex-vc7-mt-gdp-1_37\$(NULL)" mkdir vc7-stlport\libboost_regex-vc7-mt-gdp-1_37 -libboost_regex-vc7-mt-gdp-1_35_clean : - del vc7-stlport\libboost_regex-vc7-mt-gdp-1_35\*.obj - del vc7-stlport\libboost_regex-vc7-mt-gdp-1_35\*.idb - del vc7-stlport\libboost_regex-vc7-mt-gdp-1_35\*.exp - del vc7-stlport\libboost_regex-vc7-mt-gdp-1_35\*.pch +libboost_regex-vc7-mt-gdp-1_37_clean : + del vc7-stlport\libboost_regex-vc7-mt-gdp-1_37\*.obj + del vc7-stlport\libboost_regex-vc7-mt-gdp-1_37\*.idb + del vc7-stlport\libboost_regex-vc7-mt-gdp-1_37\*.exp + del vc7-stlport\libboost_regex-vc7-mt-gdp-1_37\*.pch + +./vc7-stlport/libboost_regex-vc7-mt-gdp-1_37.lib : vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/cregex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/icu.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/instances.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/regex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/winstances.obj + link -lib /nologo /out:vc7-stlport/libboost_regex-vc7-mt-gdp-1_37.lib $(XSFLAGS) vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/cregex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/icu.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/instances.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/regex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/winstances.obj -./vc7-stlport/libboost_regex-vc7-mt-gdp-1_35.lib : vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/cregex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/icu.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/instances.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/regex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/winstances.obj - link -lib /nologo /out:vc7-stlport/libboost_regex-vc7-mt-gdp-1_35.lib $(XSFLAGS) vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/cregex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/icu.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/instances.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/regex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_35/winstances.obj diff --git a/build/vc7.mak b/build/vc7.mak index a5e9984c..b797e8f0 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_35_dir ./vc7/libboost_regex-vc7-s-1_35.lib libboost_regex-vc7-mt-s-1_35_dir ./vc7/libboost_regex-vc7-mt-s-1_35.lib libboost_regex-vc7-sgd-1_35_dir ./vc7/libboost_regex-vc7-sgd-1_35.lib libboost_regex-vc7-mt-sgd-1_35_dir ./vc7/libboost_regex-vc7-mt-sgd-1_35.lib boost_regex-vc7-mt-gd-1_35_dir ./vc7/boost_regex-vc7-mt-gd-1_35.lib boost_regex-vc7-mt-1_35_dir ./vc7/boost_regex-vc7-mt-1_35.lib libboost_regex-vc7-mt-1_35_dir ./vc7/libboost_regex-vc7-mt-1_35.lib libboost_regex-vc7-mt-gd-1_35_dir ./vc7/libboost_regex-vc7-mt-gd-1_35.lib +all : main_dir libboost_regex-vc7-s-1_37_dir ./vc7/libboost_regex-vc7-s-1_37.lib libboost_regex-vc7-mt-s-1_37_dir ./vc7/libboost_regex-vc7-mt-s-1_37.lib libboost_regex-vc7-sgd-1_37_dir ./vc7/libboost_regex-vc7-sgd-1_37.lib libboost_regex-vc7-mt-sgd-1_37_dir ./vc7/libboost_regex-vc7-mt-sgd-1_37.lib boost_regex-vc7-mt-gd-1_37_dir ./vc7/boost_regex-vc7-mt-gd-1_37.lib boost_regex-vc7-mt-1_37_dir ./vc7/boost_regex-vc7-mt-1_37.lib libboost_regex-vc7-mt-1_37_dir ./vc7/libboost_regex-vc7-mt-1_37.lib libboost_regex-vc7-mt-gd-1_37_dir ./vc7/libboost_regex-vc7-mt-gd-1_37.lib -clean : libboost_regex-vc7-s-1_35_clean libboost_regex-vc7-mt-s-1_35_clean libboost_regex-vc7-sgd-1_35_clean libboost_regex-vc7-mt-sgd-1_35_clean boost_regex-vc7-mt-gd-1_35_clean boost_regex-vc7-mt-1_35_clean libboost_regex-vc7-mt-1_35_clean libboost_regex-vc7-mt-gd-1_35_clean +clean : libboost_regex-vc7-s-1_37_clean libboost_regex-vc7-mt-s-1_37_clean libboost_regex-vc7-sgd-1_37_clean libboost_regex-vc7-mt-sgd-1_37_clean boost_regex-vc7-mt-gd-1_37_clean boost_regex-vc7-mt-1_37_clean libboost_regex-vc7-mt-1_37_clean libboost_regex-vc7-mt-gd-1_37_clean install : all - copy vc7\libboost_regex-vc7-s-1_35.lib "$(MSVCDIR)\lib" - copy vc7\libboost_regex-vc7-mt-s-1_35.lib "$(MSVCDIR)\lib" - copy vc7\libboost_regex-vc7-sgd-1_35.lib "$(MSVCDIR)\lib" - copy vc7\libboost_regex-vc7-sgd-1_35.pdb "$(MSVCDIR)\lib" - copy vc7\libboost_regex-vc7-mt-sgd-1_35.lib "$(MSVCDIR)\lib" - copy vc7\libboost_regex-vc7-mt-sgd-1_35.pdb "$(MSVCDIR)\lib" - copy vc7\boost_regex-vc7-mt-gd-1_35.lib "$(MSVCDIR)\lib" - copy vc7\boost_regex-vc7-mt-gd-1_35.dll "$(MSVCDIR)\bin" - copy vc7\boost_regex-vc7-mt-gd-1_35.pdb "$(MSVCDIR)\lib" - copy vc7\boost_regex-vc7-mt-1_35.lib "$(MSVCDIR)\lib" - copy vc7\boost_regex-vc7-mt-1_35.dll "$(MSVCDIR)\bin" - copy vc7\libboost_regex-vc7-mt-1_35.lib "$(MSVCDIR)\lib" - copy vc7\libboost_regex-vc7-mt-gd-1_35.lib "$(MSVCDIR)\lib" - copy vc7\libboost_regex-vc7-mt-gd-1_35.pdb "$(MSVCDIR)\lib" + copy vc7\libboost_regex-vc7-s-1_37.lib "$(MSVCDIR)\lib" + copy vc7\libboost_regex-vc7-mt-s-1_37.lib "$(MSVCDIR)\lib" + copy vc7\libboost_regex-vc7-sgd-1_37.lib "$(MSVCDIR)\lib" + copy vc7\libboost_regex-vc7-sgd-1_37.pdb "$(MSVCDIR)\lib" + copy vc7\libboost_regex-vc7-mt-sgd-1_37.lib "$(MSVCDIR)\lib" + copy vc7\libboost_regex-vc7-mt-sgd-1_37.pdb "$(MSVCDIR)\lib" + copy vc7\boost_regex-vc7-mt-gd-1_37.lib "$(MSVCDIR)\lib" + copy vc7\boost_regex-vc7-mt-gd-1_37.dll "$(MSVCDIR)\bin" + copy vc7\boost_regex-vc7-mt-gd-1_37.pdb "$(MSVCDIR)\lib" + copy vc7\boost_regex-vc7-mt-1_37.lib "$(MSVCDIR)\lib" + copy vc7\boost_regex-vc7-mt-1_37.dll "$(MSVCDIR)\bin" + copy vc7\libboost_regex-vc7-mt-1_37.lib "$(MSVCDIR)\lib" + copy vc7\libboost_regex-vc7-mt-gd-1_37.lib "$(MSVCDIR)\lib" + copy vc7\libboost_regex-vc7-mt-gd-1_37.pdb "$(MSVCDIR)\lib" main_dir : @if not exist "vc7\$(NULL)" mkdir vc7 @@ -88,545 +88,546 @@ main_dir : ######################################################## # -# section for libboost_regex-vc7-s-1_35.lib +# section for libboost_regex-vc7-s-1_37.lib # ######################################################## -vc7/libboost_regex-vc7-s-1_35/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_35/ -Fdvc7/libboost_regex-vc7-s-1_35.pdb ../src/c_regex_traits.cpp +vc7/libboost_regex-vc7-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-s-1_37.pdb ../src/c_regex_traits.cpp -vc7/libboost_regex-vc7-s-1_35/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_35/ -Fdvc7/libboost_regex-vc7-s-1_35.pdb ../src/cpp_regex_traits.cpp +vc7/libboost_regex-vc7-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-s-1_37.pdb ../src/cpp_regex_traits.cpp -vc7/libboost_regex-vc7-s-1_35/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_35/ -Fdvc7/libboost_regex-vc7-s-1_35.pdb ../src/cregex.cpp +vc7/libboost_regex-vc7-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-s-1_37.pdb ../src/cregex.cpp -vc7/libboost_regex-vc7-s-1_35/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_35/ -Fdvc7/libboost_regex-vc7-s-1_35.pdb ../src/fileiter.cpp +vc7/libboost_regex-vc7-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-s-1_37.pdb ../src/fileiter.cpp -vc7/libboost_regex-vc7-s-1_35/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_35/ -Fdvc7/libboost_regex-vc7-s-1_35.pdb ../src/icu.cpp +vc7/libboost_regex-vc7-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-s-1_37.pdb ../src/icu.cpp -vc7/libboost_regex-vc7-s-1_35/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_35/ -Fdvc7/libboost_regex-vc7-s-1_35.pdb ../src/instances.cpp +vc7/libboost_regex-vc7-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-s-1_37.pdb ../src/instances.cpp -vc7/libboost_regex-vc7-s-1_35/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_35/ -Fdvc7/libboost_regex-vc7-s-1_35.pdb ../src/posix_api.cpp +vc7/libboost_regex-vc7-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-s-1_37.pdb ../src/posix_api.cpp -vc7/libboost_regex-vc7-s-1_35/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_35/ -Fdvc7/libboost_regex-vc7-s-1_35.pdb ../src/regex.cpp +vc7/libboost_regex-vc7-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-s-1_37.pdb ../src/regex.cpp -vc7/libboost_regex-vc7-s-1_35/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_35/ -Fdvc7/libboost_regex-vc7-s-1_35.pdb ../src/regex_debug.cpp +vc7/libboost_regex-vc7-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-s-1_37.pdb ../src/regex_debug.cpp -vc7/libboost_regex-vc7-s-1_35/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_35/ -Fdvc7/libboost_regex-vc7-s-1_35.pdb ../src/regex_raw_buffer.cpp +vc7/libboost_regex-vc7-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-s-1_37.pdb ../src/regex_raw_buffer.cpp -vc7/libboost_regex-vc7-s-1_35/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_35/ -Fdvc7/libboost_regex-vc7-s-1_35.pdb ../src/regex_traits_defaults.cpp +vc7/libboost_regex-vc7-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-s-1_37.pdb ../src/regex_traits_defaults.cpp -vc7/libboost_regex-vc7-s-1_35/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_35/ -Fdvc7/libboost_regex-vc7-s-1_35.pdb ../src/static_mutex.cpp +vc7/libboost_regex-vc7-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-s-1_37.pdb ../src/static_mutex.cpp -vc7/libboost_regex-vc7-s-1_35/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_35/ -Fdvc7/libboost_regex-vc7-s-1_35.pdb ../src/usinstances.cpp +vc7/libboost_regex-vc7-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-s-1_37.pdb ../src/usinstances.cpp -vc7/libboost_regex-vc7-s-1_35/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_35/ -Fdvc7/libboost_regex-vc7-s-1_35.pdb ../src/w32_regex_traits.cpp +vc7/libboost_regex-vc7-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-s-1_37.pdb ../src/w32_regex_traits.cpp -vc7/libboost_regex-vc7-s-1_35/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_35/ -Fdvc7/libboost_regex-vc7-s-1_35.pdb ../src/wc_regex_traits.cpp +vc7/libboost_regex-vc7-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-s-1_37.pdb ../src/wc_regex_traits.cpp -vc7/libboost_regex-vc7-s-1_35/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_35/ -Fdvc7/libboost_regex-vc7-s-1_35.pdb ../src/wide_posix_api.cpp +vc7/libboost_regex-vc7-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-s-1_37.pdb ../src/wide_posix_api.cpp -vc7/libboost_regex-vc7-s-1_35/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_35/ -Fdvc7/libboost_regex-vc7-s-1_35.pdb ../src/winstances.cpp +vc7/libboost_regex-vc7-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-s-1_37.pdb ../src/winstances.cpp -libboost_regex-vc7-s-1_35_dir : - @if not exist "vc7\libboost_regex-vc7-s-1_35\$(NULL)" mkdir vc7\libboost_regex-vc7-s-1_35 +libboost_regex-vc7-s-1_37_dir : + @if not exist "vc7\libboost_regex-vc7-s-1_37\$(NULL)" mkdir vc7\libboost_regex-vc7-s-1_37 -libboost_regex-vc7-s-1_35_clean : - del vc7\libboost_regex-vc7-s-1_35\*.obj - del vc7\libboost_regex-vc7-s-1_35\*.idb - del vc7\libboost_regex-vc7-s-1_35\*.exp - del vc7\libboost_regex-vc7-s-1_35\*.pch +libboost_regex-vc7-s-1_37_clean : + del vc7\libboost_regex-vc7-s-1_37\*.obj + del vc7\libboost_regex-vc7-s-1_37\*.idb + del vc7\libboost_regex-vc7-s-1_37\*.exp + del vc7\libboost_regex-vc7-s-1_37\*.pch -./vc7/libboost_regex-vc7-s-1_35.lib : vc7/libboost_regex-vc7-s-1_35/c_regex_traits.obj vc7/libboost_regex-vc7-s-1_35/cpp_regex_traits.obj vc7/libboost_regex-vc7-s-1_35/cregex.obj vc7/libboost_regex-vc7-s-1_35/fileiter.obj vc7/libboost_regex-vc7-s-1_35/icu.obj vc7/libboost_regex-vc7-s-1_35/instances.obj vc7/libboost_regex-vc7-s-1_35/posix_api.obj vc7/libboost_regex-vc7-s-1_35/regex.obj vc7/libboost_regex-vc7-s-1_35/regex_debug.obj vc7/libboost_regex-vc7-s-1_35/regex_raw_buffer.obj vc7/libboost_regex-vc7-s-1_35/regex_traits_defaults.obj vc7/libboost_regex-vc7-s-1_35/static_mutex.obj vc7/libboost_regex-vc7-s-1_35/usinstances.obj vc7/libboost_regex-vc7-s-1_35/w32_regex_traits.obj vc7/libboost_regex-vc7-s-1_35/wc_regex_traits.obj vc7/libboost_regex-vc7-s-1_35/wide_posix_api.obj vc7/libboost_regex-vc7-s-1_35/winstances.obj - link -lib /nologo /out:vc7/libboost_regex-vc7-s-1_35.lib $(XSFLAGS) vc7/libboost_regex-vc7-s-1_35/c_regex_traits.obj vc7/libboost_regex-vc7-s-1_35/cpp_regex_traits.obj vc7/libboost_regex-vc7-s-1_35/cregex.obj vc7/libboost_regex-vc7-s-1_35/fileiter.obj vc7/libboost_regex-vc7-s-1_35/icu.obj vc7/libboost_regex-vc7-s-1_35/instances.obj vc7/libboost_regex-vc7-s-1_35/posix_api.obj vc7/libboost_regex-vc7-s-1_35/regex.obj vc7/libboost_regex-vc7-s-1_35/regex_debug.obj vc7/libboost_regex-vc7-s-1_35/regex_raw_buffer.obj vc7/libboost_regex-vc7-s-1_35/regex_traits_defaults.obj vc7/libboost_regex-vc7-s-1_35/static_mutex.obj vc7/libboost_regex-vc7-s-1_35/usinstances.obj vc7/libboost_regex-vc7-s-1_35/w32_regex_traits.obj vc7/libboost_regex-vc7-s-1_35/wc_regex_traits.obj vc7/libboost_regex-vc7-s-1_35/wide_posix_api.obj vc7/libboost_regex-vc7-s-1_35/winstances.obj +./vc7/libboost_regex-vc7-s-1_37.lib : vc7/libboost_regex-vc7-s-1_37/c_regex_traits.obj vc7/libboost_regex-vc7-s-1_37/cpp_regex_traits.obj vc7/libboost_regex-vc7-s-1_37/cregex.obj vc7/libboost_regex-vc7-s-1_37/fileiter.obj vc7/libboost_regex-vc7-s-1_37/icu.obj vc7/libboost_regex-vc7-s-1_37/instances.obj vc7/libboost_regex-vc7-s-1_37/posix_api.obj vc7/libboost_regex-vc7-s-1_37/regex.obj vc7/libboost_regex-vc7-s-1_37/regex_debug.obj vc7/libboost_regex-vc7-s-1_37/regex_raw_buffer.obj vc7/libboost_regex-vc7-s-1_37/regex_traits_defaults.obj vc7/libboost_regex-vc7-s-1_37/static_mutex.obj vc7/libboost_regex-vc7-s-1_37/usinstances.obj vc7/libboost_regex-vc7-s-1_37/w32_regex_traits.obj vc7/libboost_regex-vc7-s-1_37/wc_regex_traits.obj vc7/libboost_regex-vc7-s-1_37/wide_posix_api.obj vc7/libboost_regex-vc7-s-1_37/winstances.obj + link -lib /nologo /out:vc7/libboost_regex-vc7-s-1_37.lib $(XSFLAGS) vc7/libboost_regex-vc7-s-1_37/c_regex_traits.obj vc7/libboost_regex-vc7-s-1_37/cpp_regex_traits.obj vc7/libboost_regex-vc7-s-1_37/cregex.obj vc7/libboost_regex-vc7-s-1_37/fileiter.obj vc7/libboost_regex-vc7-s-1_37/icu.obj vc7/libboost_regex-vc7-s-1_37/instances.obj vc7/libboost_regex-vc7-s-1_37/posix_api.obj vc7/libboost_regex-vc7-s-1_37/regex.obj vc7/libboost_regex-vc7-s-1_37/regex_debug.obj vc7/libboost_regex-vc7-s-1_37/regex_raw_buffer.obj vc7/libboost_regex-vc7-s-1_37/regex_traits_defaults.obj vc7/libboost_regex-vc7-s-1_37/static_mutex.obj vc7/libboost_regex-vc7-s-1_37/usinstances.obj vc7/libboost_regex-vc7-s-1_37/w32_regex_traits.obj vc7/libboost_regex-vc7-s-1_37/wc_regex_traits.obj vc7/libboost_regex-vc7-s-1_37/wide_posix_api.obj vc7/libboost_regex-vc7-s-1_37/winstances.obj ######################################################## # -# section for libboost_regex-vc7-mt-s-1_35.lib +# section for libboost_regex-vc7-mt-s-1_37.lib # ######################################################## -vc7/libboost_regex-vc7-mt-s-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-s-1_35.pdb ../src/c_regex_traits.cpp +vc7/libboost_regex-vc7-mt-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-s-1_37.pdb ../src/c_regex_traits.cpp -vc7/libboost_regex-vc7-mt-s-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-s-1_35.pdb ../src/cpp_regex_traits.cpp +vc7/libboost_regex-vc7-mt-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-s-1_37.pdb ../src/cpp_regex_traits.cpp -vc7/libboost_regex-vc7-mt-s-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-s-1_35.pdb ../src/cregex.cpp +vc7/libboost_regex-vc7-mt-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-s-1_37.pdb ../src/cregex.cpp -vc7/libboost_regex-vc7-mt-s-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-s-1_35.pdb ../src/fileiter.cpp +vc7/libboost_regex-vc7-mt-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-s-1_37.pdb ../src/fileiter.cpp -vc7/libboost_regex-vc7-mt-s-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-s-1_35.pdb ../src/icu.cpp +vc7/libboost_regex-vc7-mt-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-s-1_37.pdb ../src/icu.cpp -vc7/libboost_regex-vc7-mt-s-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-s-1_35.pdb ../src/instances.cpp +vc7/libboost_regex-vc7-mt-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-s-1_37.pdb ../src/instances.cpp -vc7/libboost_regex-vc7-mt-s-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-s-1_35.pdb ../src/posix_api.cpp +vc7/libboost_regex-vc7-mt-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-s-1_37.pdb ../src/posix_api.cpp -vc7/libboost_regex-vc7-mt-s-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-s-1_35.pdb ../src/regex.cpp +vc7/libboost_regex-vc7-mt-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-s-1_37.pdb ../src/regex.cpp -vc7/libboost_regex-vc7-mt-s-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-s-1_35.pdb ../src/regex_debug.cpp +vc7/libboost_regex-vc7-mt-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-s-1_37.pdb ../src/regex_debug.cpp -vc7/libboost_regex-vc7-mt-s-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-s-1_35.pdb ../src/regex_raw_buffer.cpp +vc7/libboost_regex-vc7-mt-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-s-1_37.pdb ../src/regex_raw_buffer.cpp -vc7/libboost_regex-vc7-mt-s-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-s-1_35.pdb ../src/regex_traits_defaults.cpp +vc7/libboost_regex-vc7-mt-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-s-1_37.pdb ../src/regex_traits_defaults.cpp -vc7/libboost_regex-vc7-mt-s-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-s-1_35.pdb ../src/static_mutex.cpp +vc7/libboost_regex-vc7-mt-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-s-1_37.pdb ../src/static_mutex.cpp -vc7/libboost_regex-vc7-mt-s-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-s-1_35.pdb ../src/usinstances.cpp +vc7/libboost_regex-vc7-mt-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-s-1_37.pdb ../src/usinstances.cpp -vc7/libboost_regex-vc7-mt-s-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-s-1_35.pdb ../src/w32_regex_traits.cpp +vc7/libboost_regex-vc7-mt-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-s-1_37.pdb ../src/w32_regex_traits.cpp -vc7/libboost_regex-vc7-mt-s-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-s-1_35.pdb ../src/wc_regex_traits.cpp +vc7/libboost_regex-vc7-mt-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-s-1_37.pdb ../src/wc_regex_traits.cpp -vc7/libboost_regex-vc7-mt-s-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-s-1_35.pdb ../src/wide_posix_api.cpp +vc7/libboost_regex-vc7-mt-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-s-1_37.pdb ../src/wide_posix_api.cpp -vc7/libboost_regex-vc7-mt-s-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-s-1_35.pdb ../src/winstances.cpp +vc7/libboost_regex-vc7-mt-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-s-1_37.pdb ../src/winstances.cpp -libboost_regex-vc7-mt-s-1_35_dir : - @if not exist "vc7\libboost_regex-vc7-mt-s-1_35\$(NULL)" mkdir vc7\libboost_regex-vc7-mt-s-1_35 +libboost_regex-vc7-mt-s-1_37_dir : + @if not exist "vc7\libboost_regex-vc7-mt-s-1_37\$(NULL)" mkdir vc7\libboost_regex-vc7-mt-s-1_37 -libboost_regex-vc7-mt-s-1_35_clean : - del vc7\libboost_regex-vc7-mt-s-1_35\*.obj - del vc7\libboost_regex-vc7-mt-s-1_35\*.idb - del vc7\libboost_regex-vc7-mt-s-1_35\*.exp - del vc7\libboost_regex-vc7-mt-s-1_35\*.pch +libboost_regex-vc7-mt-s-1_37_clean : + del vc7\libboost_regex-vc7-mt-s-1_37\*.obj + del vc7\libboost_regex-vc7-mt-s-1_37\*.idb + del vc7\libboost_regex-vc7-mt-s-1_37\*.exp + del vc7\libboost_regex-vc7-mt-s-1_37\*.pch -./vc7/libboost_regex-vc7-mt-s-1_35.lib : vc7/libboost_regex-vc7-mt-s-1_35/c_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_35/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_35/cregex.obj vc7/libboost_regex-vc7-mt-s-1_35/fileiter.obj vc7/libboost_regex-vc7-mt-s-1_35/icu.obj vc7/libboost_regex-vc7-mt-s-1_35/instances.obj vc7/libboost_regex-vc7-mt-s-1_35/posix_api.obj vc7/libboost_regex-vc7-mt-s-1_35/regex.obj vc7/libboost_regex-vc7-mt-s-1_35/regex_debug.obj vc7/libboost_regex-vc7-mt-s-1_35/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-s-1_35/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-s-1_35/static_mutex.obj vc7/libboost_regex-vc7-mt-s-1_35/usinstances.obj vc7/libboost_regex-vc7-mt-s-1_35/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_35/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_35/wide_posix_api.obj vc7/libboost_regex-vc7-mt-s-1_35/winstances.obj - link -lib /nologo /out:vc7/libboost_regex-vc7-mt-s-1_35.lib $(XSFLAGS) vc7/libboost_regex-vc7-mt-s-1_35/c_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_35/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_35/cregex.obj vc7/libboost_regex-vc7-mt-s-1_35/fileiter.obj vc7/libboost_regex-vc7-mt-s-1_35/icu.obj vc7/libboost_regex-vc7-mt-s-1_35/instances.obj vc7/libboost_regex-vc7-mt-s-1_35/posix_api.obj vc7/libboost_regex-vc7-mt-s-1_35/regex.obj vc7/libboost_regex-vc7-mt-s-1_35/regex_debug.obj vc7/libboost_regex-vc7-mt-s-1_35/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-s-1_35/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-s-1_35/static_mutex.obj vc7/libboost_regex-vc7-mt-s-1_35/usinstances.obj vc7/libboost_regex-vc7-mt-s-1_35/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_35/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_35/wide_posix_api.obj vc7/libboost_regex-vc7-mt-s-1_35/winstances.obj +./vc7/libboost_regex-vc7-mt-s-1_37.lib : vc7/libboost_regex-vc7-mt-s-1_37/c_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_37/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_37/cregex.obj vc7/libboost_regex-vc7-mt-s-1_37/fileiter.obj vc7/libboost_regex-vc7-mt-s-1_37/icu.obj vc7/libboost_regex-vc7-mt-s-1_37/instances.obj vc7/libboost_regex-vc7-mt-s-1_37/posix_api.obj vc7/libboost_regex-vc7-mt-s-1_37/regex.obj vc7/libboost_regex-vc7-mt-s-1_37/regex_debug.obj vc7/libboost_regex-vc7-mt-s-1_37/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-s-1_37/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-s-1_37/static_mutex.obj vc7/libboost_regex-vc7-mt-s-1_37/usinstances.obj vc7/libboost_regex-vc7-mt-s-1_37/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_37/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_37/wide_posix_api.obj vc7/libboost_regex-vc7-mt-s-1_37/winstances.obj + link -lib /nologo /out:vc7/libboost_regex-vc7-mt-s-1_37.lib $(XSFLAGS) vc7/libboost_regex-vc7-mt-s-1_37/c_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_37/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_37/cregex.obj vc7/libboost_regex-vc7-mt-s-1_37/fileiter.obj vc7/libboost_regex-vc7-mt-s-1_37/icu.obj vc7/libboost_regex-vc7-mt-s-1_37/instances.obj vc7/libboost_regex-vc7-mt-s-1_37/posix_api.obj vc7/libboost_regex-vc7-mt-s-1_37/regex.obj vc7/libboost_regex-vc7-mt-s-1_37/regex_debug.obj vc7/libboost_regex-vc7-mt-s-1_37/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-s-1_37/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-s-1_37/static_mutex.obj vc7/libboost_regex-vc7-mt-s-1_37/usinstances.obj vc7/libboost_regex-vc7-mt-s-1_37/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_37/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_37/wide_posix_api.obj vc7/libboost_regex-vc7-mt-s-1_37/winstances.obj ######################################################## # -# section for libboost_regex-vc7-sgd-1_35.lib +# section for libboost_regex-vc7-sgd-1_37.lib # ######################################################## -vc7/libboost_regex-vc7-sgd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-sgd-1_35.pdb ../src/c_regex_traits.cpp +vc7/libboost_regex-vc7-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-sgd-1_37.pdb ../src/c_regex_traits.cpp -vc7/libboost_regex-vc7-sgd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-sgd-1_35.pdb ../src/cpp_regex_traits.cpp +vc7/libboost_regex-vc7-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-sgd-1_37.pdb ../src/cpp_regex_traits.cpp -vc7/libboost_regex-vc7-sgd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-sgd-1_35.pdb ../src/cregex.cpp +vc7/libboost_regex-vc7-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-sgd-1_37.pdb ../src/cregex.cpp -vc7/libboost_regex-vc7-sgd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-sgd-1_35.pdb ../src/fileiter.cpp +vc7/libboost_regex-vc7-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-sgd-1_37.pdb ../src/fileiter.cpp -vc7/libboost_regex-vc7-sgd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-sgd-1_35.pdb ../src/icu.cpp +vc7/libboost_regex-vc7-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-sgd-1_37.pdb ../src/icu.cpp -vc7/libboost_regex-vc7-sgd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-sgd-1_35.pdb ../src/instances.cpp +vc7/libboost_regex-vc7-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-sgd-1_37.pdb ../src/instances.cpp -vc7/libboost_regex-vc7-sgd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-sgd-1_35.pdb ../src/posix_api.cpp +vc7/libboost_regex-vc7-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-sgd-1_37.pdb ../src/posix_api.cpp -vc7/libboost_regex-vc7-sgd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-sgd-1_35.pdb ../src/regex.cpp +vc7/libboost_regex-vc7-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-sgd-1_37.pdb ../src/regex.cpp -vc7/libboost_regex-vc7-sgd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-sgd-1_35.pdb ../src/regex_debug.cpp +vc7/libboost_regex-vc7-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-sgd-1_37.pdb ../src/regex_debug.cpp -vc7/libboost_regex-vc7-sgd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-sgd-1_35.pdb ../src/regex_raw_buffer.cpp +vc7/libboost_regex-vc7-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-sgd-1_37.pdb ../src/regex_raw_buffer.cpp -vc7/libboost_regex-vc7-sgd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-sgd-1_35.pdb ../src/regex_traits_defaults.cpp +vc7/libboost_regex-vc7-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-sgd-1_37.pdb ../src/regex_traits_defaults.cpp -vc7/libboost_regex-vc7-sgd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-sgd-1_35.pdb ../src/static_mutex.cpp +vc7/libboost_regex-vc7-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-sgd-1_37.pdb ../src/static_mutex.cpp -vc7/libboost_regex-vc7-sgd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-sgd-1_35.pdb ../src/usinstances.cpp +vc7/libboost_regex-vc7-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-sgd-1_37.pdb ../src/usinstances.cpp -vc7/libboost_regex-vc7-sgd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-sgd-1_35.pdb ../src/w32_regex_traits.cpp +vc7/libboost_regex-vc7-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-sgd-1_37.pdb ../src/w32_regex_traits.cpp -vc7/libboost_regex-vc7-sgd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-sgd-1_35.pdb ../src/wc_regex_traits.cpp +vc7/libboost_regex-vc7-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-sgd-1_37.pdb ../src/wc_regex_traits.cpp -vc7/libboost_regex-vc7-sgd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-sgd-1_35.pdb ../src/wide_posix_api.cpp +vc7/libboost_regex-vc7-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-sgd-1_37.pdb ../src/wide_posix_api.cpp -vc7/libboost_regex-vc7-sgd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-sgd-1_35.pdb ../src/winstances.cpp +vc7/libboost_regex-vc7-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-sgd-1_37.pdb ../src/winstances.cpp -libboost_regex-vc7-sgd-1_35_dir : - @if not exist "vc7\libboost_regex-vc7-sgd-1_35\$(NULL)" mkdir vc7\libboost_regex-vc7-sgd-1_35 +libboost_regex-vc7-sgd-1_37_dir : + @if not exist "vc7\libboost_regex-vc7-sgd-1_37\$(NULL)" mkdir vc7\libboost_regex-vc7-sgd-1_37 -libboost_regex-vc7-sgd-1_35_clean : - del vc7\libboost_regex-vc7-sgd-1_35\*.obj - del vc7\libboost_regex-vc7-sgd-1_35\*.idb - del vc7\libboost_regex-vc7-sgd-1_35\*.exp - del vc7\libboost_regex-vc7-sgd-1_35\*.pch +libboost_regex-vc7-sgd-1_37_clean : + del vc7\libboost_regex-vc7-sgd-1_37\*.obj + del vc7\libboost_regex-vc7-sgd-1_37\*.idb + del vc7\libboost_regex-vc7-sgd-1_37\*.exp + del vc7\libboost_regex-vc7-sgd-1_37\*.pch -./vc7/libboost_regex-vc7-sgd-1_35.lib : vc7/libboost_regex-vc7-sgd-1_35/c_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_35/cpp_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_35/cregex.obj vc7/libboost_regex-vc7-sgd-1_35/fileiter.obj vc7/libboost_regex-vc7-sgd-1_35/icu.obj vc7/libboost_regex-vc7-sgd-1_35/instances.obj vc7/libboost_regex-vc7-sgd-1_35/posix_api.obj vc7/libboost_regex-vc7-sgd-1_35/regex.obj vc7/libboost_regex-vc7-sgd-1_35/regex_debug.obj vc7/libboost_regex-vc7-sgd-1_35/regex_raw_buffer.obj vc7/libboost_regex-vc7-sgd-1_35/regex_traits_defaults.obj vc7/libboost_regex-vc7-sgd-1_35/static_mutex.obj vc7/libboost_regex-vc7-sgd-1_35/usinstances.obj vc7/libboost_regex-vc7-sgd-1_35/w32_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_35/wc_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_35/wide_posix_api.obj vc7/libboost_regex-vc7-sgd-1_35/winstances.obj - link -lib /nologo /out:vc7/libboost_regex-vc7-sgd-1_35.lib $(XSFLAGS) vc7/libboost_regex-vc7-sgd-1_35/c_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_35/cpp_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_35/cregex.obj vc7/libboost_regex-vc7-sgd-1_35/fileiter.obj vc7/libboost_regex-vc7-sgd-1_35/icu.obj vc7/libboost_regex-vc7-sgd-1_35/instances.obj vc7/libboost_regex-vc7-sgd-1_35/posix_api.obj vc7/libboost_regex-vc7-sgd-1_35/regex.obj vc7/libboost_regex-vc7-sgd-1_35/regex_debug.obj vc7/libboost_regex-vc7-sgd-1_35/regex_raw_buffer.obj vc7/libboost_regex-vc7-sgd-1_35/regex_traits_defaults.obj vc7/libboost_regex-vc7-sgd-1_35/static_mutex.obj vc7/libboost_regex-vc7-sgd-1_35/usinstances.obj vc7/libboost_regex-vc7-sgd-1_35/w32_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_35/wc_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_35/wide_posix_api.obj vc7/libboost_regex-vc7-sgd-1_35/winstances.obj +./vc7/libboost_regex-vc7-sgd-1_37.lib : vc7/libboost_regex-vc7-sgd-1_37/c_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_37/cpp_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_37/cregex.obj vc7/libboost_regex-vc7-sgd-1_37/fileiter.obj vc7/libboost_regex-vc7-sgd-1_37/icu.obj vc7/libboost_regex-vc7-sgd-1_37/instances.obj vc7/libboost_regex-vc7-sgd-1_37/posix_api.obj vc7/libboost_regex-vc7-sgd-1_37/regex.obj vc7/libboost_regex-vc7-sgd-1_37/regex_debug.obj vc7/libboost_regex-vc7-sgd-1_37/regex_raw_buffer.obj vc7/libboost_regex-vc7-sgd-1_37/regex_traits_defaults.obj vc7/libboost_regex-vc7-sgd-1_37/static_mutex.obj vc7/libboost_regex-vc7-sgd-1_37/usinstances.obj vc7/libboost_regex-vc7-sgd-1_37/w32_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_37/wc_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_37/wide_posix_api.obj vc7/libboost_regex-vc7-sgd-1_37/winstances.obj + link -lib /nologo /out:vc7/libboost_regex-vc7-sgd-1_37.lib $(XSFLAGS) vc7/libboost_regex-vc7-sgd-1_37/c_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_37/cpp_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_37/cregex.obj vc7/libboost_regex-vc7-sgd-1_37/fileiter.obj vc7/libboost_regex-vc7-sgd-1_37/icu.obj vc7/libboost_regex-vc7-sgd-1_37/instances.obj vc7/libboost_regex-vc7-sgd-1_37/posix_api.obj vc7/libboost_regex-vc7-sgd-1_37/regex.obj vc7/libboost_regex-vc7-sgd-1_37/regex_debug.obj vc7/libboost_regex-vc7-sgd-1_37/regex_raw_buffer.obj vc7/libboost_regex-vc7-sgd-1_37/regex_traits_defaults.obj vc7/libboost_regex-vc7-sgd-1_37/static_mutex.obj vc7/libboost_regex-vc7-sgd-1_37/usinstances.obj vc7/libboost_regex-vc7-sgd-1_37/w32_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_37/wc_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_37/wide_posix_api.obj vc7/libboost_regex-vc7-sgd-1_37/winstances.obj ######################################################## # -# section for libboost_regex-vc7-mt-sgd-1_35.lib +# section for libboost_regex-vc7-mt-sgd-1_37.lib # ######################################################## -vc7/libboost_regex-vc7-mt-sgd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_35.pdb ../src/c_regex_traits.cpp +vc7/libboost_regex-vc7-mt-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_37.pdb ../src/c_regex_traits.cpp -vc7/libboost_regex-vc7-mt-sgd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_35.pdb ../src/cpp_regex_traits.cpp +vc7/libboost_regex-vc7-mt-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_37.pdb ../src/cpp_regex_traits.cpp -vc7/libboost_regex-vc7-mt-sgd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_35.pdb ../src/cregex.cpp +vc7/libboost_regex-vc7-mt-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_37.pdb ../src/cregex.cpp -vc7/libboost_regex-vc7-mt-sgd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_35.pdb ../src/fileiter.cpp +vc7/libboost_regex-vc7-mt-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_37.pdb ../src/fileiter.cpp -vc7/libboost_regex-vc7-mt-sgd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_35.pdb ../src/icu.cpp +vc7/libboost_regex-vc7-mt-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_37.pdb ../src/icu.cpp -vc7/libboost_regex-vc7-mt-sgd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_35.pdb ../src/instances.cpp +vc7/libboost_regex-vc7-mt-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_37.pdb ../src/instances.cpp -vc7/libboost_regex-vc7-mt-sgd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_35.pdb ../src/posix_api.cpp +vc7/libboost_regex-vc7-mt-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_37.pdb ../src/posix_api.cpp -vc7/libboost_regex-vc7-mt-sgd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_35.pdb ../src/regex.cpp +vc7/libboost_regex-vc7-mt-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_37.pdb ../src/regex.cpp -vc7/libboost_regex-vc7-mt-sgd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_35.pdb ../src/regex_debug.cpp +vc7/libboost_regex-vc7-mt-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_37.pdb ../src/regex_debug.cpp -vc7/libboost_regex-vc7-mt-sgd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_35.pdb ../src/regex_raw_buffer.cpp +vc7/libboost_regex-vc7-mt-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_37.pdb ../src/regex_raw_buffer.cpp -vc7/libboost_regex-vc7-mt-sgd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_35.pdb ../src/regex_traits_defaults.cpp +vc7/libboost_regex-vc7-mt-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_37.pdb ../src/regex_traits_defaults.cpp -vc7/libboost_regex-vc7-mt-sgd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_35.pdb ../src/static_mutex.cpp +vc7/libboost_regex-vc7-mt-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_37.pdb ../src/static_mutex.cpp -vc7/libboost_regex-vc7-mt-sgd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_35.pdb ../src/usinstances.cpp +vc7/libboost_regex-vc7-mt-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_37.pdb ../src/usinstances.cpp -vc7/libboost_regex-vc7-mt-sgd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_35.pdb ../src/w32_regex_traits.cpp +vc7/libboost_regex-vc7-mt-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_37.pdb ../src/w32_regex_traits.cpp -vc7/libboost_regex-vc7-mt-sgd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_35.pdb ../src/wc_regex_traits.cpp +vc7/libboost_regex-vc7-mt-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_37.pdb ../src/wc_regex_traits.cpp -vc7/libboost_regex-vc7-mt-sgd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_35.pdb ../src/wide_posix_api.cpp +vc7/libboost_regex-vc7-mt-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_37.pdb ../src/wide_posix_api.cpp -vc7/libboost_regex-vc7-mt-sgd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_35.pdb ../src/winstances.cpp +vc7/libboost_regex-vc7-mt-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_37.pdb ../src/winstances.cpp -libboost_regex-vc7-mt-sgd-1_35_dir : - @if not exist "vc7\libboost_regex-vc7-mt-sgd-1_35\$(NULL)" mkdir vc7\libboost_regex-vc7-mt-sgd-1_35 +libboost_regex-vc7-mt-sgd-1_37_dir : + @if not exist "vc7\libboost_regex-vc7-mt-sgd-1_37\$(NULL)" mkdir vc7\libboost_regex-vc7-mt-sgd-1_37 -libboost_regex-vc7-mt-sgd-1_35_clean : - del vc7\libboost_regex-vc7-mt-sgd-1_35\*.obj - del vc7\libboost_regex-vc7-mt-sgd-1_35\*.idb - del vc7\libboost_regex-vc7-mt-sgd-1_35\*.exp - del vc7\libboost_regex-vc7-mt-sgd-1_35\*.pch +libboost_regex-vc7-mt-sgd-1_37_clean : + del vc7\libboost_regex-vc7-mt-sgd-1_37\*.obj + del vc7\libboost_regex-vc7-mt-sgd-1_37\*.idb + del vc7\libboost_regex-vc7-mt-sgd-1_37\*.exp + del vc7\libboost_regex-vc7-mt-sgd-1_37\*.pch -./vc7/libboost_regex-vc7-mt-sgd-1_35.lib : vc7/libboost_regex-vc7-mt-sgd-1_35/c_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_35/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_35/cregex.obj vc7/libboost_regex-vc7-mt-sgd-1_35/fileiter.obj vc7/libboost_regex-vc7-mt-sgd-1_35/icu.obj vc7/libboost_regex-vc7-mt-sgd-1_35/instances.obj vc7/libboost_regex-vc7-mt-sgd-1_35/posix_api.obj vc7/libboost_regex-vc7-mt-sgd-1_35/regex.obj vc7/libboost_regex-vc7-mt-sgd-1_35/regex_debug.obj vc7/libboost_regex-vc7-mt-sgd-1_35/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-sgd-1_35/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-sgd-1_35/static_mutex.obj vc7/libboost_regex-vc7-mt-sgd-1_35/usinstances.obj vc7/libboost_regex-vc7-mt-sgd-1_35/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_35/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_35/wide_posix_api.obj vc7/libboost_regex-vc7-mt-sgd-1_35/winstances.obj - link -lib /nologo /out:vc7/libboost_regex-vc7-mt-sgd-1_35.lib $(XSFLAGS) vc7/libboost_regex-vc7-mt-sgd-1_35/c_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_35/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_35/cregex.obj vc7/libboost_regex-vc7-mt-sgd-1_35/fileiter.obj vc7/libboost_regex-vc7-mt-sgd-1_35/icu.obj vc7/libboost_regex-vc7-mt-sgd-1_35/instances.obj vc7/libboost_regex-vc7-mt-sgd-1_35/posix_api.obj vc7/libboost_regex-vc7-mt-sgd-1_35/regex.obj vc7/libboost_regex-vc7-mt-sgd-1_35/regex_debug.obj vc7/libboost_regex-vc7-mt-sgd-1_35/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-sgd-1_35/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-sgd-1_35/static_mutex.obj vc7/libboost_regex-vc7-mt-sgd-1_35/usinstances.obj vc7/libboost_regex-vc7-mt-sgd-1_35/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_35/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_35/wide_posix_api.obj vc7/libboost_regex-vc7-mt-sgd-1_35/winstances.obj +./vc7/libboost_regex-vc7-mt-sgd-1_37.lib : vc7/libboost_regex-vc7-mt-sgd-1_37/c_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_37/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_37/cregex.obj vc7/libboost_regex-vc7-mt-sgd-1_37/fileiter.obj vc7/libboost_regex-vc7-mt-sgd-1_37/icu.obj vc7/libboost_regex-vc7-mt-sgd-1_37/instances.obj vc7/libboost_regex-vc7-mt-sgd-1_37/posix_api.obj vc7/libboost_regex-vc7-mt-sgd-1_37/regex.obj vc7/libboost_regex-vc7-mt-sgd-1_37/regex_debug.obj vc7/libboost_regex-vc7-mt-sgd-1_37/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-sgd-1_37/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-sgd-1_37/static_mutex.obj vc7/libboost_regex-vc7-mt-sgd-1_37/usinstances.obj vc7/libboost_regex-vc7-mt-sgd-1_37/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_37/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_37/wide_posix_api.obj vc7/libboost_regex-vc7-mt-sgd-1_37/winstances.obj + link -lib /nologo /out:vc7/libboost_regex-vc7-mt-sgd-1_37.lib $(XSFLAGS) vc7/libboost_regex-vc7-mt-sgd-1_37/c_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_37/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_37/cregex.obj vc7/libboost_regex-vc7-mt-sgd-1_37/fileiter.obj vc7/libboost_regex-vc7-mt-sgd-1_37/icu.obj vc7/libboost_regex-vc7-mt-sgd-1_37/instances.obj vc7/libboost_regex-vc7-mt-sgd-1_37/posix_api.obj vc7/libboost_regex-vc7-mt-sgd-1_37/regex.obj vc7/libboost_regex-vc7-mt-sgd-1_37/regex_debug.obj vc7/libboost_regex-vc7-mt-sgd-1_37/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-sgd-1_37/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-sgd-1_37/static_mutex.obj vc7/libboost_regex-vc7-mt-sgd-1_37/usinstances.obj vc7/libboost_regex-vc7-mt-sgd-1_37/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_37/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_37/wide_posix_api.obj vc7/libboost_regex-vc7-mt-sgd-1_37/winstances.obj ######################################################## # -# section for boost_regex-vc7-mt-gd-1_35.lib +# section for boost_regex-vc7-mt-gd-1_37.lib # ######################################################## -vc7/boost_regex-vc7-mt-gd-1_35/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_35/ -Fdvc7/boost_regex-vc7-mt-gd-1_35.pdb ../src/c_regex_traits.cpp +vc7/boost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-gd-1_37.pdb ../src/c_regex_traits.cpp -vc7/boost_regex-vc7-mt-gd-1_35/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_35/ -Fdvc7/boost_regex-vc7-mt-gd-1_35.pdb ../src/cpp_regex_traits.cpp +vc7/boost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-gd-1_37.pdb ../src/cpp_regex_traits.cpp -vc7/boost_regex-vc7-mt-gd-1_35/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_35/ -Fdvc7/boost_regex-vc7-mt-gd-1_35.pdb ../src/cregex.cpp +vc7/boost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-gd-1_37.pdb ../src/cregex.cpp -vc7/boost_regex-vc7-mt-gd-1_35/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_35/ -Fdvc7/boost_regex-vc7-mt-gd-1_35.pdb ../src/fileiter.cpp +vc7/boost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-gd-1_37.pdb ../src/fileiter.cpp -vc7/boost_regex-vc7-mt-gd-1_35/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_35/ -Fdvc7/boost_regex-vc7-mt-gd-1_35.pdb ../src/icu.cpp +vc7/boost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-gd-1_37.pdb ../src/icu.cpp -vc7/boost_regex-vc7-mt-gd-1_35/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_35/ -Fdvc7/boost_regex-vc7-mt-gd-1_35.pdb ../src/instances.cpp +vc7/boost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-gd-1_37.pdb ../src/instances.cpp -vc7/boost_regex-vc7-mt-gd-1_35/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_35/ -Fdvc7/boost_regex-vc7-mt-gd-1_35.pdb ../src/posix_api.cpp +vc7/boost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-gd-1_37.pdb ../src/posix_api.cpp -vc7/boost_regex-vc7-mt-gd-1_35/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_35/ -Fdvc7/boost_regex-vc7-mt-gd-1_35.pdb ../src/regex.cpp +vc7/boost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-gd-1_37.pdb ../src/regex.cpp -vc7/boost_regex-vc7-mt-gd-1_35/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_35/ -Fdvc7/boost_regex-vc7-mt-gd-1_35.pdb ../src/regex_debug.cpp +vc7/boost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-gd-1_37.pdb ../src/regex_debug.cpp -vc7/boost_regex-vc7-mt-gd-1_35/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_35/ -Fdvc7/boost_regex-vc7-mt-gd-1_35.pdb ../src/regex_raw_buffer.cpp +vc7/boost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-gd-1_37.pdb ../src/regex_raw_buffer.cpp -vc7/boost_regex-vc7-mt-gd-1_35/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_35/ -Fdvc7/boost_regex-vc7-mt-gd-1_35.pdb ../src/regex_traits_defaults.cpp +vc7/boost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-gd-1_37.pdb ../src/regex_traits_defaults.cpp -vc7/boost_regex-vc7-mt-gd-1_35/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_35/ -Fdvc7/boost_regex-vc7-mt-gd-1_35.pdb ../src/static_mutex.cpp +vc7/boost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-gd-1_37.pdb ../src/static_mutex.cpp -vc7/boost_regex-vc7-mt-gd-1_35/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_35/ -Fdvc7/boost_regex-vc7-mt-gd-1_35.pdb ../src/usinstances.cpp +vc7/boost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-gd-1_37.pdb ../src/usinstances.cpp -vc7/boost_regex-vc7-mt-gd-1_35/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_35/ -Fdvc7/boost_regex-vc7-mt-gd-1_35.pdb ../src/w32_regex_traits.cpp +vc7/boost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-gd-1_37.pdb ../src/w32_regex_traits.cpp -vc7/boost_regex-vc7-mt-gd-1_35/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_35/ -Fdvc7/boost_regex-vc7-mt-gd-1_35.pdb ../src/wc_regex_traits.cpp +vc7/boost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-gd-1_37.pdb ../src/wc_regex_traits.cpp -vc7/boost_regex-vc7-mt-gd-1_35/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_35/ -Fdvc7/boost_regex-vc7-mt-gd-1_35.pdb ../src/wide_posix_api.cpp +vc7/boost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-gd-1_37.pdb ../src/wide_posix_api.cpp -vc7/boost_regex-vc7-mt-gd-1_35/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_35/ -Fdvc7/boost_regex-vc7-mt-gd-1_35.pdb ../src/winstances.cpp +vc7/boost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-gd-1_37.pdb ../src/winstances.cpp -boost_regex-vc7-mt-gd-1_35_dir : - @if not exist "vc7\boost_regex-vc7-mt-gd-1_35\$(NULL)" mkdir vc7\boost_regex-vc7-mt-gd-1_35 +boost_regex-vc7-mt-gd-1_37_dir : + @if not exist "vc7\boost_regex-vc7-mt-gd-1_37\$(NULL)" mkdir vc7\boost_regex-vc7-mt-gd-1_37 -boost_regex-vc7-mt-gd-1_35_clean : - del vc7\boost_regex-vc7-mt-gd-1_35\*.obj - del vc7\boost_regex-vc7-mt-gd-1_35\*.idb - del vc7\boost_regex-vc7-mt-gd-1_35\*.exp - del vc7\boost_regex-vc7-mt-gd-1_35\*.pch +boost_regex-vc7-mt-gd-1_37_clean : + del vc7\boost_regex-vc7-mt-gd-1_37\*.obj + del vc7\boost_regex-vc7-mt-gd-1_37\*.idb + del vc7\boost_regex-vc7-mt-gd-1_37\*.exp + del vc7\boost_regex-vc7-mt-gd-1_37\*.pch -./vc7/boost_regex-vc7-mt-gd-1_35.lib : vc7/boost_regex-vc7-mt-gd-1_35/c_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_35/cpp_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_35/cregex.obj vc7/boost_regex-vc7-mt-gd-1_35/fileiter.obj vc7/boost_regex-vc7-mt-gd-1_35/icu.obj vc7/boost_regex-vc7-mt-gd-1_35/instances.obj vc7/boost_regex-vc7-mt-gd-1_35/posix_api.obj vc7/boost_regex-vc7-mt-gd-1_35/regex.obj vc7/boost_regex-vc7-mt-gd-1_35/regex_debug.obj vc7/boost_regex-vc7-mt-gd-1_35/regex_raw_buffer.obj vc7/boost_regex-vc7-mt-gd-1_35/regex_traits_defaults.obj vc7/boost_regex-vc7-mt-gd-1_35/static_mutex.obj vc7/boost_regex-vc7-mt-gd-1_35/usinstances.obj vc7/boost_regex-vc7-mt-gd-1_35/w32_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_35/wc_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_35/wide_posix_api.obj vc7/boost_regex-vc7-mt-gd-1_35/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_35.pdb" /debug /machine:I386 /out:"vc7/boost_regex-vc7-mt-gd-1_35.dll" /implib:"vc7/boost_regex-vc7-mt-gd-1_35.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc7/boost_regex-vc7-mt-gd-1_35/c_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_35/cpp_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_35/cregex.obj vc7/boost_regex-vc7-mt-gd-1_35/fileiter.obj vc7/boost_regex-vc7-mt-gd-1_35/icu.obj vc7/boost_regex-vc7-mt-gd-1_35/instances.obj vc7/boost_regex-vc7-mt-gd-1_35/posix_api.obj vc7/boost_regex-vc7-mt-gd-1_35/regex.obj vc7/boost_regex-vc7-mt-gd-1_35/regex_debug.obj vc7/boost_regex-vc7-mt-gd-1_35/regex_raw_buffer.obj vc7/boost_regex-vc7-mt-gd-1_35/regex_traits_defaults.obj vc7/boost_regex-vc7-mt-gd-1_35/static_mutex.obj vc7/boost_regex-vc7-mt-gd-1_35/usinstances.obj vc7/boost_regex-vc7-mt-gd-1_35/w32_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_35/wc_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_35/wide_posix_api.obj vc7/boost_regex-vc7-mt-gd-1_35/winstances.obj +./vc7/boost_regex-vc7-mt-gd-1_37.lib : vc7/boost_regex-vc7-mt-gd-1_37/c_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_37/cpp_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_37/cregex.obj vc7/boost_regex-vc7-mt-gd-1_37/fileiter.obj vc7/boost_regex-vc7-mt-gd-1_37/icu.obj vc7/boost_regex-vc7-mt-gd-1_37/instances.obj vc7/boost_regex-vc7-mt-gd-1_37/posix_api.obj vc7/boost_regex-vc7-mt-gd-1_37/regex.obj vc7/boost_regex-vc7-mt-gd-1_37/regex_debug.obj vc7/boost_regex-vc7-mt-gd-1_37/regex_raw_buffer.obj vc7/boost_regex-vc7-mt-gd-1_37/regex_traits_defaults.obj vc7/boost_regex-vc7-mt-gd-1_37/static_mutex.obj vc7/boost_regex-vc7-mt-gd-1_37/usinstances.obj vc7/boost_regex-vc7-mt-gd-1_37/w32_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_37/wc_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_37/wide_posix_api.obj vc7/boost_regex-vc7-mt-gd-1_37/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_37.pdb" /debug /machine:I386 /out:"vc7/boost_regex-vc7-mt-gd-1_37.dll" /implib:"vc7/boost_regex-vc7-mt-gd-1_37.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc7/boost_regex-vc7-mt-gd-1_37/c_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_37/cpp_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_37/cregex.obj vc7/boost_regex-vc7-mt-gd-1_37/fileiter.obj vc7/boost_regex-vc7-mt-gd-1_37/icu.obj vc7/boost_regex-vc7-mt-gd-1_37/instances.obj vc7/boost_regex-vc7-mt-gd-1_37/posix_api.obj vc7/boost_regex-vc7-mt-gd-1_37/regex.obj vc7/boost_regex-vc7-mt-gd-1_37/regex_debug.obj vc7/boost_regex-vc7-mt-gd-1_37/regex_raw_buffer.obj vc7/boost_regex-vc7-mt-gd-1_37/regex_traits_defaults.obj vc7/boost_regex-vc7-mt-gd-1_37/static_mutex.obj vc7/boost_regex-vc7-mt-gd-1_37/usinstances.obj vc7/boost_regex-vc7-mt-gd-1_37/w32_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_37/wc_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_37/wide_posix_api.obj vc7/boost_regex-vc7-mt-gd-1_37/winstances.obj ######################################################## # -# section for boost_regex-vc7-mt-1_35.lib +# section for boost_regex-vc7-mt-1_37.lib # ######################################################## -vc7/boost_regex-vc7-mt-1_35/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_35/ -Fdvc7/boost_regex-vc7-mt-1_35.pdb ../src/c_regex_traits.cpp +vc7/boost_regex-vc7-mt-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-1_37.pdb ../src/c_regex_traits.cpp -vc7/boost_regex-vc7-mt-1_35/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_35/ -Fdvc7/boost_regex-vc7-mt-1_35.pdb ../src/cpp_regex_traits.cpp +vc7/boost_regex-vc7-mt-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-1_37.pdb ../src/cpp_regex_traits.cpp -vc7/boost_regex-vc7-mt-1_35/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_35/ -Fdvc7/boost_regex-vc7-mt-1_35.pdb ../src/cregex.cpp +vc7/boost_regex-vc7-mt-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-1_37.pdb ../src/cregex.cpp -vc7/boost_regex-vc7-mt-1_35/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_35/ -Fdvc7/boost_regex-vc7-mt-1_35.pdb ../src/fileiter.cpp +vc7/boost_regex-vc7-mt-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-1_37.pdb ../src/fileiter.cpp -vc7/boost_regex-vc7-mt-1_35/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_35/ -Fdvc7/boost_regex-vc7-mt-1_35.pdb ../src/icu.cpp +vc7/boost_regex-vc7-mt-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-1_37.pdb ../src/icu.cpp -vc7/boost_regex-vc7-mt-1_35/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_35/ -Fdvc7/boost_regex-vc7-mt-1_35.pdb ../src/instances.cpp +vc7/boost_regex-vc7-mt-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-1_37.pdb ../src/instances.cpp -vc7/boost_regex-vc7-mt-1_35/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_35/ -Fdvc7/boost_regex-vc7-mt-1_35.pdb ../src/posix_api.cpp +vc7/boost_regex-vc7-mt-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-1_37.pdb ../src/posix_api.cpp -vc7/boost_regex-vc7-mt-1_35/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_35/ -Fdvc7/boost_regex-vc7-mt-1_35.pdb ../src/regex.cpp +vc7/boost_regex-vc7-mt-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-1_37.pdb ../src/regex.cpp -vc7/boost_regex-vc7-mt-1_35/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_35/ -Fdvc7/boost_regex-vc7-mt-1_35.pdb ../src/regex_debug.cpp +vc7/boost_regex-vc7-mt-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-1_37.pdb ../src/regex_debug.cpp -vc7/boost_regex-vc7-mt-1_35/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_35/ -Fdvc7/boost_regex-vc7-mt-1_35.pdb ../src/regex_raw_buffer.cpp +vc7/boost_regex-vc7-mt-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-1_37.pdb ../src/regex_raw_buffer.cpp -vc7/boost_regex-vc7-mt-1_35/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_35/ -Fdvc7/boost_regex-vc7-mt-1_35.pdb ../src/regex_traits_defaults.cpp +vc7/boost_regex-vc7-mt-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-1_37.pdb ../src/regex_traits_defaults.cpp -vc7/boost_regex-vc7-mt-1_35/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_35/ -Fdvc7/boost_regex-vc7-mt-1_35.pdb ../src/static_mutex.cpp +vc7/boost_regex-vc7-mt-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-1_37.pdb ../src/static_mutex.cpp -vc7/boost_regex-vc7-mt-1_35/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_35/ -Fdvc7/boost_regex-vc7-mt-1_35.pdb ../src/usinstances.cpp +vc7/boost_regex-vc7-mt-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-1_37.pdb ../src/usinstances.cpp -vc7/boost_regex-vc7-mt-1_35/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_35/ -Fdvc7/boost_regex-vc7-mt-1_35.pdb ../src/w32_regex_traits.cpp +vc7/boost_regex-vc7-mt-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-1_37.pdb ../src/w32_regex_traits.cpp -vc7/boost_regex-vc7-mt-1_35/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_35/ -Fdvc7/boost_regex-vc7-mt-1_35.pdb ../src/wc_regex_traits.cpp +vc7/boost_regex-vc7-mt-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-1_37.pdb ../src/wc_regex_traits.cpp -vc7/boost_regex-vc7-mt-1_35/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_35/ -Fdvc7/boost_regex-vc7-mt-1_35.pdb ../src/wide_posix_api.cpp +vc7/boost_regex-vc7-mt-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-1_37.pdb ../src/wide_posix_api.cpp -vc7/boost_regex-vc7-mt-1_35/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_35/ -Fdvc7/boost_regex-vc7-mt-1_35.pdb ../src/winstances.cpp +vc7/boost_regex-vc7-mt-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-1_37.pdb ../src/winstances.cpp -boost_regex-vc7-mt-1_35_dir : - @if not exist "vc7\boost_regex-vc7-mt-1_35\$(NULL)" mkdir vc7\boost_regex-vc7-mt-1_35 +boost_regex-vc7-mt-1_37_dir : + @if not exist "vc7\boost_regex-vc7-mt-1_37\$(NULL)" mkdir vc7\boost_regex-vc7-mt-1_37 -boost_regex-vc7-mt-1_35_clean : - del vc7\boost_regex-vc7-mt-1_35\*.obj - del vc7\boost_regex-vc7-mt-1_35\*.idb - del vc7\boost_regex-vc7-mt-1_35\*.exp - del vc7\boost_regex-vc7-mt-1_35\*.pch +boost_regex-vc7-mt-1_37_clean : + del vc7\boost_regex-vc7-mt-1_37\*.obj + del vc7\boost_regex-vc7-mt-1_37\*.idb + del vc7\boost_regex-vc7-mt-1_37\*.exp + del vc7\boost_regex-vc7-mt-1_37\*.pch -./vc7/boost_regex-vc7-mt-1_35.lib : vc7/boost_regex-vc7-mt-1_35/c_regex_traits.obj vc7/boost_regex-vc7-mt-1_35/cpp_regex_traits.obj vc7/boost_regex-vc7-mt-1_35/cregex.obj vc7/boost_regex-vc7-mt-1_35/fileiter.obj vc7/boost_regex-vc7-mt-1_35/icu.obj vc7/boost_regex-vc7-mt-1_35/instances.obj vc7/boost_regex-vc7-mt-1_35/posix_api.obj vc7/boost_regex-vc7-mt-1_35/regex.obj vc7/boost_regex-vc7-mt-1_35/regex_debug.obj vc7/boost_regex-vc7-mt-1_35/regex_raw_buffer.obj vc7/boost_regex-vc7-mt-1_35/regex_traits_defaults.obj vc7/boost_regex-vc7-mt-1_35/static_mutex.obj vc7/boost_regex-vc7-mt-1_35/usinstances.obj vc7/boost_regex-vc7-mt-1_35/w32_regex_traits.obj vc7/boost_regex-vc7-mt-1_35/wc_regex_traits.obj vc7/boost_regex-vc7-mt-1_35/wide_posix_api.obj vc7/boost_regex-vc7-mt-1_35/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_35.pdb" /debug /machine:I386 /out:"vc7/boost_regex-vc7-mt-1_35.dll" /implib:"vc7/boost_regex-vc7-mt-1_35.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc7/boost_regex-vc7-mt-1_35/c_regex_traits.obj vc7/boost_regex-vc7-mt-1_35/cpp_regex_traits.obj vc7/boost_regex-vc7-mt-1_35/cregex.obj vc7/boost_regex-vc7-mt-1_35/fileiter.obj vc7/boost_regex-vc7-mt-1_35/icu.obj vc7/boost_regex-vc7-mt-1_35/instances.obj vc7/boost_regex-vc7-mt-1_35/posix_api.obj vc7/boost_regex-vc7-mt-1_35/regex.obj vc7/boost_regex-vc7-mt-1_35/regex_debug.obj vc7/boost_regex-vc7-mt-1_35/regex_raw_buffer.obj vc7/boost_regex-vc7-mt-1_35/regex_traits_defaults.obj vc7/boost_regex-vc7-mt-1_35/static_mutex.obj vc7/boost_regex-vc7-mt-1_35/usinstances.obj vc7/boost_regex-vc7-mt-1_35/w32_regex_traits.obj vc7/boost_regex-vc7-mt-1_35/wc_regex_traits.obj vc7/boost_regex-vc7-mt-1_35/wide_posix_api.obj vc7/boost_regex-vc7-mt-1_35/winstances.obj +./vc7/boost_regex-vc7-mt-1_37.lib : vc7/boost_regex-vc7-mt-1_37/c_regex_traits.obj vc7/boost_regex-vc7-mt-1_37/cpp_regex_traits.obj vc7/boost_regex-vc7-mt-1_37/cregex.obj vc7/boost_regex-vc7-mt-1_37/fileiter.obj vc7/boost_regex-vc7-mt-1_37/icu.obj vc7/boost_regex-vc7-mt-1_37/instances.obj vc7/boost_regex-vc7-mt-1_37/posix_api.obj vc7/boost_regex-vc7-mt-1_37/regex.obj vc7/boost_regex-vc7-mt-1_37/regex_debug.obj vc7/boost_regex-vc7-mt-1_37/regex_raw_buffer.obj vc7/boost_regex-vc7-mt-1_37/regex_traits_defaults.obj vc7/boost_regex-vc7-mt-1_37/static_mutex.obj vc7/boost_regex-vc7-mt-1_37/usinstances.obj vc7/boost_regex-vc7-mt-1_37/w32_regex_traits.obj vc7/boost_regex-vc7-mt-1_37/wc_regex_traits.obj vc7/boost_regex-vc7-mt-1_37/wide_posix_api.obj vc7/boost_regex-vc7-mt-1_37/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_37.pdb" /debug /machine:I386 /out:"vc7/boost_regex-vc7-mt-1_37.dll" /implib:"vc7/boost_regex-vc7-mt-1_37.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc7/boost_regex-vc7-mt-1_37/c_regex_traits.obj vc7/boost_regex-vc7-mt-1_37/cpp_regex_traits.obj vc7/boost_regex-vc7-mt-1_37/cregex.obj vc7/boost_regex-vc7-mt-1_37/fileiter.obj vc7/boost_regex-vc7-mt-1_37/icu.obj vc7/boost_regex-vc7-mt-1_37/instances.obj vc7/boost_regex-vc7-mt-1_37/posix_api.obj vc7/boost_regex-vc7-mt-1_37/regex.obj vc7/boost_regex-vc7-mt-1_37/regex_debug.obj vc7/boost_regex-vc7-mt-1_37/regex_raw_buffer.obj vc7/boost_regex-vc7-mt-1_37/regex_traits_defaults.obj vc7/boost_regex-vc7-mt-1_37/static_mutex.obj vc7/boost_regex-vc7-mt-1_37/usinstances.obj vc7/boost_regex-vc7-mt-1_37/w32_regex_traits.obj vc7/boost_regex-vc7-mt-1_37/wc_regex_traits.obj vc7/boost_regex-vc7-mt-1_37/wide_posix_api.obj vc7/boost_regex-vc7-mt-1_37/winstances.obj ######################################################## # -# section for libboost_regex-vc7-mt-1_35.lib +# section for libboost_regex-vc7-mt-1_37.lib # ######################################################## -vc7/libboost_regex-vc7-mt-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-1_35.pdb ../src/c_regex_traits.cpp +vc7/libboost_regex-vc7-mt-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-1_37.pdb ../src/c_regex_traits.cpp -vc7/libboost_regex-vc7-mt-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-1_35.pdb ../src/cpp_regex_traits.cpp +vc7/libboost_regex-vc7-mt-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-1_37.pdb ../src/cpp_regex_traits.cpp -vc7/libboost_regex-vc7-mt-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-1_35.pdb ../src/cregex.cpp +vc7/libboost_regex-vc7-mt-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-1_37.pdb ../src/cregex.cpp -vc7/libboost_regex-vc7-mt-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-1_35.pdb ../src/fileiter.cpp +vc7/libboost_regex-vc7-mt-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-1_37.pdb ../src/fileiter.cpp -vc7/libboost_regex-vc7-mt-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-1_35.pdb ../src/icu.cpp +vc7/libboost_regex-vc7-mt-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-1_37.pdb ../src/icu.cpp -vc7/libboost_regex-vc7-mt-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-1_35.pdb ../src/instances.cpp +vc7/libboost_regex-vc7-mt-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-1_37.pdb ../src/instances.cpp -vc7/libboost_regex-vc7-mt-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-1_35.pdb ../src/posix_api.cpp +vc7/libboost_regex-vc7-mt-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-1_37.pdb ../src/posix_api.cpp -vc7/libboost_regex-vc7-mt-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-1_35.pdb ../src/regex.cpp +vc7/libboost_regex-vc7-mt-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-1_37.pdb ../src/regex.cpp -vc7/libboost_regex-vc7-mt-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-1_35.pdb ../src/regex_debug.cpp +vc7/libboost_regex-vc7-mt-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-1_37.pdb ../src/regex_debug.cpp -vc7/libboost_regex-vc7-mt-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-1_35.pdb ../src/regex_raw_buffer.cpp +vc7/libboost_regex-vc7-mt-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-1_37.pdb ../src/regex_raw_buffer.cpp -vc7/libboost_regex-vc7-mt-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-1_35.pdb ../src/regex_traits_defaults.cpp +vc7/libboost_regex-vc7-mt-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-1_37.pdb ../src/regex_traits_defaults.cpp -vc7/libboost_regex-vc7-mt-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-1_35.pdb ../src/static_mutex.cpp +vc7/libboost_regex-vc7-mt-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-1_37.pdb ../src/static_mutex.cpp -vc7/libboost_regex-vc7-mt-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-1_35.pdb ../src/usinstances.cpp +vc7/libboost_regex-vc7-mt-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-1_37.pdb ../src/usinstances.cpp -vc7/libboost_regex-vc7-mt-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-1_35.pdb ../src/w32_regex_traits.cpp +vc7/libboost_regex-vc7-mt-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-1_37.pdb ../src/w32_regex_traits.cpp -vc7/libboost_regex-vc7-mt-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-1_35.pdb ../src/wc_regex_traits.cpp +vc7/libboost_regex-vc7-mt-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-1_37.pdb ../src/wc_regex_traits.cpp -vc7/libboost_regex-vc7-mt-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-1_35.pdb ../src/wide_posix_api.cpp +vc7/libboost_regex-vc7-mt-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-1_37.pdb ../src/wide_posix_api.cpp -vc7/libboost_regex-vc7-mt-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-1_35.pdb ../src/winstances.cpp +vc7/libboost_regex-vc7-mt-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-1_37.pdb ../src/winstances.cpp -libboost_regex-vc7-mt-1_35_dir : - @if not exist "vc7\libboost_regex-vc7-mt-1_35\$(NULL)" mkdir vc7\libboost_regex-vc7-mt-1_35 +libboost_regex-vc7-mt-1_37_dir : + @if not exist "vc7\libboost_regex-vc7-mt-1_37\$(NULL)" mkdir vc7\libboost_regex-vc7-mt-1_37 -libboost_regex-vc7-mt-1_35_clean : - del vc7\libboost_regex-vc7-mt-1_35\*.obj - del vc7\libboost_regex-vc7-mt-1_35\*.idb - del vc7\libboost_regex-vc7-mt-1_35\*.exp - del vc7\libboost_regex-vc7-mt-1_35\*.pch +libboost_regex-vc7-mt-1_37_clean : + del vc7\libboost_regex-vc7-mt-1_37\*.obj + del vc7\libboost_regex-vc7-mt-1_37\*.idb + del vc7\libboost_regex-vc7-mt-1_37\*.exp + del vc7\libboost_regex-vc7-mt-1_37\*.pch -./vc7/libboost_regex-vc7-mt-1_35.lib : vc7/libboost_regex-vc7-mt-1_35/c_regex_traits.obj vc7/libboost_regex-vc7-mt-1_35/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-1_35/cregex.obj vc7/libboost_regex-vc7-mt-1_35/fileiter.obj vc7/libboost_regex-vc7-mt-1_35/icu.obj vc7/libboost_regex-vc7-mt-1_35/instances.obj vc7/libboost_regex-vc7-mt-1_35/posix_api.obj vc7/libboost_regex-vc7-mt-1_35/regex.obj vc7/libboost_regex-vc7-mt-1_35/regex_debug.obj vc7/libboost_regex-vc7-mt-1_35/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-1_35/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-1_35/static_mutex.obj vc7/libboost_regex-vc7-mt-1_35/usinstances.obj vc7/libboost_regex-vc7-mt-1_35/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-1_35/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-1_35/wide_posix_api.obj vc7/libboost_regex-vc7-mt-1_35/winstances.obj - link -lib /nologo /out:vc7/libboost_regex-vc7-mt-1_35.lib $(XSFLAGS) vc7/libboost_regex-vc7-mt-1_35/c_regex_traits.obj vc7/libboost_regex-vc7-mt-1_35/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-1_35/cregex.obj vc7/libboost_regex-vc7-mt-1_35/fileiter.obj vc7/libboost_regex-vc7-mt-1_35/icu.obj vc7/libboost_regex-vc7-mt-1_35/instances.obj vc7/libboost_regex-vc7-mt-1_35/posix_api.obj vc7/libboost_regex-vc7-mt-1_35/regex.obj vc7/libboost_regex-vc7-mt-1_35/regex_debug.obj vc7/libboost_regex-vc7-mt-1_35/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-1_35/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-1_35/static_mutex.obj vc7/libboost_regex-vc7-mt-1_35/usinstances.obj vc7/libboost_regex-vc7-mt-1_35/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-1_35/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-1_35/wide_posix_api.obj vc7/libboost_regex-vc7-mt-1_35/winstances.obj +./vc7/libboost_regex-vc7-mt-1_37.lib : vc7/libboost_regex-vc7-mt-1_37/c_regex_traits.obj vc7/libboost_regex-vc7-mt-1_37/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-1_37/cregex.obj vc7/libboost_regex-vc7-mt-1_37/fileiter.obj vc7/libboost_regex-vc7-mt-1_37/icu.obj vc7/libboost_regex-vc7-mt-1_37/instances.obj vc7/libboost_regex-vc7-mt-1_37/posix_api.obj vc7/libboost_regex-vc7-mt-1_37/regex.obj vc7/libboost_regex-vc7-mt-1_37/regex_debug.obj vc7/libboost_regex-vc7-mt-1_37/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-1_37/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-1_37/static_mutex.obj vc7/libboost_regex-vc7-mt-1_37/usinstances.obj vc7/libboost_regex-vc7-mt-1_37/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-1_37/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-1_37/wide_posix_api.obj vc7/libboost_regex-vc7-mt-1_37/winstances.obj + link -lib /nologo /out:vc7/libboost_regex-vc7-mt-1_37.lib $(XSFLAGS) vc7/libboost_regex-vc7-mt-1_37/c_regex_traits.obj vc7/libboost_regex-vc7-mt-1_37/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-1_37/cregex.obj vc7/libboost_regex-vc7-mt-1_37/fileiter.obj vc7/libboost_regex-vc7-mt-1_37/icu.obj vc7/libboost_regex-vc7-mt-1_37/instances.obj vc7/libboost_regex-vc7-mt-1_37/posix_api.obj vc7/libboost_regex-vc7-mt-1_37/regex.obj vc7/libboost_regex-vc7-mt-1_37/regex_debug.obj vc7/libboost_regex-vc7-mt-1_37/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-1_37/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-1_37/static_mutex.obj vc7/libboost_regex-vc7-mt-1_37/usinstances.obj vc7/libboost_regex-vc7-mt-1_37/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-1_37/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-1_37/wide_posix_api.obj vc7/libboost_regex-vc7-mt-1_37/winstances.obj ######################################################## # -# section for libboost_regex-vc7-mt-gd-1_35.lib +# section for libboost_regex-vc7-mt-gd-1_37.lib # ######################################################## -vc7/libboost_regex-vc7-mt-gd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-gd-1_35.pdb ../src/c_regex_traits.cpp +vc7/libboost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-gd-1_37.pdb ../src/c_regex_traits.cpp -vc7/libboost_regex-vc7-mt-gd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-gd-1_35.pdb ../src/cpp_regex_traits.cpp +vc7/libboost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-gd-1_37.pdb ../src/cpp_regex_traits.cpp -vc7/libboost_regex-vc7-mt-gd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-gd-1_35.pdb ../src/cregex.cpp +vc7/libboost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-gd-1_37.pdb ../src/cregex.cpp -vc7/libboost_regex-vc7-mt-gd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-gd-1_35.pdb ../src/fileiter.cpp +vc7/libboost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-gd-1_37.pdb ../src/fileiter.cpp -vc7/libboost_regex-vc7-mt-gd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-gd-1_35.pdb ../src/icu.cpp +vc7/libboost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-gd-1_37.pdb ../src/icu.cpp -vc7/libboost_regex-vc7-mt-gd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-gd-1_35.pdb ../src/instances.cpp +vc7/libboost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-gd-1_37.pdb ../src/instances.cpp -vc7/libboost_regex-vc7-mt-gd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-gd-1_35.pdb ../src/posix_api.cpp +vc7/libboost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-gd-1_37.pdb ../src/posix_api.cpp -vc7/libboost_regex-vc7-mt-gd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-gd-1_35.pdb ../src/regex.cpp +vc7/libboost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-gd-1_37.pdb ../src/regex.cpp -vc7/libboost_regex-vc7-mt-gd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-gd-1_35.pdb ../src/regex_debug.cpp +vc7/libboost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-gd-1_37.pdb ../src/regex_debug.cpp -vc7/libboost_regex-vc7-mt-gd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-gd-1_35.pdb ../src/regex_raw_buffer.cpp +vc7/libboost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-gd-1_37.pdb ../src/regex_raw_buffer.cpp -vc7/libboost_regex-vc7-mt-gd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-gd-1_35.pdb ../src/regex_traits_defaults.cpp +vc7/libboost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-gd-1_37.pdb ../src/regex_traits_defaults.cpp -vc7/libboost_regex-vc7-mt-gd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-gd-1_35.pdb ../src/static_mutex.cpp +vc7/libboost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-gd-1_37.pdb ../src/static_mutex.cpp -vc7/libboost_regex-vc7-mt-gd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-gd-1_35.pdb ../src/usinstances.cpp +vc7/libboost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-gd-1_37.pdb ../src/usinstances.cpp -vc7/libboost_regex-vc7-mt-gd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-gd-1_35.pdb ../src/w32_regex_traits.cpp +vc7/libboost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-gd-1_37.pdb ../src/w32_regex_traits.cpp -vc7/libboost_regex-vc7-mt-gd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-gd-1_35.pdb ../src/wc_regex_traits.cpp +vc7/libboost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-gd-1_37.pdb ../src/wc_regex_traits.cpp -vc7/libboost_regex-vc7-mt-gd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-gd-1_35.pdb ../src/wide_posix_api.cpp +vc7/libboost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-gd-1_37.pdb ../src/wide_posix_api.cpp -vc7/libboost_regex-vc7-mt-gd-1_35/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_35/ -Fdvc7/libboost_regex-vc7-mt-gd-1_35.pdb ../src/winstances.cpp +vc7/libboost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-gd-1_37.pdb ../src/winstances.cpp -libboost_regex-vc7-mt-gd-1_35_dir : - @if not exist "vc7\libboost_regex-vc7-mt-gd-1_35\$(NULL)" mkdir vc7\libboost_regex-vc7-mt-gd-1_35 +libboost_regex-vc7-mt-gd-1_37_dir : + @if not exist "vc7\libboost_regex-vc7-mt-gd-1_37\$(NULL)" mkdir vc7\libboost_regex-vc7-mt-gd-1_37 -libboost_regex-vc7-mt-gd-1_35_clean : - del vc7\libboost_regex-vc7-mt-gd-1_35\*.obj - del vc7\libboost_regex-vc7-mt-gd-1_35\*.idb - del vc7\libboost_regex-vc7-mt-gd-1_35\*.exp - del vc7\libboost_regex-vc7-mt-gd-1_35\*.pch +libboost_regex-vc7-mt-gd-1_37_clean : + del vc7\libboost_regex-vc7-mt-gd-1_37\*.obj + del vc7\libboost_regex-vc7-mt-gd-1_37\*.idb + del vc7\libboost_regex-vc7-mt-gd-1_37\*.exp + del vc7\libboost_regex-vc7-mt-gd-1_37\*.pch + +./vc7/libboost_regex-vc7-mt-gd-1_37.lib : vc7/libboost_regex-vc7-mt-gd-1_37/c_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_37/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_37/cregex.obj vc7/libboost_regex-vc7-mt-gd-1_37/fileiter.obj vc7/libboost_regex-vc7-mt-gd-1_37/icu.obj vc7/libboost_regex-vc7-mt-gd-1_37/instances.obj vc7/libboost_regex-vc7-mt-gd-1_37/posix_api.obj vc7/libboost_regex-vc7-mt-gd-1_37/regex.obj vc7/libboost_regex-vc7-mt-gd-1_37/regex_debug.obj vc7/libboost_regex-vc7-mt-gd-1_37/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-gd-1_37/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-gd-1_37/static_mutex.obj vc7/libboost_regex-vc7-mt-gd-1_37/usinstances.obj vc7/libboost_regex-vc7-mt-gd-1_37/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_37/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_37/wide_posix_api.obj vc7/libboost_regex-vc7-mt-gd-1_37/winstances.obj + link -lib /nologo /out:vc7/libboost_regex-vc7-mt-gd-1_37.lib $(XSFLAGS) vc7/libboost_regex-vc7-mt-gd-1_37/c_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_37/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_37/cregex.obj vc7/libboost_regex-vc7-mt-gd-1_37/fileiter.obj vc7/libboost_regex-vc7-mt-gd-1_37/icu.obj vc7/libboost_regex-vc7-mt-gd-1_37/instances.obj vc7/libboost_regex-vc7-mt-gd-1_37/posix_api.obj vc7/libboost_regex-vc7-mt-gd-1_37/regex.obj vc7/libboost_regex-vc7-mt-gd-1_37/regex_debug.obj vc7/libboost_regex-vc7-mt-gd-1_37/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-gd-1_37/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-gd-1_37/static_mutex.obj vc7/libboost_regex-vc7-mt-gd-1_37/usinstances.obj vc7/libboost_regex-vc7-mt-gd-1_37/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_37/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_37/wide_posix_api.obj vc7/libboost_regex-vc7-mt-gd-1_37/winstances.obj -./vc7/libboost_regex-vc7-mt-gd-1_35.lib : vc7/libboost_regex-vc7-mt-gd-1_35/c_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_35/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_35/cregex.obj vc7/libboost_regex-vc7-mt-gd-1_35/fileiter.obj vc7/libboost_regex-vc7-mt-gd-1_35/icu.obj vc7/libboost_regex-vc7-mt-gd-1_35/instances.obj vc7/libboost_regex-vc7-mt-gd-1_35/posix_api.obj vc7/libboost_regex-vc7-mt-gd-1_35/regex.obj vc7/libboost_regex-vc7-mt-gd-1_35/regex_debug.obj vc7/libboost_regex-vc7-mt-gd-1_35/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-gd-1_35/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-gd-1_35/static_mutex.obj vc7/libboost_regex-vc7-mt-gd-1_35/usinstances.obj vc7/libboost_regex-vc7-mt-gd-1_35/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_35/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_35/wide_posix_api.obj vc7/libboost_regex-vc7-mt-gd-1_35/winstances.obj - link -lib /nologo /out:vc7/libboost_regex-vc7-mt-gd-1_35.lib $(XSFLAGS) vc7/libboost_regex-vc7-mt-gd-1_35/c_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_35/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_35/cregex.obj vc7/libboost_regex-vc7-mt-gd-1_35/fileiter.obj vc7/libboost_regex-vc7-mt-gd-1_35/icu.obj vc7/libboost_regex-vc7-mt-gd-1_35/instances.obj vc7/libboost_regex-vc7-mt-gd-1_35/posix_api.obj vc7/libboost_regex-vc7-mt-gd-1_35/regex.obj vc7/libboost_regex-vc7-mt-gd-1_35/regex_debug.obj vc7/libboost_regex-vc7-mt-gd-1_35/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-gd-1_35/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-gd-1_35/static_mutex.obj vc7/libboost_regex-vc7-mt-gd-1_35/usinstances.obj vc7/libboost_regex-vc7-mt-gd-1_35/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_35/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_35/wide_posix_api.obj vc7/libboost_regex-vc7-mt-gd-1_35/winstances.obj diff --git a/build/vc71-stlport.mak b/build/vc71-stlport.mak index 264b449c..1116858b 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_35_dir ./vc71-stlport/libboost_regex-vc71-mt-sp-1_35.lib boost_regex-vc71-mt-p-1_35_dir ./vc71-stlport/boost_regex-vc71-mt-p-1_35.lib libboost_regex-vc71-mt-p-1_35_dir ./vc71-stlport/libboost_regex-vc71-mt-p-1_35.lib boost_regex-vc71-mt-gdp-1_35_dir ./vc71-stlport/boost_regex-vc71-mt-gdp-1_35.lib libboost_regex-vc71-mt-sgdp-1_35_dir ./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35.lib libboost_regex-vc71-mt-gdp-1_35_dir ./vc71-stlport/libboost_regex-vc71-mt-gdp-1_35.lib +all : main_dir libboost_regex-vc71-mt-sp-1_37_dir ./vc71-stlport/libboost_regex-vc71-mt-sp-1_37.lib boost_regex-vc71-mt-p-1_37_dir ./vc71-stlport/boost_regex-vc71-mt-p-1_37.lib libboost_regex-vc71-mt-p-1_37_dir ./vc71-stlport/libboost_regex-vc71-mt-p-1_37.lib boost_regex-vc71-mt-gdp-1_37_dir ./vc71-stlport/boost_regex-vc71-mt-gdp-1_37.lib libboost_regex-vc71-mt-sgdp-1_37_dir ./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37.lib libboost_regex-vc71-mt-gdp-1_37_dir ./vc71-stlport/libboost_regex-vc71-mt-gdp-1_37.lib -clean : libboost_regex-vc71-mt-sp-1_35_clean boost_regex-vc71-mt-p-1_35_clean libboost_regex-vc71-mt-p-1_35_clean boost_regex-vc71-mt-gdp-1_35_clean libboost_regex-vc71-mt-sgdp-1_35_clean libboost_regex-vc71-mt-gdp-1_35_clean +clean : libboost_regex-vc71-mt-sp-1_37_clean boost_regex-vc71-mt-p-1_37_clean libboost_regex-vc71-mt-p-1_37_clean boost_regex-vc71-mt-gdp-1_37_clean libboost_regex-vc71-mt-sgdp-1_37_clean libboost_regex-vc71-mt-gdp-1_37_clean install : stlport_check all - copy vc71-stlport\libboost_regex-vc71-mt-sp-1_35.lib "$(MSVCDIR)\lib" - copy vc71-stlport\boost_regex-vc71-mt-p-1_35.lib "$(MSVCDIR)\lib" - copy vc71-stlport\boost_regex-vc71-mt-p-1_35.dll "$(MSVCDIR)\bin" - copy vc71-stlport\libboost_regex-vc71-mt-p-1_35.lib "$(MSVCDIR)\lib" - copy vc71-stlport\boost_regex-vc71-mt-gdp-1_35.lib "$(MSVCDIR)\lib" - copy vc71-stlport\boost_regex-vc71-mt-gdp-1_35.dll "$(MSVCDIR)\bin" - copy vc71-stlport\boost_regex-vc71-mt-gdp-1_35.pdb "$(MSVCDIR)\lib" - copy vc71-stlport\libboost_regex-vc71-mt-sgdp-1_35.lib "$(MSVCDIR)\lib" - copy vc71-stlport\libboost_regex-vc71-mt-sgdp-1_35.pdb "$(MSVCDIR)\lib" - copy vc71-stlport\libboost_regex-vc71-mt-gdp-1_35.lib "$(MSVCDIR)\lib" - copy vc71-stlport\libboost_regex-vc71-mt-gdp-1_35.pdb "$(MSVCDIR)\lib" + copy vc71-stlport\libboost_regex-vc71-mt-sp-1_37.lib "$(MSVCDIR)\lib" + copy vc71-stlport\boost_regex-vc71-mt-p-1_37.lib "$(MSVCDIR)\lib" + copy vc71-stlport\boost_regex-vc71-mt-p-1_37.dll "$(MSVCDIR)\bin" + copy vc71-stlport\libboost_regex-vc71-mt-p-1_37.lib "$(MSVCDIR)\lib" + copy vc71-stlport\boost_regex-vc71-mt-gdp-1_37.lib "$(MSVCDIR)\lib" + copy vc71-stlport\boost_regex-vc71-mt-gdp-1_37.dll "$(MSVCDIR)\bin" + copy vc71-stlport\boost_regex-vc71-mt-gdp-1_37.pdb "$(MSVCDIR)\lib" + copy vc71-stlport\libboost_regex-vc71-mt-sgdp-1_37.lib "$(MSVCDIR)\lib" + copy vc71-stlport\libboost_regex-vc71-mt-sgdp-1_37.pdb "$(MSVCDIR)\lib" + copy vc71-stlport\libboost_regex-vc71-mt-gdp-1_37.lib "$(MSVCDIR)\lib" + copy vc71-stlport\libboost_regex-vc71-mt-gdp-1_37.pdb "$(MSVCDIR)\lib" main_dir : @if not exist "vc71-stlport\$(NULL)" mkdir vc71-stlport @@ -88,409 +88,410 @@ stlport_check : "$(STLPORT_PATH)\stlport\string" ######################################################## # -# section for libboost_regex-vc71-mt-sp-1_35.lib +# section for libboost_regex-vc71-mt-sp-1_37.lib # ######################################################## -vc71-stlport/libboost_regex-vc71-mt-sp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_35.pdb ../src/c_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_37.pdb ../src/c_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_35.pdb ../src/cpp_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_37.pdb ../src/cpp_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_35.pdb ../src/cregex.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_37.pdb ../src/cregex.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_35.pdb ../src/fileiter.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_37.pdb ../src/fileiter.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_35.pdb ../src/icu.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_37.pdb ../src/icu.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_35.pdb ../src/instances.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_37.pdb ../src/instances.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_35.pdb ../src/posix_api.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_37.pdb ../src/posix_api.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_35.pdb ../src/regex.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_37.pdb ../src/regex.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_35.pdb ../src/regex_debug.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_37.pdb ../src/regex_debug.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_35.pdb ../src/regex_raw_buffer.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_37.pdb ../src/regex_raw_buffer.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_35.pdb ../src/regex_traits_defaults.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_37.pdb ../src/regex_traits_defaults.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_35.pdb ../src/static_mutex.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_37.pdb ../src/static_mutex.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_35.pdb ../src/usinstances.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_37.pdb ../src/usinstances.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_35.pdb ../src/w32_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_37.pdb ../src/w32_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_35.pdb ../src/wc_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_37.pdb ../src/wc_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_35.pdb ../src/wide_posix_api.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_37.pdb ../src/wide_posix_api.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_35.pdb ../src/winstances.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_37.pdb ../src/winstances.cpp -libboost_regex-vc71-mt-sp-1_35_dir : - @if not exist "vc71-stlport\libboost_regex-vc71-mt-sp-1_35\$(NULL)" mkdir vc71-stlport\libboost_regex-vc71-mt-sp-1_35 +libboost_regex-vc71-mt-sp-1_37_dir : + @if not exist "vc71-stlport\libboost_regex-vc71-mt-sp-1_37\$(NULL)" mkdir vc71-stlport\libboost_regex-vc71-mt-sp-1_37 -libboost_regex-vc71-mt-sp-1_35_clean : - del vc71-stlport\libboost_regex-vc71-mt-sp-1_35\*.obj - del vc71-stlport\libboost_regex-vc71-mt-sp-1_35\*.idb - del vc71-stlport\libboost_regex-vc71-mt-sp-1_35\*.exp - del vc71-stlport\libboost_regex-vc71-mt-sp-1_35\*.pch +libboost_regex-vc71-mt-sp-1_37_clean : + del vc71-stlport\libboost_regex-vc71-mt-sp-1_37\*.obj + del vc71-stlport\libboost_regex-vc71-mt-sp-1_37\*.idb + del vc71-stlport\libboost_regex-vc71-mt-sp-1_37\*.exp + del vc71-stlport\libboost_regex-vc71-mt-sp-1_37\*.pch -./vc71-stlport/libboost_regex-vc71-mt-sp-1_35.lib : vc71-stlport/libboost_regex-vc71-mt-sp-1_35/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_35/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_35/cregex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_35/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_35/icu.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_35/instances.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_35/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_35/regex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_35/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_35/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_35/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_35/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_35/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_35/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_35/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_35/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_35/winstances.obj - link -lib /nologo /out:vc71-stlport/libboost_regex-vc71-mt-sp-1_35.lib $(XSFLAGS) vc71-stlport/libboost_regex-vc71-mt-sp-1_35/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_35/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_35/cregex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_35/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_35/icu.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_35/instances.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_35/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_35/regex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_35/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_35/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_35/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_35/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_35/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_35/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_35/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_35/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_35/winstances.obj +./vc71-stlport/libboost_regex-vc71-mt-sp-1_37.lib : vc71-stlport/libboost_regex-vc71-mt-sp-1_37/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/cregex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/icu.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/instances.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/regex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/winstances.obj + link -lib /nologo /out:vc71-stlport/libboost_regex-vc71-mt-sp-1_37.lib $(XSFLAGS) vc71-stlport/libboost_regex-vc71-mt-sp-1_37/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/cregex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/icu.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/instances.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/regex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/winstances.obj ######################################################## # -# section for boost_regex-vc71-mt-p-1_35.lib +# section for boost_regex-vc71-mt-p-1_37.lib # ######################################################## -vc71-stlport/boost_regex-vc71-mt-p-1_35/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_35/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_35.pdb ../src/c_regex_traits.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_37.pdb ../src/c_regex_traits.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_35/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_35/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_35.pdb ../src/cpp_regex_traits.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_37.pdb ../src/cpp_regex_traits.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_35/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_35/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_35.pdb ../src/cregex.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_37.pdb ../src/cregex.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_35/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_35/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_35.pdb ../src/fileiter.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_37.pdb ../src/fileiter.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_35/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_35/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_35.pdb ../src/icu.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_37.pdb ../src/icu.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_35/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_35/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_35.pdb ../src/instances.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_37.pdb ../src/instances.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_35/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_35/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_35.pdb ../src/posix_api.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_37.pdb ../src/posix_api.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_35/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_35/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_35.pdb ../src/regex.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_37.pdb ../src/regex.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_35/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_35/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_35.pdb ../src/regex_debug.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_37.pdb ../src/regex_debug.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_35/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_35/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_35.pdb ../src/regex_raw_buffer.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_37.pdb ../src/regex_raw_buffer.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_35/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_35/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_35.pdb ../src/regex_traits_defaults.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_37.pdb ../src/regex_traits_defaults.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_35/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_35/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_35.pdb ../src/static_mutex.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_37.pdb ../src/static_mutex.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_35/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_35/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_35.pdb ../src/usinstances.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_37.pdb ../src/usinstances.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_35/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_35/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_35.pdb ../src/w32_regex_traits.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_37.pdb ../src/w32_regex_traits.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_35/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_35/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_35.pdb ../src/wc_regex_traits.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_37.pdb ../src/wc_regex_traits.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_35/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_35/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_35.pdb ../src/wide_posix_api.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_37.pdb ../src/wide_posix_api.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_35/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_35/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_35.pdb ../src/winstances.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_37.pdb ../src/winstances.cpp -boost_regex-vc71-mt-p-1_35_dir : - @if not exist "vc71-stlport\boost_regex-vc71-mt-p-1_35\$(NULL)" mkdir vc71-stlport\boost_regex-vc71-mt-p-1_35 +boost_regex-vc71-mt-p-1_37_dir : + @if not exist "vc71-stlport\boost_regex-vc71-mt-p-1_37\$(NULL)" mkdir vc71-stlport\boost_regex-vc71-mt-p-1_37 -boost_regex-vc71-mt-p-1_35_clean : - del vc71-stlport\boost_regex-vc71-mt-p-1_35\*.obj - del vc71-stlport\boost_regex-vc71-mt-p-1_35\*.idb - del vc71-stlport\boost_regex-vc71-mt-p-1_35\*.exp - del vc71-stlport\boost_regex-vc71-mt-p-1_35\*.pch +boost_regex-vc71-mt-p-1_37_clean : + del vc71-stlport\boost_regex-vc71-mt-p-1_37\*.obj + del vc71-stlport\boost_regex-vc71-mt-p-1_37\*.idb + del vc71-stlport\boost_regex-vc71-mt-p-1_37\*.exp + del vc71-stlport\boost_regex-vc71-mt-p-1_37\*.pch -./vc71-stlport/boost_regex-vc71-mt-p-1_35.lib : vc71-stlport/boost_regex-vc71-mt-p-1_35/c_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_35/cpp_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_35/cregex.obj vc71-stlport/boost_regex-vc71-mt-p-1_35/fileiter.obj vc71-stlport/boost_regex-vc71-mt-p-1_35/icu.obj vc71-stlport/boost_regex-vc71-mt-p-1_35/instances.obj vc71-stlport/boost_regex-vc71-mt-p-1_35/posix_api.obj vc71-stlport/boost_regex-vc71-mt-p-1_35/regex.obj vc71-stlport/boost_regex-vc71-mt-p-1_35/regex_debug.obj vc71-stlport/boost_regex-vc71-mt-p-1_35/regex_raw_buffer.obj vc71-stlport/boost_regex-vc71-mt-p-1_35/regex_traits_defaults.obj vc71-stlport/boost_regex-vc71-mt-p-1_35/static_mutex.obj vc71-stlport/boost_regex-vc71-mt-p-1_35/usinstances.obj vc71-stlport/boost_regex-vc71-mt-p-1_35/w32_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_35/wc_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_35/wide_posix_api.obj vc71-stlport/boost_regex-vc71-mt-p-1_35/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_35.pdb" /debug /machine:I386 /out:"vc71-stlport/boost_regex-vc71-mt-p-1_35.dll" /implib:"vc71-stlport/boost_regex-vc71-mt-p-1_35.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc71-stlport/boost_regex-vc71-mt-p-1_35/c_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_35/cpp_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_35/cregex.obj vc71-stlport/boost_regex-vc71-mt-p-1_35/fileiter.obj vc71-stlport/boost_regex-vc71-mt-p-1_35/icu.obj vc71-stlport/boost_regex-vc71-mt-p-1_35/instances.obj vc71-stlport/boost_regex-vc71-mt-p-1_35/posix_api.obj vc71-stlport/boost_regex-vc71-mt-p-1_35/regex.obj vc71-stlport/boost_regex-vc71-mt-p-1_35/regex_debug.obj vc71-stlport/boost_regex-vc71-mt-p-1_35/regex_raw_buffer.obj vc71-stlport/boost_regex-vc71-mt-p-1_35/regex_traits_defaults.obj vc71-stlport/boost_regex-vc71-mt-p-1_35/static_mutex.obj vc71-stlport/boost_regex-vc71-mt-p-1_35/usinstances.obj vc71-stlport/boost_regex-vc71-mt-p-1_35/w32_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_35/wc_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_35/wide_posix_api.obj vc71-stlport/boost_regex-vc71-mt-p-1_35/winstances.obj +./vc71-stlport/boost_regex-vc71-mt-p-1_37.lib : vc71-stlport/boost_regex-vc71-mt-p-1_37/c_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/cpp_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/cregex.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/fileiter.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/icu.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/instances.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/posix_api.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/regex.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/regex_debug.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/regex_raw_buffer.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/regex_traits_defaults.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/static_mutex.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/usinstances.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/w32_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/wc_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/wide_posix_api.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/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_37.pdb" /debug /machine:I386 /out:"vc71-stlport/boost_regex-vc71-mt-p-1_37.dll" /implib:"vc71-stlport/boost_regex-vc71-mt-p-1_37.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc71-stlport/boost_regex-vc71-mt-p-1_37/c_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/cpp_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/cregex.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/fileiter.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/icu.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/instances.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/posix_api.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/regex.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/regex_debug.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/regex_raw_buffer.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/regex_traits_defaults.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/static_mutex.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/usinstances.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/w32_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/wc_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/wide_posix_api.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/winstances.obj ######################################################## # -# section for libboost_regex-vc71-mt-p-1_35.lib +# section for libboost_regex-vc71-mt-p-1_37.lib # ######################################################## -vc71-stlport/libboost_regex-vc71-mt-p-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_35.pdb ../src/c_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_37.pdb ../src/c_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_35.pdb ../src/cpp_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_37.pdb ../src/cpp_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_35.pdb ../src/cregex.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_37.pdb ../src/cregex.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_35.pdb ../src/fileiter.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_37.pdb ../src/fileiter.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_35.pdb ../src/icu.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_37.pdb ../src/icu.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_35.pdb ../src/instances.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_37.pdb ../src/instances.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_35.pdb ../src/posix_api.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_37.pdb ../src/posix_api.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_35.pdb ../src/regex.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_37.pdb ../src/regex.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_35.pdb ../src/regex_debug.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_37.pdb ../src/regex_debug.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_35.pdb ../src/regex_raw_buffer.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_37.pdb ../src/regex_raw_buffer.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_35.pdb ../src/regex_traits_defaults.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_37.pdb ../src/regex_traits_defaults.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_35.pdb ../src/static_mutex.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_37.pdb ../src/static_mutex.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_35.pdb ../src/usinstances.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_37.pdb ../src/usinstances.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_35.pdb ../src/w32_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_37.pdb ../src/w32_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_35.pdb ../src/wc_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_37.pdb ../src/wc_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_35.pdb ../src/wide_posix_api.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_37.pdb ../src/wide_posix_api.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_35.pdb ../src/winstances.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_37.pdb ../src/winstances.cpp -libboost_regex-vc71-mt-p-1_35_dir : - @if not exist "vc71-stlport\libboost_regex-vc71-mt-p-1_35\$(NULL)" mkdir vc71-stlport\libboost_regex-vc71-mt-p-1_35 +libboost_regex-vc71-mt-p-1_37_dir : + @if not exist "vc71-stlport\libboost_regex-vc71-mt-p-1_37\$(NULL)" mkdir vc71-stlport\libboost_regex-vc71-mt-p-1_37 -libboost_regex-vc71-mt-p-1_35_clean : - del vc71-stlport\libboost_regex-vc71-mt-p-1_35\*.obj - del vc71-stlport\libboost_regex-vc71-mt-p-1_35\*.idb - del vc71-stlport\libboost_regex-vc71-mt-p-1_35\*.exp - del vc71-stlport\libboost_regex-vc71-mt-p-1_35\*.pch +libboost_regex-vc71-mt-p-1_37_clean : + del vc71-stlport\libboost_regex-vc71-mt-p-1_37\*.obj + del vc71-stlport\libboost_regex-vc71-mt-p-1_37\*.idb + del vc71-stlport\libboost_regex-vc71-mt-p-1_37\*.exp + del vc71-stlport\libboost_regex-vc71-mt-p-1_37\*.pch -./vc71-stlport/libboost_regex-vc71-mt-p-1_35.lib : vc71-stlport/libboost_regex-vc71-mt-p-1_35/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_35/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_35/cregex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_35/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-p-1_35/icu.obj vc71-stlport/libboost_regex-vc71-mt-p-1_35/instances.obj vc71-stlport/libboost_regex-vc71-mt-p-1_35/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-p-1_35/regex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_35/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-p-1_35/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-p-1_35/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-p-1_35/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_35/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-p-1_35/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_35/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_35/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-p-1_35/winstances.obj - link -lib /nologo /out:vc71-stlport/libboost_regex-vc71-mt-p-1_35.lib $(XSFLAGS) vc71-stlport/libboost_regex-vc71-mt-p-1_35/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_35/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_35/cregex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_35/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-p-1_35/icu.obj vc71-stlport/libboost_regex-vc71-mt-p-1_35/instances.obj vc71-stlport/libboost_regex-vc71-mt-p-1_35/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-p-1_35/regex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_35/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-p-1_35/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-p-1_35/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-p-1_35/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_35/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-p-1_35/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_35/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_35/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-p-1_35/winstances.obj +./vc71-stlport/libboost_regex-vc71-mt-p-1_37.lib : vc71-stlport/libboost_regex-vc71-mt-p-1_37/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/cregex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/icu.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/instances.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/regex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/winstances.obj + link -lib /nologo /out:vc71-stlport/libboost_regex-vc71-mt-p-1_37.lib $(XSFLAGS) vc71-stlport/libboost_regex-vc71-mt-p-1_37/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/cregex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/icu.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/instances.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/regex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/winstances.obj ######################################################## # -# section for boost_regex-vc71-mt-gdp-1_35.lib +# section for boost_regex-vc71-mt-gdp-1_37.lib # ######################################################## -vc71-stlport/boost_regex-vc71-mt-gdp-1_35/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_35/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_35.pdb ../src/c_regex_traits.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_37.pdb ../src/c_regex_traits.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_35/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_35/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_35.pdb ../src/cpp_regex_traits.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_37.pdb ../src/cpp_regex_traits.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_35/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_35/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_35.pdb ../src/cregex.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_37.pdb ../src/cregex.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_35/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_35/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_35.pdb ../src/fileiter.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_37.pdb ../src/fileiter.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_35/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_35/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_35.pdb ../src/icu.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_37.pdb ../src/icu.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_35/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_35/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_35.pdb ../src/instances.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_37.pdb ../src/instances.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_35/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_35/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_35.pdb ../src/posix_api.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_37.pdb ../src/posix_api.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_35/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_35/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_35.pdb ../src/regex.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_37.pdb ../src/regex.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_35/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_35/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_35.pdb ../src/regex_debug.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_37.pdb ../src/regex_debug.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_35/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_35/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_35.pdb ../src/regex_raw_buffer.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_37.pdb ../src/regex_raw_buffer.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_35/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_35/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_35.pdb ../src/regex_traits_defaults.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_37.pdb ../src/regex_traits_defaults.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_35/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_35/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_35.pdb ../src/static_mutex.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_37.pdb ../src/static_mutex.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_35/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_35/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_35.pdb ../src/usinstances.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_37.pdb ../src/usinstances.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_35/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_35/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_35.pdb ../src/w32_regex_traits.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_37.pdb ../src/w32_regex_traits.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_35/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_35/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_35.pdb ../src/wc_regex_traits.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_37.pdb ../src/wc_regex_traits.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_35/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_35/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_35.pdb ../src/wide_posix_api.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_37.pdb ../src/wide_posix_api.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_35/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_35/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_35.pdb ../src/winstances.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_37.pdb ../src/winstances.cpp -boost_regex-vc71-mt-gdp-1_35_dir : - @if not exist "vc71-stlport\boost_regex-vc71-mt-gdp-1_35\$(NULL)" mkdir vc71-stlport\boost_regex-vc71-mt-gdp-1_35 +boost_regex-vc71-mt-gdp-1_37_dir : + @if not exist "vc71-stlport\boost_regex-vc71-mt-gdp-1_37\$(NULL)" mkdir vc71-stlport\boost_regex-vc71-mt-gdp-1_37 -boost_regex-vc71-mt-gdp-1_35_clean : - del vc71-stlport\boost_regex-vc71-mt-gdp-1_35\*.obj - del vc71-stlport\boost_regex-vc71-mt-gdp-1_35\*.idb - del vc71-stlport\boost_regex-vc71-mt-gdp-1_35\*.exp - del vc71-stlport\boost_regex-vc71-mt-gdp-1_35\*.pch +boost_regex-vc71-mt-gdp-1_37_clean : + del vc71-stlport\boost_regex-vc71-mt-gdp-1_37\*.obj + del vc71-stlport\boost_regex-vc71-mt-gdp-1_37\*.idb + del vc71-stlport\boost_regex-vc71-mt-gdp-1_37\*.exp + del vc71-stlport\boost_regex-vc71-mt-gdp-1_37\*.pch -./vc71-stlport/boost_regex-vc71-mt-gdp-1_35.lib : vc71-stlport/boost_regex-vc71-mt-gdp-1_35/c_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_35/cpp_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_35/cregex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_35/fileiter.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_35/icu.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_35/instances.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_35/posix_api.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_35/regex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_35/regex_debug.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_35/regex_raw_buffer.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_35/regex_traits_defaults.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_35/static_mutex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_35/usinstances.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_35/w32_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_35/wc_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_35/wide_posix_api.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_35/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_35.pdb" /debug /machine:I386 /out:"vc71-stlport/boost_regex-vc71-mt-gdp-1_35.dll" /implib:"vc71-stlport/boost_regex-vc71-mt-gdp-1_35.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc71-stlport/boost_regex-vc71-mt-gdp-1_35/c_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_35/cpp_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_35/cregex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_35/fileiter.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_35/icu.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_35/instances.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_35/posix_api.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_35/regex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_35/regex_debug.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_35/regex_raw_buffer.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_35/regex_traits_defaults.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_35/static_mutex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_35/usinstances.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_35/w32_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_35/wc_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_35/wide_posix_api.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_35/winstances.obj +./vc71-stlport/boost_regex-vc71-mt-gdp-1_37.lib : vc71-stlport/boost_regex-vc71-mt-gdp-1_37/c_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/cpp_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/cregex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/fileiter.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/icu.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/instances.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/posix_api.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/regex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/regex_debug.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/regex_raw_buffer.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/regex_traits_defaults.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/static_mutex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/usinstances.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/w32_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/wc_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/wide_posix_api.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/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_37.pdb" /debug /machine:I386 /out:"vc71-stlport/boost_regex-vc71-mt-gdp-1_37.dll" /implib:"vc71-stlport/boost_regex-vc71-mt-gdp-1_37.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc71-stlport/boost_regex-vc71-mt-gdp-1_37/c_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/cpp_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/cregex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/fileiter.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/icu.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/instances.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/posix_api.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/regex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/regex_debug.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/regex_raw_buffer.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/regex_traits_defaults.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/static_mutex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/usinstances.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/w32_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/wc_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/wide_posix_api.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/winstances.obj ######################################################## # -# section for libboost_regex-vc71-mt-sgdp-1_35.lib +# section for libboost_regex-vc71-mt-sgdp-1_37.lib # ######################################################## -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_35.pdb ../src/c_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_37.pdb ../src/c_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_35.pdb ../src/cpp_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_37.pdb ../src/cpp_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_35.pdb ../src/cregex.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_37.pdb ../src/cregex.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_35.pdb ../src/fileiter.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_37.pdb ../src/fileiter.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_35.pdb ../src/icu.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_37.pdb ../src/icu.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_35.pdb ../src/instances.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_37.pdb ../src/instances.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_35.pdb ../src/posix_api.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_37.pdb ../src/posix_api.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_35.pdb ../src/regex.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_37.pdb ../src/regex.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_35.pdb ../src/regex_debug.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_37.pdb ../src/regex_debug.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_35.pdb ../src/regex_raw_buffer.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_37.pdb ../src/regex_raw_buffer.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_35.pdb ../src/regex_traits_defaults.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_37.pdb ../src/regex_traits_defaults.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_35.pdb ../src/static_mutex.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_37.pdb ../src/static_mutex.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_35.pdb ../src/usinstances.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_37.pdb ../src/usinstances.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_35.pdb ../src/w32_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_37.pdb ../src/w32_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_35.pdb ../src/wc_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_37.pdb ../src/wc_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_35.pdb ../src/wide_posix_api.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_37.pdb ../src/wide_posix_api.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_35.pdb ../src/winstances.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_37.pdb ../src/winstances.cpp -libboost_regex-vc71-mt-sgdp-1_35_dir : - @if not exist "vc71-stlport\libboost_regex-vc71-mt-sgdp-1_35\$(NULL)" mkdir vc71-stlport\libboost_regex-vc71-mt-sgdp-1_35 +libboost_regex-vc71-mt-sgdp-1_37_dir : + @if not exist "vc71-stlport\libboost_regex-vc71-mt-sgdp-1_37\$(NULL)" mkdir vc71-stlport\libboost_regex-vc71-mt-sgdp-1_37 -libboost_regex-vc71-mt-sgdp-1_35_clean : - del vc71-stlport\libboost_regex-vc71-mt-sgdp-1_35\*.obj - del vc71-stlport\libboost_regex-vc71-mt-sgdp-1_35\*.idb - del vc71-stlport\libboost_regex-vc71-mt-sgdp-1_35\*.exp - del vc71-stlport\libboost_regex-vc71-mt-sgdp-1_35\*.pch +libboost_regex-vc71-mt-sgdp-1_37_clean : + del vc71-stlport\libboost_regex-vc71-mt-sgdp-1_37\*.obj + del vc71-stlport\libboost_regex-vc71-mt-sgdp-1_37\*.idb + del vc71-stlport\libboost_regex-vc71-mt-sgdp-1_37\*.exp + del vc71-stlport\libboost_regex-vc71-mt-sgdp-1_37\*.pch -./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35.lib : vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/cregex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/icu.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/instances.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/regex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/winstances.obj - link -lib /nologo /out:vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35.lib $(XSFLAGS) vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/cregex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/icu.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/instances.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/regex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_35/winstances.obj +./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37.lib : vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/cregex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/icu.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/instances.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/regex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/winstances.obj + link -lib /nologo /out:vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37.lib $(XSFLAGS) vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/cregex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/icu.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/instances.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/regex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/winstances.obj ######################################################## # -# section for libboost_regex-vc71-mt-gdp-1_35.lib +# section for libboost_regex-vc71-mt-gdp-1_37.lib # ######################################################## -vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_35.pdb ../src/c_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_37.pdb ../src/c_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_35.pdb ../src/cpp_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_37.pdb ../src/cpp_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_35.pdb ../src/cregex.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_37.pdb ../src/cregex.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_35.pdb ../src/fileiter.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_37.pdb ../src/fileiter.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_35.pdb ../src/icu.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_37.pdb ../src/icu.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_35.pdb ../src/instances.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_37.pdb ../src/instances.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_35.pdb ../src/posix_api.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_37.pdb ../src/posix_api.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_35.pdb ../src/regex.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_37.pdb ../src/regex.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_35.pdb ../src/regex_debug.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_37.pdb ../src/regex_debug.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_35.pdb ../src/regex_raw_buffer.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_37.pdb ../src/regex_raw_buffer.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_35.pdb ../src/regex_traits_defaults.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_37.pdb ../src/regex_traits_defaults.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_35.pdb ../src/static_mutex.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_37.pdb ../src/static_mutex.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_35.pdb ../src/usinstances.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_37.pdb ../src/usinstances.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_35.pdb ../src/w32_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_37.pdb ../src/w32_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_35.pdb ../src/wc_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_37.pdb ../src/wc_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_35.pdb ../src/wide_posix_api.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_37.pdb ../src/wide_posix_api.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/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_35/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_35.pdb ../src/winstances.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_37.pdb ../src/winstances.cpp -libboost_regex-vc71-mt-gdp-1_35_dir : - @if not exist "vc71-stlport\libboost_regex-vc71-mt-gdp-1_35\$(NULL)" mkdir vc71-stlport\libboost_regex-vc71-mt-gdp-1_35 +libboost_regex-vc71-mt-gdp-1_37_dir : + @if not exist "vc71-stlport\libboost_regex-vc71-mt-gdp-1_37\$(NULL)" mkdir vc71-stlport\libboost_regex-vc71-mt-gdp-1_37 -libboost_regex-vc71-mt-gdp-1_35_clean : - del vc71-stlport\libboost_regex-vc71-mt-gdp-1_35\*.obj - del vc71-stlport\libboost_regex-vc71-mt-gdp-1_35\*.idb - del vc71-stlport\libboost_regex-vc71-mt-gdp-1_35\*.exp - del vc71-stlport\libboost_regex-vc71-mt-gdp-1_35\*.pch +libboost_regex-vc71-mt-gdp-1_37_clean : + del vc71-stlport\libboost_regex-vc71-mt-gdp-1_37\*.obj + del vc71-stlport\libboost_regex-vc71-mt-gdp-1_37\*.idb + del vc71-stlport\libboost_regex-vc71-mt-gdp-1_37\*.exp + del vc71-stlport\libboost_regex-vc71-mt-gdp-1_37\*.pch + +./vc71-stlport/libboost_regex-vc71-mt-gdp-1_37.lib : vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/cregex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/icu.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/instances.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/regex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/winstances.obj + link -lib /nologo /out:vc71-stlport/libboost_regex-vc71-mt-gdp-1_37.lib $(XSFLAGS) vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/cregex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/icu.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/instances.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/regex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/winstances.obj -./vc71-stlport/libboost_regex-vc71-mt-gdp-1_35.lib : vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/cregex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/icu.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/instances.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/regex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/winstances.obj - link -lib /nologo /out:vc71-stlport/libboost_regex-vc71-mt-gdp-1_35.lib $(XSFLAGS) vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/cregex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/icu.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/instances.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/regex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_35/winstances.obj diff --git a/build/vc71.mak b/build/vc71.mak index 1956d4a3..d395bc05 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_35_dir ./vc71/libboost_regex-vc71-s-1_35.lib libboost_regex-vc71-mt-s-1_35_dir ./vc71/libboost_regex-vc71-mt-s-1_35.lib libboost_regex-vc71-sgd-1_35_dir ./vc71/libboost_regex-vc71-sgd-1_35.lib libboost_regex-vc71-mt-sgd-1_35_dir ./vc71/libboost_regex-vc71-mt-sgd-1_35.lib boost_regex-vc71-mt-gd-1_35_dir ./vc71/boost_regex-vc71-mt-gd-1_35.lib boost_regex-vc71-mt-1_35_dir ./vc71/boost_regex-vc71-mt-1_35.lib libboost_regex-vc71-mt-1_35_dir ./vc71/libboost_regex-vc71-mt-1_35.lib libboost_regex-vc71-mt-gd-1_35_dir ./vc71/libboost_regex-vc71-mt-gd-1_35.lib +all : main_dir libboost_regex-vc71-s-1_37_dir ./vc71/libboost_regex-vc71-s-1_37.lib libboost_regex-vc71-mt-s-1_37_dir ./vc71/libboost_regex-vc71-mt-s-1_37.lib libboost_regex-vc71-sgd-1_37_dir ./vc71/libboost_regex-vc71-sgd-1_37.lib libboost_regex-vc71-mt-sgd-1_37_dir ./vc71/libboost_regex-vc71-mt-sgd-1_37.lib boost_regex-vc71-mt-gd-1_37_dir ./vc71/boost_regex-vc71-mt-gd-1_37.lib boost_regex-vc71-mt-1_37_dir ./vc71/boost_regex-vc71-mt-1_37.lib libboost_regex-vc71-mt-1_37_dir ./vc71/libboost_regex-vc71-mt-1_37.lib libboost_regex-vc71-mt-gd-1_37_dir ./vc71/libboost_regex-vc71-mt-gd-1_37.lib -clean : libboost_regex-vc71-s-1_35_clean libboost_regex-vc71-mt-s-1_35_clean libboost_regex-vc71-sgd-1_35_clean libboost_regex-vc71-mt-sgd-1_35_clean boost_regex-vc71-mt-gd-1_35_clean boost_regex-vc71-mt-1_35_clean libboost_regex-vc71-mt-1_35_clean libboost_regex-vc71-mt-gd-1_35_clean +clean : libboost_regex-vc71-s-1_37_clean libboost_regex-vc71-mt-s-1_37_clean libboost_regex-vc71-sgd-1_37_clean libboost_regex-vc71-mt-sgd-1_37_clean boost_regex-vc71-mt-gd-1_37_clean boost_regex-vc71-mt-1_37_clean libboost_regex-vc71-mt-1_37_clean libboost_regex-vc71-mt-gd-1_37_clean install : all - copy vc71\libboost_regex-vc71-s-1_35.lib "$(MSVCDIR)\lib" - copy vc71\libboost_regex-vc71-mt-s-1_35.lib "$(MSVCDIR)\lib" - copy vc71\libboost_regex-vc71-sgd-1_35.lib "$(MSVCDIR)\lib" - copy vc71\libboost_regex-vc71-sgd-1_35.pdb "$(MSVCDIR)\lib" - copy vc71\libboost_regex-vc71-mt-sgd-1_35.lib "$(MSVCDIR)\lib" - copy vc71\libboost_regex-vc71-mt-sgd-1_35.pdb "$(MSVCDIR)\lib" - copy vc71\boost_regex-vc71-mt-gd-1_35.lib "$(MSVCDIR)\lib" - copy vc71\boost_regex-vc71-mt-gd-1_35.dll "$(MSVCDIR)\bin" - copy vc71\boost_regex-vc71-mt-gd-1_35.pdb "$(MSVCDIR)\lib" - copy vc71\boost_regex-vc71-mt-1_35.lib "$(MSVCDIR)\lib" - copy vc71\boost_regex-vc71-mt-1_35.dll "$(MSVCDIR)\bin" - copy vc71\libboost_regex-vc71-mt-1_35.lib "$(MSVCDIR)\lib" - copy vc71\libboost_regex-vc71-mt-gd-1_35.lib "$(MSVCDIR)\lib" - copy vc71\libboost_regex-vc71-mt-gd-1_35.pdb "$(MSVCDIR)\lib" + copy vc71\libboost_regex-vc71-s-1_37.lib "$(MSVCDIR)\lib" + copy vc71\libboost_regex-vc71-mt-s-1_37.lib "$(MSVCDIR)\lib" + copy vc71\libboost_regex-vc71-sgd-1_37.lib "$(MSVCDIR)\lib" + copy vc71\libboost_regex-vc71-sgd-1_37.pdb "$(MSVCDIR)\lib" + copy vc71\libboost_regex-vc71-mt-sgd-1_37.lib "$(MSVCDIR)\lib" + copy vc71\libboost_regex-vc71-mt-sgd-1_37.pdb "$(MSVCDIR)\lib" + copy vc71\boost_regex-vc71-mt-gd-1_37.lib "$(MSVCDIR)\lib" + copy vc71\boost_regex-vc71-mt-gd-1_37.dll "$(MSVCDIR)\bin" + copy vc71\boost_regex-vc71-mt-gd-1_37.pdb "$(MSVCDIR)\lib" + copy vc71\boost_regex-vc71-mt-1_37.lib "$(MSVCDIR)\lib" + copy vc71\boost_regex-vc71-mt-1_37.dll "$(MSVCDIR)\bin" + copy vc71\libboost_regex-vc71-mt-1_37.lib "$(MSVCDIR)\lib" + copy vc71\libboost_regex-vc71-mt-gd-1_37.lib "$(MSVCDIR)\lib" + copy vc71\libboost_regex-vc71-mt-gd-1_37.pdb "$(MSVCDIR)\lib" main_dir : @if not exist "vc71\$(NULL)" mkdir vc71 @@ -88,545 +88,546 @@ main_dir : ######################################################## # -# section for libboost_regex-vc71-s-1_35.lib +# section for libboost_regex-vc71-s-1_37.lib # ######################################################## -vc71/libboost_regex-vc71-s-1_35/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_35/ -Fdvc71/libboost_regex-vc71-s-1_35.pdb ../src/c_regex_traits.cpp +vc71/libboost_regex-vc71-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-s-1_37.pdb ../src/c_regex_traits.cpp -vc71/libboost_regex-vc71-s-1_35/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_35/ -Fdvc71/libboost_regex-vc71-s-1_35.pdb ../src/cpp_regex_traits.cpp +vc71/libboost_regex-vc71-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-s-1_37.pdb ../src/cpp_regex_traits.cpp -vc71/libboost_regex-vc71-s-1_35/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_35/ -Fdvc71/libboost_regex-vc71-s-1_35.pdb ../src/cregex.cpp +vc71/libboost_regex-vc71-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-s-1_37.pdb ../src/cregex.cpp -vc71/libboost_regex-vc71-s-1_35/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_35/ -Fdvc71/libboost_regex-vc71-s-1_35.pdb ../src/fileiter.cpp +vc71/libboost_regex-vc71-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-s-1_37.pdb ../src/fileiter.cpp -vc71/libboost_regex-vc71-s-1_35/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_35/ -Fdvc71/libboost_regex-vc71-s-1_35.pdb ../src/icu.cpp +vc71/libboost_regex-vc71-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-s-1_37.pdb ../src/icu.cpp -vc71/libboost_regex-vc71-s-1_35/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_35/ -Fdvc71/libboost_regex-vc71-s-1_35.pdb ../src/instances.cpp +vc71/libboost_regex-vc71-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-s-1_37.pdb ../src/instances.cpp -vc71/libboost_regex-vc71-s-1_35/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_35/ -Fdvc71/libboost_regex-vc71-s-1_35.pdb ../src/posix_api.cpp +vc71/libboost_regex-vc71-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-s-1_37.pdb ../src/posix_api.cpp -vc71/libboost_regex-vc71-s-1_35/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_35/ -Fdvc71/libboost_regex-vc71-s-1_35.pdb ../src/regex.cpp +vc71/libboost_regex-vc71-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-s-1_37.pdb ../src/regex.cpp -vc71/libboost_regex-vc71-s-1_35/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_35/ -Fdvc71/libboost_regex-vc71-s-1_35.pdb ../src/regex_debug.cpp +vc71/libboost_regex-vc71-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-s-1_37.pdb ../src/regex_debug.cpp -vc71/libboost_regex-vc71-s-1_35/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_35/ -Fdvc71/libboost_regex-vc71-s-1_35.pdb ../src/regex_raw_buffer.cpp +vc71/libboost_regex-vc71-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-s-1_37.pdb ../src/regex_raw_buffer.cpp -vc71/libboost_regex-vc71-s-1_35/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_35/ -Fdvc71/libboost_regex-vc71-s-1_35.pdb ../src/regex_traits_defaults.cpp +vc71/libboost_regex-vc71-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-s-1_37.pdb ../src/regex_traits_defaults.cpp -vc71/libboost_regex-vc71-s-1_35/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_35/ -Fdvc71/libboost_regex-vc71-s-1_35.pdb ../src/static_mutex.cpp +vc71/libboost_regex-vc71-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-s-1_37.pdb ../src/static_mutex.cpp -vc71/libboost_regex-vc71-s-1_35/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_35/ -Fdvc71/libboost_regex-vc71-s-1_35.pdb ../src/usinstances.cpp +vc71/libboost_regex-vc71-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-s-1_37.pdb ../src/usinstances.cpp -vc71/libboost_regex-vc71-s-1_35/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_35/ -Fdvc71/libboost_regex-vc71-s-1_35.pdb ../src/w32_regex_traits.cpp +vc71/libboost_regex-vc71-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-s-1_37.pdb ../src/w32_regex_traits.cpp -vc71/libboost_regex-vc71-s-1_35/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_35/ -Fdvc71/libboost_regex-vc71-s-1_35.pdb ../src/wc_regex_traits.cpp +vc71/libboost_regex-vc71-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-s-1_37.pdb ../src/wc_regex_traits.cpp -vc71/libboost_regex-vc71-s-1_35/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_35/ -Fdvc71/libboost_regex-vc71-s-1_35.pdb ../src/wide_posix_api.cpp +vc71/libboost_regex-vc71-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-s-1_37.pdb ../src/wide_posix_api.cpp -vc71/libboost_regex-vc71-s-1_35/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_35/ -Fdvc71/libboost_regex-vc71-s-1_35.pdb ../src/winstances.cpp +vc71/libboost_regex-vc71-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-s-1_37.pdb ../src/winstances.cpp -libboost_regex-vc71-s-1_35_dir : - @if not exist "vc71\libboost_regex-vc71-s-1_35\$(NULL)" mkdir vc71\libboost_regex-vc71-s-1_35 +libboost_regex-vc71-s-1_37_dir : + @if not exist "vc71\libboost_regex-vc71-s-1_37\$(NULL)" mkdir vc71\libboost_regex-vc71-s-1_37 -libboost_regex-vc71-s-1_35_clean : - del vc71\libboost_regex-vc71-s-1_35\*.obj - del vc71\libboost_regex-vc71-s-1_35\*.idb - del vc71\libboost_regex-vc71-s-1_35\*.exp - del vc71\libboost_regex-vc71-s-1_35\*.pch +libboost_regex-vc71-s-1_37_clean : + del vc71\libboost_regex-vc71-s-1_37\*.obj + del vc71\libboost_regex-vc71-s-1_37\*.idb + del vc71\libboost_regex-vc71-s-1_37\*.exp + del vc71\libboost_regex-vc71-s-1_37\*.pch -./vc71/libboost_regex-vc71-s-1_35.lib : vc71/libboost_regex-vc71-s-1_35/c_regex_traits.obj vc71/libboost_regex-vc71-s-1_35/cpp_regex_traits.obj vc71/libboost_regex-vc71-s-1_35/cregex.obj vc71/libboost_regex-vc71-s-1_35/fileiter.obj vc71/libboost_regex-vc71-s-1_35/icu.obj vc71/libboost_regex-vc71-s-1_35/instances.obj vc71/libboost_regex-vc71-s-1_35/posix_api.obj vc71/libboost_regex-vc71-s-1_35/regex.obj vc71/libboost_regex-vc71-s-1_35/regex_debug.obj vc71/libboost_regex-vc71-s-1_35/regex_raw_buffer.obj vc71/libboost_regex-vc71-s-1_35/regex_traits_defaults.obj vc71/libboost_regex-vc71-s-1_35/static_mutex.obj vc71/libboost_regex-vc71-s-1_35/usinstances.obj vc71/libboost_regex-vc71-s-1_35/w32_regex_traits.obj vc71/libboost_regex-vc71-s-1_35/wc_regex_traits.obj vc71/libboost_regex-vc71-s-1_35/wide_posix_api.obj vc71/libboost_regex-vc71-s-1_35/winstances.obj - link -lib /nologo /out:vc71/libboost_regex-vc71-s-1_35.lib $(XSFLAGS) vc71/libboost_regex-vc71-s-1_35/c_regex_traits.obj vc71/libboost_regex-vc71-s-1_35/cpp_regex_traits.obj vc71/libboost_regex-vc71-s-1_35/cregex.obj vc71/libboost_regex-vc71-s-1_35/fileiter.obj vc71/libboost_regex-vc71-s-1_35/icu.obj vc71/libboost_regex-vc71-s-1_35/instances.obj vc71/libboost_regex-vc71-s-1_35/posix_api.obj vc71/libboost_regex-vc71-s-1_35/regex.obj vc71/libboost_regex-vc71-s-1_35/regex_debug.obj vc71/libboost_regex-vc71-s-1_35/regex_raw_buffer.obj vc71/libboost_regex-vc71-s-1_35/regex_traits_defaults.obj vc71/libboost_regex-vc71-s-1_35/static_mutex.obj vc71/libboost_regex-vc71-s-1_35/usinstances.obj vc71/libboost_regex-vc71-s-1_35/w32_regex_traits.obj vc71/libboost_regex-vc71-s-1_35/wc_regex_traits.obj vc71/libboost_regex-vc71-s-1_35/wide_posix_api.obj vc71/libboost_regex-vc71-s-1_35/winstances.obj +./vc71/libboost_regex-vc71-s-1_37.lib : vc71/libboost_regex-vc71-s-1_37/c_regex_traits.obj vc71/libboost_regex-vc71-s-1_37/cpp_regex_traits.obj vc71/libboost_regex-vc71-s-1_37/cregex.obj vc71/libboost_regex-vc71-s-1_37/fileiter.obj vc71/libboost_regex-vc71-s-1_37/icu.obj vc71/libboost_regex-vc71-s-1_37/instances.obj vc71/libboost_regex-vc71-s-1_37/posix_api.obj vc71/libboost_regex-vc71-s-1_37/regex.obj vc71/libboost_regex-vc71-s-1_37/regex_debug.obj vc71/libboost_regex-vc71-s-1_37/regex_raw_buffer.obj vc71/libboost_regex-vc71-s-1_37/regex_traits_defaults.obj vc71/libboost_regex-vc71-s-1_37/static_mutex.obj vc71/libboost_regex-vc71-s-1_37/usinstances.obj vc71/libboost_regex-vc71-s-1_37/w32_regex_traits.obj vc71/libboost_regex-vc71-s-1_37/wc_regex_traits.obj vc71/libboost_regex-vc71-s-1_37/wide_posix_api.obj vc71/libboost_regex-vc71-s-1_37/winstances.obj + link -lib /nologo /out:vc71/libboost_regex-vc71-s-1_37.lib $(XSFLAGS) vc71/libboost_regex-vc71-s-1_37/c_regex_traits.obj vc71/libboost_regex-vc71-s-1_37/cpp_regex_traits.obj vc71/libboost_regex-vc71-s-1_37/cregex.obj vc71/libboost_regex-vc71-s-1_37/fileiter.obj vc71/libboost_regex-vc71-s-1_37/icu.obj vc71/libboost_regex-vc71-s-1_37/instances.obj vc71/libboost_regex-vc71-s-1_37/posix_api.obj vc71/libboost_regex-vc71-s-1_37/regex.obj vc71/libboost_regex-vc71-s-1_37/regex_debug.obj vc71/libboost_regex-vc71-s-1_37/regex_raw_buffer.obj vc71/libboost_regex-vc71-s-1_37/regex_traits_defaults.obj vc71/libboost_regex-vc71-s-1_37/static_mutex.obj vc71/libboost_regex-vc71-s-1_37/usinstances.obj vc71/libboost_regex-vc71-s-1_37/w32_regex_traits.obj vc71/libboost_regex-vc71-s-1_37/wc_regex_traits.obj vc71/libboost_regex-vc71-s-1_37/wide_posix_api.obj vc71/libboost_regex-vc71-s-1_37/winstances.obj ######################################################## # -# section for libboost_regex-vc71-mt-s-1_35.lib +# section for libboost_regex-vc71-mt-s-1_37.lib # ######################################################## -vc71/libboost_regex-vc71-mt-s-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-s-1_35.pdb ../src/c_regex_traits.cpp +vc71/libboost_regex-vc71-mt-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-s-1_37.pdb ../src/c_regex_traits.cpp -vc71/libboost_regex-vc71-mt-s-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-s-1_35.pdb ../src/cpp_regex_traits.cpp +vc71/libboost_regex-vc71-mt-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-s-1_37.pdb ../src/cpp_regex_traits.cpp -vc71/libboost_regex-vc71-mt-s-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-s-1_35.pdb ../src/cregex.cpp +vc71/libboost_regex-vc71-mt-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-s-1_37.pdb ../src/cregex.cpp -vc71/libboost_regex-vc71-mt-s-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-s-1_35.pdb ../src/fileiter.cpp +vc71/libboost_regex-vc71-mt-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-s-1_37.pdb ../src/fileiter.cpp -vc71/libboost_regex-vc71-mt-s-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-s-1_35.pdb ../src/icu.cpp +vc71/libboost_regex-vc71-mt-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-s-1_37.pdb ../src/icu.cpp -vc71/libboost_regex-vc71-mt-s-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-s-1_35.pdb ../src/instances.cpp +vc71/libboost_regex-vc71-mt-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-s-1_37.pdb ../src/instances.cpp -vc71/libboost_regex-vc71-mt-s-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-s-1_35.pdb ../src/posix_api.cpp +vc71/libboost_regex-vc71-mt-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-s-1_37.pdb ../src/posix_api.cpp -vc71/libboost_regex-vc71-mt-s-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-s-1_35.pdb ../src/regex.cpp +vc71/libboost_regex-vc71-mt-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-s-1_37.pdb ../src/regex.cpp -vc71/libboost_regex-vc71-mt-s-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-s-1_35.pdb ../src/regex_debug.cpp +vc71/libboost_regex-vc71-mt-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-s-1_37.pdb ../src/regex_debug.cpp -vc71/libboost_regex-vc71-mt-s-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-s-1_35.pdb ../src/regex_raw_buffer.cpp +vc71/libboost_regex-vc71-mt-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-s-1_37.pdb ../src/regex_raw_buffer.cpp -vc71/libboost_regex-vc71-mt-s-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-s-1_35.pdb ../src/regex_traits_defaults.cpp +vc71/libboost_regex-vc71-mt-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-s-1_37.pdb ../src/regex_traits_defaults.cpp -vc71/libboost_regex-vc71-mt-s-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-s-1_35.pdb ../src/static_mutex.cpp +vc71/libboost_regex-vc71-mt-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-s-1_37.pdb ../src/static_mutex.cpp -vc71/libboost_regex-vc71-mt-s-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-s-1_35.pdb ../src/usinstances.cpp +vc71/libboost_regex-vc71-mt-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-s-1_37.pdb ../src/usinstances.cpp -vc71/libboost_regex-vc71-mt-s-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-s-1_35.pdb ../src/w32_regex_traits.cpp +vc71/libboost_regex-vc71-mt-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-s-1_37.pdb ../src/w32_regex_traits.cpp -vc71/libboost_regex-vc71-mt-s-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-s-1_35.pdb ../src/wc_regex_traits.cpp +vc71/libboost_regex-vc71-mt-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-s-1_37.pdb ../src/wc_regex_traits.cpp -vc71/libboost_regex-vc71-mt-s-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-s-1_35.pdb ../src/wide_posix_api.cpp +vc71/libboost_regex-vc71-mt-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-s-1_37.pdb ../src/wide_posix_api.cpp -vc71/libboost_regex-vc71-mt-s-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-s-1_35.pdb ../src/winstances.cpp +vc71/libboost_regex-vc71-mt-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-s-1_37.pdb ../src/winstances.cpp -libboost_regex-vc71-mt-s-1_35_dir : - @if not exist "vc71\libboost_regex-vc71-mt-s-1_35\$(NULL)" mkdir vc71\libboost_regex-vc71-mt-s-1_35 +libboost_regex-vc71-mt-s-1_37_dir : + @if not exist "vc71\libboost_regex-vc71-mt-s-1_37\$(NULL)" mkdir vc71\libboost_regex-vc71-mt-s-1_37 -libboost_regex-vc71-mt-s-1_35_clean : - del vc71\libboost_regex-vc71-mt-s-1_35\*.obj - del vc71\libboost_regex-vc71-mt-s-1_35\*.idb - del vc71\libboost_regex-vc71-mt-s-1_35\*.exp - del vc71\libboost_regex-vc71-mt-s-1_35\*.pch +libboost_regex-vc71-mt-s-1_37_clean : + del vc71\libboost_regex-vc71-mt-s-1_37\*.obj + del vc71\libboost_regex-vc71-mt-s-1_37\*.idb + del vc71\libboost_regex-vc71-mt-s-1_37\*.exp + del vc71\libboost_regex-vc71-mt-s-1_37\*.pch -./vc71/libboost_regex-vc71-mt-s-1_35.lib : vc71/libboost_regex-vc71-mt-s-1_35/c_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_35/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_35/cregex.obj vc71/libboost_regex-vc71-mt-s-1_35/fileiter.obj vc71/libboost_regex-vc71-mt-s-1_35/icu.obj vc71/libboost_regex-vc71-mt-s-1_35/instances.obj vc71/libboost_regex-vc71-mt-s-1_35/posix_api.obj vc71/libboost_regex-vc71-mt-s-1_35/regex.obj vc71/libboost_regex-vc71-mt-s-1_35/regex_debug.obj vc71/libboost_regex-vc71-mt-s-1_35/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-s-1_35/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-s-1_35/static_mutex.obj vc71/libboost_regex-vc71-mt-s-1_35/usinstances.obj vc71/libboost_regex-vc71-mt-s-1_35/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_35/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_35/wide_posix_api.obj vc71/libboost_regex-vc71-mt-s-1_35/winstances.obj - link -lib /nologo /out:vc71/libboost_regex-vc71-mt-s-1_35.lib $(XSFLAGS) vc71/libboost_regex-vc71-mt-s-1_35/c_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_35/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_35/cregex.obj vc71/libboost_regex-vc71-mt-s-1_35/fileiter.obj vc71/libboost_regex-vc71-mt-s-1_35/icu.obj vc71/libboost_regex-vc71-mt-s-1_35/instances.obj vc71/libboost_regex-vc71-mt-s-1_35/posix_api.obj vc71/libboost_regex-vc71-mt-s-1_35/regex.obj vc71/libboost_regex-vc71-mt-s-1_35/regex_debug.obj vc71/libboost_regex-vc71-mt-s-1_35/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-s-1_35/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-s-1_35/static_mutex.obj vc71/libboost_regex-vc71-mt-s-1_35/usinstances.obj vc71/libboost_regex-vc71-mt-s-1_35/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_35/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_35/wide_posix_api.obj vc71/libboost_regex-vc71-mt-s-1_35/winstances.obj +./vc71/libboost_regex-vc71-mt-s-1_37.lib : vc71/libboost_regex-vc71-mt-s-1_37/c_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_37/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_37/cregex.obj vc71/libboost_regex-vc71-mt-s-1_37/fileiter.obj vc71/libboost_regex-vc71-mt-s-1_37/icu.obj vc71/libboost_regex-vc71-mt-s-1_37/instances.obj vc71/libboost_regex-vc71-mt-s-1_37/posix_api.obj vc71/libboost_regex-vc71-mt-s-1_37/regex.obj vc71/libboost_regex-vc71-mt-s-1_37/regex_debug.obj vc71/libboost_regex-vc71-mt-s-1_37/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-s-1_37/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-s-1_37/static_mutex.obj vc71/libboost_regex-vc71-mt-s-1_37/usinstances.obj vc71/libboost_regex-vc71-mt-s-1_37/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_37/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_37/wide_posix_api.obj vc71/libboost_regex-vc71-mt-s-1_37/winstances.obj + link -lib /nologo /out:vc71/libboost_regex-vc71-mt-s-1_37.lib $(XSFLAGS) vc71/libboost_regex-vc71-mt-s-1_37/c_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_37/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_37/cregex.obj vc71/libboost_regex-vc71-mt-s-1_37/fileiter.obj vc71/libboost_regex-vc71-mt-s-1_37/icu.obj vc71/libboost_regex-vc71-mt-s-1_37/instances.obj vc71/libboost_regex-vc71-mt-s-1_37/posix_api.obj vc71/libboost_regex-vc71-mt-s-1_37/regex.obj vc71/libboost_regex-vc71-mt-s-1_37/regex_debug.obj vc71/libboost_regex-vc71-mt-s-1_37/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-s-1_37/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-s-1_37/static_mutex.obj vc71/libboost_regex-vc71-mt-s-1_37/usinstances.obj vc71/libboost_regex-vc71-mt-s-1_37/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_37/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_37/wide_posix_api.obj vc71/libboost_regex-vc71-mt-s-1_37/winstances.obj ######################################################## # -# section for libboost_regex-vc71-sgd-1_35.lib +# section for libboost_regex-vc71-sgd-1_37.lib # ######################################################## -vc71/libboost_regex-vc71-sgd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-sgd-1_35.pdb ../src/c_regex_traits.cpp +vc71/libboost_regex-vc71-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-sgd-1_37.pdb ../src/c_regex_traits.cpp -vc71/libboost_regex-vc71-sgd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-sgd-1_35.pdb ../src/cpp_regex_traits.cpp +vc71/libboost_regex-vc71-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-sgd-1_37.pdb ../src/cpp_regex_traits.cpp -vc71/libboost_regex-vc71-sgd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-sgd-1_35.pdb ../src/cregex.cpp +vc71/libboost_regex-vc71-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-sgd-1_37.pdb ../src/cregex.cpp -vc71/libboost_regex-vc71-sgd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-sgd-1_35.pdb ../src/fileiter.cpp +vc71/libboost_regex-vc71-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-sgd-1_37.pdb ../src/fileiter.cpp -vc71/libboost_regex-vc71-sgd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-sgd-1_35.pdb ../src/icu.cpp +vc71/libboost_regex-vc71-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-sgd-1_37.pdb ../src/icu.cpp -vc71/libboost_regex-vc71-sgd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-sgd-1_35.pdb ../src/instances.cpp +vc71/libboost_regex-vc71-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-sgd-1_37.pdb ../src/instances.cpp -vc71/libboost_regex-vc71-sgd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-sgd-1_35.pdb ../src/posix_api.cpp +vc71/libboost_regex-vc71-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-sgd-1_37.pdb ../src/posix_api.cpp -vc71/libboost_regex-vc71-sgd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-sgd-1_35.pdb ../src/regex.cpp +vc71/libboost_regex-vc71-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-sgd-1_37.pdb ../src/regex.cpp -vc71/libboost_regex-vc71-sgd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-sgd-1_35.pdb ../src/regex_debug.cpp +vc71/libboost_regex-vc71-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-sgd-1_37.pdb ../src/regex_debug.cpp -vc71/libboost_regex-vc71-sgd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-sgd-1_35.pdb ../src/regex_raw_buffer.cpp +vc71/libboost_regex-vc71-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-sgd-1_37.pdb ../src/regex_raw_buffer.cpp -vc71/libboost_regex-vc71-sgd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-sgd-1_35.pdb ../src/regex_traits_defaults.cpp +vc71/libboost_regex-vc71-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-sgd-1_37.pdb ../src/regex_traits_defaults.cpp -vc71/libboost_regex-vc71-sgd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-sgd-1_35.pdb ../src/static_mutex.cpp +vc71/libboost_regex-vc71-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-sgd-1_37.pdb ../src/static_mutex.cpp -vc71/libboost_regex-vc71-sgd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-sgd-1_35.pdb ../src/usinstances.cpp +vc71/libboost_regex-vc71-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-sgd-1_37.pdb ../src/usinstances.cpp -vc71/libboost_regex-vc71-sgd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-sgd-1_35.pdb ../src/w32_regex_traits.cpp +vc71/libboost_regex-vc71-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-sgd-1_37.pdb ../src/w32_regex_traits.cpp -vc71/libboost_regex-vc71-sgd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-sgd-1_35.pdb ../src/wc_regex_traits.cpp +vc71/libboost_regex-vc71-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-sgd-1_37.pdb ../src/wc_regex_traits.cpp -vc71/libboost_regex-vc71-sgd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-sgd-1_35.pdb ../src/wide_posix_api.cpp +vc71/libboost_regex-vc71-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-sgd-1_37.pdb ../src/wide_posix_api.cpp -vc71/libboost_regex-vc71-sgd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-sgd-1_35.pdb ../src/winstances.cpp +vc71/libboost_regex-vc71-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-sgd-1_37.pdb ../src/winstances.cpp -libboost_regex-vc71-sgd-1_35_dir : - @if not exist "vc71\libboost_regex-vc71-sgd-1_35\$(NULL)" mkdir vc71\libboost_regex-vc71-sgd-1_35 +libboost_regex-vc71-sgd-1_37_dir : + @if not exist "vc71\libboost_regex-vc71-sgd-1_37\$(NULL)" mkdir vc71\libboost_regex-vc71-sgd-1_37 -libboost_regex-vc71-sgd-1_35_clean : - del vc71\libboost_regex-vc71-sgd-1_35\*.obj - del vc71\libboost_regex-vc71-sgd-1_35\*.idb - del vc71\libboost_regex-vc71-sgd-1_35\*.exp - del vc71\libboost_regex-vc71-sgd-1_35\*.pch +libboost_regex-vc71-sgd-1_37_clean : + del vc71\libboost_regex-vc71-sgd-1_37\*.obj + del vc71\libboost_regex-vc71-sgd-1_37\*.idb + del vc71\libboost_regex-vc71-sgd-1_37\*.exp + del vc71\libboost_regex-vc71-sgd-1_37\*.pch -./vc71/libboost_regex-vc71-sgd-1_35.lib : vc71/libboost_regex-vc71-sgd-1_35/c_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_35/cpp_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_35/cregex.obj vc71/libboost_regex-vc71-sgd-1_35/fileiter.obj vc71/libboost_regex-vc71-sgd-1_35/icu.obj vc71/libboost_regex-vc71-sgd-1_35/instances.obj vc71/libboost_regex-vc71-sgd-1_35/posix_api.obj vc71/libboost_regex-vc71-sgd-1_35/regex.obj vc71/libboost_regex-vc71-sgd-1_35/regex_debug.obj vc71/libboost_regex-vc71-sgd-1_35/regex_raw_buffer.obj vc71/libboost_regex-vc71-sgd-1_35/regex_traits_defaults.obj vc71/libboost_regex-vc71-sgd-1_35/static_mutex.obj vc71/libboost_regex-vc71-sgd-1_35/usinstances.obj vc71/libboost_regex-vc71-sgd-1_35/w32_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_35/wc_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_35/wide_posix_api.obj vc71/libboost_regex-vc71-sgd-1_35/winstances.obj - link -lib /nologo /out:vc71/libboost_regex-vc71-sgd-1_35.lib $(XSFLAGS) vc71/libboost_regex-vc71-sgd-1_35/c_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_35/cpp_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_35/cregex.obj vc71/libboost_regex-vc71-sgd-1_35/fileiter.obj vc71/libboost_regex-vc71-sgd-1_35/icu.obj vc71/libboost_regex-vc71-sgd-1_35/instances.obj vc71/libboost_regex-vc71-sgd-1_35/posix_api.obj vc71/libboost_regex-vc71-sgd-1_35/regex.obj vc71/libboost_regex-vc71-sgd-1_35/regex_debug.obj vc71/libboost_regex-vc71-sgd-1_35/regex_raw_buffer.obj vc71/libboost_regex-vc71-sgd-1_35/regex_traits_defaults.obj vc71/libboost_regex-vc71-sgd-1_35/static_mutex.obj vc71/libboost_regex-vc71-sgd-1_35/usinstances.obj vc71/libboost_regex-vc71-sgd-1_35/w32_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_35/wc_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_35/wide_posix_api.obj vc71/libboost_regex-vc71-sgd-1_35/winstances.obj +./vc71/libboost_regex-vc71-sgd-1_37.lib : vc71/libboost_regex-vc71-sgd-1_37/c_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_37/cpp_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_37/cregex.obj vc71/libboost_regex-vc71-sgd-1_37/fileiter.obj vc71/libboost_regex-vc71-sgd-1_37/icu.obj vc71/libboost_regex-vc71-sgd-1_37/instances.obj vc71/libboost_regex-vc71-sgd-1_37/posix_api.obj vc71/libboost_regex-vc71-sgd-1_37/regex.obj vc71/libboost_regex-vc71-sgd-1_37/regex_debug.obj vc71/libboost_regex-vc71-sgd-1_37/regex_raw_buffer.obj vc71/libboost_regex-vc71-sgd-1_37/regex_traits_defaults.obj vc71/libboost_regex-vc71-sgd-1_37/static_mutex.obj vc71/libboost_regex-vc71-sgd-1_37/usinstances.obj vc71/libboost_regex-vc71-sgd-1_37/w32_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_37/wc_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_37/wide_posix_api.obj vc71/libboost_regex-vc71-sgd-1_37/winstances.obj + link -lib /nologo /out:vc71/libboost_regex-vc71-sgd-1_37.lib $(XSFLAGS) vc71/libboost_regex-vc71-sgd-1_37/c_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_37/cpp_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_37/cregex.obj vc71/libboost_regex-vc71-sgd-1_37/fileiter.obj vc71/libboost_regex-vc71-sgd-1_37/icu.obj vc71/libboost_regex-vc71-sgd-1_37/instances.obj vc71/libboost_regex-vc71-sgd-1_37/posix_api.obj vc71/libboost_regex-vc71-sgd-1_37/regex.obj vc71/libboost_regex-vc71-sgd-1_37/regex_debug.obj vc71/libboost_regex-vc71-sgd-1_37/regex_raw_buffer.obj vc71/libboost_regex-vc71-sgd-1_37/regex_traits_defaults.obj vc71/libboost_regex-vc71-sgd-1_37/static_mutex.obj vc71/libboost_regex-vc71-sgd-1_37/usinstances.obj vc71/libboost_regex-vc71-sgd-1_37/w32_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_37/wc_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_37/wide_posix_api.obj vc71/libboost_regex-vc71-sgd-1_37/winstances.obj ######################################################## # -# section for libboost_regex-vc71-mt-sgd-1_35.lib +# section for libboost_regex-vc71-mt-sgd-1_37.lib # ######################################################## -vc71/libboost_regex-vc71-mt-sgd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_35.pdb ../src/c_regex_traits.cpp +vc71/libboost_regex-vc71-mt-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_37.pdb ../src/c_regex_traits.cpp -vc71/libboost_regex-vc71-mt-sgd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_35.pdb ../src/cpp_regex_traits.cpp +vc71/libboost_regex-vc71-mt-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_37.pdb ../src/cpp_regex_traits.cpp -vc71/libboost_regex-vc71-mt-sgd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_35.pdb ../src/cregex.cpp +vc71/libboost_regex-vc71-mt-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_37.pdb ../src/cregex.cpp -vc71/libboost_regex-vc71-mt-sgd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_35.pdb ../src/fileiter.cpp +vc71/libboost_regex-vc71-mt-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_37.pdb ../src/fileiter.cpp -vc71/libboost_regex-vc71-mt-sgd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_35.pdb ../src/icu.cpp +vc71/libboost_regex-vc71-mt-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_37.pdb ../src/icu.cpp -vc71/libboost_regex-vc71-mt-sgd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_35.pdb ../src/instances.cpp +vc71/libboost_regex-vc71-mt-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_37.pdb ../src/instances.cpp -vc71/libboost_regex-vc71-mt-sgd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_35.pdb ../src/posix_api.cpp +vc71/libboost_regex-vc71-mt-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_37.pdb ../src/posix_api.cpp -vc71/libboost_regex-vc71-mt-sgd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_35.pdb ../src/regex.cpp +vc71/libboost_regex-vc71-mt-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_37.pdb ../src/regex.cpp -vc71/libboost_regex-vc71-mt-sgd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_35.pdb ../src/regex_debug.cpp +vc71/libboost_regex-vc71-mt-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_37.pdb ../src/regex_debug.cpp -vc71/libboost_regex-vc71-mt-sgd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_35.pdb ../src/regex_raw_buffer.cpp +vc71/libboost_regex-vc71-mt-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_37.pdb ../src/regex_raw_buffer.cpp -vc71/libboost_regex-vc71-mt-sgd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_35.pdb ../src/regex_traits_defaults.cpp +vc71/libboost_regex-vc71-mt-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_37.pdb ../src/regex_traits_defaults.cpp -vc71/libboost_regex-vc71-mt-sgd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_35.pdb ../src/static_mutex.cpp +vc71/libboost_regex-vc71-mt-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_37.pdb ../src/static_mutex.cpp -vc71/libboost_regex-vc71-mt-sgd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_35.pdb ../src/usinstances.cpp +vc71/libboost_regex-vc71-mt-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_37.pdb ../src/usinstances.cpp -vc71/libboost_regex-vc71-mt-sgd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_35.pdb ../src/w32_regex_traits.cpp +vc71/libboost_regex-vc71-mt-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_37.pdb ../src/w32_regex_traits.cpp -vc71/libboost_regex-vc71-mt-sgd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_35.pdb ../src/wc_regex_traits.cpp +vc71/libboost_regex-vc71-mt-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_37.pdb ../src/wc_regex_traits.cpp -vc71/libboost_regex-vc71-mt-sgd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_35.pdb ../src/wide_posix_api.cpp +vc71/libboost_regex-vc71-mt-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_37.pdb ../src/wide_posix_api.cpp -vc71/libboost_regex-vc71-mt-sgd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_35.pdb ../src/winstances.cpp +vc71/libboost_regex-vc71-mt-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_37.pdb ../src/winstances.cpp -libboost_regex-vc71-mt-sgd-1_35_dir : - @if not exist "vc71\libboost_regex-vc71-mt-sgd-1_35\$(NULL)" mkdir vc71\libboost_regex-vc71-mt-sgd-1_35 +libboost_regex-vc71-mt-sgd-1_37_dir : + @if not exist "vc71\libboost_regex-vc71-mt-sgd-1_37\$(NULL)" mkdir vc71\libboost_regex-vc71-mt-sgd-1_37 -libboost_regex-vc71-mt-sgd-1_35_clean : - del vc71\libboost_regex-vc71-mt-sgd-1_35\*.obj - del vc71\libboost_regex-vc71-mt-sgd-1_35\*.idb - del vc71\libboost_regex-vc71-mt-sgd-1_35\*.exp - del vc71\libboost_regex-vc71-mt-sgd-1_35\*.pch +libboost_regex-vc71-mt-sgd-1_37_clean : + del vc71\libboost_regex-vc71-mt-sgd-1_37\*.obj + del vc71\libboost_regex-vc71-mt-sgd-1_37\*.idb + del vc71\libboost_regex-vc71-mt-sgd-1_37\*.exp + del vc71\libboost_regex-vc71-mt-sgd-1_37\*.pch -./vc71/libboost_regex-vc71-mt-sgd-1_35.lib : vc71/libboost_regex-vc71-mt-sgd-1_35/c_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_35/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_35/cregex.obj vc71/libboost_regex-vc71-mt-sgd-1_35/fileiter.obj vc71/libboost_regex-vc71-mt-sgd-1_35/icu.obj vc71/libboost_regex-vc71-mt-sgd-1_35/instances.obj vc71/libboost_regex-vc71-mt-sgd-1_35/posix_api.obj vc71/libboost_regex-vc71-mt-sgd-1_35/regex.obj vc71/libboost_regex-vc71-mt-sgd-1_35/regex_debug.obj vc71/libboost_regex-vc71-mt-sgd-1_35/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-sgd-1_35/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-sgd-1_35/static_mutex.obj vc71/libboost_regex-vc71-mt-sgd-1_35/usinstances.obj vc71/libboost_regex-vc71-mt-sgd-1_35/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_35/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_35/wide_posix_api.obj vc71/libboost_regex-vc71-mt-sgd-1_35/winstances.obj - link -lib /nologo /out:vc71/libboost_regex-vc71-mt-sgd-1_35.lib $(XSFLAGS) vc71/libboost_regex-vc71-mt-sgd-1_35/c_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_35/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_35/cregex.obj vc71/libboost_regex-vc71-mt-sgd-1_35/fileiter.obj vc71/libboost_regex-vc71-mt-sgd-1_35/icu.obj vc71/libboost_regex-vc71-mt-sgd-1_35/instances.obj vc71/libboost_regex-vc71-mt-sgd-1_35/posix_api.obj vc71/libboost_regex-vc71-mt-sgd-1_35/regex.obj vc71/libboost_regex-vc71-mt-sgd-1_35/regex_debug.obj vc71/libboost_regex-vc71-mt-sgd-1_35/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-sgd-1_35/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-sgd-1_35/static_mutex.obj vc71/libboost_regex-vc71-mt-sgd-1_35/usinstances.obj vc71/libboost_regex-vc71-mt-sgd-1_35/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_35/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_35/wide_posix_api.obj vc71/libboost_regex-vc71-mt-sgd-1_35/winstances.obj +./vc71/libboost_regex-vc71-mt-sgd-1_37.lib : vc71/libboost_regex-vc71-mt-sgd-1_37/c_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_37/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_37/cregex.obj vc71/libboost_regex-vc71-mt-sgd-1_37/fileiter.obj vc71/libboost_regex-vc71-mt-sgd-1_37/icu.obj vc71/libboost_regex-vc71-mt-sgd-1_37/instances.obj vc71/libboost_regex-vc71-mt-sgd-1_37/posix_api.obj vc71/libboost_regex-vc71-mt-sgd-1_37/regex.obj vc71/libboost_regex-vc71-mt-sgd-1_37/regex_debug.obj vc71/libboost_regex-vc71-mt-sgd-1_37/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-sgd-1_37/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-sgd-1_37/static_mutex.obj vc71/libboost_regex-vc71-mt-sgd-1_37/usinstances.obj vc71/libboost_regex-vc71-mt-sgd-1_37/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_37/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_37/wide_posix_api.obj vc71/libboost_regex-vc71-mt-sgd-1_37/winstances.obj + link -lib /nologo /out:vc71/libboost_regex-vc71-mt-sgd-1_37.lib $(XSFLAGS) vc71/libboost_regex-vc71-mt-sgd-1_37/c_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_37/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_37/cregex.obj vc71/libboost_regex-vc71-mt-sgd-1_37/fileiter.obj vc71/libboost_regex-vc71-mt-sgd-1_37/icu.obj vc71/libboost_regex-vc71-mt-sgd-1_37/instances.obj vc71/libboost_regex-vc71-mt-sgd-1_37/posix_api.obj vc71/libboost_regex-vc71-mt-sgd-1_37/regex.obj vc71/libboost_regex-vc71-mt-sgd-1_37/regex_debug.obj vc71/libboost_regex-vc71-mt-sgd-1_37/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-sgd-1_37/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-sgd-1_37/static_mutex.obj vc71/libboost_regex-vc71-mt-sgd-1_37/usinstances.obj vc71/libboost_regex-vc71-mt-sgd-1_37/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_37/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_37/wide_posix_api.obj vc71/libboost_regex-vc71-mt-sgd-1_37/winstances.obj ######################################################## # -# section for boost_regex-vc71-mt-gd-1_35.lib +# section for boost_regex-vc71-mt-gd-1_37.lib # ######################################################## -vc71/boost_regex-vc71-mt-gd-1_35/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_35/ -Fdvc71/boost_regex-vc71-mt-gd-1_35.pdb ../src/c_regex_traits.cpp +vc71/boost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-gd-1_37.pdb ../src/c_regex_traits.cpp -vc71/boost_regex-vc71-mt-gd-1_35/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_35/ -Fdvc71/boost_regex-vc71-mt-gd-1_35.pdb ../src/cpp_regex_traits.cpp +vc71/boost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-gd-1_37.pdb ../src/cpp_regex_traits.cpp -vc71/boost_regex-vc71-mt-gd-1_35/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_35/ -Fdvc71/boost_regex-vc71-mt-gd-1_35.pdb ../src/cregex.cpp +vc71/boost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-gd-1_37.pdb ../src/cregex.cpp -vc71/boost_regex-vc71-mt-gd-1_35/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_35/ -Fdvc71/boost_regex-vc71-mt-gd-1_35.pdb ../src/fileiter.cpp +vc71/boost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-gd-1_37.pdb ../src/fileiter.cpp -vc71/boost_regex-vc71-mt-gd-1_35/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_35/ -Fdvc71/boost_regex-vc71-mt-gd-1_35.pdb ../src/icu.cpp +vc71/boost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-gd-1_37.pdb ../src/icu.cpp -vc71/boost_regex-vc71-mt-gd-1_35/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_35/ -Fdvc71/boost_regex-vc71-mt-gd-1_35.pdb ../src/instances.cpp +vc71/boost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-gd-1_37.pdb ../src/instances.cpp -vc71/boost_regex-vc71-mt-gd-1_35/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_35/ -Fdvc71/boost_regex-vc71-mt-gd-1_35.pdb ../src/posix_api.cpp +vc71/boost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-gd-1_37.pdb ../src/posix_api.cpp -vc71/boost_regex-vc71-mt-gd-1_35/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_35/ -Fdvc71/boost_regex-vc71-mt-gd-1_35.pdb ../src/regex.cpp +vc71/boost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-gd-1_37.pdb ../src/regex.cpp -vc71/boost_regex-vc71-mt-gd-1_35/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_35/ -Fdvc71/boost_regex-vc71-mt-gd-1_35.pdb ../src/regex_debug.cpp +vc71/boost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-gd-1_37.pdb ../src/regex_debug.cpp -vc71/boost_regex-vc71-mt-gd-1_35/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_35/ -Fdvc71/boost_regex-vc71-mt-gd-1_35.pdb ../src/regex_raw_buffer.cpp +vc71/boost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-gd-1_37.pdb ../src/regex_raw_buffer.cpp -vc71/boost_regex-vc71-mt-gd-1_35/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_35/ -Fdvc71/boost_regex-vc71-mt-gd-1_35.pdb ../src/regex_traits_defaults.cpp +vc71/boost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-gd-1_37.pdb ../src/regex_traits_defaults.cpp -vc71/boost_regex-vc71-mt-gd-1_35/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_35/ -Fdvc71/boost_regex-vc71-mt-gd-1_35.pdb ../src/static_mutex.cpp +vc71/boost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-gd-1_37.pdb ../src/static_mutex.cpp -vc71/boost_regex-vc71-mt-gd-1_35/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_35/ -Fdvc71/boost_regex-vc71-mt-gd-1_35.pdb ../src/usinstances.cpp +vc71/boost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-gd-1_37.pdb ../src/usinstances.cpp -vc71/boost_regex-vc71-mt-gd-1_35/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_35/ -Fdvc71/boost_regex-vc71-mt-gd-1_35.pdb ../src/w32_regex_traits.cpp +vc71/boost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-gd-1_37.pdb ../src/w32_regex_traits.cpp -vc71/boost_regex-vc71-mt-gd-1_35/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_35/ -Fdvc71/boost_regex-vc71-mt-gd-1_35.pdb ../src/wc_regex_traits.cpp +vc71/boost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-gd-1_37.pdb ../src/wc_regex_traits.cpp -vc71/boost_regex-vc71-mt-gd-1_35/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_35/ -Fdvc71/boost_regex-vc71-mt-gd-1_35.pdb ../src/wide_posix_api.cpp +vc71/boost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-gd-1_37.pdb ../src/wide_posix_api.cpp -vc71/boost_regex-vc71-mt-gd-1_35/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_35/ -Fdvc71/boost_regex-vc71-mt-gd-1_35.pdb ../src/winstances.cpp +vc71/boost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-gd-1_37.pdb ../src/winstances.cpp -boost_regex-vc71-mt-gd-1_35_dir : - @if not exist "vc71\boost_regex-vc71-mt-gd-1_35\$(NULL)" mkdir vc71\boost_regex-vc71-mt-gd-1_35 +boost_regex-vc71-mt-gd-1_37_dir : + @if not exist "vc71\boost_regex-vc71-mt-gd-1_37\$(NULL)" mkdir vc71\boost_regex-vc71-mt-gd-1_37 -boost_regex-vc71-mt-gd-1_35_clean : - del vc71\boost_regex-vc71-mt-gd-1_35\*.obj - del vc71\boost_regex-vc71-mt-gd-1_35\*.idb - del vc71\boost_regex-vc71-mt-gd-1_35\*.exp - del vc71\boost_regex-vc71-mt-gd-1_35\*.pch +boost_regex-vc71-mt-gd-1_37_clean : + del vc71\boost_regex-vc71-mt-gd-1_37\*.obj + del vc71\boost_regex-vc71-mt-gd-1_37\*.idb + del vc71\boost_regex-vc71-mt-gd-1_37\*.exp + del vc71\boost_regex-vc71-mt-gd-1_37\*.pch -./vc71/boost_regex-vc71-mt-gd-1_35.lib : vc71/boost_regex-vc71-mt-gd-1_35/c_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_35/cpp_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_35/cregex.obj vc71/boost_regex-vc71-mt-gd-1_35/fileiter.obj vc71/boost_regex-vc71-mt-gd-1_35/icu.obj vc71/boost_regex-vc71-mt-gd-1_35/instances.obj vc71/boost_regex-vc71-mt-gd-1_35/posix_api.obj vc71/boost_regex-vc71-mt-gd-1_35/regex.obj vc71/boost_regex-vc71-mt-gd-1_35/regex_debug.obj vc71/boost_regex-vc71-mt-gd-1_35/regex_raw_buffer.obj vc71/boost_regex-vc71-mt-gd-1_35/regex_traits_defaults.obj vc71/boost_regex-vc71-mt-gd-1_35/static_mutex.obj vc71/boost_regex-vc71-mt-gd-1_35/usinstances.obj vc71/boost_regex-vc71-mt-gd-1_35/w32_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_35/wc_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_35/wide_posix_api.obj vc71/boost_regex-vc71-mt-gd-1_35/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_35.pdb" /debug /machine:I386 /out:"vc71/boost_regex-vc71-mt-gd-1_35.dll" /implib:"vc71/boost_regex-vc71-mt-gd-1_35.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc71/boost_regex-vc71-mt-gd-1_35/c_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_35/cpp_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_35/cregex.obj vc71/boost_regex-vc71-mt-gd-1_35/fileiter.obj vc71/boost_regex-vc71-mt-gd-1_35/icu.obj vc71/boost_regex-vc71-mt-gd-1_35/instances.obj vc71/boost_regex-vc71-mt-gd-1_35/posix_api.obj vc71/boost_regex-vc71-mt-gd-1_35/regex.obj vc71/boost_regex-vc71-mt-gd-1_35/regex_debug.obj vc71/boost_regex-vc71-mt-gd-1_35/regex_raw_buffer.obj vc71/boost_regex-vc71-mt-gd-1_35/regex_traits_defaults.obj vc71/boost_regex-vc71-mt-gd-1_35/static_mutex.obj vc71/boost_regex-vc71-mt-gd-1_35/usinstances.obj vc71/boost_regex-vc71-mt-gd-1_35/w32_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_35/wc_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_35/wide_posix_api.obj vc71/boost_regex-vc71-mt-gd-1_35/winstances.obj +./vc71/boost_regex-vc71-mt-gd-1_37.lib : vc71/boost_regex-vc71-mt-gd-1_37/c_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_37/cpp_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_37/cregex.obj vc71/boost_regex-vc71-mt-gd-1_37/fileiter.obj vc71/boost_regex-vc71-mt-gd-1_37/icu.obj vc71/boost_regex-vc71-mt-gd-1_37/instances.obj vc71/boost_regex-vc71-mt-gd-1_37/posix_api.obj vc71/boost_regex-vc71-mt-gd-1_37/regex.obj vc71/boost_regex-vc71-mt-gd-1_37/regex_debug.obj vc71/boost_regex-vc71-mt-gd-1_37/regex_raw_buffer.obj vc71/boost_regex-vc71-mt-gd-1_37/regex_traits_defaults.obj vc71/boost_regex-vc71-mt-gd-1_37/static_mutex.obj vc71/boost_regex-vc71-mt-gd-1_37/usinstances.obj vc71/boost_regex-vc71-mt-gd-1_37/w32_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_37/wc_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_37/wide_posix_api.obj vc71/boost_regex-vc71-mt-gd-1_37/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_37.pdb" /debug /machine:I386 /out:"vc71/boost_regex-vc71-mt-gd-1_37.dll" /implib:"vc71/boost_regex-vc71-mt-gd-1_37.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc71/boost_regex-vc71-mt-gd-1_37/c_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_37/cpp_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_37/cregex.obj vc71/boost_regex-vc71-mt-gd-1_37/fileiter.obj vc71/boost_regex-vc71-mt-gd-1_37/icu.obj vc71/boost_regex-vc71-mt-gd-1_37/instances.obj vc71/boost_regex-vc71-mt-gd-1_37/posix_api.obj vc71/boost_regex-vc71-mt-gd-1_37/regex.obj vc71/boost_regex-vc71-mt-gd-1_37/regex_debug.obj vc71/boost_regex-vc71-mt-gd-1_37/regex_raw_buffer.obj vc71/boost_regex-vc71-mt-gd-1_37/regex_traits_defaults.obj vc71/boost_regex-vc71-mt-gd-1_37/static_mutex.obj vc71/boost_regex-vc71-mt-gd-1_37/usinstances.obj vc71/boost_regex-vc71-mt-gd-1_37/w32_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_37/wc_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_37/wide_posix_api.obj vc71/boost_regex-vc71-mt-gd-1_37/winstances.obj ######################################################## # -# section for boost_regex-vc71-mt-1_35.lib +# section for boost_regex-vc71-mt-1_37.lib # ######################################################## -vc71/boost_regex-vc71-mt-1_35/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_35/ -Fdvc71/boost_regex-vc71-mt-1_35.pdb ../src/c_regex_traits.cpp +vc71/boost_regex-vc71-mt-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-1_37.pdb ../src/c_regex_traits.cpp -vc71/boost_regex-vc71-mt-1_35/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_35/ -Fdvc71/boost_regex-vc71-mt-1_35.pdb ../src/cpp_regex_traits.cpp +vc71/boost_regex-vc71-mt-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-1_37.pdb ../src/cpp_regex_traits.cpp -vc71/boost_regex-vc71-mt-1_35/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_35/ -Fdvc71/boost_regex-vc71-mt-1_35.pdb ../src/cregex.cpp +vc71/boost_regex-vc71-mt-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-1_37.pdb ../src/cregex.cpp -vc71/boost_regex-vc71-mt-1_35/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_35/ -Fdvc71/boost_regex-vc71-mt-1_35.pdb ../src/fileiter.cpp +vc71/boost_regex-vc71-mt-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-1_37.pdb ../src/fileiter.cpp -vc71/boost_regex-vc71-mt-1_35/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_35/ -Fdvc71/boost_regex-vc71-mt-1_35.pdb ../src/icu.cpp +vc71/boost_regex-vc71-mt-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-1_37.pdb ../src/icu.cpp -vc71/boost_regex-vc71-mt-1_35/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_35/ -Fdvc71/boost_regex-vc71-mt-1_35.pdb ../src/instances.cpp +vc71/boost_regex-vc71-mt-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-1_37.pdb ../src/instances.cpp -vc71/boost_regex-vc71-mt-1_35/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_35/ -Fdvc71/boost_regex-vc71-mt-1_35.pdb ../src/posix_api.cpp +vc71/boost_regex-vc71-mt-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-1_37.pdb ../src/posix_api.cpp -vc71/boost_regex-vc71-mt-1_35/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_35/ -Fdvc71/boost_regex-vc71-mt-1_35.pdb ../src/regex.cpp +vc71/boost_regex-vc71-mt-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-1_37.pdb ../src/regex.cpp -vc71/boost_regex-vc71-mt-1_35/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_35/ -Fdvc71/boost_regex-vc71-mt-1_35.pdb ../src/regex_debug.cpp +vc71/boost_regex-vc71-mt-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-1_37.pdb ../src/regex_debug.cpp -vc71/boost_regex-vc71-mt-1_35/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_35/ -Fdvc71/boost_regex-vc71-mt-1_35.pdb ../src/regex_raw_buffer.cpp +vc71/boost_regex-vc71-mt-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-1_37.pdb ../src/regex_raw_buffer.cpp -vc71/boost_regex-vc71-mt-1_35/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_35/ -Fdvc71/boost_regex-vc71-mt-1_35.pdb ../src/regex_traits_defaults.cpp +vc71/boost_regex-vc71-mt-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-1_37.pdb ../src/regex_traits_defaults.cpp -vc71/boost_regex-vc71-mt-1_35/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_35/ -Fdvc71/boost_regex-vc71-mt-1_35.pdb ../src/static_mutex.cpp +vc71/boost_regex-vc71-mt-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-1_37.pdb ../src/static_mutex.cpp -vc71/boost_regex-vc71-mt-1_35/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_35/ -Fdvc71/boost_regex-vc71-mt-1_35.pdb ../src/usinstances.cpp +vc71/boost_regex-vc71-mt-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-1_37.pdb ../src/usinstances.cpp -vc71/boost_regex-vc71-mt-1_35/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_35/ -Fdvc71/boost_regex-vc71-mt-1_35.pdb ../src/w32_regex_traits.cpp +vc71/boost_regex-vc71-mt-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-1_37.pdb ../src/w32_regex_traits.cpp -vc71/boost_regex-vc71-mt-1_35/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_35/ -Fdvc71/boost_regex-vc71-mt-1_35.pdb ../src/wc_regex_traits.cpp +vc71/boost_regex-vc71-mt-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-1_37.pdb ../src/wc_regex_traits.cpp -vc71/boost_regex-vc71-mt-1_35/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_35/ -Fdvc71/boost_regex-vc71-mt-1_35.pdb ../src/wide_posix_api.cpp +vc71/boost_regex-vc71-mt-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-1_37.pdb ../src/wide_posix_api.cpp -vc71/boost_regex-vc71-mt-1_35/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_35/ -Fdvc71/boost_regex-vc71-mt-1_35.pdb ../src/winstances.cpp +vc71/boost_regex-vc71-mt-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-1_37.pdb ../src/winstances.cpp -boost_regex-vc71-mt-1_35_dir : - @if not exist "vc71\boost_regex-vc71-mt-1_35\$(NULL)" mkdir vc71\boost_regex-vc71-mt-1_35 +boost_regex-vc71-mt-1_37_dir : + @if not exist "vc71\boost_regex-vc71-mt-1_37\$(NULL)" mkdir vc71\boost_regex-vc71-mt-1_37 -boost_regex-vc71-mt-1_35_clean : - del vc71\boost_regex-vc71-mt-1_35\*.obj - del vc71\boost_regex-vc71-mt-1_35\*.idb - del vc71\boost_regex-vc71-mt-1_35\*.exp - del vc71\boost_regex-vc71-mt-1_35\*.pch +boost_regex-vc71-mt-1_37_clean : + del vc71\boost_regex-vc71-mt-1_37\*.obj + del vc71\boost_regex-vc71-mt-1_37\*.idb + del vc71\boost_regex-vc71-mt-1_37\*.exp + del vc71\boost_regex-vc71-mt-1_37\*.pch -./vc71/boost_regex-vc71-mt-1_35.lib : vc71/boost_regex-vc71-mt-1_35/c_regex_traits.obj vc71/boost_regex-vc71-mt-1_35/cpp_regex_traits.obj vc71/boost_regex-vc71-mt-1_35/cregex.obj vc71/boost_regex-vc71-mt-1_35/fileiter.obj vc71/boost_regex-vc71-mt-1_35/icu.obj vc71/boost_regex-vc71-mt-1_35/instances.obj vc71/boost_regex-vc71-mt-1_35/posix_api.obj vc71/boost_regex-vc71-mt-1_35/regex.obj vc71/boost_regex-vc71-mt-1_35/regex_debug.obj vc71/boost_regex-vc71-mt-1_35/regex_raw_buffer.obj vc71/boost_regex-vc71-mt-1_35/regex_traits_defaults.obj vc71/boost_regex-vc71-mt-1_35/static_mutex.obj vc71/boost_regex-vc71-mt-1_35/usinstances.obj vc71/boost_regex-vc71-mt-1_35/w32_regex_traits.obj vc71/boost_regex-vc71-mt-1_35/wc_regex_traits.obj vc71/boost_regex-vc71-mt-1_35/wide_posix_api.obj vc71/boost_regex-vc71-mt-1_35/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_35.pdb" /debug /machine:I386 /out:"vc71/boost_regex-vc71-mt-1_35.dll" /implib:"vc71/boost_regex-vc71-mt-1_35.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc71/boost_regex-vc71-mt-1_35/c_regex_traits.obj vc71/boost_regex-vc71-mt-1_35/cpp_regex_traits.obj vc71/boost_regex-vc71-mt-1_35/cregex.obj vc71/boost_regex-vc71-mt-1_35/fileiter.obj vc71/boost_regex-vc71-mt-1_35/icu.obj vc71/boost_regex-vc71-mt-1_35/instances.obj vc71/boost_regex-vc71-mt-1_35/posix_api.obj vc71/boost_regex-vc71-mt-1_35/regex.obj vc71/boost_regex-vc71-mt-1_35/regex_debug.obj vc71/boost_regex-vc71-mt-1_35/regex_raw_buffer.obj vc71/boost_regex-vc71-mt-1_35/regex_traits_defaults.obj vc71/boost_regex-vc71-mt-1_35/static_mutex.obj vc71/boost_regex-vc71-mt-1_35/usinstances.obj vc71/boost_regex-vc71-mt-1_35/w32_regex_traits.obj vc71/boost_regex-vc71-mt-1_35/wc_regex_traits.obj vc71/boost_regex-vc71-mt-1_35/wide_posix_api.obj vc71/boost_regex-vc71-mt-1_35/winstances.obj +./vc71/boost_regex-vc71-mt-1_37.lib : vc71/boost_regex-vc71-mt-1_37/c_regex_traits.obj vc71/boost_regex-vc71-mt-1_37/cpp_regex_traits.obj vc71/boost_regex-vc71-mt-1_37/cregex.obj vc71/boost_regex-vc71-mt-1_37/fileiter.obj vc71/boost_regex-vc71-mt-1_37/icu.obj vc71/boost_regex-vc71-mt-1_37/instances.obj vc71/boost_regex-vc71-mt-1_37/posix_api.obj vc71/boost_regex-vc71-mt-1_37/regex.obj vc71/boost_regex-vc71-mt-1_37/regex_debug.obj vc71/boost_regex-vc71-mt-1_37/regex_raw_buffer.obj vc71/boost_regex-vc71-mt-1_37/regex_traits_defaults.obj vc71/boost_regex-vc71-mt-1_37/static_mutex.obj vc71/boost_regex-vc71-mt-1_37/usinstances.obj vc71/boost_regex-vc71-mt-1_37/w32_regex_traits.obj vc71/boost_regex-vc71-mt-1_37/wc_regex_traits.obj vc71/boost_regex-vc71-mt-1_37/wide_posix_api.obj vc71/boost_regex-vc71-mt-1_37/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_37.pdb" /debug /machine:I386 /out:"vc71/boost_regex-vc71-mt-1_37.dll" /implib:"vc71/boost_regex-vc71-mt-1_37.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc71/boost_regex-vc71-mt-1_37/c_regex_traits.obj vc71/boost_regex-vc71-mt-1_37/cpp_regex_traits.obj vc71/boost_regex-vc71-mt-1_37/cregex.obj vc71/boost_regex-vc71-mt-1_37/fileiter.obj vc71/boost_regex-vc71-mt-1_37/icu.obj vc71/boost_regex-vc71-mt-1_37/instances.obj vc71/boost_regex-vc71-mt-1_37/posix_api.obj vc71/boost_regex-vc71-mt-1_37/regex.obj vc71/boost_regex-vc71-mt-1_37/regex_debug.obj vc71/boost_regex-vc71-mt-1_37/regex_raw_buffer.obj vc71/boost_regex-vc71-mt-1_37/regex_traits_defaults.obj vc71/boost_regex-vc71-mt-1_37/static_mutex.obj vc71/boost_regex-vc71-mt-1_37/usinstances.obj vc71/boost_regex-vc71-mt-1_37/w32_regex_traits.obj vc71/boost_regex-vc71-mt-1_37/wc_regex_traits.obj vc71/boost_regex-vc71-mt-1_37/wide_posix_api.obj vc71/boost_regex-vc71-mt-1_37/winstances.obj ######################################################## # -# section for libboost_regex-vc71-mt-1_35.lib +# section for libboost_regex-vc71-mt-1_37.lib # ######################################################## -vc71/libboost_regex-vc71-mt-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-1_35.pdb ../src/c_regex_traits.cpp +vc71/libboost_regex-vc71-mt-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-1_37.pdb ../src/c_regex_traits.cpp -vc71/libboost_regex-vc71-mt-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-1_35.pdb ../src/cpp_regex_traits.cpp +vc71/libboost_regex-vc71-mt-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-1_37.pdb ../src/cpp_regex_traits.cpp -vc71/libboost_regex-vc71-mt-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-1_35.pdb ../src/cregex.cpp +vc71/libboost_regex-vc71-mt-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-1_37.pdb ../src/cregex.cpp -vc71/libboost_regex-vc71-mt-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-1_35.pdb ../src/fileiter.cpp +vc71/libboost_regex-vc71-mt-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-1_37.pdb ../src/fileiter.cpp -vc71/libboost_regex-vc71-mt-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-1_35.pdb ../src/icu.cpp +vc71/libboost_regex-vc71-mt-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-1_37.pdb ../src/icu.cpp -vc71/libboost_regex-vc71-mt-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-1_35.pdb ../src/instances.cpp +vc71/libboost_regex-vc71-mt-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-1_37.pdb ../src/instances.cpp -vc71/libboost_regex-vc71-mt-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-1_35.pdb ../src/posix_api.cpp +vc71/libboost_regex-vc71-mt-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-1_37.pdb ../src/posix_api.cpp -vc71/libboost_regex-vc71-mt-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-1_35.pdb ../src/regex.cpp +vc71/libboost_regex-vc71-mt-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-1_37.pdb ../src/regex.cpp -vc71/libboost_regex-vc71-mt-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-1_35.pdb ../src/regex_debug.cpp +vc71/libboost_regex-vc71-mt-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-1_37.pdb ../src/regex_debug.cpp -vc71/libboost_regex-vc71-mt-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-1_35.pdb ../src/regex_raw_buffer.cpp +vc71/libboost_regex-vc71-mt-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-1_37.pdb ../src/regex_raw_buffer.cpp -vc71/libboost_regex-vc71-mt-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-1_35.pdb ../src/regex_traits_defaults.cpp +vc71/libboost_regex-vc71-mt-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-1_37.pdb ../src/regex_traits_defaults.cpp -vc71/libboost_regex-vc71-mt-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-1_35.pdb ../src/static_mutex.cpp +vc71/libboost_regex-vc71-mt-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-1_37.pdb ../src/static_mutex.cpp -vc71/libboost_regex-vc71-mt-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-1_35.pdb ../src/usinstances.cpp +vc71/libboost_regex-vc71-mt-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-1_37.pdb ../src/usinstances.cpp -vc71/libboost_regex-vc71-mt-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-1_35.pdb ../src/w32_regex_traits.cpp +vc71/libboost_regex-vc71-mt-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-1_37.pdb ../src/w32_regex_traits.cpp -vc71/libboost_regex-vc71-mt-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-1_35.pdb ../src/wc_regex_traits.cpp +vc71/libboost_regex-vc71-mt-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-1_37.pdb ../src/wc_regex_traits.cpp -vc71/libboost_regex-vc71-mt-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-1_35.pdb ../src/wide_posix_api.cpp +vc71/libboost_regex-vc71-mt-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-1_37.pdb ../src/wide_posix_api.cpp -vc71/libboost_regex-vc71-mt-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-1_35.pdb ../src/winstances.cpp +vc71/libboost_regex-vc71-mt-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-1_37.pdb ../src/winstances.cpp -libboost_regex-vc71-mt-1_35_dir : - @if not exist "vc71\libboost_regex-vc71-mt-1_35\$(NULL)" mkdir vc71\libboost_regex-vc71-mt-1_35 +libboost_regex-vc71-mt-1_37_dir : + @if not exist "vc71\libboost_regex-vc71-mt-1_37\$(NULL)" mkdir vc71\libboost_regex-vc71-mt-1_37 -libboost_regex-vc71-mt-1_35_clean : - del vc71\libboost_regex-vc71-mt-1_35\*.obj - del vc71\libboost_regex-vc71-mt-1_35\*.idb - del vc71\libboost_regex-vc71-mt-1_35\*.exp - del vc71\libboost_regex-vc71-mt-1_35\*.pch +libboost_regex-vc71-mt-1_37_clean : + del vc71\libboost_regex-vc71-mt-1_37\*.obj + del vc71\libboost_regex-vc71-mt-1_37\*.idb + del vc71\libboost_regex-vc71-mt-1_37\*.exp + del vc71\libboost_regex-vc71-mt-1_37\*.pch -./vc71/libboost_regex-vc71-mt-1_35.lib : vc71/libboost_regex-vc71-mt-1_35/c_regex_traits.obj vc71/libboost_regex-vc71-mt-1_35/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-1_35/cregex.obj vc71/libboost_regex-vc71-mt-1_35/fileiter.obj vc71/libboost_regex-vc71-mt-1_35/icu.obj vc71/libboost_regex-vc71-mt-1_35/instances.obj vc71/libboost_regex-vc71-mt-1_35/posix_api.obj vc71/libboost_regex-vc71-mt-1_35/regex.obj vc71/libboost_regex-vc71-mt-1_35/regex_debug.obj vc71/libboost_regex-vc71-mt-1_35/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-1_35/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-1_35/static_mutex.obj vc71/libboost_regex-vc71-mt-1_35/usinstances.obj vc71/libboost_regex-vc71-mt-1_35/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-1_35/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-1_35/wide_posix_api.obj vc71/libboost_regex-vc71-mt-1_35/winstances.obj - link -lib /nologo /out:vc71/libboost_regex-vc71-mt-1_35.lib $(XSFLAGS) vc71/libboost_regex-vc71-mt-1_35/c_regex_traits.obj vc71/libboost_regex-vc71-mt-1_35/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-1_35/cregex.obj vc71/libboost_regex-vc71-mt-1_35/fileiter.obj vc71/libboost_regex-vc71-mt-1_35/icu.obj vc71/libboost_regex-vc71-mt-1_35/instances.obj vc71/libboost_regex-vc71-mt-1_35/posix_api.obj vc71/libboost_regex-vc71-mt-1_35/regex.obj vc71/libboost_regex-vc71-mt-1_35/regex_debug.obj vc71/libboost_regex-vc71-mt-1_35/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-1_35/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-1_35/static_mutex.obj vc71/libboost_regex-vc71-mt-1_35/usinstances.obj vc71/libboost_regex-vc71-mt-1_35/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-1_35/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-1_35/wide_posix_api.obj vc71/libboost_regex-vc71-mt-1_35/winstances.obj +./vc71/libboost_regex-vc71-mt-1_37.lib : vc71/libboost_regex-vc71-mt-1_37/c_regex_traits.obj vc71/libboost_regex-vc71-mt-1_37/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-1_37/cregex.obj vc71/libboost_regex-vc71-mt-1_37/fileiter.obj vc71/libboost_regex-vc71-mt-1_37/icu.obj vc71/libboost_regex-vc71-mt-1_37/instances.obj vc71/libboost_regex-vc71-mt-1_37/posix_api.obj vc71/libboost_regex-vc71-mt-1_37/regex.obj vc71/libboost_regex-vc71-mt-1_37/regex_debug.obj vc71/libboost_regex-vc71-mt-1_37/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-1_37/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-1_37/static_mutex.obj vc71/libboost_regex-vc71-mt-1_37/usinstances.obj vc71/libboost_regex-vc71-mt-1_37/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-1_37/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-1_37/wide_posix_api.obj vc71/libboost_regex-vc71-mt-1_37/winstances.obj + link -lib /nologo /out:vc71/libboost_regex-vc71-mt-1_37.lib $(XSFLAGS) vc71/libboost_regex-vc71-mt-1_37/c_regex_traits.obj vc71/libboost_regex-vc71-mt-1_37/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-1_37/cregex.obj vc71/libboost_regex-vc71-mt-1_37/fileiter.obj vc71/libboost_regex-vc71-mt-1_37/icu.obj vc71/libboost_regex-vc71-mt-1_37/instances.obj vc71/libboost_regex-vc71-mt-1_37/posix_api.obj vc71/libboost_regex-vc71-mt-1_37/regex.obj vc71/libboost_regex-vc71-mt-1_37/regex_debug.obj vc71/libboost_regex-vc71-mt-1_37/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-1_37/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-1_37/static_mutex.obj vc71/libboost_regex-vc71-mt-1_37/usinstances.obj vc71/libboost_regex-vc71-mt-1_37/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-1_37/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-1_37/wide_posix_api.obj vc71/libboost_regex-vc71-mt-1_37/winstances.obj ######################################################## # -# section for libboost_regex-vc71-mt-gd-1_35.lib +# section for libboost_regex-vc71-mt-gd-1_37.lib # ######################################################## -vc71/libboost_regex-vc71-mt-gd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-gd-1_35.pdb ../src/c_regex_traits.cpp +vc71/libboost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-gd-1_37.pdb ../src/c_regex_traits.cpp -vc71/libboost_regex-vc71-mt-gd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-gd-1_35.pdb ../src/cpp_regex_traits.cpp +vc71/libboost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-gd-1_37.pdb ../src/cpp_regex_traits.cpp -vc71/libboost_regex-vc71-mt-gd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-gd-1_35.pdb ../src/cregex.cpp +vc71/libboost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-gd-1_37.pdb ../src/cregex.cpp -vc71/libboost_regex-vc71-mt-gd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-gd-1_35.pdb ../src/fileiter.cpp +vc71/libboost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-gd-1_37.pdb ../src/fileiter.cpp -vc71/libboost_regex-vc71-mt-gd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-gd-1_35.pdb ../src/icu.cpp +vc71/libboost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-gd-1_37.pdb ../src/icu.cpp -vc71/libboost_regex-vc71-mt-gd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-gd-1_35.pdb ../src/instances.cpp +vc71/libboost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-gd-1_37.pdb ../src/instances.cpp -vc71/libboost_regex-vc71-mt-gd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-gd-1_35.pdb ../src/posix_api.cpp +vc71/libboost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-gd-1_37.pdb ../src/posix_api.cpp -vc71/libboost_regex-vc71-mt-gd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-gd-1_35.pdb ../src/regex.cpp +vc71/libboost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-gd-1_37.pdb ../src/regex.cpp -vc71/libboost_regex-vc71-mt-gd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-gd-1_35.pdb ../src/regex_debug.cpp +vc71/libboost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-gd-1_37.pdb ../src/regex_debug.cpp -vc71/libboost_regex-vc71-mt-gd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-gd-1_35.pdb ../src/regex_raw_buffer.cpp +vc71/libboost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-gd-1_37.pdb ../src/regex_raw_buffer.cpp -vc71/libboost_regex-vc71-mt-gd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-gd-1_35.pdb ../src/regex_traits_defaults.cpp +vc71/libboost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-gd-1_37.pdb ../src/regex_traits_defaults.cpp -vc71/libboost_regex-vc71-mt-gd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-gd-1_35.pdb ../src/static_mutex.cpp +vc71/libboost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-gd-1_37.pdb ../src/static_mutex.cpp -vc71/libboost_regex-vc71-mt-gd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-gd-1_35.pdb ../src/usinstances.cpp +vc71/libboost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-gd-1_37.pdb ../src/usinstances.cpp -vc71/libboost_regex-vc71-mt-gd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-gd-1_35.pdb ../src/w32_regex_traits.cpp +vc71/libboost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-gd-1_37.pdb ../src/w32_regex_traits.cpp -vc71/libboost_regex-vc71-mt-gd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-gd-1_35.pdb ../src/wc_regex_traits.cpp +vc71/libboost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-gd-1_37.pdb ../src/wc_regex_traits.cpp -vc71/libboost_regex-vc71-mt-gd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-gd-1_35.pdb ../src/wide_posix_api.cpp +vc71/libboost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-gd-1_37.pdb ../src/wide_posix_api.cpp -vc71/libboost_regex-vc71-mt-gd-1_35/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_35/ -Fdvc71/libboost_regex-vc71-mt-gd-1_35.pdb ../src/winstances.cpp +vc71/libboost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-gd-1_37.pdb ../src/winstances.cpp -libboost_regex-vc71-mt-gd-1_35_dir : - @if not exist "vc71\libboost_regex-vc71-mt-gd-1_35\$(NULL)" mkdir vc71\libboost_regex-vc71-mt-gd-1_35 +libboost_regex-vc71-mt-gd-1_37_dir : + @if not exist "vc71\libboost_regex-vc71-mt-gd-1_37\$(NULL)" mkdir vc71\libboost_regex-vc71-mt-gd-1_37 -libboost_regex-vc71-mt-gd-1_35_clean : - del vc71\libboost_regex-vc71-mt-gd-1_35\*.obj - del vc71\libboost_regex-vc71-mt-gd-1_35\*.idb - del vc71\libboost_regex-vc71-mt-gd-1_35\*.exp - del vc71\libboost_regex-vc71-mt-gd-1_35\*.pch +libboost_regex-vc71-mt-gd-1_37_clean : + del vc71\libboost_regex-vc71-mt-gd-1_37\*.obj + del vc71\libboost_regex-vc71-mt-gd-1_37\*.idb + del vc71\libboost_regex-vc71-mt-gd-1_37\*.exp + del vc71\libboost_regex-vc71-mt-gd-1_37\*.pch + +./vc71/libboost_regex-vc71-mt-gd-1_37.lib : vc71/libboost_regex-vc71-mt-gd-1_37/c_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_37/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_37/cregex.obj vc71/libboost_regex-vc71-mt-gd-1_37/fileiter.obj vc71/libboost_regex-vc71-mt-gd-1_37/icu.obj vc71/libboost_regex-vc71-mt-gd-1_37/instances.obj vc71/libboost_regex-vc71-mt-gd-1_37/posix_api.obj vc71/libboost_regex-vc71-mt-gd-1_37/regex.obj vc71/libboost_regex-vc71-mt-gd-1_37/regex_debug.obj vc71/libboost_regex-vc71-mt-gd-1_37/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-gd-1_37/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-gd-1_37/static_mutex.obj vc71/libboost_regex-vc71-mt-gd-1_37/usinstances.obj vc71/libboost_regex-vc71-mt-gd-1_37/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_37/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_37/wide_posix_api.obj vc71/libboost_regex-vc71-mt-gd-1_37/winstances.obj + link -lib /nologo /out:vc71/libboost_regex-vc71-mt-gd-1_37.lib $(XSFLAGS) vc71/libboost_regex-vc71-mt-gd-1_37/c_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_37/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_37/cregex.obj vc71/libboost_regex-vc71-mt-gd-1_37/fileiter.obj vc71/libboost_regex-vc71-mt-gd-1_37/icu.obj vc71/libboost_regex-vc71-mt-gd-1_37/instances.obj vc71/libboost_regex-vc71-mt-gd-1_37/posix_api.obj vc71/libboost_regex-vc71-mt-gd-1_37/regex.obj vc71/libboost_regex-vc71-mt-gd-1_37/regex_debug.obj vc71/libboost_regex-vc71-mt-gd-1_37/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-gd-1_37/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-gd-1_37/static_mutex.obj vc71/libboost_regex-vc71-mt-gd-1_37/usinstances.obj vc71/libboost_regex-vc71-mt-gd-1_37/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_37/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_37/wide_posix_api.obj vc71/libboost_regex-vc71-mt-gd-1_37/winstances.obj -./vc71/libboost_regex-vc71-mt-gd-1_35.lib : vc71/libboost_regex-vc71-mt-gd-1_35/c_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_35/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_35/cregex.obj vc71/libboost_regex-vc71-mt-gd-1_35/fileiter.obj vc71/libboost_regex-vc71-mt-gd-1_35/icu.obj vc71/libboost_regex-vc71-mt-gd-1_35/instances.obj vc71/libboost_regex-vc71-mt-gd-1_35/posix_api.obj vc71/libboost_regex-vc71-mt-gd-1_35/regex.obj vc71/libboost_regex-vc71-mt-gd-1_35/regex_debug.obj vc71/libboost_regex-vc71-mt-gd-1_35/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-gd-1_35/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-gd-1_35/static_mutex.obj vc71/libboost_regex-vc71-mt-gd-1_35/usinstances.obj vc71/libboost_regex-vc71-mt-gd-1_35/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_35/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_35/wide_posix_api.obj vc71/libboost_regex-vc71-mt-gd-1_35/winstances.obj - link -lib /nologo /out:vc71/libboost_regex-vc71-mt-gd-1_35.lib $(XSFLAGS) vc71/libboost_regex-vc71-mt-gd-1_35/c_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_35/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_35/cregex.obj vc71/libboost_regex-vc71-mt-gd-1_35/fileiter.obj vc71/libboost_regex-vc71-mt-gd-1_35/icu.obj vc71/libboost_regex-vc71-mt-gd-1_35/instances.obj vc71/libboost_regex-vc71-mt-gd-1_35/posix_api.obj vc71/libboost_regex-vc71-mt-gd-1_35/regex.obj vc71/libboost_regex-vc71-mt-gd-1_35/regex_debug.obj vc71/libboost_regex-vc71-mt-gd-1_35/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-gd-1_35/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-gd-1_35/static_mutex.obj vc71/libboost_regex-vc71-mt-gd-1_35/usinstances.obj vc71/libboost_regex-vc71-mt-gd-1_35/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_35/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_35/wide_posix_api.obj vc71/libboost_regex-vc71-mt-gd-1_35/winstances.obj diff --git a/build/vc8.mak b/build/vc8.mak index e14e2073..f56b856f 100644 --- a/build/vc8.mak +++ b/build/vc8.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-vc80-mt-s-1_35_dir ./vc80/libboost_regex-vc80-mt-s-1_35.lib libboost_regex-vc80-mt-sgd-1_35_dir ./vc80/libboost_regex-vc80-mt-sgd-1_35.lib boost_regex-vc80-mt-gd-1_35_dir ./vc80/boost_regex-vc80-mt-gd-1_35.lib boost_regex-vc80-mt-1_35_dir ./vc80/boost_regex-vc80-mt-1_35.lib libboost_regex-vc80-mt-1_35_dir ./vc80/libboost_regex-vc80-mt-1_35.lib libboost_regex-vc80-mt-gd-1_35_dir ./vc80/libboost_regex-vc80-mt-gd-1_35.lib +all : main_dir libboost_regex-vc80-mt-s-1_37_dir ./vc80/libboost_regex-vc80-mt-s-1_37.lib libboost_regex-vc80-mt-sgd-1_37_dir ./vc80/libboost_regex-vc80-mt-sgd-1_37.lib boost_regex-vc80-mt-gd-1_37_dir ./vc80/boost_regex-vc80-mt-gd-1_37.lib boost_regex-vc80-mt-1_37_dir ./vc80/boost_regex-vc80-mt-1_37.lib libboost_regex-vc80-mt-1_37_dir ./vc80/libboost_regex-vc80-mt-1_37.lib libboost_regex-vc80-mt-gd-1_37_dir ./vc80/libboost_regex-vc80-mt-gd-1_37.lib -clean : libboost_regex-vc80-mt-s-1_35_clean libboost_regex-vc80-mt-sgd-1_35_clean boost_regex-vc80-mt-gd-1_35_clean boost_regex-vc80-mt-1_35_clean libboost_regex-vc80-mt-1_35_clean libboost_regex-vc80-mt-gd-1_35_clean +clean : libboost_regex-vc80-mt-s-1_37_clean libboost_regex-vc80-mt-sgd-1_37_clean boost_regex-vc80-mt-gd-1_37_clean boost_regex-vc80-mt-1_37_clean libboost_regex-vc80-mt-1_37_clean libboost_regex-vc80-mt-gd-1_37_clean install : all - copy vc80\libboost_regex-vc80-mt-s-1_35.lib "$(MSVCDIR)\lib" - copy vc80\libboost_regex-vc80-mt-sgd-1_35.lib "$(MSVCDIR)\lib" - copy vc80\boost_regex-vc80-mt-gd-1_35.lib "$(MSVCDIR)\lib" - copy vc80\boost_regex-vc80-mt-gd-1_35.dll "$(MSVCDIR)\bin" - copy vc80\boost_regex-vc80-mt-1_35.lib "$(MSVCDIR)\lib" - copy vc80\boost_regex-vc80-mt-1_35.dll "$(MSVCDIR)\bin" - copy vc80\libboost_regex-vc80-mt-1_35.lib "$(MSVCDIR)\lib" - copy vc80\libboost_regex-vc80-mt-gd-1_35.lib "$(MSVCDIR)\lib" - copy vc80\libboost_regex-vc80-mt-gd-1_35.pdb "$(MSVCDIR)\lib" + copy vc80\libboost_regex-vc80-mt-s-1_37.lib "$(MSVCDIR)\lib" + copy vc80\libboost_regex-vc80-mt-sgd-1_37.lib "$(MSVCDIR)\lib" + copy vc80\boost_regex-vc80-mt-gd-1_37.lib "$(MSVCDIR)\lib" + copy vc80\boost_regex-vc80-mt-gd-1_37.dll "$(MSVCDIR)\bin" + copy vc80\boost_regex-vc80-mt-1_37.lib "$(MSVCDIR)\lib" + copy vc80\boost_regex-vc80-mt-1_37.dll "$(MSVCDIR)\bin" + copy vc80\libboost_regex-vc80-mt-1_37.lib "$(MSVCDIR)\lib" + copy vc80\libboost_regex-vc80-mt-gd-1_37.lib "$(MSVCDIR)\lib" + copy vc80\libboost_regex-vc80-mt-gd-1_37.pdb "$(MSVCDIR)\lib" main_dir : @if not exist "vc80\$(NULL)" mkdir vc80 @@ -83,409 +83,410 @@ main_dir : ######################################################## # -# section for libboost_regex-vc80-mt-s-1_35.lib +# section for libboost_regex-vc80-mt-s-1_37.lib # ######################################################## -vc80/libboost_regex-vc80-mt-s-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-s-1_35.pdb ../src/c_regex_traits.cpp +vc80/libboost_regex-vc80-mt-s-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-s-1_37.pdb ../src/c_regex_traits.cpp -vc80/libboost_regex-vc80-mt-s-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-s-1_35.pdb ../src/cpp_regex_traits.cpp +vc80/libboost_regex-vc80-mt-s-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-s-1_37.pdb ../src/cpp_regex_traits.cpp -vc80/libboost_regex-vc80-mt-s-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-s-1_35.pdb ../src/cregex.cpp +vc80/libboost_regex-vc80-mt-s-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-s-1_37.pdb ../src/cregex.cpp -vc80/libboost_regex-vc80-mt-s-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-s-1_35.pdb ../src/fileiter.cpp +vc80/libboost_regex-vc80-mt-s-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-s-1_37.pdb ../src/fileiter.cpp -vc80/libboost_regex-vc80-mt-s-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-s-1_35.pdb ../src/icu.cpp +vc80/libboost_regex-vc80-mt-s-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-s-1_37.pdb ../src/icu.cpp -vc80/libboost_regex-vc80-mt-s-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-s-1_35.pdb ../src/instances.cpp +vc80/libboost_regex-vc80-mt-s-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-s-1_37.pdb ../src/instances.cpp -vc80/libboost_regex-vc80-mt-s-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-s-1_35.pdb ../src/posix_api.cpp +vc80/libboost_regex-vc80-mt-s-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-s-1_37.pdb ../src/posix_api.cpp -vc80/libboost_regex-vc80-mt-s-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-s-1_35.pdb ../src/regex.cpp +vc80/libboost_regex-vc80-mt-s-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-s-1_37.pdb ../src/regex.cpp -vc80/libboost_regex-vc80-mt-s-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-s-1_35.pdb ../src/regex_debug.cpp +vc80/libboost_regex-vc80-mt-s-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-s-1_37.pdb ../src/regex_debug.cpp -vc80/libboost_regex-vc80-mt-s-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-s-1_35.pdb ../src/regex_raw_buffer.cpp +vc80/libboost_regex-vc80-mt-s-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-s-1_37.pdb ../src/regex_raw_buffer.cpp -vc80/libboost_regex-vc80-mt-s-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-s-1_35.pdb ../src/regex_traits_defaults.cpp +vc80/libboost_regex-vc80-mt-s-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-s-1_37.pdb ../src/regex_traits_defaults.cpp -vc80/libboost_regex-vc80-mt-s-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-s-1_35.pdb ../src/static_mutex.cpp +vc80/libboost_regex-vc80-mt-s-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-s-1_37.pdb ../src/static_mutex.cpp -vc80/libboost_regex-vc80-mt-s-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-s-1_35.pdb ../src/usinstances.cpp +vc80/libboost_regex-vc80-mt-s-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-s-1_37.pdb ../src/usinstances.cpp -vc80/libboost_regex-vc80-mt-s-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-s-1_35.pdb ../src/w32_regex_traits.cpp +vc80/libboost_regex-vc80-mt-s-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-s-1_37.pdb ../src/w32_regex_traits.cpp -vc80/libboost_regex-vc80-mt-s-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-s-1_35.pdb ../src/wc_regex_traits.cpp +vc80/libboost_regex-vc80-mt-s-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-s-1_37.pdb ../src/wc_regex_traits.cpp -vc80/libboost_regex-vc80-mt-s-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-s-1_35.pdb ../src/wide_posix_api.cpp +vc80/libboost_regex-vc80-mt-s-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-s-1_37.pdb ../src/wide_posix_api.cpp -vc80/libboost_regex-vc80-mt-s-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-s-1_35.pdb ../src/winstances.cpp +vc80/libboost_regex-vc80-mt-s-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-s-1_37.pdb ../src/winstances.cpp -libboost_regex-vc80-mt-s-1_35_dir : - @if not exist "vc80\libboost_regex-vc80-mt-s-1_35\$(NULL)" mkdir vc80\libboost_regex-vc80-mt-s-1_35 +libboost_regex-vc80-mt-s-1_37_dir : + @if not exist "vc80\libboost_regex-vc80-mt-s-1_37\$(NULL)" mkdir vc80\libboost_regex-vc80-mt-s-1_37 -libboost_regex-vc80-mt-s-1_35_clean : - del vc80\libboost_regex-vc80-mt-s-1_35\*.obj - del vc80\libboost_regex-vc80-mt-s-1_35\*.idb - del vc80\libboost_regex-vc80-mt-s-1_35\*.exp - del vc80\libboost_regex-vc80-mt-s-1_35\*.pch +libboost_regex-vc80-mt-s-1_37_clean : + del vc80\libboost_regex-vc80-mt-s-1_37\*.obj + del vc80\libboost_regex-vc80-mt-s-1_37\*.idb + del vc80\libboost_regex-vc80-mt-s-1_37\*.exp + del vc80\libboost_regex-vc80-mt-s-1_37\*.pch -./vc80/libboost_regex-vc80-mt-s-1_35.lib : vc80/libboost_regex-vc80-mt-s-1_35/c_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_35/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_35/cregex.obj vc80/libboost_regex-vc80-mt-s-1_35/fileiter.obj vc80/libboost_regex-vc80-mt-s-1_35/icu.obj vc80/libboost_regex-vc80-mt-s-1_35/instances.obj vc80/libboost_regex-vc80-mt-s-1_35/posix_api.obj vc80/libboost_regex-vc80-mt-s-1_35/regex.obj vc80/libboost_regex-vc80-mt-s-1_35/regex_debug.obj vc80/libboost_regex-vc80-mt-s-1_35/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-s-1_35/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-s-1_35/static_mutex.obj vc80/libboost_regex-vc80-mt-s-1_35/usinstances.obj vc80/libboost_regex-vc80-mt-s-1_35/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_35/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_35/wide_posix_api.obj vc80/libboost_regex-vc80-mt-s-1_35/winstances.obj - link -lib /nologo /out:vc80/libboost_regex-vc80-mt-s-1_35.lib $(XSFLAGS) vc80/libboost_regex-vc80-mt-s-1_35/c_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_35/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_35/cregex.obj vc80/libboost_regex-vc80-mt-s-1_35/fileiter.obj vc80/libboost_regex-vc80-mt-s-1_35/icu.obj vc80/libboost_regex-vc80-mt-s-1_35/instances.obj vc80/libboost_regex-vc80-mt-s-1_35/posix_api.obj vc80/libboost_regex-vc80-mt-s-1_35/regex.obj vc80/libboost_regex-vc80-mt-s-1_35/regex_debug.obj vc80/libboost_regex-vc80-mt-s-1_35/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-s-1_35/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-s-1_35/static_mutex.obj vc80/libboost_regex-vc80-mt-s-1_35/usinstances.obj vc80/libboost_regex-vc80-mt-s-1_35/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_35/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_35/wide_posix_api.obj vc80/libboost_regex-vc80-mt-s-1_35/winstances.obj +./vc80/libboost_regex-vc80-mt-s-1_37.lib : vc80/libboost_regex-vc80-mt-s-1_37/c_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_37/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_37/cregex.obj vc80/libboost_regex-vc80-mt-s-1_37/fileiter.obj vc80/libboost_regex-vc80-mt-s-1_37/icu.obj vc80/libboost_regex-vc80-mt-s-1_37/instances.obj vc80/libboost_regex-vc80-mt-s-1_37/posix_api.obj vc80/libboost_regex-vc80-mt-s-1_37/regex.obj vc80/libboost_regex-vc80-mt-s-1_37/regex_debug.obj vc80/libboost_regex-vc80-mt-s-1_37/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-s-1_37/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-s-1_37/static_mutex.obj vc80/libboost_regex-vc80-mt-s-1_37/usinstances.obj vc80/libboost_regex-vc80-mt-s-1_37/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_37/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_37/wide_posix_api.obj vc80/libboost_regex-vc80-mt-s-1_37/winstances.obj + link -lib /nologo /out:vc80/libboost_regex-vc80-mt-s-1_37.lib $(XSFLAGS) vc80/libboost_regex-vc80-mt-s-1_37/c_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_37/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_37/cregex.obj vc80/libboost_regex-vc80-mt-s-1_37/fileiter.obj vc80/libboost_regex-vc80-mt-s-1_37/icu.obj vc80/libboost_regex-vc80-mt-s-1_37/instances.obj vc80/libboost_regex-vc80-mt-s-1_37/posix_api.obj vc80/libboost_regex-vc80-mt-s-1_37/regex.obj vc80/libboost_regex-vc80-mt-s-1_37/regex_debug.obj vc80/libboost_regex-vc80-mt-s-1_37/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-s-1_37/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-s-1_37/static_mutex.obj vc80/libboost_regex-vc80-mt-s-1_37/usinstances.obj vc80/libboost_regex-vc80-mt-s-1_37/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_37/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_37/wide_posix_api.obj vc80/libboost_regex-vc80-mt-s-1_37/winstances.obj ######################################################## # -# section for libboost_regex-vc80-mt-sgd-1_35.lib +# section for libboost_regex-vc80-mt-sgd-1_37.lib # ######################################################## -vc80/libboost_regex-vc80-mt-sgd-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_35.pdb ../src/c_regex_traits.cpp +vc80/libboost_regex-vc80-mt-sgd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_37.pdb ../src/c_regex_traits.cpp -vc80/libboost_regex-vc80-mt-sgd-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_35.pdb ../src/cpp_regex_traits.cpp +vc80/libboost_regex-vc80-mt-sgd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_37.pdb ../src/cpp_regex_traits.cpp -vc80/libboost_regex-vc80-mt-sgd-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_35.pdb ../src/cregex.cpp +vc80/libboost_regex-vc80-mt-sgd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_37.pdb ../src/cregex.cpp -vc80/libboost_regex-vc80-mt-sgd-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_35.pdb ../src/fileiter.cpp +vc80/libboost_regex-vc80-mt-sgd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_37.pdb ../src/fileiter.cpp -vc80/libboost_regex-vc80-mt-sgd-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_35.pdb ../src/icu.cpp +vc80/libboost_regex-vc80-mt-sgd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_37.pdb ../src/icu.cpp -vc80/libboost_regex-vc80-mt-sgd-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_35.pdb ../src/instances.cpp +vc80/libboost_regex-vc80-mt-sgd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_37.pdb ../src/instances.cpp -vc80/libboost_regex-vc80-mt-sgd-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_35.pdb ../src/posix_api.cpp +vc80/libboost_regex-vc80-mt-sgd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_37.pdb ../src/posix_api.cpp -vc80/libboost_regex-vc80-mt-sgd-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_35.pdb ../src/regex.cpp +vc80/libboost_regex-vc80-mt-sgd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_37.pdb ../src/regex.cpp -vc80/libboost_regex-vc80-mt-sgd-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_35.pdb ../src/regex_debug.cpp +vc80/libboost_regex-vc80-mt-sgd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_37.pdb ../src/regex_debug.cpp -vc80/libboost_regex-vc80-mt-sgd-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_35.pdb ../src/regex_raw_buffer.cpp +vc80/libboost_regex-vc80-mt-sgd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_37.pdb ../src/regex_raw_buffer.cpp -vc80/libboost_regex-vc80-mt-sgd-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_35.pdb ../src/regex_traits_defaults.cpp +vc80/libboost_regex-vc80-mt-sgd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_37.pdb ../src/regex_traits_defaults.cpp -vc80/libboost_regex-vc80-mt-sgd-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_35.pdb ../src/static_mutex.cpp +vc80/libboost_regex-vc80-mt-sgd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_37.pdb ../src/static_mutex.cpp -vc80/libboost_regex-vc80-mt-sgd-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_35.pdb ../src/usinstances.cpp +vc80/libboost_regex-vc80-mt-sgd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_37.pdb ../src/usinstances.cpp -vc80/libboost_regex-vc80-mt-sgd-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_35.pdb ../src/w32_regex_traits.cpp +vc80/libboost_regex-vc80-mt-sgd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_37.pdb ../src/w32_regex_traits.cpp -vc80/libboost_regex-vc80-mt-sgd-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_35.pdb ../src/wc_regex_traits.cpp +vc80/libboost_regex-vc80-mt-sgd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_37.pdb ../src/wc_regex_traits.cpp -vc80/libboost_regex-vc80-mt-sgd-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_35.pdb ../src/wide_posix_api.cpp +vc80/libboost_regex-vc80-mt-sgd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_37.pdb ../src/wide_posix_api.cpp -vc80/libboost_regex-vc80-mt-sgd-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_35.pdb ../src/winstances.cpp +vc80/libboost_regex-vc80-mt-sgd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_37.pdb ../src/winstances.cpp -libboost_regex-vc80-mt-sgd-1_35_dir : - @if not exist "vc80\libboost_regex-vc80-mt-sgd-1_35\$(NULL)" mkdir vc80\libboost_regex-vc80-mt-sgd-1_35 +libboost_regex-vc80-mt-sgd-1_37_dir : + @if not exist "vc80\libboost_regex-vc80-mt-sgd-1_37\$(NULL)" mkdir vc80\libboost_regex-vc80-mt-sgd-1_37 -libboost_regex-vc80-mt-sgd-1_35_clean : - del vc80\libboost_regex-vc80-mt-sgd-1_35\*.obj - del vc80\libboost_regex-vc80-mt-sgd-1_35\*.idb - del vc80\libboost_regex-vc80-mt-sgd-1_35\*.exp - del vc80\libboost_regex-vc80-mt-sgd-1_35\*.pch +libboost_regex-vc80-mt-sgd-1_37_clean : + del vc80\libboost_regex-vc80-mt-sgd-1_37\*.obj + del vc80\libboost_regex-vc80-mt-sgd-1_37\*.idb + del vc80\libboost_regex-vc80-mt-sgd-1_37\*.exp + del vc80\libboost_regex-vc80-mt-sgd-1_37\*.pch -./vc80/libboost_regex-vc80-mt-sgd-1_35.lib : vc80/libboost_regex-vc80-mt-sgd-1_35/c_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_35/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_35/cregex.obj vc80/libboost_regex-vc80-mt-sgd-1_35/fileiter.obj vc80/libboost_regex-vc80-mt-sgd-1_35/icu.obj vc80/libboost_regex-vc80-mt-sgd-1_35/instances.obj vc80/libboost_regex-vc80-mt-sgd-1_35/posix_api.obj vc80/libboost_regex-vc80-mt-sgd-1_35/regex.obj vc80/libboost_regex-vc80-mt-sgd-1_35/regex_debug.obj vc80/libboost_regex-vc80-mt-sgd-1_35/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-sgd-1_35/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-sgd-1_35/static_mutex.obj vc80/libboost_regex-vc80-mt-sgd-1_35/usinstances.obj vc80/libboost_regex-vc80-mt-sgd-1_35/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_35/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_35/wide_posix_api.obj vc80/libboost_regex-vc80-mt-sgd-1_35/winstances.obj - link -lib /nologo /out:vc80/libboost_regex-vc80-mt-sgd-1_35.lib $(XSFLAGS) vc80/libboost_regex-vc80-mt-sgd-1_35/c_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_35/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_35/cregex.obj vc80/libboost_regex-vc80-mt-sgd-1_35/fileiter.obj vc80/libboost_regex-vc80-mt-sgd-1_35/icu.obj vc80/libboost_regex-vc80-mt-sgd-1_35/instances.obj vc80/libboost_regex-vc80-mt-sgd-1_35/posix_api.obj vc80/libboost_regex-vc80-mt-sgd-1_35/regex.obj vc80/libboost_regex-vc80-mt-sgd-1_35/regex_debug.obj vc80/libboost_regex-vc80-mt-sgd-1_35/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-sgd-1_35/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-sgd-1_35/static_mutex.obj vc80/libboost_regex-vc80-mt-sgd-1_35/usinstances.obj vc80/libboost_regex-vc80-mt-sgd-1_35/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_35/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_35/wide_posix_api.obj vc80/libboost_regex-vc80-mt-sgd-1_35/winstances.obj +./vc80/libboost_regex-vc80-mt-sgd-1_37.lib : vc80/libboost_regex-vc80-mt-sgd-1_37/c_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_37/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_37/cregex.obj vc80/libboost_regex-vc80-mt-sgd-1_37/fileiter.obj vc80/libboost_regex-vc80-mt-sgd-1_37/icu.obj vc80/libboost_regex-vc80-mt-sgd-1_37/instances.obj vc80/libboost_regex-vc80-mt-sgd-1_37/posix_api.obj vc80/libboost_regex-vc80-mt-sgd-1_37/regex.obj vc80/libboost_regex-vc80-mt-sgd-1_37/regex_debug.obj vc80/libboost_regex-vc80-mt-sgd-1_37/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-sgd-1_37/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-sgd-1_37/static_mutex.obj vc80/libboost_regex-vc80-mt-sgd-1_37/usinstances.obj vc80/libboost_regex-vc80-mt-sgd-1_37/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_37/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_37/wide_posix_api.obj vc80/libboost_regex-vc80-mt-sgd-1_37/winstances.obj + link -lib /nologo /out:vc80/libboost_regex-vc80-mt-sgd-1_37.lib $(XSFLAGS) vc80/libboost_regex-vc80-mt-sgd-1_37/c_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_37/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_37/cregex.obj vc80/libboost_regex-vc80-mt-sgd-1_37/fileiter.obj vc80/libboost_regex-vc80-mt-sgd-1_37/icu.obj vc80/libboost_regex-vc80-mt-sgd-1_37/instances.obj vc80/libboost_regex-vc80-mt-sgd-1_37/posix_api.obj vc80/libboost_regex-vc80-mt-sgd-1_37/regex.obj vc80/libboost_regex-vc80-mt-sgd-1_37/regex_debug.obj vc80/libboost_regex-vc80-mt-sgd-1_37/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-sgd-1_37/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-sgd-1_37/static_mutex.obj vc80/libboost_regex-vc80-mt-sgd-1_37/usinstances.obj vc80/libboost_regex-vc80-mt-sgd-1_37/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_37/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_37/wide_posix_api.obj vc80/libboost_regex-vc80-mt-sgd-1_37/winstances.obj ######################################################## # -# section for boost_regex-vc80-mt-gd-1_35.lib +# section for boost_regex-vc80-mt-gd-1_37.lib # ######################################################## -vc80/boost_regex-vc80-mt-gd-1_35/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_35/ -Fdvc80/boost_regex-vc80-mt-gd-1_35.pdb ../src/c_regex_traits.cpp +vc80/boost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-gd-1_37.pdb ../src/c_regex_traits.cpp -vc80/boost_regex-vc80-mt-gd-1_35/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_35/ -Fdvc80/boost_regex-vc80-mt-gd-1_35.pdb ../src/cpp_regex_traits.cpp +vc80/boost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-gd-1_37.pdb ../src/cpp_regex_traits.cpp -vc80/boost_regex-vc80-mt-gd-1_35/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_35/ -Fdvc80/boost_regex-vc80-mt-gd-1_35.pdb ../src/cregex.cpp +vc80/boost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-gd-1_37.pdb ../src/cregex.cpp -vc80/boost_regex-vc80-mt-gd-1_35/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_35/ -Fdvc80/boost_regex-vc80-mt-gd-1_35.pdb ../src/fileiter.cpp +vc80/boost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-gd-1_37.pdb ../src/fileiter.cpp -vc80/boost_regex-vc80-mt-gd-1_35/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_35/ -Fdvc80/boost_regex-vc80-mt-gd-1_35.pdb ../src/icu.cpp +vc80/boost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-gd-1_37.pdb ../src/icu.cpp -vc80/boost_regex-vc80-mt-gd-1_35/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_35/ -Fdvc80/boost_regex-vc80-mt-gd-1_35.pdb ../src/instances.cpp +vc80/boost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-gd-1_37.pdb ../src/instances.cpp -vc80/boost_regex-vc80-mt-gd-1_35/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_35/ -Fdvc80/boost_regex-vc80-mt-gd-1_35.pdb ../src/posix_api.cpp +vc80/boost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-gd-1_37.pdb ../src/posix_api.cpp -vc80/boost_regex-vc80-mt-gd-1_35/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_35/ -Fdvc80/boost_regex-vc80-mt-gd-1_35.pdb ../src/regex.cpp +vc80/boost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-gd-1_37.pdb ../src/regex.cpp -vc80/boost_regex-vc80-mt-gd-1_35/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_35/ -Fdvc80/boost_regex-vc80-mt-gd-1_35.pdb ../src/regex_debug.cpp +vc80/boost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-gd-1_37.pdb ../src/regex_debug.cpp -vc80/boost_regex-vc80-mt-gd-1_35/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_35/ -Fdvc80/boost_regex-vc80-mt-gd-1_35.pdb ../src/regex_raw_buffer.cpp +vc80/boost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-gd-1_37.pdb ../src/regex_raw_buffer.cpp -vc80/boost_regex-vc80-mt-gd-1_35/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_35/ -Fdvc80/boost_regex-vc80-mt-gd-1_35.pdb ../src/regex_traits_defaults.cpp +vc80/boost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-gd-1_37.pdb ../src/regex_traits_defaults.cpp -vc80/boost_regex-vc80-mt-gd-1_35/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_35/ -Fdvc80/boost_regex-vc80-mt-gd-1_35.pdb ../src/static_mutex.cpp +vc80/boost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-gd-1_37.pdb ../src/static_mutex.cpp -vc80/boost_regex-vc80-mt-gd-1_35/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_35/ -Fdvc80/boost_regex-vc80-mt-gd-1_35.pdb ../src/usinstances.cpp +vc80/boost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-gd-1_37.pdb ../src/usinstances.cpp -vc80/boost_regex-vc80-mt-gd-1_35/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_35/ -Fdvc80/boost_regex-vc80-mt-gd-1_35.pdb ../src/w32_regex_traits.cpp +vc80/boost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-gd-1_37.pdb ../src/w32_regex_traits.cpp -vc80/boost_regex-vc80-mt-gd-1_35/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_35/ -Fdvc80/boost_regex-vc80-mt-gd-1_35.pdb ../src/wc_regex_traits.cpp +vc80/boost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-gd-1_37.pdb ../src/wc_regex_traits.cpp -vc80/boost_regex-vc80-mt-gd-1_35/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_35/ -Fdvc80/boost_regex-vc80-mt-gd-1_35.pdb ../src/wide_posix_api.cpp +vc80/boost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-gd-1_37.pdb ../src/wide_posix_api.cpp -vc80/boost_regex-vc80-mt-gd-1_35/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_35/ -Fdvc80/boost_regex-vc80-mt-gd-1_35.pdb ../src/winstances.cpp +vc80/boost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-gd-1_37.pdb ../src/winstances.cpp -boost_regex-vc80-mt-gd-1_35_dir : - @if not exist "vc80\boost_regex-vc80-mt-gd-1_35\$(NULL)" mkdir vc80\boost_regex-vc80-mt-gd-1_35 +boost_regex-vc80-mt-gd-1_37_dir : + @if not exist "vc80\boost_regex-vc80-mt-gd-1_37\$(NULL)" mkdir vc80\boost_regex-vc80-mt-gd-1_37 -boost_regex-vc80-mt-gd-1_35_clean : - del vc80\boost_regex-vc80-mt-gd-1_35\*.obj - del vc80\boost_regex-vc80-mt-gd-1_35\*.idb - del vc80\boost_regex-vc80-mt-gd-1_35\*.exp - del vc80\boost_regex-vc80-mt-gd-1_35\*.pch +boost_regex-vc80-mt-gd-1_37_clean : + del vc80\boost_regex-vc80-mt-gd-1_37\*.obj + del vc80\boost_regex-vc80-mt-gd-1_37\*.idb + del vc80\boost_regex-vc80-mt-gd-1_37\*.exp + del vc80\boost_regex-vc80-mt-gd-1_37\*.pch -./vc80/boost_regex-vc80-mt-gd-1_35.lib : vc80/boost_regex-vc80-mt-gd-1_35/c_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_35/cpp_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_35/cregex.obj vc80/boost_regex-vc80-mt-gd-1_35/fileiter.obj vc80/boost_regex-vc80-mt-gd-1_35/icu.obj vc80/boost_regex-vc80-mt-gd-1_35/instances.obj vc80/boost_regex-vc80-mt-gd-1_35/posix_api.obj vc80/boost_regex-vc80-mt-gd-1_35/regex.obj vc80/boost_regex-vc80-mt-gd-1_35/regex_debug.obj vc80/boost_regex-vc80-mt-gd-1_35/regex_raw_buffer.obj vc80/boost_regex-vc80-mt-gd-1_35/regex_traits_defaults.obj vc80/boost_regex-vc80-mt-gd-1_35/static_mutex.obj vc80/boost_regex-vc80-mt-gd-1_35/usinstances.obj vc80/boost_regex-vc80-mt-gd-1_35/w32_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_35/wc_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_35/wide_posix_api.obj vc80/boost_regex-vc80-mt-gd-1_35/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_35.pdb" /debug /machine:I386 /out:"vc80/boost_regex-vc80-mt-gd-1_35.dll" /implib:"vc80/boost_regex-vc80-mt-gd-1_35.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc80/boost_regex-vc80-mt-gd-1_35/c_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_35/cpp_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_35/cregex.obj vc80/boost_regex-vc80-mt-gd-1_35/fileiter.obj vc80/boost_regex-vc80-mt-gd-1_35/icu.obj vc80/boost_regex-vc80-mt-gd-1_35/instances.obj vc80/boost_regex-vc80-mt-gd-1_35/posix_api.obj vc80/boost_regex-vc80-mt-gd-1_35/regex.obj vc80/boost_regex-vc80-mt-gd-1_35/regex_debug.obj vc80/boost_regex-vc80-mt-gd-1_35/regex_raw_buffer.obj vc80/boost_regex-vc80-mt-gd-1_35/regex_traits_defaults.obj vc80/boost_regex-vc80-mt-gd-1_35/static_mutex.obj vc80/boost_regex-vc80-mt-gd-1_35/usinstances.obj vc80/boost_regex-vc80-mt-gd-1_35/w32_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_35/wc_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_35/wide_posix_api.obj vc80/boost_regex-vc80-mt-gd-1_35/winstances.obj +./vc80/boost_regex-vc80-mt-gd-1_37.lib : vc80/boost_regex-vc80-mt-gd-1_37/c_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_37/cpp_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_37/cregex.obj vc80/boost_regex-vc80-mt-gd-1_37/fileiter.obj vc80/boost_regex-vc80-mt-gd-1_37/icu.obj vc80/boost_regex-vc80-mt-gd-1_37/instances.obj vc80/boost_regex-vc80-mt-gd-1_37/posix_api.obj vc80/boost_regex-vc80-mt-gd-1_37/regex.obj vc80/boost_regex-vc80-mt-gd-1_37/regex_debug.obj vc80/boost_regex-vc80-mt-gd-1_37/regex_raw_buffer.obj vc80/boost_regex-vc80-mt-gd-1_37/regex_traits_defaults.obj vc80/boost_regex-vc80-mt-gd-1_37/static_mutex.obj vc80/boost_regex-vc80-mt-gd-1_37/usinstances.obj vc80/boost_regex-vc80-mt-gd-1_37/w32_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_37/wc_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_37/wide_posix_api.obj vc80/boost_regex-vc80-mt-gd-1_37/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_37.pdb" /debug /machine:I386 /out:"vc80/boost_regex-vc80-mt-gd-1_37.dll" /implib:"vc80/boost_regex-vc80-mt-gd-1_37.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc80/boost_regex-vc80-mt-gd-1_37/c_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_37/cpp_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_37/cregex.obj vc80/boost_regex-vc80-mt-gd-1_37/fileiter.obj vc80/boost_regex-vc80-mt-gd-1_37/icu.obj vc80/boost_regex-vc80-mt-gd-1_37/instances.obj vc80/boost_regex-vc80-mt-gd-1_37/posix_api.obj vc80/boost_regex-vc80-mt-gd-1_37/regex.obj vc80/boost_regex-vc80-mt-gd-1_37/regex_debug.obj vc80/boost_regex-vc80-mt-gd-1_37/regex_raw_buffer.obj vc80/boost_regex-vc80-mt-gd-1_37/regex_traits_defaults.obj vc80/boost_regex-vc80-mt-gd-1_37/static_mutex.obj vc80/boost_regex-vc80-mt-gd-1_37/usinstances.obj vc80/boost_regex-vc80-mt-gd-1_37/w32_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_37/wc_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_37/wide_posix_api.obj vc80/boost_regex-vc80-mt-gd-1_37/winstances.obj ######################################################## # -# section for boost_regex-vc80-mt-1_35.lib +# section for boost_regex-vc80-mt-1_37.lib # ######################################################## -vc80/boost_regex-vc80-mt-1_35/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_35/ -Fdvc80/boost_regex-vc80-mt-1_35.pdb ../src/c_regex_traits.cpp +vc80/boost_regex-vc80-mt-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-1_37.pdb ../src/c_regex_traits.cpp -vc80/boost_regex-vc80-mt-1_35/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_35/ -Fdvc80/boost_regex-vc80-mt-1_35.pdb ../src/cpp_regex_traits.cpp +vc80/boost_regex-vc80-mt-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-1_37.pdb ../src/cpp_regex_traits.cpp -vc80/boost_regex-vc80-mt-1_35/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_35/ -Fdvc80/boost_regex-vc80-mt-1_35.pdb ../src/cregex.cpp +vc80/boost_regex-vc80-mt-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-1_37.pdb ../src/cregex.cpp -vc80/boost_regex-vc80-mt-1_35/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_35/ -Fdvc80/boost_regex-vc80-mt-1_35.pdb ../src/fileiter.cpp +vc80/boost_regex-vc80-mt-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-1_37.pdb ../src/fileiter.cpp -vc80/boost_regex-vc80-mt-1_35/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_35/ -Fdvc80/boost_regex-vc80-mt-1_35.pdb ../src/icu.cpp +vc80/boost_regex-vc80-mt-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-1_37.pdb ../src/icu.cpp -vc80/boost_regex-vc80-mt-1_35/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_35/ -Fdvc80/boost_regex-vc80-mt-1_35.pdb ../src/instances.cpp +vc80/boost_regex-vc80-mt-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-1_37.pdb ../src/instances.cpp -vc80/boost_regex-vc80-mt-1_35/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_35/ -Fdvc80/boost_regex-vc80-mt-1_35.pdb ../src/posix_api.cpp +vc80/boost_regex-vc80-mt-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-1_37.pdb ../src/posix_api.cpp -vc80/boost_regex-vc80-mt-1_35/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_35/ -Fdvc80/boost_regex-vc80-mt-1_35.pdb ../src/regex.cpp +vc80/boost_regex-vc80-mt-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-1_37.pdb ../src/regex.cpp -vc80/boost_regex-vc80-mt-1_35/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_35/ -Fdvc80/boost_regex-vc80-mt-1_35.pdb ../src/regex_debug.cpp +vc80/boost_regex-vc80-mt-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-1_37.pdb ../src/regex_debug.cpp -vc80/boost_regex-vc80-mt-1_35/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_35/ -Fdvc80/boost_regex-vc80-mt-1_35.pdb ../src/regex_raw_buffer.cpp +vc80/boost_regex-vc80-mt-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-1_37.pdb ../src/regex_raw_buffer.cpp -vc80/boost_regex-vc80-mt-1_35/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_35/ -Fdvc80/boost_regex-vc80-mt-1_35.pdb ../src/regex_traits_defaults.cpp +vc80/boost_regex-vc80-mt-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-1_37.pdb ../src/regex_traits_defaults.cpp -vc80/boost_regex-vc80-mt-1_35/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_35/ -Fdvc80/boost_regex-vc80-mt-1_35.pdb ../src/static_mutex.cpp +vc80/boost_regex-vc80-mt-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-1_37.pdb ../src/static_mutex.cpp -vc80/boost_regex-vc80-mt-1_35/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_35/ -Fdvc80/boost_regex-vc80-mt-1_35.pdb ../src/usinstances.cpp +vc80/boost_regex-vc80-mt-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-1_37.pdb ../src/usinstances.cpp -vc80/boost_regex-vc80-mt-1_35/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_35/ -Fdvc80/boost_regex-vc80-mt-1_35.pdb ../src/w32_regex_traits.cpp +vc80/boost_regex-vc80-mt-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-1_37.pdb ../src/w32_regex_traits.cpp -vc80/boost_regex-vc80-mt-1_35/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_35/ -Fdvc80/boost_regex-vc80-mt-1_35.pdb ../src/wc_regex_traits.cpp +vc80/boost_regex-vc80-mt-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-1_37.pdb ../src/wc_regex_traits.cpp -vc80/boost_regex-vc80-mt-1_35/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_35/ -Fdvc80/boost_regex-vc80-mt-1_35.pdb ../src/wide_posix_api.cpp +vc80/boost_regex-vc80-mt-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-1_37.pdb ../src/wide_posix_api.cpp -vc80/boost_regex-vc80-mt-1_35/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_35/ -Fdvc80/boost_regex-vc80-mt-1_35.pdb ../src/winstances.cpp +vc80/boost_regex-vc80-mt-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-1_37.pdb ../src/winstances.cpp -boost_regex-vc80-mt-1_35_dir : - @if not exist "vc80\boost_regex-vc80-mt-1_35\$(NULL)" mkdir vc80\boost_regex-vc80-mt-1_35 +boost_regex-vc80-mt-1_37_dir : + @if not exist "vc80\boost_regex-vc80-mt-1_37\$(NULL)" mkdir vc80\boost_regex-vc80-mt-1_37 -boost_regex-vc80-mt-1_35_clean : - del vc80\boost_regex-vc80-mt-1_35\*.obj - del vc80\boost_regex-vc80-mt-1_35\*.idb - del vc80\boost_regex-vc80-mt-1_35\*.exp - del vc80\boost_regex-vc80-mt-1_35\*.pch +boost_regex-vc80-mt-1_37_clean : + del vc80\boost_regex-vc80-mt-1_37\*.obj + del vc80\boost_regex-vc80-mt-1_37\*.idb + del vc80\boost_regex-vc80-mt-1_37\*.exp + del vc80\boost_regex-vc80-mt-1_37\*.pch -./vc80/boost_regex-vc80-mt-1_35.lib : vc80/boost_regex-vc80-mt-1_35/c_regex_traits.obj vc80/boost_regex-vc80-mt-1_35/cpp_regex_traits.obj vc80/boost_regex-vc80-mt-1_35/cregex.obj vc80/boost_regex-vc80-mt-1_35/fileiter.obj vc80/boost_regex-vc80-mt-1_35/icu.obj vc80/boost_regex-vc80-mt-1_35/instances.obj vc80/boost_regex-vc80-mt-1_35/posix_api.obj vc80/boost_regex-vc80-mt-1_35/regex.obj vc80/boost_regex-vc80-mt-1_35/regex_debug.obj vc80/boost_regex-vc80-mt-1_35/regex_raw_buffer.obj vc80/boost_regex-vc80-mt-1_35/regex_traits_defaults.obj vc80/boost_regex-vc80-mt-1_35/static_mutex.obj vc80/boost_regex-vc80-mt-1_35/usinstances.obj vc80/boost_regex-vc80-mt-1_35/w32_regex_traits.obj vc80/boost_regex-vc80-mt-1_35/wc_regex_traits.obj vc80/boost_regex-vc80-mt-1_35/wide_posix_api.obj vc80/boost_regex-vc80-mt-1_35/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_35.pdb" /debug /machine:I386 /out:"vc80/boost_regex-vc80-mt-1_35.dll" /implib:"vc80/boost_regex-vc80-mt-1_35.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc80/boost_regex-vc80-mt-1_35/c_regex_traits.obj vc80/boost_regex-vc80-mt-1_35/cpp_regex_traits.obj vc80/boost_regex-vc80-mt-1_35/cregex.obj vc80/boost_regex-vc80-mt-1_35/fileiter.obj vc80/boost_regex-vc80-mt-1_35/icu.obj vc80/boost_regex-vc80-mt-1_35/instances.obj vc80/boost_regex-vc80-mt-1_35/posix_api.obj vc80/boost_regex-vc80-mt-1_35/regex.obj vc80/boost_regex-vc80-mt-1_35/regex_debug.obj vc80/boost_regex-vc80-mt-1_35/regex_raw_buffer.obj vc80/boost_regex-vc80-mt-1_35/regex_traits_defaults.obj vc80/boost_regex-vc80-mt-1_35/static_mutex.obj vc80/boost_regex-vc80-mt-1_35/usinstances.obj vc80/boost_regex-vc80-mt-1_35/w32_regex_traits.obj vc80/boost_regex-vc80-mt-1_35/wc_regex_traits.obj vc80/boost_regex-vc80-mt-1_35/wide_posix_api.obj vc80/boost_regex-vc80-mt-1_35/winstances.obj +./vc80/boost_regex-vc80-mt-1_37.lib : vc80/boost_regex-vc80-mt-1_37/c_regex_traits.obj vc80/boost_regex-vc80-mt-1_37/cpp_regex_traits.obj vc80/boost_regex-vc80-mt-1_37/cregex.obj vc80/boost_regex-vc80-mt-1_37/fileiter.obj vc80/boost_regex-vc80-mt-1_37/icu.obj vc80/boost_regex-vc80-mt-1_37/instances.obj vc80/boost_regex-vc80-mt-1_37/posix_api.obj vc80/boost_regex-vc80-mt-1_37/regex.obj vc80/boost_regex-vc80-mt-1_37/regex_debug.obj vc80/boost_regex-vc80-mt-1_37/regex_raw_buffer.obj vc80/boost_regex-vc80-mt-1_37/regex_traits_defaults.obj vc80/boost_regex-vc80-mt-1_37/static_mutex.obj vc80/boost_regex-vc80-mt-1_37/usinstances.obj vc80/boost_regex-vc80-mt-1_37/w32_regex_traits.obj vc80/boost_regex-vc80-mt-1_37/wc_regex_traits.obj vc80/boost_regex-vc80-mt-1_37/wide_posix_api.obj vc80/boost_regex-vc80-mt-1_37/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_37.pdb" /debug /machine:I386 /out:"vc80/boost_regex-vc80-mt-1_37.dll" /implib:"vc80/boost_regex-vc80-mt-1_37.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc80/boost_regex-vc80-mt-1_37/c_regex_traits.obj vc80/boost_regex-vc80-mt-1_37/cpp_regex_traits.obj vc80/boost_regex-vc80-mt-1_37/cregex.obj vc80/boost_regex-vc80-mt-1_37/fileiter.obj vc80/boost_regex-vc80-mt-1_37/icu.obj vc80/boost_regex-vc80-mt-1_37/instances.obj vc80/boost_regex-vc80-mt-1_37/posix_api.obj vc80/boost_regex-vc80-mt-1_37/regex.obj vc80/boost_regex-vc80-mt-1_37/regex_debug.obj vc80/boost_regex-vc80-mt-1_37/regex_raw_buffer.obj vc80/boost_regex-vc80-mt-1_37/regex_traits_defaults.obj vc80/boost_regex-vc80-mt-1_37/static_mutex.obj vc80/boost_regex-vc80-mt-1_37/usinstances.obj vc80/boost_regex-vc80-mt-1_37/w32_regex_traits.obj vc80/boost_regex-vc80-mt-1_37/wc_regex_traits.obj vc80/boost_regex-vc80-mt-1_37/wide_posix_api.obj vc80/boost_regex-vc80-mt-1_37/winstances.obj ######################################################## # -# section for libboost_regex-vc80-mt-1_35.lib +# section for libboost_regex-vc80-mt-1_37.lib # ######################################################## -vc80/libboost_regex-vc80-mt-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-1_35.pdb ../src/c_regex_traits.cpp +vc80/libboost_regex-vc80-mt-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-1_37.pdb ../src/c_regex_traits.cpp -vc80/libboost_regex-vc80-mt-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-1_35.pdb ../src/cpp_regex_traits.cpp +vc80/libboost_regex-vc80-mt-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-1_37.pdb ../src/cpp_regex_traits.cpp -vc80/libboost_regex-vc80-mt-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-1_35.pdb ../src/cregex.cpp +vc80/libboost_regex-vc80-mt-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-1_37.pdb ../src/cregex.cpp -vc80/libboost_regex-vc80-mt-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-1_35.pdb ../src/fileiter.cpp +vc80/libboost_regex-vc80-mt-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-1_37.pdb ../src/fileiter.cpp -vc80/libboost_regex-vc80-mt-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-1_35.pdb ../src/icu.cpp +vc80/libboost_regex-vc80-mt-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-1_37.pdb ../src/icu.cpp -vc80/libboost_regex-vc80-mt-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-1_35.pdb ../src/instances.cpp +vc80/libboost_regex-vc80-mt-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-1_37.pdb ../src/instances.cpp -vc80/libboost_regex-vc80-mt-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-1_35.pdb ../src/posix_api.cpp +vc80/libboost_regex-vc80-mt-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-1_37.pdb ../src/posix_api.cpp -vc80/libboost_regex-vc80-mt-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-1_35.pdb ../src/regex.cpp +vc80/libboost_regex-vc80-mt-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-1_37.pdb ../src/regex.cpp -vc80/libboost_regex-vc80-mt-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-1_35.pdb ../src/regex_debug.cpp +vc80/libboost_regex-vc80-mt-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-1_37.pdb ../src/regex_debug.cpp -vc80/libboost_regex-vc80-mt-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-1_35.pdb ../src/regex_raw_buffer.cpp +vc80/libboost_regex-vc80-mt-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-1_37.pdb ../src/regex_raw_buffer.cpp -vc80/libboost_regex-vc80-mt-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-1_35.pdb ../src/regex_traits_defaults.cpp +vc80/libboost_regex-vc80-mt-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-1_37.pdb ../src/regex_traits_defaults.cpp -vc80/libboost_regex-vc80-mt-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-1_35.pdb ../src/static_mutex.cpp +vc80/libboost_regex-vc80-mt-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-1_37.pdb ../src/static_mutex.cpp -vc80/libboost_regex-vc80-mt-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-1_35.pdb ../src/usinstances.cpp +vc80/libboost_regex-vc80-mt-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-1_37.pdb ../src/usinstances.cpp -vc80/libboost_regex-vc80-mt-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-1_35.pdb ../src/w32_regex_traits.cpp +vc80/libboost_regex-vc80-mt-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-1_37.pdb ../src/w32_regex_traits.cpp -vc80/libboost_regex-vc80-mt-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-1_35.pdb ../src/wc_regex_traits.cpp +vc80/libboost_regex-vc80-mt-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-1_37.pdb ../src/wc_regex_traits.cpp -vc80/libboost_regex-vc80-mt-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-1_35.pdb ../src/wide_posix_api.cpp +vc80/libboost_regex-vc80-mt-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-1_37.pdb ../src/wide_posix_api.cpp -vc80/libboost_regex-vc80-mt-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-1_35.pdb ../src/winstances.cpp +vc80/libboost_regex-vc80-mt-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-1_37.pdb ../src/winstances.cpp -libboost_regex-vc80-mt-1_35_dir : - @if not exist "vc80\libboost_regex-vc80-mt-1_35\$(NULL)" mkdir vc80\libboost_regex-vc80-mt-1_35 +libboost_regex-vc80-mt-1_37_dir : + @if not exist "vc80\libboost_regex-vc80-mt-1_37\$(NULL)" mkdir vc80\libboost_regex-vc80-mt-1_37 -libboost_regex-vc80-mt-1_35_clean : - del vc80\libboost_regex-vc80-mt-1_35\*.obj - del vc80\libboost_regex-vc80-mt-1_35\*.idb - del vc80\libboost_regex-vc80-mt-1_35\*.exp - del vc80\libboost_regex-vc80-mt-1_35\*.pch +libboost_regex-vc80-mt-1_37_clean : + del vc80\libboost_regex-vc80-mt-1_37\*.obj + del vc80\libboost_regex-vc80-mt-1_37\*.idb + del vc80\libboost_regex-vc80-mt-1_37\*.exp + del vc80\libboost_regex-vc80-mt-1_37\*.pch -./vc80/libboost_regex-vc80-mt-1_35.lib : vc80/libboost_regex-vc80-mt-1_35/c_regex_traits.obj vc80/libboost_regex-vc80-mt-1_35/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-1_35/cregex.obj vc80/libboost_regex-vc80-mt-1_35/fileiter.obj vc80/libboost_regex-vc80-mt-1_35/icu.obj vc80/libboost_regex-vc80-mt-1_35/instances.obj vc80/libboost_regex-vc80-mt-1_35/posix_api.obj vc80/libboost_regex-vc80-mt-1_35/regex.obj vc80/libboost_regex-vc80-mt-1_35/regex_debug.obj vc80/libboost_regex-vc80-mt-1_35/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-1_35/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-1_35/static_mutex.obj vc80/libboost_regex-vc80-mt-1_35/usinstances.obj vc80/libboost_regex-vc80-mt-1_35/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-1_35/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-1_35/wide_posix_api.obj vc80/libboost_regex-vc80-mt-1_35/winstances.obj - link -lib /nologo /out:vc80/libboost_regex-vc80-mt-1_35.lib $(XSFLAGS) vc80/libboost_regex-vc80-mt-1_35/c_regex_traits.obj vc80/libboost_regex-vc80-mt-1_35/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-1_35/cregex.obj vc80/libboost_regex-vc80-mt-1_35/fileiter.obj vc80/libboost_regex-vc80-mt-1_35/icu.obj vc80/libboost_regex-vc80-mt-1_35/instances.obj vc80/libboost_regex-vc80-mt-1_35/posix_api.obj vc80/libboost_regex-vc80-mt-1_35/regex.obj vc80/libboost_regex-vc80-mt-1_35/regex_debug.obj vc80/libboost_regex-vc80-mt-1_35/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-1_35/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-1_35/static_mutex.obj vc80/libboost_regex-vc80-mt-1_35/usinstances.obj vc80/libboost_regex-vc80-mt-1_35/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-1_35/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-1_35/wide_posix_api.obj vc80/libboost_regex-vc80-mt-1_35/winstances.obj +./vc80/libboost_regex-vc80-mt-1_37.lib : vc80/libboost_regex-vc80-mt-1_37/c_regex_traits.obj vc80/libboost_regex-vc80-mt-1_37/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-1_37/cregex.obj vc80/libboost_regex-vc80-mt-1_37/fileiter.obj vc80/libboost_regex-vc80-mt-1_37/icu.obj vc80/libboost_regex-vc80-mt-1_37/instances.obj vc80/libboost_regex-vc80-mt-1_37/posix_api.obj vc80/libboost_regex-vc80-mt-1_37/regex.obj vc80/libboost_regex-vc80-mt-1_37/regex_debug.obj vc80/libboost_regex-vc80-mt-1_37/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-1_37/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-1_37/static_mutex.obj vc80/libboost_regex-vc80-mt-1_37/usinstances.obj vc80/libboost_regex-vc80-mt-1_37/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-1_37/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-1_37/wide_posix_api.obj vc80/libboost_regex-vc80-mt-1_37/winstances.obj + link -lib /nologo /out:vc80/libboost_regex-vc80-mt-1_37.lib $(XSFLAGS) vc80/libboost_regex-vc80-mt-1_37/c_regex_traits.obj vc80/libboost_regex-vc80-mt-1_37/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-1_37/cregex.obj vc80/libboost_regex-vc80-mt-1_37/fileiter.obj vc80/libboost_regex-vc80-mt-1_37/icu.obj vc80/libboost_regex-vc80-mt-1_37/instances.obj vc80/libboost_regex-vc80-mt-1_37/posix_api.obj vc80/libboost_regex-vc80-mt-1_37/regex.obj vc80/libboost_regex-vc80-mt-1_37/regex_debug.obj vc80/libboost_regex-vc80-mt-1_37/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-1_37/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-1_37/static_mutex.obj vc80/libboost_regex-vc80-mt-1_37/usinstances.obj vc80/libboost_regex-vc80-mt-1_37/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-1_37/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-1_37/wide_posix_api.obj vc80/libboost_regex-vc80-mt-1_37/winstances.obj ######################################################## # -# section for libboost_regex-vc80-mt-gd-1_35.lib +# section for libboost_regex-vc80-mt-gd-1_37.lib # ######################################################## -vc80/libboost_regex-vc80-mt-gd-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-gd-1_35.pdb ../src/c_regex_traits.cpp +vc80/libboost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-gd-1_37.pdb ../src/c_regex_traits.cpp -vc80/libboost_regex-vc80-mt-gd-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-gd-1_35.pdb ../src/cpp_regex_traits.cpp +vc80/libboost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-gd-1_37.pdb ../src/cpp_regex_traits.cpp -vc80/libboost_regex-vc80-mt-gd-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-gd-1_35.pdb ../src/cregex.cpp +vc80/libboost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-gd-1_37.pdb ../src/cregex.cpp -vc80/libboost_regex-vc80-mt-gd-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-gd-1_35.pdb ../src/fileiter.cpp +vc80/libboost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-gd-1_37.pdb ../src/fileiter.cpp -vc80/libboost_regex-vc80-mt-gd-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-gd-1_35.pdb ../src/icu.cpp +vc80/libboost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-gd-1_37.pdb ../src/icu.cpp -vc80/libboost_regex-vc80-mt-gd-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-gd-1_35.pdb ../src/instances.cpp +vc80/libboost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-gd-1_37.pdb ../src/instances.cpp -vc80/libboost_regex-vc80-mt-gd-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-gd-1_35.pdb ../src/posix_api.cpp +vc80/libboost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-gd-1_37.pdb ../src/posix_api.cpp -vc80/libboost_regex-vc80-mt-gd-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-gd-1_35.pdb ../src/regex.cpp +vc80/libboost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-gd-1_37.pdb ../src/regex.cpp -vc80/libboost_regex-vc80-mt-gd-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-gd-1_35.pdb ../src/regex_debug.cpp +vc80/libboost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-gd-1_37.pdb ../src/regex_debug.cpp -vc80/libboost_regex-vc80-mt-gd-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-gd-1_35.pdb ../src/regex_raw_buffer.cpp +vc80/libboost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-gd-1_37.pdb ../src/regex_raw_buffer.cpp -vc80/libboost_regex-vc80-mt-gd-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-gd-1_35.pdb ../src/regex_traits_defaults.cpp +vc80/libboost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-gd-1_37.pdb ../src/regex_traits_defaults.cpp -vc80/libboost_regex-vc80-mt-gd-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-gd-1_35.pdb ../src/static_mutex.cpp +vc80/libboost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-gd-1_37.pdb ../src/static_mutex.cpp -vc80/libboost_regex-vc80-mt-gd-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-gd-1_35.pdb ../src/usinstances.cpp +vc80/libboost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-gd-1_37.pdb ../src/usinstances.cpp -vc80/libboost_regex-vc80-mt-gd-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-gd-1_35.pdb ../src/w32_regex_traits.cpp +vc80/libboost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-gd-1_37.pdb ../src/w32_regex_traits.cpp -vc80/libboost_regex-vc80-mt-gd-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-gd-1_35.pdb ../src/wc_regex_traits.cpp +vc80/libboost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-gd-1_37.pdb ../src/wc_regex_traits.cpp -vc80/libboost_regex-vc80-mt-gd-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-gd-1_35.pdb ../src/wide_posix_api.cpp +vc80/libboost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-gd-1_37.pdb ../src/wide_posix_api.cpp -vc80/libboost_regex-vc80-mt-gd-1_35/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_35/ -Fdvc80/libboost_regex-vc80-mt-gd-1_35.pdb ../src/winstances.cpp +vc80/libboost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-gd-1_37.pdb ../src/winstances.cpp -libboost_regex-vc80-mt-gd-1_35_dir : - @if not exist "vc80\libboost_regex-vc80-mt-gd-1_35\$(NULL)" mkdir vc80\libboost_regex-vc80-mt-gd-1_35 +libboost_regex-vc80-mt-gd-1_37_dir : + @if not exist "vc80\libboost_regex-vc80-mt-gd-1_37\$(NULL)" mkdir vc80\libboost_regex-vc80-mt-gd-1_37 -libboost_regex-vc80-mt-gd-1_35_clean : - del vc80\libboost_regex-vc80-mt-gd-1_35\*.obj - del vc80\libboost_regex-vc80-mt-gd-1_35\*.idb - del vc80\libboost_regex-vc80-mt-gd-1_35\*.exp - del vc80\libboost_regex-vc80-mt-gd-1_35\*.pch +libboost_regex-vc80-mt-gd-1_37_clean : + del vc80\libboost_regex-vc80-mt-gd-1_37\*.obj + del vc80\libboost_regex-vc80-mt-gd-1_37\*.idb + del vc80\libboost_regex-vc80-mt-gd-1_37\*.exp + del vc80\libboost_regex-vc80-mt-gd-1_37\*.pch + +./vc80/libboost_regex-vc80-mt-gd-1_37.lib : vc80/libboost_regex-vc80-mt-gd-1_37/c_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_37/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_37/cregex.obj vc80/libboost_regex-vc80-mt-gd-1_37/fileiter.obj vc80/libboost_regex-vc80-mt-gd-1_37/icu.obj vc80/libboost_regex-vc80-mt-gd-1_37/instances.obj vc80/libboost_regex-vc80-mt-gd-1_37/posix_api.obj vc80/libboost_regex-vc80-mt-gd-1_37/regex.obj vc80/libboost_regex-vc80-mt-gd-1_37/regex_debug.obj vc80/libboost_regex-vc80-mt-gd-1_37/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-gd-1_37/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-gd-1_37/static_mutex.obj vc80/libboost_regex-vc80-mt-gd-1_37/usinstances.obj vc80/libboost_regex-vc80-mt-gd-1_37/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_37/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_37/wide_posix_api.obj vc80/libboost_regex-vc80-mt-gd-1_37/winstances.obj + link -lib /nologo /out:vc80/libboost_regex-vc80-mt-gd-1_37.lib $(XSFLAGS) vc80/libboost_regex-vc80-mt-gd-1_37/c_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_37/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_37/cregex.obj vc80/libboost_regex-vc80-mt-gd-1_37/fileiter.obj vc80/libboost_regex-vc80-mt-gd-1_37/icu.obj vc80/libboost_regex-vc80-mt-gd-1_37/instances.obj vc80/libboost_regex-vc80-mt-gd-1_37/posix_api.obj vc80/libboost_regex-vc80-mt-gd-1_37/regex.obj vc80/libboost_regex-vc80-mt-gd-1_37/regex_debug.obj vc80/libboost_regex-vc80-mt-gd-1_37/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-gd-1_37/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-gd-1_37/static_mutex.obj vc80/libboost_regex-vc80-mt-gd-1_37/usinstances.obj vc80/libboost_regex-vc80-mt-gd-1_37/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_37/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_37/wide_posix_api.obj vc80/libboost_regex-vc80-mt-gd-1_37/winstances.obj -./vc80/libboost_regex-vc80-mt-gd-1_35.lib : vc80/libboost_regex-vc80-mt-gd-1_35/c_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_35/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_35/cregex.obj vc80/libboost_regex-vc80-mt-gd-1_35/fileiter.obj vc80/libboost_regex-vc80-mt-gd-1_35/icu.obj vc80/libboost_regex-vc80-mt-gd-1_35/instances.obj vc80/libboost_regex-vc80-mt-gd-1_35/posix_api.obj vc80/libboost_regex-vc80-mt-gd-1_35/regex.obj vc80/libboost_regex-vc80-mt-gd-1_35/regex_debug.obj vc80/libboost_regex-vc80-mt-gd-1_35/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-gd-1_35/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-gd-1_35/static_mutex.obj vc80/libboost_regex-vc80-mt-gd-1_35/usinstances.obj vc80/libboost_regex-vc80-mt-gd-1_35/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_35/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_35/wide_posix_api.obj vc80/libboost_regex-vc80-mt-gd-1_35/winstances.obj - link -lib /nologo /out:vc80/libboost_regex-vc80-mt-gd-1_35.lib $(XSFLAGS) vc80/libboost_regex-vc80-mt-gd-1_35/c_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_35/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_35/cregex.obj vc80/libboost_regex-vc80-mt-gd-1_35/fileiter.obj vc80/libboost_regex-vc80-mt-gd-1_35/icu.obj vc80/libboost_regex-vc80-mt-gd-1_35/instances.obj vc80/libboost_regex-vc80-mt-gd-1_35/posix_api.obj vc80/libboost_regex-vc80-mt-gd-1_35/regex.obj vc80/libboost_regex-vc80-mt-gd-1_35/regex_debug.obj vc80/libboost_regex-vc80-mt-gd-1_35/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-gd-1_35/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-gd-1_35/static_mutex.obj vc80/libboost_regex-vc80-mt-gd-1_35/usinstances.obj vc80/libboost_regex-vc80-mt-gd-1_35/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_35/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_35/wide_posix_api.obj vc80/libboost_regex-vc80-mt-gd-1_35/winstances.obj diff --git a/build/vc9.mak b/build/vc9.mak new file mode 100644 index 00000000..b7bc83be --- /dev/null +++ b/build/vc9.mak @@ -0,0 +1,633 @@ +# 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 VC6 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=$(VS90COMNTOOLS)..\..\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-vc90-s-1_37_dir ./vc90/libboost_regex-vc90-s-1_37.lib libboost_regex-vc90-mt-s-1_37_dir ./vc90/libboost_regex-vc90-mt-s-1_37.lib libboost_regex-vc90-sgd-1_37_dir ./vc90/libboost_regex-vc90-sgd-1_37.lib libboost_regex-vc90-mt-sgd-1_37_dir ./vc90/libboost_regex-vc90-mt-sgd-1_37.lib boost_regex-vc90-mt-gd-1_37_dir ./vc90/boost_regex-vc90-mt-gd-1_37.lib boost_regex-vc90-mt-1_37_dir ./vc90/boost_regex-vc90-mt-1_37.lib libboost_regex-vc90-mt-1_37_dir ./vc90/libboost_regex-vc90-mt-1_37.lib libboost_regex-vc90-mt-gd-1_37_dir ./vc90/libboost_regex-vc90-mt-gd-1_37.lib + +clean : libboost_regex-vc90-s-1_37_clean libboost_regex-vc90-mt-s-1_37_clean libboost_regex-vc90-sgd-1_37_clean libboost_regex-vc90-mt-sgd-1_37_clean boost_regex-vc90-mt-gd-1_37_clean boost_regex-vc90-mt-1_37_clean libboost_regex-vc90-mt-1_37_clean libboost_regex-vc90-mt-gd-1_37_clean + +install : all + copy vc90\libboost_regex-vc90-s-1_37.lib "$(MSVCDIR)\lib" + copy vc90\libboost_regex-vc90-mt-s-1_37.lib "$(MSVCDIR)\lib" + copy vc90\libboost_regex-vc90-sgd-1_37.lib "$(MSVCDIR)\lib" + copy vc90\libboost_regex-vc90-sgd-1_37.pdb "$(MSVCDIR)\lib" + copy vc90\libboost_regex-vc90-mt-sgd-1_37.lib "$(MSVCDIR)\lib" + copy vc90\libboost_regex-vc90-mt-sgd-1_37.pdb "$(MSVCDIR)\lib" + copy vc90\boost_regex-vc90-mt-gd-1_37.lib "$(MSVCDIR)\lib" + copy vc90\boost_regex-vc90-mt-gd-1_37.dll "$(MSVCDIR)\bin" + copy vc90\boost_regex-vc90-mt-gd-1_37.pdb "$(MSVCDIR)\lib" + copy vc90\boost_regex-vc90-mt-1_37.lib "$(MSVCDIR)\lib" + copy vc90\boost_regex-vc90-mt-1_37.dll "$(MSVCDIR)\bin" + copy vc90\libboost_regex-vc90-mt-1_37.lib "$(MSVCDIR)\lib" + copy vc90\libboost_regex-vc90-mt-gd-1_37.lib "$(MSVCDIR)\lib" + copy vc90\libboost_regex-vc90-mt-gd-1_37.pdb "$(MSVCDIR)\lib" + +main_dir : + @if not exist "vc90\$(NULL)" mkdir vc90 + + +######################################################## +# +# section for libboost_regex-vc90-s-1_37.lib +# +######################################################## +vc90/libboost_regex-vc90-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-s-1_37.pdb ../src/c_regex_traits.cpp + +vc90/libboost_regex-vc90-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-s-1_37.pdb ../src/cpp_regex_traits.cpp + +vc90/libboost_regex-vc90-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-s-1_37.pdb ../src/cregex.cpp + +vc90/libboost_regex-vc90-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-s-1_37.pdb ../src/fileiter.cpp + +vc90/libboost_regex-vc90-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-s-1_37.pdb ../src/icu.cpp + +vc90/libboost_regex-vc90-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-s-1_37.pdb ../src/instances.cpp + +vc90/libboost_regex-vc90-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-s-1_37.pdb ../src/posix_api.cpp + +vc90/libboost_regex-vc90-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-s-1_37.pdb ../src/regex.cpp + +vc90/libboost_regex-vc90-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-s-1_37.pdb ../src/regex_debug.cpp + +vc90/libboost_regex-vc90-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-s-1_37.pdb ../src/regex_raw_buffer.cpp + +vc90/libboost_regex-vc90-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-s-1_37.pdb ../src/regex_traits_defaults.cpp + +vc90/libboost_regex-vc90-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-s-1_37.pdb ../src/static_mutex.cpp + +vc90/libboost_regex-vc90-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-s-1_37.pdb ../src/usinstances.cpp + +vc90/libboost_regex-vc90-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-s-1_37.pdb ../src/w32_regex_traits.cpp + +vc90/libboost_regex-vc90-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-s-1_37.pdb ../src/wc_regex_traits.cpp + +vc90/libboost_regex-vc90-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-s-1_37.pdb ../src/wide_posix_api.cpp + +vc90/libboost_regex-vc90-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-s-1_37.pdb ../src/winstances.cpp + +libboost_regex-vc90-s-1_37_dir : + @if not exist "vc90\libboost_regex-vc90-s-1_37\$(NULL)" mkdir vc90\libboost_regex-vc90-s-1_37 + +libboost_regex-vc90-s-1_37_clean : + del vc90\libboost_regex-vc90-s-1_37\*.obj + del vc90\libboost_regex-vc90-s-1_37\*.idb + del vc90\libboost_regex-vc90-s-1_37\*.exp + del vc90\libboost_regex-vc90-s-1_37\*.pch + +./vc90/libboost_regex-vc90-s-1_37.lib : vc90/libboost_regex-vc90-s-1_37/c_regex_traits.obj vc90/libboost_regex-vc90-s-1_37/cpp_regex_traits.obj vc90/libboost_regex-vc90-s-1_37/cregex.obj vc90/libboost_regex-vc90-s-1_37/fileiter.obj vc90/libboost_regex-vc90-s-1_37/icu.obj vc90/libboost_regex-vc90-s-1_37/instances.obj vc90/libboost_regex-vc90-s-1_37/posix_api.obj vc90/libboost_regex-vc90-s-1_37/regex.obj vc90/libboost_regex-vc90-s-1_37/regex_debug.obj vc90/libboost_regex-vc90-s-1_37/regex_raw_buffer.obj vc90/libboost_regex-vc90-s-1_37/regex_traits_defaults.obj vc90/libboost_regex-vc90-s-1_37/static_mutex.obj vc90/libboost_regex-vc90-s-1_37/usinstances.obj vc90/libboost_regex-vc90-s-1_37/w32_regex_traits.obj vc90/libboost_regex-vc90-s-1_37/wc_regex_traits.obj vc90/libboost_regex-vc90-s-1_37/wide_posix_api.obj vc90/libboost_regex-vc90-s-1_37/winstances.obj + link -lib /nologo /out:vc90/libboost_regex-vc90-s-1_37.lib $(XSFLAGS) vc90/libboost_regex-vc90-s-1_37/c_regex_traits.obj vc90/libboost_regex-vc90-s-1_37/cpp_regex_traits.obj vc90/libboost_regex-vc90-s-1_37/cregex.obj vc90/libboost_regex-vc90-s-1_37/fileiter.obj vc90/libboost_regex-vc90-s-1_37/icu.obj vc90/libboost_regex-vc90-s-1_37/instances.obj vc90/libboost_regex-vc90-s-1_37/posix_api.obj vc90/libboost_regex-vc90-s-1_37/regex.obj vc90/libboost_regex-vc90-s-1_37/regex_debug.obj vc90/libboost_regex-vc90-s-1_37/regex_raw_buffer.obj vc90/libboost_regex-vc90-s-1_37/regex_traits_defaults.obj vc90/libboost_regex-vc90-s-1_37/static_mutex.obj vc90/libboost_regex-vc90-s-1_37/usinstances.obj vc90/libboost_regex-vc90-s-1_37/w32_regex_traits.obj vc90/libboost_regex-vc90-s-1_37/wc_regex_traits.obj vc90/libboost_regex-vc90-s-1_37/wide_posix_api.obj vc90/libboost_regex-vc90-s-1_37/winstances.obj + +######################################################## +# +# section for libboost_regex-vc90-mt-s-1_37.lib +# +######################################################## +vc90/libboost_regex-vc90-mt-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-s-1_37.pdb ../src/c_regex_traits.cpp + +vc90/libboost_regex-vc90-mt-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-s-1_37.pdb ../src/cpp_regex_traits.cpp + +vc90/libboost_regex-vc90-mt-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-s-1_37.pdb ../src/cregex.cpp + +vc90/libboost_regex-vc90-mt-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-s-1_37.pdb ../src/fileiter.cpp + +vc90/libboost_regex-vc90-mt-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-s-1_37.pdb ../src/icu.cpp + +vc90/libboost_regex-vc90-mt-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-s-1_37.pdb ../src/instances.cpp + +vc90/libboost_regex-vc90-mt-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-s-1_37.pdb ../src/posix_api.cpp + +vc90/libboost_regex-vc90-mt-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-s-1_37.pdb ../src/regex.cpp + +vc90/libboost_regex-vc90-mt-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-s-1_37.pdb ../src/regex_debug.cpp + +vc90/libboost_regex-vc90-mt-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-s-1_37.pdb ../src/regex_raw_buffer.cpp + +vc90/libboost_regex-vc90-mt-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-s-1_37.pdb ../src/regex_traits_defaults.cpp + +vc90/libboost_regex-vc90-mt-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-s-1_37.pdb ../src/static_mutex.cpp + +vc90/libboost_regex-vc90-mt-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-s-1_37.pdb ../src/usinstances.cpp + +vc90/libboost_regex-vc90-mt-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-s-1_37.pdb ../src/w32_regex_traits.cpp + +vc90/libboost_regex-vc90-mt-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-s-1_37.pdb ../src/wc_regex_traits.cpp + +vc90/libboost_regex-vc90-mt-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-s-1_37.pdb ../src/wide_posix_api.cpp + +vc90/libboost_regex-vc90-mt-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-s-1_37.pdb ../src/winstances.cpp + +libboost_regex-vc90-mt-s-1_37_dir : + @if not exist "vc90\libboost_regex-vc90-mt-s-1_37\$(NULL)" mkdir vc90\libboost_regex-vc90-mt-s-1_37 + +libboost_regex-vc90-mt-s-1_37_clean : + del vc90\libboost_regex-vc90-mt-s-1_37\*.obj + del vc90\libboost_regex-vc90-mt-s-1_37\*.idb + del vc90\libboost_regex-vc90-mt-s-1_37\*.exp + del vc90\libboost_regex-vc90-mt-s-1_37\*.pch + +./vc90/libboost_regex-vc90-mt-s-1_37.lib : vc90/libboost_regex-vc90-mt-s-1_37/c_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_37/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_37/cregex.obj vc90/libboost_regex-vc90-mt-s-1_37/fileiter.obj vc90/libboost_regex-vc90-mt-s-1_37/icu.obj vc90/libboost_regex-vc90-mt-s-1_37/instances.obj vc90/libboost_regex-vc90-mt-s-1_37/posix_api.obj vc90/libboost_regex-vc90-mt-s-1_37/regex.obj vc90/libboost_regex-vc90-mt-s-1_37/regex_debug.obj vc90/libboost_regex-vc90-mt-s-1_37/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-s-1_37/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-s-1_37/static_mutex.obj vc90/libboost_regex-vc90-mt-s-1_37/usinstances.obj vc90/libboost_regex-vc90-mt-s-1_37/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_37/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_37/wide_posix_api.obj vc90/libboost_regex-vc90-mt-s-1_37/winstances.obj + link -lib /nologo /out:vc90/libboost_regex-vc90-mt-s-1_37.lib $(XSFLAGS) vc90/libboost_regex-vc90-mt-s-1_37/c_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_37/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_37/cregex.obj vc90/libboost_regex-vc90-mt-s-1_37/fileiter.obj vc90/libboost_regex-vc90-mt-s-1_37/icu.obj vc90/libboost_regex-vc90-mt-s-1_37/instances.obj vc90/libboost_regex-vc90-mt-s-1_37/posix_api.obj vc90/libboost_regex-vc90-mt-s-1_37/regex.obj vc90/libboost_regex-vc90-mt-s-1_37/regex_debug.obj vc90/libboost_regex-vc90-mt-s-1_37/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-s-1_37/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-s-1_37/static_mutex.obj vc90/libboost_regex-vc90-mt-s-1_37/usinstances.obj vc90/libboost_regex-vc90-mt-s-1_37/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_37/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_37/wide_posix_api.obj vc90/libboost_regex-vc90-mt-s-1_37/winstances.obj + +######################################################## +# +# section for libboost_regex-vc90-sgd-1_37.lib +# +######################################################## +vc90/libboost_regex-vc90-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-sgd-1_37.pdb ../src/c_regex_traits.cpp + +vc90/libboost_regex-vc90-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-sgd-1_37.pdb ../src/cpp_regex_traits.cpp + +vc90/libboost_regex-vc90-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-sgd-1_37.pdb ../src/cregex.cpp + +vc90/libboost_regex-vc90-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-sgd-1_37.pdb ../src/fileiter.cpp + +vc90/libboost_regex-vc90-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-sgd-1_37.pdb ../src/icu.cpp + +vc90/libboost_regex-vc90-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-sgd-1_37.pdb ../src/instances.cpp + +vc90/libboost_regex-vc90-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-sgd-1_37.pdb ../src/posix_api.cpp + +vc90/libboost_regex-vc90-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-sgd-1_37.pdb ../src/regex.cpp + +vc90/libboost_regex-vc90-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-sgd-1_37.pdb ../src/regex_debug.cpp + +vc90/libboost_regex-vc90-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-sgd-1_37.pdb ../src/regex_raw_buffer.cpp + +vc90/libboost_regex-vc90-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-sgd-1_37.pdb ../src/regex_traits_defaults.cpp + +vc90/libboost_regex-vc90-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-sgd-1_37.pdb ../src/static_mutex.cpp + +vc90/libboost_regex-vc90-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-sgd-1_37.pdb ../src/usinstances.cpp + +vc90/libboost_regex-vc90-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-sgd-1_37.pdb ../src/w32_regex_traits.cpp + +vc90/libboost_regex-vc90-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-sgd-1_37.pdb ../src/wc_regex_traits.cpp + +vc90/libboost_regex-vc90-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-sgd-1_37.pdb ../src/wide_posix_api.cpp + +vc90/libboost_regex-vc90-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-sgd-1_37.pdb ../src/winstances.cpp + +libboost_regex-vc90-sgd-1_37_dir : + @if not exist "vc90\libboost_regex-vc90-sgd-1_37\$(NULL)" mkdir vc90\libboost_regex-vc90-sgd-1_37 + +libboost_regex-vc90-sgd-1_37_clean : + del vc90\libboost_regex-vc90-sgd-1_37\*.obj + del vc90\libboost_regex-vc90-sgd-1_37\*.idb + del vc90\libboost_regex-vc90-sgd-1_37\*.exp + del vc90\libboost_regex-vc90-sgd-1_37\*.pch + +./vc90/libboost_regex-vc90-sgd-1_37.lib : vc90/libboost_regex-vc90-sgd-1_37/c_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_37/cpp_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_37/cregex.obj vc90/libboost_regex-vc90-sgd-1_37/fileiter.obj vc90/libboost_regex-vc90-sgd-1_37/icu.obj vc90/libboost_regex-vc90-sgd-1_37/instances.obj vc90/libboost_regex-vc90-sgd-1_37/posix_api.obj vc90/libboost_regex-vc90-sgd-1_37/regex.obj vc90/libboost_regex-vc90-sgd-1_37/regex_debug.obj vc90/libboost_regex-vc90-sgd-1_37/regex_raw_buffer.obj vc90/libboost_regex-vc90-sgd-1_37/regex_traits_defaults.obj vc90/libboost_regex-vc90-sgd-1_37/static_mutex.obj vc90/libboost_regex-vc90-sgd-1_37/usinstances.obj vc90/libboost_regex-vc90-sgd-1_37/w32_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_37/wc_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_37/wide_posix_api.obj vc90/libboost_regex-vc90-sgd-1_37/winstances.obj + link -lib /nologo /out:vc90/libboost_regex-vc90-sgd-1_37.lib $(XSFLAGS) vc90/libboost_regex-vc90-sgd-1_37/c_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_37/cpp_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_37/cregex.obj vc90/libboost_regex-vc90-sgd-1_37/fileiter.obj vc90/libboost_regex-vc90-sgd-1_37/icu.obj vc90/libboost_regex-vc90-sgd-1_37/instances.obj vc90/libboost_regex-vc90-sgd-1_37/posix_api.obj vc90/libboost_regex-vc90-sgd-1_37/regex.obj vc90/libboost_regex-vc90-sgd-1_37/regex_debug.obj vc90/libboost_regex-vc90-sgd-1_37/regex_raw_buffer.obj vc90/libboost_regex-vc90-sgd-1_37/regex_traits_defaults.obj vc90/libboost_regex-vc90-sgd-1_37/static_mutex.obj vc90/libboost_regex-vc90-sgd-1_37/usinstances.obj vc90/libboost_regex-vc90-sgd-1_37/w32_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_37/wc_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_37/wide_posix_api.obj vc90/libboost_regex-vc90-sgd-1_37/winstances.obj + +######################################################## +# +# section for libboost_regex-vc90-mt-sgd-1_37.lib +# +######################################################## +vc90/libboost_regex-vc90-mt-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_37.pdb ../src/c_regex_traits.cpp + +vc90/libboost_regex-vc90-mt-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_37.pdb ../src/cpp_regex_traits.cpp + +vc90/libboost_regex-vc90-mt-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_37.pdb ../src/cregex.cpp + +vc90/libboost_regex-vc90-mt-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_37.pdb ../src/fileiter.cpp + +vc90/libboost_regex-vc90-mt-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_37.pdb ../src/icu.cpp + +vc90/libboost_regex-vc90-mt-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_37.pdb ../src/instances.cpp + +vc90/libboost_regex-vc90-mt-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_37.pdb ../src/posix_api.cpp + +vc90/libboost_regex-vc90-mt-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_37.pdb ../src/regex.cpp + +vc90/libboost_regex-vc90-mt-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_37.pdb ../src/regex_debug.cpp + +vc90/libboost_regex-vc90-mt-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_37.pdb ../src/regex_raw_buffer.cpp + +vc90/libboost_regex-vc90-mt-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_37.pdb ../src/regex_traits_defaults.cpp + +vc90/libboost_regex-vc90-mt-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_37.pdb ../src/static_mutex.cpp + +vc90/libboost_regex-vc90-mt-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_37.pdb ../src/usinstances.cpp + +vc90/libboost_regex-vc90-mt-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_37.pdb ../src/w32_regex_traits.cpp + +vc90/libboost_regex-vc90-mt-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_37.pdb ../src/wc_regex_traits.cpp + +vc90/libboost_regex-vc90-mt-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_37.pdb ../src/wide_posix_api.cpp + +vc90/libboost_regex-vc90-mt-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_37.pdb ../src/winstances.cpp + +libboost_regex-vc90-mt-sgd-1_37_dir : + @if not exist "vc90\libboost_regex-vc90-mt-sgd-1_37\$(NULL)" mkdir vc90\libboost_regex-vc90-mt-sgd-1_37 + +libboost_regex-vc90-mt-sgd-1_37_clean : + del vc90\libboost_regex-vc90-mt-sgd-1_37\*.obj + del vc90\libboost_regex-vc90-mt-sgd-1_37\*.idb + del vc90\libboost_regex-vc90-mt-sgd-1_37\*.exp + del vc90\libboost_regex-vc90-mt-sgd-1_37\*.pch + +./vc90/libboost_regex-vc90-mt-sgd-1_37.lib : vc90/libboost_regex-vc90-mt-sgd-1_37/c_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_37/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_37/cregex.obj vc90/libboost_regex-vc90-mt-sgd-1_37/fileiter.obj vc90/libboost_regex-vc90-mt-sgd-1_37/icu.obj vc90/libboost_regex-vc90-mt-sgd-1_37/instances.obj vc90/libboost_regex-vc90-mt-sgd-1_37/posix_api.obj vc90/libboost_regex-vc90-mt-sgd-1_37/regex.obj vc90/libboost_regex-vc90-mt-sgd-1_37/regex_debug.obj vc90/libboost_regex-vc90-mt-sgd-1_37/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-sgd-1_37/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-sgd-1_37/static_mutex.obj vc90/libboost_regex-vc90-mt-sgd-1_37/usinstances.obj vc90/libboost_regex-vc90-mt-sgd-1_37/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_37/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_37/wide_posix_api.obj vc90/libboost_regex-vc90-mt-sgd-1_37/winstances.obj + link -lib /nologo /out:vc90/libboost_regex-vc90-mt-sgd-1_37.lib $(XSFLAGS) vc90/libboost_regex-vc90-mt-sgd-1_37/c_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_37/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_37/cregex.obj vc90/libboost_regex-vc90-mt-sgd-1_37/fileiter.obj vc90/libboost_regex-vc90-mt-sgd-1_37/icu.obj vc90/libboost_regex-vc90-mt-sgd-1_37/instances.obj vc90/libboost_regex-vc90-mt-sgd-1_37/posix_api.obj vc90/libboost_regex-vc90-mt-sgd-1_37/regex.obj vc90/libboost_regex-vc90-mt-sgd-1_37/regex_debug.obj vc90/libboost_regex-vc90-mt-sgd-1_37/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-sgd-1_37/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-sgd-1_37/static_mutex.obj vc90/libboost_regex-vc90-mt-sgd-1_37/usinstances.obj vc90/libboost_regex-vc90-mt-sgd-1_37/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_37/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_37/wide_posix_api.obj vc90/libboost_regex-vc90-mt-sgd-1_37/winstances.obj + +######################################################## +# +# section for boost_regex-vc90-mt-gd-1_37.lib +# +######################################################## +vc90/boost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-gd-1_37.pdb ../src/c_regex_traits.cpp + +vc90/boost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-gd-1_37.pdb ../src/cpp_regex_traits.cpp + +vc90/boost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-gd-1_37.pdb ../src/cregex.cpp + +vc90/boost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-gd-1_37.pdb ../src/fileiter.cpp + +vc90/boost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-gd-1_37.pdb ../src/icu.cpp + +vc90/boost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-gd-1_37.pdb ../src/instances.cpp + +vc90/boost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-gd-1_37.pdb ../src/posix_api.cpp + +vc90/boost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-gd-1_37.pdb ../src/regex.cpp + +vc90/boost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-gd-1_37.pdb ../src/regex_debug.cpp + +vc90/boost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-gd-1_37.pdb ../src/regex_raw_buffer.cpp + +vc90/boost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-gd-1_37.pdb ../src/regex_traits_defaults.cpp + +vc90/boost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-gd-1_37.pdb ../src/static_mutex.cpp + +vc90/boost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-gd-1_37.pdb ../src/usinstances.cpp + +vc90/boost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-gd-1_37.pdb ../src/w32_regex_traits.cpp + +vc90/boost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-gd-1_37.pdb ../src/wc_regex_traits.cpp + +vc90/boost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-gd-1_37.pdb ../src/wide_posix_api.cpp + +vc90/boost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-gd-1_37.pdb ../src/winstances.cpp + +boost_regex-vc90-mt-gd-1_37_dir : + @if not exist "vc90\boost_regex-vc90-mt-gd-1_37\$(NULL)" mkdir vc90\boost_regex-vc90-mt-gd-1_37 + +boost_regex-vc90-mt-gd-1_37_clean : + del vc90\boost_regex-vc90-mt-gd-1_37\*.obj + del vc90\boost_regex-vc90-mt-gd-1_37\*.idb + del vc90\boost_regex-vc90-mt-gd-1_37\*.exp + del vc90\boost_regex-vc90-mt-gd-1_37\*.pch + +./vc90/boost_regex-vc90-mt-gd-1_37.lib : vc90/boost_regex-vc90-mt-gd-1_37/c_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_37/cpp_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_37/cregex.obj vc90/boost_regex-vc90-mt-gd-1_37/fileiter.obj vc90/boost_regex-vc90-mt-gd-1_37/icu.obj vc90/boost_regex-vc90-mt-gd-1_37/instances.obj vc90/boost_regex-vc90-mt-gd-1_37/posix_api.obj vc90/boost_regex-vc90-mt-gd-1_37/regex.obj vc90/boost_regex-vc90-mt-gd-1_37/regex_debug.obj vc90/boost_regex-vc90-mt-gd-1_37/regex_raw_buffer.obj vc90/boost_regex-vc90-mt-gd-1_37/regex_traits_defaults.obj vc90/boost_regex-vc90-mt-gd-1_37/static_mutex.obj vc90/boost_regex-vc90-mt-gd-1_37/usinstances.obj vc90/boost_regex-vc90-mt-gd-1_37/w32_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_37/wc_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_37/wide_posix_api.obj vc90/boost_regex-vc90-mt-gd-1_37/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_37.pdb" /debug /machine:I386 /out:"vc90/boost_regex-vc90-mt-gd-1_37.dll" /implib:"vc90/boost_regex-vc90-mt-gd-1_37.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc90/boost_regex-vc90-mt-gd-1_37/c_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_37/cpp_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_37/cregex.obj vc90/boost_regex-vc90-mt-gd-1_37/fileiter.obj vc90/boost_regex-vc90-mt-gd-1_37/icu.obj vc90/boost_regex-vc90-mt-gd-1_37/instances.obj vc90/boost_regex-vc90-mt-gd-1_37/posix_api.obj vc90/boost_regex-vc90-mt-gd-1_37/regex.obj vc90/boost_regex-vc90-mt-gd-1_37/regex_debug.obj vc90/boost_regex-vc90-mt-gd-1_37/regex_raw_buffer.obj vc90/boost_regex-vc90-mt-gd-1_37/regex_traits_defaults.obj vc90/boost_regex-vc90-mt-gd-1_37/static_mutex.obj vc90/boost_regex-vc90-mt-gd-1_37/usinstances.obj vc90/boost_regex-vc90-mt-gd-1_37/w32_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_37/wc_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_37/wide_posix_api.obj vc90/boost_regex-vc90-mt-gd-1_37/winstances.obj + +######################################################## +# +# section for boost_regex-vc90-mt-1_37.lib +# +######################################################## +vc90/boost_regex-vc90-mt-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-1_37.pdb ../src/c_regex_traits.cpp + +vc90/boost_regex-vc90-mt-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-1_37.pdb ../src/cpp_regex_traits.cpp + +vc90/boost_regex-vc90-mt-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-1_37.pdb ../src/cregex.cpp + +vc90/boost_regex-vc90-mt-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-1_37.pdb ../src/fileiter.cpp + +vc90/boost_regex-vc90-mt-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-1_37.pdb ../src/icu.cpp + +vc90/boost_regex-vc90-mt-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-1_37.pdb ../src/instances.cpp + +vc90/boost_regex-vc90-mt-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-1_37.pdb ../src/posix_api.cpp + +vc90/boost_regex-vc90-mt-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-1_37.pdb ../src/regex.cpp + +vc90/boost_regex-vc90-mt-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-1_37.pdb ../src/regex_debug.cpp + +vc90/boost_regex-vc90-mt-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-1_37.pdb ../src/regex_raw_buffer.cpp + +vc90/boost_regex-vc90-mt-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-1_37.pdb ../src/regex_traits_defaults.cpp + +vc90/boost_regex-vc90-mt-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-1_37.pdb ../src/static_mutex.cpp + +vc90/boost_regex-vc90-mt-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-1_37.pdb ../src/usinstances.cpp + +vc90/boost_regex-vc90-mt-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-1_37.pdb ../src/w32_regex_traits.cpp + +vc90/boost_regex-vc90-mt-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-1_37.pdb ../src/wc_regex_traits.cpp + +vc90/boost_regex-vc90-mt-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-1_37.pdb ../src/wide_posix_api.cpp + +vc90/boost_regex-vc90-mt-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-1_37.pdb ../src/winstances.cpp + +boost_regex-vc90-mt-1_37_dir : + @if not exist "vc90\boost_regex-vc90-mt-1_37\$(NULL)" mkdir vc90\boost_regex-vc90-mt-1_37 + +boost_regex-vc90-mt-1_37_clean : + del vc90\boost_regex-vc90-mt-1_37\*.obj + del vc90\boost_regex-vc90-mt-1_37\*.idb + del vc90\boost_regex-vc90-mt-1_37\*.exp + del vc90\boost_regex-vc90-mt-1_37\*.pch + +./vc90/boost_regex-vc90-mt-1_37.lib : vc90/boost_regex-vc90-mt-1_37/c_regex_traits.obj vc90/boost_regex-vc90-mt-1_37/cpp_regex_traits.obj vc90/boost_regex-vc90-mt-1_37/cregex.obj vc90/boost_regex-vc90-mt-1_37/fileiter.obj vc90/boost_regex-vc90-mt-1_37/icu.obj vc90/boost_regex-vc90-mt-1_37/instances.obj vc90/boost_regex-vc90-mt-1_37/posix_api.obj vc90/boost_regex-vc90-mt-1_37/regex.obj vc90/boost_regex-vc90-mt-1_37/regex_debug.obj vc90/boost_regex-vc90-mt-1_37/regex_raw_buffer.obj vc90/boost_regex-vc90-mt-1_37/regex_traits_defaults.obj vc90/boost_regex-vc90-mt-1_37/static_mutex.obj vc90/boost_regex-vc90-mt-1_37/usinstances.obj vc90/boost_regex-vc90-mt-1_37/w32_regex_traits.obj vc90/boost_regex-vc90-mt-1_37/wc_regex_traits.obj vc90/boost_regex-vc90-mt-1_37/wide_posix_api.obj vc90/boost_regex-vc90-mt-1_37/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_37.pdb" /debug /machine:I386 /out:"vc90/boost_regex-vc90-mt-1_37.dll" /implib:"vc90/boost_regex-vc90-mt-1_37.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc90/boost_regex-vc90-mt-1_37/c_regex_traits.obj vc90/boost_regex-vc90-mt-1_37/cpp_regex_traits.obj vc90/boost_regex-vc90-mt-1_37/cregex.obj vc90/boost_regex-vc90-mt-1_37/fileiter.obj vc90/boost_regex-vc90-mt-1_37/icu.obj vc90/boost_regex-vc90-mt-1_37/instances.obj vc90/boost_regex-vc90-mt-1_37/posix_api.obj vc90/boost_regex-vc90-mt-1_37/regex.obj vc90/boost_regex-vc90-mt-1_37/regex_debug.obj vc90/boost_regex-vc90-mt-1_37/regex_raw_buffer.obj vc90/boost_regex-vc90-mt-1_37/regex_traits_defaults.obj vc90/boost_regex-vc90-mt-1_37/static_mutex.obj vc90/boost_regex-vc90-mt-1_37/usinstances.obj vc90/boost_regex-vc90-mt-1_37/w32_regex_traits.obj vc90/boost_regex-vc90-mt-1_37/wc_regex_traits.obj vc90/boost_regex-vc90-mt-1_37/wide_posix_api.obj vc90/boost_regex-vc90-mt-1_37/winstances.obj + +######################################################## +# +# section for libboost_regex-vc90-mt-1_37.lib +# +######################################################## +vc90/libboost_regex-vc90-mt-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-1_37.pdb ../src/c_regex_traits.cpp + +vc90/libboost_regex-vc90-mt-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-1_37.pdb ../src/cpp_regex_traits.cpp + +vc90/libboost_regex-vc90-mt-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-1_37.pdb ../src/cregex.cpp + +vc90/libboost_regex-vc90-mt-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-1_37.pdb ../src/fileiter.cpp + +vc90/libboost_regex-vc90-mt-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-1_37.pdb ../src/icu.cpp + +vc90/libboost_regex-vc90-mt-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-1_37.pdb ../src/instances.cpp + +vc90/libboost_regex-vc90-mt-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-1_37.pdb ../src/posix_api.cpp + +vc90/libboost_regex-vc90-mt-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-1_37.pdb ../src/regex.cpp + +vc90/libboost_regex-vc90-mt-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-1_37.pdb ../src/regex_debug.cpp + +vc90/libboost_regex-vc90-mt-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-1_37.pdb ../src/regex_raw_buffer.cpp + +vc90/libboost_regex-vc90-mt-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-1_37.pdb ../src/regex_traits_defaults.cpp + +vc90/libboost_regex-vc90-mt-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-1_37.pdb ../src/static_mutex.cpp + +vc90/libboost_regex-vc90-mt-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-1_37.pdb ../src/usinstances.cpp + +vc90/libboost_regex-vc90-mt-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-1_37.pdb ../src/w32_regex_traits.cpp + +vc90/libboost_regex-vc90-mt-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-1_37.pdb ../src/wc_regex_traits.cpp + +vc90/libboost_regex-vc90-mt-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-1_37.pdb ../src/wide_posix_api.cpp + +vc90/libboost_regex-vc90-mt-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-1_37.pdb ../src/winstances.cpp + +libboost_regex-vc90-mt-1_37_dir : + @if not exist "vc90\libboost_regex-vc90-mt-1_37\$(NULL)" mkdir vc90\libboost_regex-vc90-mt-1_37 + +libboost_regex-vc90-mt-1_37_clean : + del vc90\libboost_regex-vc90-mt-1_37\*.obj + del vc90\libboost_regex-vc90-mt-1_37\*.idb + del vc90\libboost_regex-vc90-mt-1_37\*.exp + del vc90\libboost_regex-vc90-mt-1_37\*.pch + +./vc90/libboost_regex-vc90-mt-1_37.lib : vc90/libboost_regex-vc90-mt-1_37/c_regex_traits.obj vc90/libboost_regex-vc90-mt-1_37/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-1_37/cregex.obj vc90/libboost_regex-vc90-mt-1_37/fileiter.obj vc90/libboost_regex-vc90-mt-1_37/icu.obj vc90/libboost_regex-vc90-mt-1_37/instances.obj vc90/libboost_regex-vc90-mt-1_37/posix_api.obj vc90/libboost_regex-vc90-mt-1_37/regex.obj vc90/libboost_regex-vc90-mt-1_37/regex_debug.obj vc90/libboost_regex-vc90-mt-1_37/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-1_37/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-1_37/static_mutex.obj vc90/libboost_regex-vc90-mt-1_37/usinstances.obj vc90/libboost_regex-vc90-mt-1_37/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-1_37/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-1_37/wide_posix_api.obj vc90/libboost_regex-vc90-mt-1_37/winstances.obj + link -lib /nologo /out:vc90/libboost_regex-vc90-mt-1_37.lib $(XSFLAGS) vc90/libboost_regex-vc90-mt-1_37/c_regex_traits.obj vc90/libboost_regex-vc90-mt-1_37/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-1_37/cregex.obj vc90/libboost_regex-vc90-mt-1_37/fileiter.obj vc90/libboost_regex-vc90-mt-1_37/icu.obj vc90/libboost_regex-vc90-mt-1_37/instances.obj vc90/libboost_regex-vc90-mt-1_37/posix_api.obj vc90/libboost_regex-vc90-mt-1_37/regex.obj vc90/libboost_regex-vc90-mt-1_37/regex_debug.obj vc90/libboost_regex-vc90-mt-1_37/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-1_37/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-1_37/static_mutex.obj vc90/libboost_regex-vc90-mt-1_37/usinstances.obj vc90/libboost_regex-vc90-mt-1_37/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-1_37/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-1_37/wide_posix_api.obj vc90/libboost_regex-vc90-mt-1_37/winstances.obj + +######################################################## +# +# section for libboost_regex-vc90-mt-gd-1_37.lib +# +######################################################## +vc90/libboost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-gd-1_37.pdb ../src/c_regex_traits.cpp + +vc90/libboost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-gd-1_37.pdb ../src/cpp_regex_traits.cpp + +vc90/libboost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-gd-1_37.pdb ../src/cregex.cpp + +vc90/libboost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-gd-1_37.pdb ../src/fileiter.cpp + +vc90/libboost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-gd-1_37.pdb ../src/icu.cpp + +vc90/libboost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-gd-1_37.pdb ../src/instances.cpp + +vc90/libboost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-gd-1_37.pdb ../src/posix_api.cpp + +vc90/libboost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-gd-1_37.pdb ../src/regex.cpp + +vc90/libboost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-gd-1_37.pdb ../src/regex_debug.cpp + +vc90/libboost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-gd-1_37.pdb ../src/regex_raw_buffer.cpp + +vc90/libboost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-gd-1_37.pdb ../src/regex_traits_defaults.cpp + +vc90/libboost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-gd-1_37.pdb ../src/static_mutex.cpp + +vc90/libboost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-gd-1_37.pdb ../src/usinstances.cpp + +vc90/libboost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-gd-1_37.pdb ../src/w32_regex_traits.cpp + +vc90/libboost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-gd-1_37.pdb ../src/wc_regex_traits.cpp + +vc90/libboost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-gd-1_37.pdb ../src/wide_posix_api.cpp + +vc90/libboost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-gd-1_37.pdb ../src/winstances.cpp + +libboost_regex-vc90-mt-gd-1_37_dir : + @if not exist "vc90\libboost_regex-vc90-mt-gd-1_37\$(NULL)" mkdir vc90\libboost_regex-vc90-mt-gd-1_37 + +libboost_regex-vc90-mt-gd-1_37_clean : + del vc90\libboost_regex-vc90-mt-gd-1_37\*.obj + del vc90\libboost_regex-vc90-mt-gd-1_37\*.idb + del vc90\libboost_regex-vc90-mt-gd-1_37\*.exp + del vc90\libboost_regex-vc90-mt-gd-1_37\*.pch + +./vc90/libboost_regex-vc90-mt-gd-1_37.lib : vc90/libboost_regex-vc90-mt-gd-1_37/c_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_37/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_37/cregex.obj vc90/libboost_regex-vc90-mt-gd-1_37/fileiter.obj vc90/libboost_regex-vc90-mt-gd-1_37/icu.obj vc90/libboost_regex-vc90-mt-gd-1_37/instances.obj vc90/libboost_regex-vc90-mt-gd-1_37/posix_api.obj vc90/libboost_regex-vc90-mt-gd-1_37/regex.obj vc90/libboost_regex-vc90-mt-gd-1_37/regex_debug.obj vc90/libboost_regex-vc90-mt-gd-1_37/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-gd-1_37/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-gd-1_37/static_mutex.obj vc90/libboost_regex-vc90-mt-gd-1_37/usinstances.obj vc90/libboost_regex-vc90-mt-gd-1_37/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_37/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_37/wide_posix_api.obj vc90/libboost_regex-vc90-mt-gd-1_37/winstances.obj + link -lib /nologo /out:vc90/libboost_regex-vc90-mt-gd-1_37.lib $(XSFLAGS) vc90/libboost_regex-vc90-mt-gd-1_37/c_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_37/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_37/cregex.obj vc90/libboost_regex-vc90-mt-gd-1_37/fileiter.obj vc90/libboost_regex-vc90-mt-gd-1_37/icu.obj vc90/libboost_regex-vc90-mt-gd-1_37/instances.obj vc90/libboost_regex-vc90-mt-gd-1_37/posix_api.obj vc90/libboost_regex-vc90-mt-gd-1_37/regex.obj vc90/libboost_regex-vc90-mt-gd-1_37/regex_debug.obj vc90/libboost_regex-vc90-mt-gd-1_37/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-gd-1_37/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-gd-1_37/static_mutex.obj vc90/libboost_regex-vc90-mt-gd-1_37/usinstances.obj vc90/libboost_regex-vc90-mt-gd-1_37/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_37/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_37/wide_posix_api.obj vc90/libboost_regex-vc90-mt-gd-1_37/winstances.obj + + diff --git a/build/vc_gen.sh b/build/vc_gen.sh index 2b3cb28a..73f5776c 100644 --- a/build/vc_gen.sh +++ b/build/vc_gen.sh @@ -184,11 +184,15 @@ function vc6_gen() if test ${subdir} = "vc80" ; then VC8_CHECK='MSVCDIR=$(VS80COMNTOOLS)..\..\VC' echo setting VC8 setup to: ${VC8_CHECK} - else + else if test ${subdir} = "vc71" ; then VC8_CHECK='MSVCDIR=$(VS71COMNTOOLS)..\..\VC7' echo setting VC71 setup to: ${VC8_CHECK} - fi + fi + if test ${subdir} = "vc90" ; then + VC8_CHECK='MSVCDIR=$(VS90COMNTOOLS)..\..\VC' + echo setting VC9 setup to: ${VC8_CHECK} + fi fi cat > $out << EOF @@ -468,6 +472,16 @@ out="vc8.mak" no_single="no" subdir="vc80" vc6_gen +# +# generate vc8 makefile: +EH_OPTS="/EHsc" +PROC_OPTS="" +debug_extra="$EH_OPTS" +is_stlport="no" +out="vc9.mak" +no_single="no" +subdir="vc90" +vc6_gen # @@ -490,3 +504,6 @@ rm -f $tout $iout + + + From fe24031566072541f72614510d257dd776adb013 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Thu, 23 Oct 2008 14:52:50 +0000 Subject: [PATCH 39/72] Fix typo in regex_replace docs. Regenerate docs. [SVN r49443] --- .../background_information/examples.html | 6 +- .../background_information/history.html | 10 +-- .../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 | 6 +- 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 | 84 +++++++++---------- doc/html/boost_regex/unicode.html | 4 +- doc/html/index.html | 4 +- doc/regex_replace.qbk | 2 +- 32 files changed, 185 insertions(+), 185 deletions(-) diff --git a/doc/html/boost_regex/background_information/examples.html b/doc/html/boost_regex/background_information/examples.html index 02183086..1f7c69f1 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 3240fd5b..ef4821de 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.34
    @@ -49,7 +49,7 @@
    - + Boost 1.33.1
    @@ -119,7 +119,7 @@
    - + Boost 1.33.0
    @@ -174,7 +174,7 @@
    - + Boost 1.32.1
    @@ -182,7 +182,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 0cb063c7..5bc84117 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 534755f3..11ba91d9 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 f306d7c4..447f5489 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 c733757b..13563591 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

    @@ -66,7 +66,7 @@ with "bar" otherwise.

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

    - + Escape Sequences
    diff --git a/doc/html/boost_regex/install.html b/doc/html/boost_regex/install.html index 46755547..bcb685bb 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 09e0dce2..252069b9 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 1a72c91a..2aae2876 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>
    @@ -243,7 +243,7 @@
     } // namespace boost
     
    - + Description

    @@ -326,7 +326,7 @@ basic_regex.

    -

    Table 1. basic_regex default construction postconditions

    +

    Table 1. basic_regex default construction postconditions

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

    -

    Table 2. Postconditions for basic_regex construction

    +

    Table 2. Postconditions for basic_regex construction

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

    -

    Table 3. Postconditions for basic_regex construction

    +

    Table 3. Postconditions for basic_regex construction

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

    -

    Table 4. Postconditions for basic_regex construction

    +

    Table 4. Postconditions for basic_regex construction

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

    -

    Table 5. Postconditions for basic_regex construction

    +

    Table 5. Postconditions for basic_regex construction

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

    -

    Table 6. Postconditions for basic_regex construction

    +

    Table 6. Postconditions for basic_regex construction

    @@ -1026,7 +1026,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 f7f2e58a..7aa5ca43 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 04d02660..7f4b0c24 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 f18f3fdb..9840fe39 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 f95d26d7..f020a69d 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 47f364d9..617cd4ce 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>
    @@ -142,7 +142,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 2a386b1d..257bfa7c 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 73ad7f29..e19d4610 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 3dc47f0c..b010c05e 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 794ea347..24d97c88 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 e2134095..846d2ae4 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 3bda19c5..6ed6c16d 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 e55dd632..7a0cb9de 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 c7d5dabe..fc09fb43 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 charT>
    @@ -163,7 +163,7 @@
             and then returns result.
           

    - + Examples

    @@ -238,7 +238,7 @@ } extern const char* pre_expression = "(<)|(>)|(&)|\\r"; -extern const char* pre_format = "(?1<)(?2>)(?3&amp;)"; +extern const char* pre_format = "(?1&lt;)(?2&gt;)(?3&amp;)"; const char* expression_text = diff --git a/doc/html/boost_regex/ref/regex_search.html b/doc/html/boost_regex/ref/regex_search.html index 10fc7836..48ed9b57 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 56b09721..b21f8df4 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 74b6511c..d51514b8 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 e2bbf19a..f153c515 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 b8490b92..48398b60 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 6a7bde4f..c9521955 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 cfe83674..2c1bf3b3 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

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

    - + Perl Regular Expression Syntax

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

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

    @@ -75,7 +75,7 @@

    - + Anchors

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

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

    - + Non-marking grouping
    @@ -111,7 +111,7 @@ out any separate sub-expressions.

    - + Repeats

    @@ -197,7 +197,7 @@ operator to be applied to.

    - + Non greedy repeats
    @@ -228,7 +228,7 @@ input as possible.

    - + Back references

    @@ -248,7 +248,7 @@

    aaabba
     
    - + Alternation

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

    - + Character sets

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

    - + Single characters

    @@ -298,7 +298,7 @@ or 'c'.

    - + Character ranges
    @@ -311,7 +311,7 @@ regular expression, then ranges are locale sensitive.

    - + Negation

    @@ -320,7 +320,7 @@ range a-c.

    - + Character classes
    @@ -330,7 +330,7 @@ character class names.

    - + Collating Elements
    @@ -354,7 +354,7 @@ character.

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

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

    - + Combinations

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

    - + Escapes

    @@ -584,7 +584,7 @@

    - + "Single character" character classes:
    @@ -738,7 +738,7 @@
    - + Character Properties
    @@ -846,7 +846,7 @@ matches any "digit" character, as does \p{digit}.

    - + Word Boundaries

    @@ -868,7 +868,7 @@ Matches only when not at a word boundary.

    - + Buffer boundaries

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

    - + Continuation Escape
    @@ -905,7 +905,7 @@ match to start where the last one ended.

    - + Quoting escape

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

    - + Unicode escapes

    @@ -929,7 +929,7 @@ combining characters.

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

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

    - + Comments

    @@ -956,7 +956,7 @@ are ignored.

    - + Modifiers

    @@ -971,7 +971,7 @@ applies the specified modifiers to pattern only.

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

    - + Lookahead

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

    - + Lookbehind

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

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

    - + Conditional Expressions
    @@ -1050,7 +1050,7 @@ sub-expression has been matched).

    - + Operator precedence
    @@ -1086,7 +1086,7 @@

    - + What gets matched

    @@ -1271,7 +1271,7 @@

    - + Variations

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

    - + Options

    @@ -1293,7 +1293,7 @@ sensitivity are to be applied.

    - + Pattern Modifiers

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

    - + References

    diff --git a/doc/html/boost_regex/unicode.html b/doc/html/boost_regex/unicode.html index 3b98caff..72e5dbb2 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 b95c821b..24529589 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 25, 2008 at 09:01:43 GMT

    Last revised: October 23, 2008 at 14:48:47 GMT


    diff --git a/doc/regex_replace.qbk b/doc/regex_replace.qbk index e87c0303..252397aa 100644 --- a/doc/regex_replace.qbk +++ b/doc/regex_replace.qbk @@ -190,7 +190,7 @@ syntax highlighted HTML code. } extern const char* pre_expression = "(<)|(>)|(&)|\\r"; - extern const char* pre_format = "(?1<)(?2>)(?3&)"; + extern const char* pre_format = "(?1<)(?2>)(?3&)"; const char* expression_text = From 85192b703d4909068d002c8baa0d7a008de22e32 Mon Sep 17 00:00:00 2001 From: "Michael A. Jackson" Date: Sat, 1 Nov 2008 13:15:41 +0000 Subject: [PATCH 40/72] Continuing merge of CMake build system files into trunk with the encouragement of Doug Gregor [SVN r49510] --- CMakeLists.txt | 25 ++++++++++++ module.cmake | 1 + src/CMakeLists.txt | 34 +++++++++++++++++ test/CMakeLists.txt | 92 +++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 152 insertions(+) create mode 100644 CMakeLists.txt create mode 100644 module.cmake create mode 100644 src/CMakeLists.txt create mode 100644 test/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 00000000..227c351f --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,25 @@ +#---------------------------------------------------------------------------- +# 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 new file mode 100644 index 00000000..161eea0e --- /dev/null +++ b/module.cmake @@ -0,0 +1 @@ +boost_module(regex DEPENDS date_time) \ No newline at end of file diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt new file mode 100644 index 00000000..be9383e1 --- /dev/null +++ b/src/CMakeLists.txt @@ -0,0 +1,34 @@ +# 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 new file mode 100644 index 00000000..b4931b95 --- /dev/null +++ b/test/CMakeLists.txt @@ -0,0 +1,92 @@ +# 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 330f23e84c2663f0b663e2383c1369d1874f5fcb Mon Sep 17 00:00:00 2001 From: "Michael A. Jackson" Date: Fri, 7 Nov 2008 17:02:56 +0000 Subject: [PATCH 41/72] Updating CMake files to latest trunk. Added dependency information for regression tests and a few new macros for internal use. [SVN r49627] --- test/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index b4931b95..3de3d9e3 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -1,3 +1,5 @@ +boost_additional_test_dependencies(regex BOOST_DEPENDS test) + # TODO: Default to multi-threaded? macro(regex_test TESTNAME) parse_arguments(REGEX_TEST "" "" ${ARGN}) From b650e44ff2e2910bf58746ee7381f4cf292714ea Mon Sep 17 00:00:00 2001 From: John Maddock Date: Fri, 14 Nov 2008 16:57:19 +0000 Subject: [PATCH 42/72] Fix for building with /Zc:wchar_t-. [SVN r49757] --- src/usinstances.cpp | 2 +- src/wc_regex_traits.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/usinstances.cpp b/src/usinstances.cpp index 3f9cc2f0..56653662 100644 --- a/src/usinstances.cpp +++ b/src/usinstances.cpp @@ -22,7 +22,7 @@ #include #include -#if defined(_DLL_CPPLIB) && !defined(_M_CEE_PURE) \ +#if defined(_DLL_CPPLIB) && !defined(_M_CEE_PURE) && defined(_NATIVE_WCHAR_T_DEFINED) \ && !(defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION) || defined(__STD_RWCOMPILER_H__) || defined(_RWSTD_VER)) // // This is a horrible workaround, but without declaring these symbols extern we get diff --git a/src/wc_regex_traits.cpp b/src/wc_regex_traits.cpp index d8038d1b..3640f292 100644 --- a/src/wc_regex_traits.cpp +++ b/src/wc_regex_traits.cpp @@ -23,7 +23,7 @@ #include #include -#if defined(_DLL_CPPLIB) && !defined(_M_CEE_PURE) \ +#if defined(_DLL_CPPLIB) && !defined(_M_CEE_PURE) && defined(_NATIVE_WCHAR_T_DEFINED) \ && !(defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION) || defined(__STD_RWCOMPILER_H__) || defined(_RWSTD_VER)) // // This is a horrible workaround, but without declaring these symbols extern we get From c997a1fcc692f22b4e8228c17bf6442c50dc2cd4 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Tue, 16 Dec 2008 10:13:24 +0000 Subject: [PATCH 43/72] msvc warning suppression. [SVN r50294] --- src/cregex.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/cregex.cpp b/src/cregex.cpp index 99d48a7b..fb12373a 100644 --- a/src/cregex.cpp +++ b/src/cregex.cpp @@ -28,6 +28,10 @@ typedef boost::match_flag_type match_flag_type; #include +#ifdef BOOST_MSVC +#pragma warning(disable:4309) +#endif + namespace boost{ #ifdef __BORLANDC__ @@ -641,3 +645,4 @@ basic_string::replace(wchar_t* f1, wchar_t* f2, const w + From b4152cd74d60046c358226719a7f0cad232f7499 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Tue, 23 Dec 2008 11:46:00 +0000 Subject: [PATCH 44/72] Fix gcc warnings from ICU wrappers. Add optional support for marked sub-expression location information. Add support for ${n} in format replacement text. Fixes #2556. Fixes #2269. Fixes #2514. [SVN r50370] --- doc/basic_regex.qbk | 13 + doc/format_perl_syntax.qbk | 1 + doc/history.qbk | 14 + .../boost_regex/background_information.html | 6 +- .../acknowledgements.html | 6 +- .../background_information/examples.html | 18 +- .../background_information/faq.html | 10 +- .../background_information/futher.html | 6 +- .../background_information/headers.html | 8 +- .../background_information/history.html | 45 ++- .../background_information/locale.html | 30 +- .../background_information/performance.html | 6 +- .../background_information/redist.html | 6 +- .../background_information/standards.html | 26 +- .../background_information/thread_safety.html | 24 +- doc/html/boost_regex/captures.html | 26 +- doc/html/boost_regex/configuration.html | 6 +- .../boost_regex/configuration/algorithm.html | 6 +- .../boost_regex/configuration/compiler.html | 6 +- .../boost_regex/configuration/linkage.html | 6 +- .../boost_regex/configuration/locale.html | 6 +- .../boost_regex/configuration/tuning.html | 6 +- doc/html/boost_regex/format.html | 12 +- .../format/boost_format_syntax.html | 22 +- doc/html/boost_regex/format/perl_format.html | 18 +- doc/html/boost_regex/format/sed_format.html | 6 +- doc/html/boost_regex/install.html | 38 +-- .../introduction_and_overview.html | 38 +-- doc/html/boost_regex/partial_matches.html | 18 +- doc/html/boost_regex/ref.html | 6 +- doc/html/boost_regex/ref/bad_expression.html | 14 +- doc/html/boost_regex/ref/basic_regex.html | 273 ++++++++++-------- doc/html/boost_regex/ref/concepts.html | 6 +- .../ref/concepts/charT_concept.html | 8 +- .../ref/concepts/iterator_concepts.html | 6 +- .../ref/concepts/traits_concept.html | 20 +- .../ref/deprecated_interfaces.html | 6 +- .../ref/deprecated_interfaces/old_regex.html | 54 ++-- .../deprecated_interfaces/regex_format.html | 18 +- .../ref/deprecated_interfaces/regex_grep.html | 10 +- .../deprecated_interfaces/regex_split.html | 14 +- doc/html/boost_regex/ref/error_type.html | 14 +- doc/html/boost_regex/ref/match_flag_type.html | 26 +- doc/html/boost_regex/ref/match_results.html | 86 +++--- doc/html/boost_regex/ref/non_std_strings.html | 6 +- .../boost_regex/ref/non_std_strings/icu.html | 6 +- .../ref/non_std_strings/icu/intro.html | 8 +- .../ref/non_std_strings/icu/unicode_algo.html | 26 +- .../ref/non_std_strings/icu/unicode_iter.html | 18 +- .../non_std_strings/icu/unicode_types.html | 6 +- .../ref/non_std_strings/mfc_strings.html | 6 +- .../non_std_strings/mfc_strings/mfc_algo.html | 36 +-- .../mfc_strings/mfc_intro.html | 6 +- .../non_std_strings/mfc_strings/mfc_iter.html | 16 +- .../mfc_strings/mfc_regex_create.html | 6 +- .../mfc_strings/mfc_regex_types.html | 6 +- doc/html/boost_regex/ref/posix.html | 22 +- doc/html/boost_regex/ref/regex_iterator.html | 62 ++-- doc/html/boost_regex/ref/regex_match.html | 22 +- doc/html/boost_regex/ref/regex_replace.html | 24 +- doc/html/boost_regex/ref/regex_search.html | 16 +- .../boost_regex/ref/regex_token_iterator.html | 74 ++--- doc/html/boost_regex/ref/regex_traits.html | 12 +- doc/html/boost_regex/ref/sub_match.html | 172 +++++------ .../boost_regex/ref/syntax_option_type.html | 6 +- .../syntax_option_type_basic.html | 40 ++- .../syntax_option_type_extended.html | 38 ++- .../syntax_option_type_literal.html | 6 +- .../syntax_option_type_overview.html | 12 +- .../syntax_option_type_perl.html | 32 +- .../syntax_option_type_synopsis.html | 37 ++- doc/html/boost_regex/syntax.html | 12 +- .../boost_regex/syntax/basic_extended.html | 160 +++++----- doc/html/boost_regex/syntax/basic_syntax.html | 120 ++++---- .../boost_regex/syntax/character_classes.html | 6 +- .../optional_char_class_names.html | 6 +- .../character_classes/std_char_clases.html | 6 +- .../boost_regex/syntax/collating_names.html | 6 +- .../syntax/collating_names/digraphs.html | 6 +- .../syntax/collating_names/named_unicode.html | 8 +- .../collating_names/posix_symbolic_names.html | 6 +- .../syntax/leftmost_longest_rule.html | 6 +- doc/html/boost_regex/syntax/perl_syntax.html | 200 ++++++------- doc/html/boost_regex/unicode.html | 18 +- doc/html/index.html | 8 +- doc/syntax_option_type.qbk | 36 ++- include/boost/regex/v4/basic_regex.hpp | 19 +- include/boost/regex/v4/basic_regex_parser.hpp | 6 + include/boost/regex/v4/perl_matcher.hpp | 8 +- include/boost/regex/v4/regbase.hpp | 2 + include/boost/regex/v4/regex_format.hpp | 12 +- .../regex/v4/u32regex_token_iterator.hpp | 4 +- test/regress/test_regex_search.hpp | 32 ++ test/regress/test_replace.cpp | 10 + 94 files changed, 1344 insertions(+), 1068 deletions(-) diff --git a/doc/basic_regex.qbk b/doc/basic_regex.qbk index 2aa1aae4..449cd4a7 100644 --- a/doc/basic_regex.qbk +++ b/doc/basic_regex.qbk @@ -138,6 +138,7 @@ The definition of `basic_regex` follows: it is based very closely on class template ``[link boost_regex.basic_regex.opeq3 basic_regex& operator=]`` (const basic_string& p); // iterators: + ``[link boost_regex.basic_regex.subexpression std::pair subexpression]``(size_type n) const; ``[link boost_regex.basic_regex.begin const_iterator begin]``() const; ``[link boost_regex.basic_regex.end const_iterator end]``() const; // capacity: @@ -436,6 +437,18 @@ according to the [link boost_regex.ref.syntax_option_type option flags] specifie [*Effects]: Returns the result of `assign(p)`. +[#boost_regex.basic_regex.subexpression] + + std::pair subexpression(size_type n) const; + +[*Effects]: Returns a pair of iterators denoting the location of +marked subexpression /n/ within the original regular expression string. +The returned iterators are relative to `begin()` and `end()`. + +[*Requires]: The expression must have been compiled with the +[syntax_option_type] save_subexpression_location set. Argument +/n/ must be in within the range `1 <= n < mark_count()`. + [#boost_regex.basic_regex.begin] const_iterator begin() const; diff --git a/doc/format_perl_syntax.qbk b/doc/format_perl_syntax.qbk index 35bd9f45..cfd57500 100644 --- a/doc/format_perl_syntax.qbk +++ b/doc/format_perl_syntax.qbk @@ -23,6 +23,7 @@ should be sent to output as follows: [[$'][Outputs all the text following the end of the current match.]] [[$$][Outputs a literal '$']] [[$n][Outputs what matched the n'th sub-expression.]] +[[${n}][Outputs what matched the n'th sub-expression.]] ] Any $-placeholder sequence not listed above, results in '$' being treated diff --git a/doc/history.qbk b/doc/history.qbk index fea29663..9dbbcf4d 100644 --- a/doc/history.qbk +++ b/doc/history.qbk @@ -8,6 +8,20 @@ [section:history History] +[h4 Boost 1.38] + +* Added support for Perl style ${n} expressions in format strings +(issue [@https://svn.boost.org/trac/boost/ticket/2556 #2556]). +* Added support for accessing the location of sub-expressions within the +regular expression string +(issue [@https://svn.boost.org/trac/boost/ticket/2269 #2269]). +* Fixed compiler compatibility issues +[@https://svn.boost.org/trac/boost/ticket/2244 #2244], +[@https://svn.boost.org/trac/boost/ticket/2514 #2514], +and +[@https://svn.boost.org/trac/boost/ticket/2244 #2458]. + + [h4 Boost 1.34] * Fix for non-greedy repeats and partial matches not working correctly in some cases. diff --git a/doc/html/boost_regex/background_information.html b/doc/html/boost_regex/background_information.html index 8296530b..db5c0165 100644 --- a/doc/html/boost_regex/background_information.html +++ b/doc/html/boost_regex/background_information.html @@ -3,8 +3,8 @@ Background Information - - + + @@ -24,7 +24,7 @@
    Headers
    diff --git a/doc/html/boost_regex/background_information/acknowledgements.html b/doc/html/boost_regex/background_information/acknowledgements.html index b7b23fdf..71f5252f 100644 --- a/doc/html/boost_regex/background_information/acknowledgements.html +++ b/doc/html/boost_regex/background_information/acknowledgements.html @@ -3,8 +3,8 @@ Acknowledgements - - + + @@ -24,7 +24,7 @@

    diff --git a/doc/html/boost_regex/background_information/examples.html b/doc/html/boost_regex/background_information/examples.html index 1f7c69f1..6b7f8b55 100644 --- a/doc/html/boost_regex/background_information/examples.html +++ b/doc/html/boost_regex/background_information/examples.html @@ -3,8 +3,8 @@ Test and Example Programs - - + + @@ -24,12 +24,12 @@

    - - Test + + Test Programs

    @@ -107,8 +107,8 @@ Files: captures_test.cpp.

    - - Example + + Example programs

    @@ -133,8 +133,8 @@ Files: regex_timer.cpp.

    - - Code + + Code snippets

    diff --git a/doc/html/boost_regex/background_information/faq.html b/doc/html/boost_regex/background_information/faq.html index 46e9d6bd..950b9eac 100644 --- a/doc/html/boost_regex/background_information/faq.html +++ b/doc/html/boost_regex/background_information/faq.html @@ -3,8 +3,8 @@ FAQ - - + + @@ -24,7 +24,7 @@

    Q. I can't get regex++ to work with escape @@ -115,10 +115,10 @@ throw specifications, others support them but with reduced efficiency. Throw specifications may be added at a later date as compilers begin to handle this better. The library should throw only three types of exception: [boost::regex_error] - can be thrown by basic_regex when compiling a regular + can be thrown by basic_regex when compiling a regular expression, std::runtime_error can be thrown when a call to basic_regex::imbue tries to open a message catalogue - that doesn't exist, or when a call to regex_search or regex_match results in an "everlasting" + that doesn't exist, or when a call to regex_search or regex_match results in an "everlasting" search, or when a call to RegEx::GrepFiles or RegEx::FindFiles tries to open a file that cannot be opened, finally std::bad_alloc can be thrown by just about any diff --git a/doc/html/boost_regex/background_information/futher.html b/doc/html/boost_regex/background_information/futher.html index d0347100..d058b19f 100644 --- a/doc/html/boost_regex/background_information/futher.html +++ b/doc/html/boost_regex/background_information/futher.html @@ -3,8 +3,8 @@ References and Further Information - - + + @@ -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 829efed8..e5a9a7c4 100644 --- a/doc/html/boost_regex/background_information/headers.html +++ b/doc/html/boost_regex/background_information/headers.html @@ -3,8 +3,8 @@ Headers - - + + @@ -24,7 +24,7 @@

    There are two main headers used by this library: <boost/regex.hpp> @@ -34,7 +34,7 @@

    There is also a header containing only forward declarations <boost/regex_fwd.hpp> - for use when an interface is dependent upon basic_regex, but otherwise does + for use when an interface is dependent upon basic_regex, but otherwise does not need the full definitions.

    diff --git a/doc/html/boost_regex/background_information/history.html b/doc/html/boost_regex/background_information/history.html index ef4821de..cffee7a8 100644 --- a/doc/html/boost_regex/background_information/history.html +++ b/doc/html/boost_regex/background_information/history.html @@ -3,8 +3,8 @@ History - - + + @@ -23,11 +23,30 @@
    +
    + + Boost + 1.38 +
    +
      +
    • + 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 + and #2458. +
    • +
    - - Boost + + Boost 1.34
      @@ -49,8 +68,8 @@
    - - Boost + + Boost 1.33.1
      @@ -119,8 +138,8 @@
    - - Boost + + Boost 1.33.0
      @@ -174,16 +193,16 @@
    - - Boost + + Boost 1.32.1
    • Fixed bug in partial matches of bounded repeats of '.'.
    - - Boost + + 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 5bc84117..267d99d7 100644 --- a/doc/html/boost_regex/background_information/locale.html +++ b/doc/html/boost_regex/background_information/locale.html @@ -3,8 +3,8 @@ Localization - - + + @@ -24,7 +24,7 @@

    Boost.Regex provides extensive support for run-time localization, the localization @@ -58,14 +58,14 @@ There are three separate localization mechanisms supported by Boost.Regex:

    - - Win32 + + Win32 localization model.

    This is the default model when the library is compiled under Win32, and is encapsulated by the traits class w32_regex_traits. - When this model is in effect each basic_regex object gets it's own + When this model is in effect each basic_regex object gets it's own LCID, by default this is the users default setting as returned by GetUserDefaultLCID, but you can call imbue on the basic_regex object to set it's locale to some other LCID if you wish. All the settings @@ -90,8 +90,8 @@ are treated as "unknown" graphic characters.

    - - C + + C localization model.

    @@ -114,16 +114,16 @@ libraries including version 1 of this library.

    - - C++ + + C++ localization model.

    This model is the default for non-Windows compilers.

    - When this model is in effect each instance of basic_regex has its own instance - of std::locale, class basic_regex also has a member function + When this model is in effect each instance of basic_regex has its own instance + of std::locale, class basic_regex also has a member function imbue which allows the locale for the expression to be set on a per-instance basis. Front end localization requires a POSIX message catalogue, which will be loaded via the std::messages @@ -140,7 +140,7 @@

    Note that calling basic_regex<>::imbue - will invalidate any expression currently compiled in that instance of basic_regex. + will invalidate any expression currently compiled in that instance of basic_regex.

    Finally note that if you build the library with a non-default localization @@ -151,8 +151,8 @@ in your code. The best way to ensure this is to add the #define to <boost/regex/user.hpp>.

    - - Providing + + 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 b6fac183..f25106fc 100644 --- a/doc/html/boost_regex/background_information/performance.html +++ b/doc/html/boost_regex/background_information/performance.html @@ -3,8 +3,8 @@ Performance - - + + @@ -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 72258f79..73c05a0a 100644 --- a/doc/html/boost_regex/background_information/redist.html +++ b/doc/html/boost_regex/background_information/redist.html @@ -3,8 +3,8 @@ Redistributables - - + + @@ -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 11ba91d9..60650ef6 100644 --- a/doc/html/boost_regex/background_information/standards.html +++ b/doc/html/boost_regex/background_information/standards.html @@ -3,8 +3,8 @@ Standards Conformance - - + + @@ -24,20 +24,20 @@

    - - C++ + + C++

    Boost.Regex is intended to conform to the Technical Report on C++ Library Extensions.

    - - ECMAScript + + ECMAScript / JavaScript

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

    - - Perl + + Perl

    Almost all Perl features are supported, except for: @@ -62,8 +62,8 @@ (??{code}) Not implementable in a compiled strongly typed language.

    - - POSIX + + POSIX

    All the POSIX basic and extended regular expression features are supported, @@ -82,8 +82,8 @@ a custom traits class.

    - - Unicode + + Unicode

    The following comments refer to Unicode diff --git a/doc/html/boost_regex/background_information/thread_safety.html b/doc/html/boost_regex/background_information/thread_safety.html index dc167483..eac436ac 100644 --- a/doc/html/boost_regex/background_information/thread_safety.html +++ b/doc/html/boost_regex/background_information/thread_safety.html @@ -3,8 +3,8 @@ Thread Safety - - + + @@ -24,7 +24,7 @@

    @@ -34,26 +34,26 @@ support is turned on in your compiler.

    - Class basic_regex + Class basic_regex and its typedefs regex and wregex are thread safe, in that compiled regular expressions can safely be shared between threads. The matching algorithms - regex_match, - regex_search, - and regex_replace - are all re-entrant and thread safe. Class match_results is now thread safe, + regex_match, + regex_search, + and regex_replace + are all re-entrant and thread safe. Class match_results is now thread safe, in that the results of a match can be safely copied from one thread to another - (for example one thread may find matches and push match_results instances onto a queue, + (for example one thread may find matches and push match_results instances onto a queue, while another thread pops them off the other end), otherwise use a separate - instance of match_results + instance of match_results per thread.

    - The POSIX API functions are + The POSIX API functions are all re-entrant and thread safe, regular expressions compiled with regcomp can also be shared between threads.

    - The class + The class RegEx is only thread safe if each thread gets its own RegEx instance (apartment threading) - this is a consequence of RegEx handling both compiling and matching regular expressions. diff --git a/doc/html/boost_regex/captures.html b/doc/html/boost_regex/captures.html index 447f5489..7497c1c6 100644 --- a/doc/html/boost_regex/captures.html +++ b/doc/html/boost_regex/captures.html @@ -3,8 +3,8 @@ Understanding Marked Sub-Expressions and Captures - - + + @@ -24,7 +24,7 @@

    @@ -35,8 +35,8 @@ accessed.

    - - Marked sub-expressions + + Marked sub-expressions

    Every time a Perl regular expression contains a parenthesis group (), it spits out an extra field, known as a @@ -131,8 +131,8 @@

    - In Boost.Regex all these are accessible via the match_results class that gets filled - in when calling one of the regular expression matching algorithms ( regex_search, regex_match, or regex_iterator). So given: + In Boost.Regex all these are accessible via the match_results class that gets filled + in when calling one of the regular expression matching algorithms ( regex_search, regex_match, or regex_iterator). So given:

    boost::match_results<IteratorType> m;
     
    @@ -208,18 +208,18 @@

    - In Boost.Regex each sub-expression match is represented by a sub_match object, this is basically + In Boost.Regex each sub-expression match is represented by a sub_match object, this is basically just a pair of iterators denoting the start and end position of the sub-expression match, but there are some additional operators provided so that objects of - type sub_match + type sub_match behave a lot like a std::basic_string: for example they are implicitly convertible to a basic_string, they can be compared to a string, added to a string, or streamed out to an output stream.

    - - Unmatched Sub-Expressions + + Unmatched Sub-Expressions

    When a regular expression match is found there is no need for all of the marked @@ -231,8 +231,8 @@ you can determine which sub-expressions matched by accessing the sub_match::matched data member.

    - - Repeated Captures + + Repeated Captures

    When a marked sub-expression is repeated, then the sub-expression gets "captured" diff --git a/doc/html/boost_regex/configuration.html b/doc/html/boost_regex/configuration.html index bc93d094..4489bc41 100644 --- a/doc/html/boost_regex/configuration.html +++ b/doc/html/boost_regex/configuration.html @@ -3,8 +3,8 @@ Configuration - - + + @@ -24,7 +24,7 @@

    Compiler Setup
    diff --git a/doc/html/boost_regex/configuration/algorithm.html b/doc/html/boost_regex/configuration/algorithm.html index 395fcfbf..e68aee41 100644 --- a/doc/html/boost_regex/configuration/algorithm.html +++ b/doc/html/boost_regex/configuration/algorithm.html @@ -3,8 +3,8 @@ Algorithm Selection - - + + @@ -24,7 +24,7 @@
    diff --git a/doc/html/boost_regex/configuration/compiler.html b/doc/html/boost_regex/configuration/compiler.html index e423ab16..752d0c27 100644 --- a/doc/html/boost_regex/configuration/compiler.html +++ b/doc/html/boost_regex/configuration/compiler.html @@ -3,8 +3,8 @@ Compiler Setup - - + + @@ -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 6b21f7ff..a7fa14b8 100644 --- a/doc/html/boost_regex/configuration/linkage.html +++ b/doc/html/boost_regex/configuration/linkage.html @@ -3,8 +3,8 @@ Linkage Options - - + + @@ -24,7 +24,7 @@

    diff --git a/doc/html/boost_regex/configuration/locale.html b/doc/html/boost_regex/configuration/locale.html index a5f3c041..dc93af47 100644 --- a/doc/html/boost_regex/configuration/locale.html +++ b/doc/html/boost_regex/configuration/locale.html @@ -3,8 +3,8 @@ Locale and traits class selection - - + + @@ -24,7 +24,7 @@

    diff --git a/doc/html/boost_regex/configuration/tuning.html b/doc/html/boost_regex/configuration/tuning.html index c88cc880..5884cca5 100644 --- a/doc/html/boost_regex/configuration/tuning.html +++ b/doc/html/boost_regex/configuration/tuning.html @@ -3,8 +3,8 @@ Algorithm Tuning - - + + @@ -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 832b6a0f..bbd5faae 100644 --- a/doc/html/boost_regex/format.html +++ b/doc/html/boost_regex/format.html @@ -3,8 +3,8 @@ Search and Replace Format String Syntax - - + + @@ -24,7 +24,7 @@

    Sed Format String Syntax
    @@ -33,12 +33,12 @@ Format String Syntax

    - Format strings are used by the algorithm regex_replace and by match_results<>::format, and are used to transform + Format strings are used by the algorithm regex_replace and by match_results<>::format, and are used to transform one string into another.

    - There are three kind of format string: Sed, - Perl and Boost-Extended. + There are three kind of format string: Sed, + Perl and Boost-Extended.

    Alternatively, when the flag format_literal diff --git a/doc/html/boost_regex/format/boost_format_syntax.html b/doc/html/boost_regex/format/boost_format_syntax.html index 13563591..63159fc3 100644 --- a/doc/html/boost_regex/format/boost_format_syntax.html +++ b/doc/html/boost_regex/format/boost_format_syntax.html @@ -3,8 +3,8 @@ Boost-Extended Format String Syntax - - + + @@ -24,7 +24,7 @@

    @@ -32,16 +32,16 @@ '$', '\', '(', ')', '?', and ':'.

    - - Grouping + + Grouping

    The characters '(' and ')' perform lexical grouping, so use \( and \) if you want a to output literal parenthesis.

    - - Conditionals + + Conditionals

    The character '?' begins a conditional expression, the general form is: @@ -66,8 +66,8 @@ with "bar" otherwise.

    - - Placeholder + + Placeholder Sequences

    @@ -161,8 +161,8 @@ as a literal.

    - - Escape + + Escape Sequences

    diff --git a/doc/html/boost_regex/format/perl_format.html b/doc/html/boost_regex/format/perl_format.html index 44ed90f5..3764ed34 100644 --- a/doc/html/boost_regex/format/perl_format.html +++ b/doc/html/boost_regex/format/perl_format.html @@ -3,8 +3,8 @@ Perl Format String Syntax - - + + @@ -24,7 +24,7 @@

    Perl-style format strings treat all characters as literals except '$' and @@ -114,6 +114,18 @@

    +
    + + +
    +

    + ${n} +

    +
    +

    + Outputs what matched the n'th sub-expression. +

    +

    diff --git a/doc/html/boost_regex/format/sed_format.html b/doc/html/boost_regex/format/sed_format.html index d617a7a7..cb806f6b 100644 --- a/doc/html/boost_regex/format/sed_format.html +++ b/doc/html/boost_regex/format/sed_format.html @@ -3,8 +3,8 @@ Sed Format String Syntax - - + + @@ -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 bcb685bb..d325791c 100644 --- a/doc/html/boost_regex/install.html +++ b/doc/html/boost_regex/install.html @@ -3,8 +3,8 @@ Building and Installing the Library - - + + @@ -24,7 +24,7 @@

    When you extract the library from its zip file, you must preserve its internal @@ -49,8 +49,8 @@ file before you can use it, instructions for specific platforms are as follows:

    - - Building with bjam + + Building with bjam

    This is now the preferred method for building and installing this library, @@ -58,8 +58,8 @@ started guide for more information.

    - - Building + + Building With Unicode and ICU Support

    @@ -96,12 +96,12 @@ ICU you are using is binary compatible with the toolset you use to build Boost.

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

    You can build with gcc using the normal boost Jamfile in <boost>/libs/regex/build, alternatively @@ -302,8 +302,8 @@ see the config library documentation.

    - - Sun Workshop 6.1 + + Sun Workshop 6.1

    There is a makefile for the sun (6.1) compiler (C++ version 3.12). From the @@ -347,8 +347,8 @@ will build v9 variants of the regex library named libboost_regex_v9.a etc.

    - - Makefiles + + 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 de04044d..4ca4583c 100644 --- a/doc/html/boost_regex/introduction_and_overview.html +++ b/doc/html/boost_regex/introduction_and_overview.html @@ -3,8 +3,8 @@ Introduction and Overview - - + + @@ -24,7 +24,7 @@

    @@ -39,7 +39,7 @@ libraries can not do.

    - The class basic_regex + The class basic_regex is the key class in this library; it represents a "machine readable" regular expression, and is very closely modeled on std::basic_string, think of it as a string plus the actual state-machine required by the regular @@ -110,7 +110,7 @@ the utilities sed and Perl will already be ahead here; we need two strings - one a regular expression - the other a "format string" that provides a description of the text to replace the match with. In Boost.Regex this search - and replace operation is performed with the algorithm regex_replace, for our credit card + and replace operation is performed with the algorithm regex_replace, for our credit card example we can write two algorithms like this to provide the format conversions:

    // match any format with the regular expression:
    @@ -138,7 +138,7 @@
           expression match, however in general the result of a match contains a number
           of sub-expression matches in addition to the overall match. When the library
           needs to report a regular expression match it does so using an instance of
    -      the class match_results,
    +      the class match_results,
           as before there are typedefs of this class for the most common cases:
         

    namespace boost{
    @@ -151,12 +151,12 @@
     }
     

    - The algorithms regex_search - and regex_match - make use of match_results - to report what matched; the difference between these algorithms is that regex_match + The algorithms regex_search + and regex_match + make use of match_results + to report what matched; the difference between these algorithms is that regex_match will only find matches that consume all of the input text, - where as regex_search + where as regex_search will search for a match anywhere within the text being matched.

    @@ -165,21 +165,21 @@ of seamlessly searching almost any kind of data.

    - For search and replace operations, in addition to the algorithm regex_replace that we have already - seen, the match_results + For search and replace operations, in addition to the algorithm regex_replace that we have already + seen, the match_results class has a format member that takes the result of a match and a format string, and produces a new string by merging the two.

    For iterating through all occurences of an expression within a text, there - are two iterator types: regex_iterator will enumerate over - the match_results - objects found, while regex_token_iterator will enumerate + are two iterator types: regex_iterator will enumerate over + the match_results + objects found, while regex_token_iterator will enumerate a series of strings (similar to perl style split operations).

    - For those that dislike templates, there is a high level wrapper class RegEx + For those that dislike templates, there is a high level wrapper class RegEx that is an encapsulation of the lower level template code - it provides a simplified interface for those that don't need the full power of the library, and supports only narrow characters, and the "extended" regular expression syntax. @@ -187,12 +187,12 @@ C++ standard library proposal.

    - The POSIX API functions: regcomp, regexec, regfree and [regerr], are available + The POSIX API functions: regcomp, regexec, regfree and [regerr], are available in both narrow character and Unicode versions, and are provided for those who need compatibility with these API's.

    - Finally, note that the library now has run-time + Finally, note that the library now has run-time localization support, and recognizes the full POSIX regular expression syntax - including advanced features like multi-character collating elements and equivalence classes - as well as providing compatibility with other regular diff --git a/doc/html/boost_regex/partial_matches.html b/doc/html/boost_regex/partial_matches.html index ff764a69..d47cb538 100644 --- a/doc/html/boost_regex/partial_matches.html +++ b/doc/html/boost_regex/partial_matches.html @@ -3,8 +3,8 @@ Partial Matches - - + + @@ -24,13 +24,13 @@

    - The match_flag_type + The match_flag_type match_partial can be passed - to the following algorithms: regex_match, regex_search, and regex_grep, and used with the iterator - regex_iterator. + to the following algorithms: regex_match, regex_search, and regex_grep, and used with the iterator + regex_iterator. When used it indicates that partial as well as full matches should be found. A partial match is one that matched one or more characters at the end of the text input, but did not match all of the regular expression (although it may @@ -40,9 +40,9 @@ into memory (or even into a memory mapped file), or are of indeterminate length (for example the source may be a socket or similar). Partial and full matches can be differentiated as shown in the following table (the variable M represents - an instance of match_results as filled in by regex_match, - regex_search - or regex_grep): + an instance of match_results as filled in by regex_match, + regex_search + or regex_grep):

    diff --git a/doc/html/boost_regex/ref.html b/doc/html/boost_regex/ref.html index 0ff0d198..3d911322 100644 --- a/doc/html/boost_regex/ref.html +++ b/doc/html/boost_regex/ref.html @@ -3,8 +3,8 @@ Reference - - + + @@ -24,7 +24,7 @@
    basic_regex
    diff --git a/doc/html/boost_regex/ref/bad_expression.html b/doc/html/boost_regex/ref/bad_expression.html index 252069b9..1cbff685 100644 --- a/doc/html/boost_regex/ref/bad_expression.html +++ b/doc/html/boost_regex/ref/bad_expression.html @@ -3,8 +3,8 @@ bad_expression - - + + @@ -24,11 +24,11 @@
    - - Synopsis + + Synopsis
    #include <boost/pattern_except.hpp>
     
    @@ -54,8 +54,8 @@ } // namespace boost
    - - Description + + Description
    regex_error(const std::string& s, regex_constants::error_type err, std::ptrdiff_t pos);
     regex_error(boost::regex_constants::error_type err);
    diff --git a/doc/html/boost_regex/ref/basic_regex.html b/doc/html/boost_regex/ref/basic_regex.html
    index 2aae2876..264865a5 100644
    --- a/doc/html/boost_regex/ref/basic_regex.html
    +++ b/doc/html/boost_regex/ref/basic_regex.html
    @@ -3,8 +3,8 @@
     
     basic_regex
     
    -
    -
    +
    +
     
     
     
    @@ -24,11 +24,11 @@
     
    - - Synopsis + + Synopsis
    #include <boost/regex.hpp>
     
    @@ -41,20 +41,20 @@
  • charT: determines the character type, i.e. either char or - wchar_t; see charT + 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 + 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 to use custom traits classes or non-standard character types (for example - see unicode support), + see unicode support), you won't need to use anything other than these:

    namespace boost{
    @@ -85,156 +85,157 @@
        typedef          const charT&                         const_reference;           
        typedef          std::ptrdiff_t                       difference_type;                 
        typedef          std::size_t                          size_type;
    -   typedef          regex_constants:: syntax_option_type  flag_type;
    +   typedef          regex_constants:: syntax_option_type  flag_type;
        typedef typename traits::locale_type                  locale_type;
     
        // constants:
        // main option selection:
    -   static const regex_constants:: syntax_option_type normal          
    +   static const regex_constants:: syntax_option_type normal          
                                                     = regex_constants::normal;
    -   static const regex_constants:: syntax_option_type ECMAScript      
    +   static const regex_constants:: syntax_option_type ECMAScript      
                                                     = normal;
    -   static const regex_constants:: syntax_option_type JavaScript      
    +   static const regex_constants:: syntax_option_type JavaScript      
                                                     = normal;
    -   static const regex_constants:: syntax_option_type JScript         
    +   static const regex_constants:: syntax_option_type JScript         
                                                     = normal;
    -   static const regex_constants:: syntax_option_type basic           
    +   static const regex_constants:: syntax_option_type basic           
                                                     = regex_constants::basic;
    -   static const regex_constants:: syntax_option_type extended        
    +   static const regex_constants:: syntax_option_type extended        
                                                     = regex_constants::extended;
    -   static const regex_constants:: syntax_option_type awk             
    +   static const regex_constants:: syntax_option_type awk             
                                                     = regex_constants::awk;
    -   static const regex_constants:: syntax_option_type grep            
    +   static const regex_constants:: syntax_option_type grep            
                                                     = regex_constants::grep;
    -   static const regex_constants:: syntax_option_type egrep           
    +   static const regex_constants:: syntax_option_type egrep           
                                                     = regex_constants::egrep;
    -   static const regex_constants:: syntax_option_type sed             
    +   static const regex_constants:: syntax_option_type sed             
                                                     = basic = regex_constants::sed;
    -   static const regex_constants:: syntax_option_type perl            
    +   static const regex_constants:: syntax_option_type perl            
                                                     = regex_constants::perl;
    -   static const regex_constants:: syntax_option_type literal         
    +   static const regex_constants:: syntax_option_type literal         
                                                     = regex_constants::literal;
     
        // modifiers specific to perl expressions:
    -   static const regex_constants:: syntax_option_type no_mod_m        
    +   static const regex_constants:: syntax_option_type no_mod_m        
                                                     = regex_constants::no_mod_m;
    -   static const regex_constants:: syntax_option_type no_mod_s        
    +   static const regex_constants:: syntax_option_type no_mod_s        
                                                     = regex_constants::no_mod_s;
    -   static const regex_constants:: syntax_option_type mod_s           
    +   static const regex_constants:: syntax_option_type mod_s           
                                                     = regex_constants::mod_s;
    -   static const regex_constants:: syntax_option_type mod_x           
    +   static const regex_constants:: syntax_option_type mod_x           
                                                     = regex_constants::mod_x;
     
        // modifiers specific to POSIX basic expressions:
    -   static const regex_constants:: syntax_option_type bk_plus_qm      
    +   static const regex_constants:: syntax_option_type bk_plus_qm      
                                                     = regex_constants::bk_plus_qm;
    -   static const regex_constants:: syntax_option_type bk_vbar         
    +   static const regex_constants:: syntax_option_type bk_vbar         
                                                     = regex_constants::bk_vbar
    -   static const regex_constants:: syntax_option_type no_char_classes 
    +   static const regex_constants:: syntax_option_type no_char_classes 
                                                     = regex_constants::no_char_classes
    -   static const regex_constants:: syntax_option_type no_intervals    
    +   static const regex_constants:: syntax_option_type no_intervals    
                                                     = regex_constants::no_intervals
     
        // common modifiers:
    -   static const regex_constants:: syntax_option_type nosubs          
    +   static const regex_constants:: syntax_option_type nosubs          
                                                     = regex_constants::nosubs;
    -   static const regex_constants:: syntax_option_type optimize        
    +   static const regex_constants:: syntax_option_type optimize        
                                                     = regex_constants::optimize;
    -   static const regex_constants:: syntax_option_type collate         
    +   static const regex_constants:: syntax_option_type collate         
                                                     = regex_constants::collate;
    -   static const regex_constants:: syntax_option_type newline_alt     
    +   static const regex_constants:: syntax_option_type newline_alt     
                                                     = regex_constants::newline_alt;
    -   static const regex_constants:: syntax_option_type no_except       
    +   static const regex_constants:: syntax_option_type no_except       
                                                     = regex_constants::newline_alt;
     
        // construct/copy/destroy:
    -   explicit basic_regex ();
    -   explicit basic_regex(const  charT* p, flag_type f = regex_constants::normal);
    -   basic_regex(const charT* p1, const  charT* p2, 
    +   explicit basic_regex ();
    +   explicit basic_regex(const  charT* p, flag_type f = regex_constants::normal);
    +   basic_regex(const charT* p1, const  charT* p2, 
                    flag_type f = regex_constants::normal);
    -   basic_regex(const charT* p, size_type len, flag_type  f);
    -   basic_regex(const basic_regex&);
    +   basic_regex(const charT* p, size_type len, flag_type  f);
    +   basic_regex(const basic_regex&);
     
        template <class ST, class SA>
    -   explicit basic_regex(const basic_string<charT, ST,  SA>& p, 
    +   explicit basic_regex(const basic_string<charT, ST,  SA>& p, 
                             flag_type f = regex_constants::normal);
     
        template <class InputIterator>
    -   basic_regex(InputIterator first,  InputIterator last, 
    +   basic_regex(InputIterator first,  InputIterator last, 
                    flag_type f = regex_constants::normal);
     
        ~basic_regex();
    -   basic_regex& operator=(const basic_regex&);
    -   basic_regex& operator= (const charT* ptr); 
    +   basic_regex& operator=(const basic_regex&);
    +   basic_regex& operator= (const charT* ptr); 
     
        template <class ST, class SA> 
    -   basic_regex& operator= (const basic_string<charT, ST, SA>& p);
    +   basic_regex& operator= (const basic_string<charT, ST, SA>& p);
        // iterators: 
    -   const_iterator begin() const; 
    -   const_iterator end() const;
    +   std::pair<const_iterator, const_iterator> subexpression(size_type n) const; 
    +   const_iterator begin() const; 
    +   const_iterator end() const;
        // capacity: 
    -   size_type size() const; 
    -   size_type max_size() const; 
    -   bool empty() const; 
    -   unsigned mark_count()const; 
    +   size_type size() const; 
    +   size_type max_size() const; 
    +   bool empty() const; 
    +   unsigned mark_count()const; 
        //
        // modifiers: 
    -   basic_regex& assign(const basic_regex& that); 
    -   basic_regex& assign(const charT* ptr, 
    +   basic_regex& assign(const basic_regex& that); 
    +   basic_regex& assign(const charT* ptr, 
                            flag_type f = regex_constants::normal);
    -   basic_regex& assign(const charT* ptr, unsigned int len, flag_type f);
    +   basic_regex& assign(const charT* ptr, unsigned int len, flag_type f);
     
        template <class string_traits, class A>
    -   basic_regex& assign(const basic_string<charT, string_traits, A>& s,
    +   basic_regex& assign(const basic_string<charT, string_traits, A>& s,
                            flag_type f = regex_constants::normal);
     
        template <class InputIterator>
    -   basic_regex& assign(InputIterator first, InputIterator last,
    +   basic_regex& assign(InputIterator first, InputIterator last,
                            flag_type f = regex_constants::normal);
     
        // const operations:
    -   flag_type flags() const;
    -   int status()const;
    -   basic_string<charT> str() const;
    -   int compare(basic_regex&) const;
    +   flag_type flags() const;
    +   int status()const;
    +   basic_string<charT> str() const;
    +   int compare(basic_regex&) const;
        // locale:
    -   locale_type imbue(locale_type loc);
    -   locale_type getloc() const;
    +   locale_type imbue(locale_type loc);
    +   locale_type getloc() const;
        // swap
    -   void swap(basic_regex&) throw();
    +   void swap(basic_regex&) throw();
     };
     
     template <class charT, class traits>
    -bool operator == (const basic_regex<charT, traits>& lhs,
    +bool operator == (const basic_regex<charT, traits>& lhs,
                       const basic_regex<charT, traits>& rhs);
     
     template <class charT, class traits>
    -bool operator != (const basic_regex<charT, traits>& lhs,
    +bool operator != (const basic_regex<charT, traits>& lhs,
                       const basic_regex<charT, traits>& rhs);
     
     template <class charT, class traits>
    -bool operator < (const basic_regex<charT, traits>& lhs,
    +bool operator < (const basic_regex<charT, traits>& lhs,
                    const basic_regex<charT, traits>& rhs);
     
     template <class charT, class traits>
    -bool operator <= (const basic_regex<charT, traits>& lhs,
    +bool operator <= (const basic_regex<charT, traits>& lhs,
                       const basic_regex<charT, traits>& rhs);
     
     template <class charT, class traits>
    -bool operator >= (const basic_regex<charT, traits>& lhs,
    +bool operator >= (const basic_regex<charT, traits>& lhs,
                       const basic_regex<charT, traits>& rhs);
     
     template <class charT, class traits>
    -bool operator > (const basic_regex<charT, traits>& lhs,
    +bool operator > (const basic_regex<charT, traits>& lhs,
                    const basic_regex<charT, traits>& rhs);
     
     template <class charT, class io_traits, class re_traits>
     basic_ostream<charT, io_traits>&
    -   operator << (basic_ostream<charT, io_traits>& os,
    +   operator << (basic_ostream<charT, io_traits>& os,
                    const basic_regex<charT, re_traits>& e);
     
     template <class charT, class traits>
    -void swap(basic_regex<charT, traits>& e1,
    +void swap(basic_regex<charT, traits>& e1,
              basic_regex<charT, traits>& e2);
     
     typedef basic_regex<char> regex;
    @@ -243,76 +244,76 @@
     } // namespace boost
     
    - - Description + + Description

    Class basic_regex has the following public members:

    // main option selection:
    -static const regex_constants:: syntax_option_type normal           
    +static const regex_constants:: syntax_option_type normal           
                                               = regex_constants::normal;
    -static const regex_constants:: syntax_option_type ECMAScript       
    +static const regex_constants:: syntax_option_type ECMAScript       
                                               = normal;
    -static const regex_constants:: syntax_option_type JavaScript       
    +static const regex_constants:: syntax_option_type JavaScript       
                                               = normal;
    -static const regex_constants:: syntax_option_type JScript          
    +static const regex_constants:: syntax_option_type JScript          
                                               = normal;
    -static const regex_constants:: syntax_option_type basic            
    +static const regex_constants:: syntax_option_type basic            
                                               = regex_constants::basic;
    -static const regex_constants:: syntax_option_type extended         
    +static const regex_constants:: syntax_option_type extended         
                                               = regex_constants::extended;
    -static const regex_constants:: syntax_option_type awk              
    +static const regex_constants:: syntax_option_type awk              
                                               = regex_constants::awk;
    -static const regex_constants:: syntax_option_type grep             
    +static const regex_constants:: syntax_option_type grep             
                                               = regex_constants::grep;
    -static const regex_constants:: syntax_option_type egrep            
    +static const regex_constants:: syntax_option_type egrep            
                                               = regex_constants::egrep;
    -static const regex_constants:: syntax_option_type sed              
    +static const regex_constants:: syntax_option_type sed              
                                               = regex_constants::sed;
    -static const regex_constants:: syntax_option_type perl             
    +static const regex_constants:: syntax_option_type perl             
                                               = regex_constants::perl;
    -static const regex_constants:: syntax_option_type literal          
    +static const regex_constants:: syntax_option_type literal          
                                               = regex_constants::literal;
     
     // modifiers specific to perl expressions:
    -static const regex_constants:: syntax_option_type no_mod_m         
    +static const regex_constants:: syntax_option_type no_mod_m         
                                               = regex_constants::no_mod_m;
    -static const regex_constants:: syntax_option_type no_mod_s         
    +static const regex_constants:: syntax_option_type no_mod_s         
                                               = regex_constants::no_mod_s;
    -static const regex_constants:: syntax_option_type mod_s            
    +static const regex_constants:: syntax_option_type mod_s            
                                               = regex_constants::mod_s;
    -static const regex_constants:: syntax_option_type mod_x            
    +static const regex_constants:: syntax_option_type mod_x            
                                               = regex_constants::mod_x;
     
     // modifiers specific to POSIX basic expressions:
    -static const regex_constants:: syntax_option_type bk_plus_qm       
    +static const regex_constants:: syntax_option_type bk_plus_qm       
                                               = regex_constants::bk_plus_qm;
    -static const regex_constants:: syntax_option_type bk_vbar          
    +static const regex_constants:: syntax_option_type bk_vbar          
                                               = regex_constants::bk_vbar
    -static const regex_constants:: syntax_option_type no_char_classes  
    +static const regex_constants:: syntax_option_type no_char_classes  
                                               = regex_constants::no_char_classes
    -static const regex_constants:: syntax_option_type no_intervals     
    +static const regex_constants:: syntax_option_type no_intervals     
                                               = regex_constants::no_intervals
     
     // common modifiers:
    -static const regex_constants:: syntax_option_type nosubs           
    +static const regex_constants:: syntax_option_type nosubs           
                                               = regex_constants::nosubs;
    -static const regex_constants:: syntax_option_type optimize         
    +static const regex_constants:: syntax_option_type optimize         
                                               = regex_constants::optimize;
    -static const regex_constants:: syntax_option_type collate          
    +static const regex_constants:: syntax_option_type collate          
                                               = regex_constants::collate;
    -static const regex_constants:: syntax_option_type newline_alt      
    +static const regex_constants:: syntax_option_type newline_alt      
                                               = regex_constants::newline_alt;
     

    - The meaning of these options is documented in the syntax_option_type section. + The meaning of these options is documented in the syntax_option_type section.

    The static constant members are provided as synonyms for the constants declared in namespace boost::regex_constants; for each constant of type - syntax_option_type + syntax_option_type declared in namespace boost::regex_constants then a constant with the same name, type and value is declared within the scope of basic_regex. @@ -326,7 +327,7 @@ basic_regex.

    -

    Table 1. basic_regex default construction postconditions

    +

    Table 1. basic_regex default construction postconditions

    @@ -393,20 +394,20 @@ be a null pointer.

    - Throws: bad_expression if p + Throws: bad_expression if p is not a valid regular expression, unless the flag no_except is set in f.

    Effects: Constructs an object of class - basic_regex; + basic_regex; the object's internal finite state machine is constructed from the regular expression contained in the null-terminated string p, - and interpreted according to the option + and interpreted according to the option flags specified in f.

    -

    Table 2. Postconditions for basic_regex construction

    +

    Table 2. Postconditions for basic_regex construction

    @@ -504,14 +505,14 @@

    Effects: Constructs an object of class - basic_regex; + basic_regex; the object's internal finite state machine is constructed from the regular expression contained in the sequence of characters [p1,p2), and interpreted - according the option flags + according the option flags specified in f.

    -

    Table 3. Postconditions for basic_regex construction

    +

    Table 3. Postconditions for basic_regex construction

    @@ -603,19 +604,19 @@ max_size().

    - Throws: bad_expression if p + Throws: bad_expression if p is not a valid regular expression, unless the flag no_except is set in f.

    Effects: Constructs an object of class - basic_regex; + basic_regex; the object's internal finite state machine is constructed from the regular expression contained in the sequence of characters [p, p+len), and interpreted according the option flags specified in f.

    -

    Table 4. Postconditions for basic_regex construction

    +

    Table 4. Postconditions for basic_regex construction

    @@ -703,7 +704,7 @@

    Effects: Constructs an object of class - basic_regex + basic_regex as a copy of the object e.

    @@ -713,20 +714,20 @@ flag_type f = regex_constants::normal);

    - Throws: bad_expression if s + Throws: bad_expression if s is not a valid regular expression, unless the flag no_except is set in f.

    Effects: Constructs an object of class - basic_regex; + basic_regex; the object's internal finite state machine is constructed from the regular expression contained in the string s, and interpreted - according to the option + according to the option flags specified in f.

    -

    Table 5. Postconditions for basic_regex construction

    +

    Table 5. Postconditions for basic_regex construction

    @@ -815,20 +816,20 @@ flag_typef=regex_constants::normal);

    - Throws: bad_expression if the sequence [first, + Throws: bad_expression if the sequence [first, last) is not a valid regular expression, unless the flag no_except is set in f.

    Effects: Constructs an object of class - basic_regex; + basic_regex; the object's internal finite state machine is constructed from the regular expression contained in the sequence of characters [first, last), and interpreted - according to the option + according to the option flags specified in f.

    -

    Table 6. Postconditions for basic_regex construction

    +

    Table 6. Postconditions for basic_regex construction

    @@ -936,6 +937,22 @@

    Effects: Returns the result of assign(p).

    +

    +

    +
    std::pair<const_iterator, const_iterator> subexpression(size_type n) const;
    +
    +

    + Effects: Returns a pair of iterators denoting + the location of marked subexpression n within the original + regular expression string. The returned iterators are relative to begin() + and end(). +

    +

    + Requires: The expression must have been + compiled with the syntax_option_type save_subexpression_location + set. Argument n must be in within the range 1 <= n + < mark_count(). +

    const_iterator begin() const;
    @@ -989,21 +1006,21 @@
     
    basic_regex& assign(const basic_regex& that);
     

    - Effects: Returns assign(that.str(), that.flags()). + Effects: Returns assign(that.str(), that.flags()).

    basic_regex& assign(const charT* ptr, flag_type f = regex_constants::normal);
     

    - Effects: Returns assign(string_type(ptr), f). + Effects: Returns assign(string_type(ptr), f).

    basic_regex& assign(const charT* ptr, unsigned int len, flag_type f);
     

    - Effects: Returns assign(string_type(ptr, len), f). + Effects: Returns assign(string_type(ptr, len), f).

    @@ -1012,7 +1029,7 @@ flag_type f = regex_constants::normal);

    - Throws: bad_expression if s + Throws: bad_expression if s is not a valid regular expression, unless the flag no_except is set in f.

    @@ -1022,11 +1039,11 @@

    Effects: Assigns the regular expression contained in the string s, interpreted according the - option flags specified + option flags specified in f.

    -

    Table 7. Postconditions for basic_regex::assign

    +

    Table 7. Postconditions for basic_regex::assign

    @@ -1120,14 +1137,14 @@ (24.1.1).

    - Effects: Returns assign(string_type(first, last), f). + Effects: Returns assign(string_type(first, last), f).

    flag_type flags() const;
     

    - Effects: Returns a copy of the regular + Effects: Returns a copy of the regular expression syntax flags that were passed to the object's constructor, or the last call to assign.

    @@ -1203,11 +1220,11 @@
    Note

    - Comparisons between basic_regex objects are provided + Comparisons between basic_regex objects are provided on an experimental basis: please note that these are not present in the Technical Report on C++ Library Extensions, so use with care if you are writing - code that may need to be ported to other implementations of basic_regex. + code that may need to be ported to other implementations of basic_regex.

    diff --git a/doc/html/boost_regex/ref/concepts.html b/doc/html/boost_regex/ref/concepts.html index c0b0e15a..b64d9225 100644 --- a/doc/html/boost_regex/ref/concepts.html +++ b/doc/html/boost_regex/ref/concepts.html @@ -3,8 +3,8 @@ Concepts - - + + @@ -24,7 +24,7 @@

    charT Requirements
    diff --git a/doc/html/boost_regex/ref/concepts/charT_concept.html b/doc/html/boost_regex/ref/concepts/charT_concept.html index ca2b4f81..ad3a48b6 100644 --- a/doc/html/boost_regex/ref/concepts/charT_concept.html +++ b/doc/html/boost_regex/ref/concepts/charT_concept.html @@ -3,8 +3,8 @@ charT Requirements - - + + @@ -24,11 +24,11 @@

    Type charT used a template - argument to class template basic_regex, must have a trivial + argument to class template basic_regex, must have a trivial default constructor, copy constructor, assignment operator, and destructor. In addition the following requirements must be met for objects; c of type charT, c1 diff --git a/doc/html/boost_regex/ref/concepts/iterator_concepts.html b/doc/html/boost_regex/ref/concepts/iterator_concepts.html index c7e39d13..ca98a141 100644 --- a/doc/html/boost_regex/ref/concepts/iterator_concepts.html +++ b/doc/html/boost_regex/ref/concepts/iterator_concepts.html @@ -3,8 +3,8 @@ Iterator Requirements - - + + @@ -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 7aa5ca43..af155a02 100644 --- a/doc/html/boost_regex/ref/concepts/traits_concept.html +++ b/doc/html/boost_regex/ref/concepts/traits_concept.html @@ -3,8 +3,8 @@ Traits Class Requirements - - + + @@ -24,18 +24,18 @@

    There are two sets of requirements for the traits - template argument to basic_regex: a mininal interface + template argument to basic_regex: a mininal interface (which is part of the regex standardization proposal), and an optional Boost-specific enhanced interface.

    - - Minimal + + Minimal requirements.

    @@ -381,15 +381,15 @@

    - - Additional + + Additional Optional Requirements

    The following additional requirements are strictly optional, however in - order for basic_regex + order for basic_regex to take advantage of these additional interfaces, all of the following - requirements must be met; basic_regex will detect the presence + requirements must be met; basic_regex will detect the presence or absense of the member boost_extensions_tag and configure itself appropriately.

    diff --git a/doc/html/boost_regex/ref/deprecated_interfaces.html b/doc/html/boost_regex/ref/deprecated_interfaces.html index 5b9ffb3e..caa8cd1f 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces.html @@ -3,8 +3,8 @@ Deprecated Interfaces - - + + @@ -24,7 +24,7 @@

    @@ -169,7 +169,7 @@

    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. + to case, otherwise it is sensitive to case. Throws bad_expression on failure.

    @@ -185,7 +185,7 @@

    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. + to case, otherwise it is sensitive to case. Throws bad_expression on failure.

    @@ -211,7 +211,7 @@

    - 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.

    @@ -224,7 +224,7 @@

    - 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.

    @@ -242,7 +242,7 @@

    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. + to case. Throws bad_expression on failure.

    @@ -259,7 +259,7 @@

    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. + to case. Throws bad_expression on failure.

    @@ -288,7 +288,7 @@

    Attempts to match the current expression against the text p - using the match flags flags - see match_flag_type. Returns + using the match flags flags - see match_flag_type. Returns true if the expression matches the whole of the input string.

    @@ -307,7 +307,7 @@

    Attempts to match the current expression against the text s - using the match_flag_type flags. + using the match_flag_type flags. Returns true if the expression matches the whole of the input string.

    @@ -326,7 +326,7 @@

    Attempts to find a match for the current expression somewhere in - the text p using the match_flag_type flags. + the text p using the match_flag_type flags. Returns true if the match succeeds.

    @@ -344,7 +344,7 @@

    Attempts to find a match for the current expression somewhere in - the text s using the match_flag_type flags. + the text s using the match_flag_type flags. Returns true if the match succeeds.

    @@ -363,7 +363,7 @@

    Finds all matches of the current expression in the text p - using the match_flag_type flags. + 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 @@ -385,7 +385,7 @@

    Finds all matches of the current expression in the text s - using the match_flag_type flags. + 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 @@ -407,7 +407,7 @@

    Finds all matches of the current expression in the text p - using the match_flag_type flags. + using the match_flag_type flags. For each match pushes a copy of what matched onto v. Returns the number of matches found.

    @@ -427,7 +427,7 @@

    Finds all matches of the current expression in the text s - using the match_flag_type flags. + using the match_flag_type flags. For each match pushes a copy of what matched onto v. Returns the number of matches found.

    @@ -447,7 +447,7 @@

    Finds all matches of the current expression in the text p - using the match_flag_type flags. + using the match_flag_type flags. For each match pushes the starting index of what matched onto v. Returns the number of matches found.

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

    Finds all matches of the current expression in the text s - using the match_flag_type flags. + using the match_flag_type flags. For each match pushes the starting index of what matched onto v. Returns the number of matches found.

    @@ -489,7 +489,7 @@

    Finds all matches of the current expression in the files files - using the match_flag_type flags. + 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. @@ -524,7 +524,7 @@

    Finds all matches of the current expression in the files files - using the match_flag_type flags. + using the match_flag_type flags. For each match calls the call-back function cb.

    @@ -562,7 +562,7 @@

    Searches files to find all those which contain at least one match - of the current expression using the match_flag_type flags. + 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. @@ -597,7 +597,7 @@

    Searches files to find all those which contain at least one match - of the current expression using the match_flag_type flags. + of the current expression using the match_flag_type flags. For each matching file calls the call-back function cb.

    @@ -641,8 +641,8 @@ 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. + Returns the new string. See also format + string syntax, and match_flag_type.

    @@ -669,8 +669,8 @@ 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. + Returns the new string. See also format + string syntax, and match_flag_type.

    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 7f4b0c24..5ca0844e 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html @@ -3,8 +3,8 @@ regex_format (Deprecated) - - + + @@ -24,18 +24,18 @@

    The algorithm regex_format - is deprecated; new code should use match_results<>::format instead. Existing code + is deprecated; new code should use match_results<>::format instead. Existing code will continue to compile, the following documentation is taken from the previous version of Boost.Regex and will not be further updated:

    - - Algorithm + + Algorithm regex_format
    #include <boost/regex.hpp>
    @@ -125,7 +125,7 @@
                     
     
                     

    - An instance of match_results obtained + An instance of match_results obtained from one of the matching algorithms above, and denoting what matched.

    @@ -158,11 +158,11 @@

    - Format flags are described under match_flag_type. + Format flags are described under match_flag_type.

    The format string syntax (and available options) is described more fully - under format strings. + under format strings.

    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 92cbaa83..1bd7f867 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/regex_grep.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/regex_grep.html @@ -3,8 +3,8 @@ regex_grep (Deprecated) - - + + @@ -24,12 +24,12 @@

    The algorithm regex_grep - is deprecated in favor of regex_iterator which provides + is deprecated in favor of regex_iterator which provides a more convenient and standard library friendly interface.

    @@ -129,7 +129,7 @@ (if Boost.Regex is configured in non-recursive mode).

    - Example: convert the example from regex_search to use regex_grep instead: + Example: convert the example from regex_search to use regex_grep instead:

    #include <string> 
     #include <map> 
    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 d43db820..1c34e94d 100644
    --- a/doc/html/boost_regex/ref/deprecated_interfaces/regex_split.html
    +++ b/doc/html/boost_regex/ref/deprecated_interfaces/regex_split.html
    @@ -3,8 +3,8 @@
     
     regex_split (deprecated)
     
    -
    -
    +
    +
     
     
     
    @@ -24,23 +24,23 @@
     

    - The algorithm regex_split has been deprecated - in favor of the iterator regex_token_iterator which has + The algorithm regex_split has been deprecated + in favor of the iterator regex_token_iterator which has a more flexible and powerful interface, as well as following the more usual standard library "pull" rather than "push" semantics.

    - Code which uses regex_split will continue to compile, + Code which uses regex_split will continue to compile, the following documentation is taken from a previous Boost.Regex version:

    #include <boost/regex.hpp> 
     

    - Algorithm regex_split performs a similar + Algorithm regex_split performs a similar operation to the perl split operation, and comes in three overloaded forms:

    template <class OutputIterator, class charT, class Traits1, class Alloc1, class Traits2>
    diff --git a/doc/html/boost_regex/ref/error_type.html b/doc/html/boost_regex/ref/error_type.html
    index 9840fe39..dd26f8ce 100644
    --- a/doc/html/boost_regex/ref/error_type.html
    +++ b/doc/html/boost_regex/ref/error_type.html
    @@ -3,8 +3,8 @@
     
     error_type
     
    -
    -
    +
    +
     
     
     
    @@ -24,11 +24,11 @@
     
    - - Synopsis + + Synopsis

    Type error type represents the different types of errors that can be raised @@ -57,8 +57,8 @@ } // namespace boost

    - - Description + + Description

    The type error_type is an diff --git a/doc/html/boost_regex/ref/match_flag_type.html b/doc/html/boost_regex/ref/match_flag_type.html index f020a69d..0285afd8 100644 --- a/doc/html/boost_regex/ref/match_flag_type.html +++ b/doc/html/boost_regex/ref/match_flag_type.html @@ -3,8 +3,8 @@ match_flag_type - - + + @@ -24,13 +24,13 @@

    The type match_flag_type is an implementation specific bitmask type (see C++ std 17.3.2.1.2) that controls how a regular expression is matched against a character sequence. - The behavior of the format flags is described in more detail in the format syntax guide. + The behavior of the format flags is described in more detail in the format syntax guide.

    namespace boost{ namespace regex_constants{
     
    @@ -69,8 +69,8 @@
     } // namespace boost
     
    - - Description + + Description

    The type match_flag_type @@ -327,7 +327,7 @@

    @@ -413,7 +413,7 @@ @@ -441,7 +441,7 @@ diff --git a/doc/html/boost_regex/ref/match_results.html b/doc/html/boost_regex/ref/match_results.html index 617cd4ce..20f0bd3d 100644 --- a/doc/html/boost_regex/ref/match_results.html +++ b/doc/html/boost_regex/ref/match_results.html @@ -3,8 +3,8 @@ match_results - - + + @@ -24,11 +24,11 @@
    - - Synopsis + + Synopsis
    #include <boost/regex.hpp>
     
    @@ -39,14 +39,14 @@ parenthesis (...). There has to be some method for reporting sub-expression matches back to the user: this is achieved this by defining a class match_results that acts as an indexed collection of sub-expression matches, each sub-expression match being contained in an - object of type sub_match. + object of type sub_match.

    Template class match_results denotes a collection of character sequences representing the result of a regular expression match. Objects of type match_results - are passed to the algorithms regex_match and regex_search, and are returned by - the iterator regex_iterator. Storage for the + are passed to the algorithms regex_match and regex_search, and are returned by + the iterator regex_iterator. Storage for the collection is allocated and freed as necessary by the member functions of class match_results.

    @@ -87,63 +87,63 @@ typedef basic_string<char_type> string_type; // construct/copy/destroy: - explicit match_results(const Allocator& a = Allocator()); - match_results(const match_results& m); - match_results& operator=(const match_results& m); + explicit match_results(const Allocator& a = Allocator()); + match_results(const match_results& m); + match_results& operator=(const match_results& m); ~match_results(); // size: - size_type size() const; - size_type max_size() const; - bool empty() const; + size_type size() const; + size_type max_size() const; + bool empty() const; // element access: - difference_type length(int sub = 0) const; - difference_type position(unsigned int sub = 0) const; - string_type str(int sub = 0) const; - const_reference operator[](int n) const; + difference_type length(int sub = 0) const; + difference_type position(unsigned int sub = 0) const; + string_type str(int sub = 0) const; + const_reference operator[](int n) const; - const_reference prefix() const; + const_reference prefix() const; - const_reference suffix() const; - const_iterator begin() const; - const_iterator end() const; + const_reference suffix() const; + const_iterator begin() const; + const_iterator end() const; // format: template <class OutputIterator> - OutputIterator format(OutputIterator out, + OutputIterator format(OutputIterator out, const string_type& fmt, match_flag_type flags = format_default) const; - string_type format(const string_type& fmt, + string_type format(const string_type& fmt, match_flag_type flags = format_default) const; - allocator_type get_allocator() const; - void swap(match_results& that); + allocator_type get_allocator() const; + void swap(match_results& that); #ifdef BOOST_REGEX_MATCH_EXTRA typedef typename value_type::capture_sequence_type capture_sequence_type; - const capture_sequence_type& captures(std::size_t i)const; + const capture_sequence_type& captures(std::size_t i)const; #endif }; template <class BidirectionalIterator, class Allocator> -bool operator == (const match_results<BidirectionalIterator, Allocator>& m1, +bool operator == (const match_results<BidirectionalIterator, Allocator>& m1, const match_results<BidirectionalIterator, Allocator>& m2); template <class BidirectionalIterator, class Allocator> -bool operator != (const match_results<BidirectionalIterator, Allocator>& m1, +bool operator != (const match_results<BidirectionalIterator, Allocator>& m1, const match_results<BidirectionalIterator, Allocator>& m2); template <class charT, class traits, class BidirectionalIterator, class Allocator> basic_ostream<charT, traits>& - operator << (basic_ostream<charT, traits>& os, + operator << (basic_ostream<charT, traits>& os, const match_results<BidirectionalIterator, Allocator>& m); template <class BidirectionalIterator, class Allocator> -void swap(match_results<BidirectionalIterator, Allocator>& m1, +void swap(match_results<BidirectionalIterator, Allocator>& m1, match_results<BidirectionalIterator, Allocator>& m2);
    - - Description + + Description

    In all match_results constructors, @@ -352,7 +352,7 @@

    size_type size()const;
     

    - Effects: Returns the number of sub_match elements stored in *this; + 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.

    @@ -362,7 +362,7 @@

    Effects: Returns the maximum number of - sub_match + sub_match elements that can be stored in *this.

    @@ -404,13 +404,13 @@

    const_reference operator[](int n) const;
     

    - Effects: Returns a reference to the sub_match + 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 + a reference to a sub_match object representing the character sequence that matched the whole regular expression. If n is out of range, or if n is an unmatched sub-expression, - then returns a sub_match + then returns a sub_match object whose matched member is false.

    @@ -418,7 +418,7 @@

    const_reference prefix()const;
     

    - Effects: Returns a reference to the sub_match + 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.

    @@ -427,7 +427,7 @@
    const_reference suffix()const;
     

    - Effects: Returns a reference to the sub_match + 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.

    @@ -470,7 +470,7 @@ Chapter 15 part 5.4.11 String.prototype.replace.

    - See the format syntax guide for more information. + See the format syntax guide for more information.

    Returns: out. @@ -490,7 +490,7 @@ Chapter 15 part 5.4.11 String.prototype.replace.

    - See the format syntax guide for more information. + See the format syntax guide for more information.

    @@ -539,7 +539,7 @@

    Preconditions: the library must be built and used with BOOST_REGEX_MATCH_EXTRA defined, and you must pass the flag - match_extra to the regex matching functions ( regex_match, regex_search, regex_iterator or regex_token_iterator) in order for + match_extra to the regex matching functions ( regex_match, regex_search, regex_iterator or regex_token_iterator) in order for this member function to be defined and return useful information.

    diff --git a/doc/html/boost_regex/ref/non_std_strings.html b/doc/html/boost_regex/ref/non_std_strings.html index 165d4bb7..5f38cc26 100644 --- a/doc/html/boost_regex/ref/non_std_strings.html +++ b/doc/html/boost_regex/ref/non_std_strings.html @@ -3,8 +3,8 @@ Interfacing With Non-Standard String Types - - + + @@ -24,7 +24,7 @@

    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 e4bc06f3..2e7fdaf3 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu.html @@ -3,8 +3,8 @@ Working With Unicode and ICU String Types - - + + @@ -24,7 +24,7 @@
    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 4472e41a..0f426829 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,8 +3,8 @@ Introduction to using Regex with ICU - - + + @@ -24,7 +24,7 @@

    @@ -39,7 +39,7 @@

    In order to use this header you will need the ICU library, and you will need to have built the Boost.Regex library - with ICU + with ICU support enabled.

    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 257bfa7c..db172d3d 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,8 +3,8 @@ Unicode Regular Expression Algorithms - - + + @@ -24,11 +24,11 @@

    - The regular expression algorithms regex_match, regex_search and regex_replace all expect that + The regular expression algorithms regex_match, regex_search and regex_replace all expect that the character sequence upon which they operate, is encoded in the same character encoding as the regular expression object with which they are used. For Unicode regular expressions that behavior is undesirable: while @@ -43,11 +43,11 @@ on to the "real" algorithm.

    - - u32regex_match + + u32regex_match

    - For each regex_match + For each regex_match algorithm defined by <boost/regex.hpp>, then <boost/regex/icu.hpp> defines an overloaded algorithm that takes the same arguments, but which is called u32regex_match, @@ -89,11 +89,11 @@ }

    - - u32regex_search + + u32regex_search

    - For each regex_search + For each regex_search algorithm defined by <boost/regex.hpp>, then <boost/regex/icu.hpp> defines an overloaded algorithm that takes the same arguments, but which is called u32regex_search, @@ -128,11 +128,11 @@ }

    - - u32regex_replace + + u32regex_replace

    - For each regex_replace algorithm defined + For each regex_replace algorithm defined by <boost/regex.hpp>, then <boost/regex/icu.hpp> defines an overloaded algorithm that takes the same arguments, but which is called 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 e19d4610..aa461fc0 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,8 +3,8 @@ Unicode Aware Regex Iterators - - + + @@ -24,16 +24,16 @@

    - - u32regex_iterator + + u32regex_iterator

    Type u32regex_iterator - is in all respects the same as regex_iterator except that since + is in all respects the same as regex_iterator except that since the regular expression type is always u32regex it only takes one template parameter (the iterator type). It also calls u32regex_search internally, @@ -126,12 +126,12 @@ Provided of course that the input is encoded as UTF-8.

    - - u32regex_token_iterator + + u32regex_token_iterator

    Type u32regex_token_iterator - is in all respects the same as regex_token_iterator except + is in all respects the same as regex_token_iterator except that since the regular expression type is always u32regex it only takes one template parameter (the iterator type). It also calls u32regex_search internally, 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 6729f74d..cefbc15f 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,8 +3,8 @@ Unicode regular expression types - - + + @@ -24,7 +24,7 @@

    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 738372e3..4592ae3d 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,8 +3,8 @@ Using Boost Regex With MFC Strings - - + + @@ -24,7 +24,7 @@

    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 b010c05e..5e9272f1 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,8 +3,8 @@ Overloaded Algorithms For MFC String Types - - + + @@ -24,7 +24,7 @@

    @@ -34,17 +34,17 @@ here they are anyway:

    - - regex_match + + regex_match

    There are two overloads, the first reports what matched in a match_results structure, the second does not.

    - All the usual caveats for regex_match apply, in particular + All the usual caveats for regex_match apply, in particular the algorithm will only report a successful match if all of the input - text matches the expression, if this isn't what you want then use regex_search + text matches the expression, if this isn't what you want then use regex_search instead.

    template <class charT, class T, class A>
    @@ -82,8 +82,8 @@
     }
     
    - - regex_match + + regex_match (second overload)
    template <class charT, class T>
    @@ -110,11 +110,11 @@
     }      
     
    - - regex_search + + regex_search

    - There are two additional overloads for regex_search, the first reports + There are two additional overloads for regex_search, the first reports what matched the second does not:

    template <class charT, class A, class T>
    @@ -149,8 +149,8 @@
     }      
     
    - - regex_search + + regex_search (second overload)
    template <class charT, class T>
    @@ -164,11 +164,11 @@
                 + s.GetLength(), e, f);
               

    - - regex_replace + + regex_replace

    - There are two additional overloads for regex_replace, the first sends + There are two additional overloads for regex_replace, the first sends output to an output iterator, while the second creates a new string

    template <class OutputIterator, class BidirectionalIterator, class traits, class
    @@ -192,7 +192,7 @@
     

    Effects: returns a new string created - using regex_replace, + using regex_replace, and the same memory manager as string s.

    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 fa0da3ec..b9c60c1b 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,8 +3,8 @@ Introduction to Boost.Regex and MFC Strings - - + + @@ -24,7 +24,7 @@

    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 24d97c88..2d38fce9 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,8 +3,8 @@ Iterating Over the Matches Within An MFC String - - + + @@ -24,16 +24,16 @@

    The following helper functions are provided to ease the conversion from - an MFC/ATL string to a regex_iterator or regex_token_iterator: + an MFC/ATL string to a regex_iterator or regex_token_iterator:

    - - regex_iterator + + regex_iterator creation helper
    template <class charT>
    @@ -68,8 +68,8 @@
     }
     
    - - regex_token_iterator + + regex_token_iterator creation helpers
    template <class charT> 
    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 dda660a7..4279151e 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,8 +3,8 @@
     
     Regular Expression Creation From an MFC String
     
    -
    -
    +
    +
     
     
     
    @@ -24,7 +24,7 @@
     

    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 746db452..fe00bb69 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,8 +3,8 @@ Regex Types Used With MFC Strings - - + + @@ -24,7 +24,7 @@

    diff --git a/doc/html/boost_regex/ref/posix.html b/doc/html/boost_regex/ref/posix.html index 846d2ae4..7fd25512 100644 --- a/doc/html/boost_regex/ref/posix.html +++ b/doc/html/boost_regex/ref/posix.html @@ -3,8 +3,8 @@ POSIX Compatible C API's - - + + @@ -24,7 +24,7 @@

    Specifies that the expression should be matched according to the - POSIX leftmost-longest + 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. @@ -343,7 +343,7 @@

    Specifies that the expression should be matched according to the - Perl + Perl matching rules, irrespective of what kind of expression was compiled.

    @@ -358,7 +358,7 @@

    Makes the expression behave as if it had no marked subexpressions, - no matter how many capturing groups are actually present. The match_results + 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.

    @@ -378,7 +378,7 @@ Specification, Chapter 15 part 5.4.11 String.prototype.replace. (FWD.1).

    - This is functionally identical to the Perl + This is functionally identical to the Perl format string rules.

    @@ -400,7 +400,7 @@ 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. + 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 + by a new string, that the new string is constructed using the same rules as Perl 5.

    Specifies that all syntax extensions are enabled, including conditional - (?ddexpression1:expression2) replacements: see the format + (?ddexpression1:expression2) replacements: see the format string guide for more details.

    @@ -165,8 +165,8 @@

    - - regcomp + + regcomp

    regcomp takes a pointer to @@ -379,8 +379,8 @@

    - - regerror + + regerror

    regerror takes the following parameters, it maps an error code to a human @@ -467,8 +467,8 @@

    - - regexec + + regexec

    regexec finds the first occurrence of expression e within string buf. If @@ -537,8 +537,8 @@

    - - regfree + + regfree

    regfree frees all the memory diff --git a/doc/html/boost_regex/ref/regex_iterator.html b/doc/html/boost_regex/ref/regex_iterator.html index 6ed6c16d..80561efa 100644 --- a/doc/html/boost_regex/ref/regex_iterator.html +++ b/doc/html/boost_regex/ref/regex_iterator.html @@ -3,8 +3,8 @@ regex_iterator - - + + @@ -24,13 +24,13 @@

    - The iterator type regex_iterator will enumerate all + The iterator type regex_iterator will enumerate all of the regular expression matches found in some sequence: dereferencing a - regex_iterator - yields a reference to a match_results object. + regex_iterator + yields a reference to a match_results object.

    template <class BidirectionalIterator, 
              class charT = iterator_traits<BidirectionalIterator>::value_type,
    @@ -45,18 +45,18 @@
        typedef          const value_type&                                       reference;
        typedef          std::forward_iterator_tag                               iterator_category;
        
    -   regex_iterator();
    -   regex_iterator(BidirectionalIterator a, BidirectionalIterator b, 
    +   regex_iterator();
    +   regex_iterator(BidirectionalIterator a, BidirectionalIterator b, 
                       const regex_type& re, 
                       match_flag_type m = match_default);
    -   regex_iterator(const regex_iterator&);
    -   regex_iterator& operator=(const regex_iterator&);
    -   bool operator==(const regex_iterator&)const;
    -   bool operator!=(const regex_iterator&)const;
    -   const value_type& operator*()const;
    -   const value_type* operator->()const;
    -   regex_iterator& operator++();
    -   regex_iterator operator++(int);
    +   regex_iterator(const regex_iterator&);
    +   regex_iterator& operator=(const regex_iterator&);
    +   bool operator==(const regex_iterator&)const;
    +   bool operator!=(const regex_iterator&)const;
    +   const value_type& operator*()const;
    +   const value_type* operator->()const;
    +   regex_iterator& operator++();
    +   regex_iterator operator++(int);
     };
     
     typedef regex_iterator<const char*>                  cregex_iterator; 
    @@ -68,21 +68,21 @@
     #endif 
     
     template <class charT, class traits> regex_iterator<const charT*, charT, traits> 
    -   make_regex_iterator(const charT* p, const basic_regex<charT, traits>& e, 
    +   make_regex_iterator(const charT* p, const basic_regex<charT, traits>& e, 
                            regex_constants::match_flag_type m = regex_constants::match_default); 
                            
     template <class charT, class traits, class ST, class SA> 
        regex_iterator<typename std::basic_string<charT, ST, SA>::const_iterator, charT, traits> 
    -      make_regex_iterator(const std::basic_string<charT, ST, SA>& p, 
    +      make_regex_iterator(const std::basic_string<charT, ST, SA>& p, 
                               const basic_regex<charT, traits>& e, 
                               regex_constants::match_flag_type m = regex_constants::match_default);
     
    - - Description + + Description

    - A regex_iterator + A regex_iterator is constructed from a pair of iterators, and enumerates all occurrences of a regular expression within that iterator range.

    @@ -92,7 +92,7 @@

    Effects: constructs an end of sequence - regex_iterator. + regex_iterator.

    @@ -101,10 +101,10 @@ match_flag_type m = match_default);

    - Effects: constructs a regex_iterator that will enumerate + Effects: constructs a regex_iterator that will enumerate all occurrences of the expression re, within the sequence - [a,b), and found using match_flag_type m. - The object re must exist for the lifetime of the regex_iterator. + [a,b), and found using match_flag_type m. + The object re must exist for the lifetime of the regex_iterator.

    Throws: std::runtime_error @@ -154,8 +154,8 @@

    const value_type& operator*()const;
     

    - Effects: dereferencing a regex_iterator object it yields - a const reference to a match_results object, whose members + Effects: dereferencing a regex_iterator object it yields + a const reference to a match_results object, whose members are set as follows:

    @@ -388,7 +388,7 @@ Effects: moves the iterator to the next match in the underlying sequence, or the end of sequence iterator if none if found. When the last match found matched a zero length string, then the - regex_iterator + regex_iterator will find the next match as follows: if there exists a non-zero length match that starts at the same location as the last one, then returns it, otherwise starts looking for the next (possibly zero length) match from one position @@ -432,12 +432,12 @@

    Effects: returns an iterator that enumerates all occurences of expression e in text p - using match_flag_type + using match_flag_type m.

    - - Examples + + Examples

    The following example takes a C++ source file and builds up an index of class diff --git a/doc/html/boost_regex/ref/regex_match.html b/doc/html/boost_regex/ref/regex_match.html index 7a0cb9de..7e8ea6b0 100644 --- a/doc/html/boost_regex/ref/regex_match.html +++ b/doc/html/boost_regex/ref/regex_match.html @@ -3,8 +3,8 @@ regex_match - - + + @@ -24,12 +24,12 @@

    #include <boost/regex.hpp> 
     

    - The algorithm regex_match + The algorithm regex_match determines whether a given regular expression matches all of a given character sequence denoted by a pair of bidirectional-iterators, the algorithm is defined as follows, the main use of this function is data @@ -42,8 +42,8 @@

    Note that the result is true only if the expression matches the whole of the input sequence. If you want to search - for an expression somewhere within the sequence then use regex_search. If you want to match - a prefix of the character string then use regex_search with the flag match_continuous + for an expression somewhere within the sequence then use regex_search. If you want to match + a prefix of the character string then use regex_search with the flag match_continuous set.

    @@ -80,8 +80,8 @@ match_flag_type flags = match_default);
    - - Description + + Description
    template <class BidirectionalIterator, class Allocator, class charT, class traits>
     bool regex_match(BidirectionalIterator first, BidirectionalIterator last,
    @@ -97,7 +97,7 @@
             Effects: Determines whether there is an
             exact match between the regular expression e, and all
             of the character sequence [first, last), parameter flags
    -        (see match_flag_type)
    +        (see match_flag_type)
             is used to control how the expression is matched against the character sequence.
             Returns true if such a match exists, false otherwise.
           

    @@ -360,8 +360,8 @@ Effects: Returns the result of regex_match(s.begin(), s.end(), e, flags).

    - - Examples + + Examples

    The following example processes an ftp response: diff --git a/doc/html/boost_regex/ref/regex_replace.html b/doc/html/boost_regex/ref/regex_replace.html index fc09fb43..1135203f 100644 --- a/doc/html/boost_regex/ref/regex_replace.html +++ b/doc/html/boost_regex/ref/regex_replace.html @@ -3,8 +3,8 @@ regex_replace - - + + @@ -24,14 +24,14 @@

    #include <boost/regex.hpp> 
     

    - The algorithm regex_replace searches through a + The algorithm regex_replace searches through a string finding all the matches to the regular expression: for each match - it then calls match_results<>::format to format the string and + it then calls match_results<>::format to format the string and sends the result to the output iterator. Sections of text that do not match are copied to the output unchanged only if the flags parameter does not have the flag format_no_copy @@ -53,8 +53,8 @@ match_flag_type flags = match_default);

    - - Description + + Description
    template <class OutputIterator, class BidirectionalIterator, class traits, class charT>
     OutputIterator regex_replace(OutputIterator out,
    @@ -83,17 +83,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. + set in flags: see match_flag_type.

    - Effects: Constructs an regex_iterator object: + Effects: Constructs an regex_iterator object:

    regex_iterator<BidirectionalIterator, charT, traits, Allocator> 
                                               i(first, last, e, flags), 
     

    and uses i to enumerate through all of the matches - m of type match_results <BidirectionalIterator> + m of type match_results <BidirectionalIterator> that occur within the sequence [first, last).

    @@ -163,8 +163,8 @@ and then returns result.

    - - Examples + + Examples

    The following example takes C/C++ source code as input, and outputs syntax diff --git a/doc/html/boost_regex/ref/regex_search.html b/doc/html/boost_regex/ref/regex_search.html index 48ed9b57..35f3a630 100644 --- a/doc/html/boost_regex/ref/regex_search.html +++ b/doc/html/boost_regex/ref/regex_search.html @@ -3,8 +3,8 @@ regex_search - - + + @@ -24,12 +24,12 @@

    #include <boost/regex.hpp> 
     

    - The algorithm regex_search will search a range + The algorithm regex_search will search a range denoted by a pair of bidirectional-iterators for a given regular expression. The algorithm uses various heuristics to reduce the search time by only checking for a match if a match could conceivably start at that position. The algorithm @@ -73,8 +73,8 @@ match_flag_type flags = match_default);

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

    - - Examples + + Examples

    The following example, takes the contents of a file in the form of a string, diff --git a/doc/html/boost_regex/ref/regex_token_iterator.html b/doc/html/boost_regex/ref/regex_token_iterator.html index b21f8df4..0df2dcd4 100644 --- a/doc/html/boost_regex/ref/regex_token_iterator.html +++ b/doc/html/boost_regex/ref/regex_token_iterator.html @@ -3,8 +3,8 @@ regex_token_iterator - - + + @@ -24,16 +24,16 @@

    - The template class regex_token_iterator is an iterator + The template class regex_token_iterator is an iterator adapter; that is to say it represents a new view of an existing iterator sequence, by enumerating all the occurrences of a regular expression within that sequence, and presenting one or more character sequence for each match - found. Each position enumerated by the iterator is a sub_match object that represents + found. Each position enumerated by the iterator is a sub_match object that represents what matched a particular sub-expression within the regular expression. When - class regex_token_iterator is used to + class regex_token_iterator is used to enumerate a single sub-expression with index -1, then the iterator performs field splitting: that is to say it enumerates one character sequence for each section of the character container sequence that does not match the @@ -52,31 +52,31 @@ typedef const value_type& reference; typedef std::forward_iterator_tag iterator_category; - regex_token_iterator(); - regex_token_iterator(BidirectionalIterator a, + regex_token_iterator(); + regex_token_iterator(BidirectionalIterator a, BidirectionalIterator b, const regex_type& re, int submatch = 0, match_flag_type m = match_default); - regex_token_iterator(BidirectionalIterator a, + regex_token_iterator(BidirectionalIterator a, BidirectionalIterator b, const regex_type& re, const std::vector<int>& submatches, match_flag_type m = match_default); template <std::size_t N> - regex_token_iterator(BidirectionalIterator a, + regex_token_iterator(BidirectionalIterator a, BidirectionalIterator b, const regex_type& re, const int (&submatches)[N], match_flag_type m = match_default); - regex_token_iterator(const regex_token_iterator&); - regex_token_iterator& operator=(const regex_token_iterator&); - bool operator==(const regex_token_iterator&)const; - bool operator!=(const regex_token_iterator&)const; - const value_type& operator*()const; - const value_type* operator->()const; - regex_token_iterator& operator++(); - regex_token_iterator operator++(int); + regex_token_iterator(const regex_token_iterator&); + regex_token_iterator& operator=(const regex_token_iterator&); + bool operator==(const regex_token_iterator&)const; + bool operator!=(const regex_token_iterator&)const; + const value_type& operator*()const; + const value_type* operator->()const; + regex_token_iterator& operator++(); + regex_token_iterator operator++(int); }; typedef regex_token_iterator<const char*> cregex_token_iterator; @@ -88,7 +88,7 @@ template <class charT, class traits> regex_token_iterator<const charT*, charT, traits> - make_regex_token_iterator( + make_regex_token_iterator( const charT* p, const basic_regex<charT, traits>& e, int submatch = 0, @@ -96,7 +96,7 @@ template <class charT, class traits, class ST, class SA> regex_token_iterator<typename std::basic_string<charT, ST, SA>::const_iterator, charT, traits> - make_regex_token_iterator( + make_regex_token_iterator( const std::basic_string<charT, ST, SA>& p, const basic_regex<charT, traits>& e, int submatch = 0, @@ -104,7 +104,7 @@ template <class charT, class traits, std::size_t N> regex_token_iterator<const charT*, charT, traits> -make_regex_token_iterator( +make_regex_token_iterator( const charT* p, const basic_regex<charT, traits>& e, const int (&submatch)[N], @@ -112,7 +112,7 @@ template <class charT, class traits, class ST, class SA, std::size_t N> regex_token_iterator<typename std::basic_string<charT, ST, SA>::const_iterator, charT, traits> - make_regex_token_iterator( + make_regex_token_iterator( const std::basic_string<charT, ST, SA>& p, const basic_regex<charT, traits>& e, const int (&submatch)[N], @@ -120,7 +120,7 @@ template <class charT, class traits> regex_token_iterator<const charT*, charT, traits> - make_regex_token_iterator( + make_regex_token_iterator( const charT* p, const basic_regex<charT, traits>& e, const std::vector<int>& submatch, @@ -129,15 +129,15 @@ template <class charT, class traits, class ST, class SA> regex_token_iterator< typename std::basic_string<charT, ST, SA>::const_iterator, charT, traits> - make_regex_token_iterator( + make_regex_token_iterator( const std::basic_string<charT, ST, SA>& p, const basic_regex<charT, traits>& e, const std::vector<int>& submatch, regex_constants::match_flag_type m = regex_constants::match_default);

    - - Description + + Description

    @@ -159,10 +159,10 @@ for the lifetime of the iterator constructed from it.

    - Effects: constructs a regex_token_iterator that will enumerate + Effects: constructs a regex_token_iterator that will enumerate one string for each regular expression match of the expression re found within the sequence [a,b), using match flags m - (see match_flag_type). + (see match_flag_type). The string enumerated is the sub-expression submatch for each match found; if submatch is -1, then enumerates all the text sequences that did not match the expression re @@ -190,11 +190,11 @@ for the lifetime of the iterator constructed from it.

    - Effects: constructs a regex_token_iterator that will enumerate + Effects: constructs a regex_token_iterator that will enumerate submatches.size() strings for each regular expression match of the expression re found within the sequence [a,b), using match flags m - (see match_flag_type). + (see match_flag_type). For each match found one string will be enumerated for each sub-expression index contained within submatches vector; if submatches[0] is -1, then the first string enumerated for each match will be all of the @@ -224,10 +224,10 @@ for the lifetime of the iterator constructed from it.

    - Effects: constructs a regex_token_iterator that will enumerate + Effects: constructs a regex_token_iterator that will enumerate R strings for each regular expression match of the expression re found within the sequence [a,b), using match flags - m (see match_flag_type). For each match + m (see match_flag_type). For each match found one string will be enumerated for each sub-expression index contained within the submatches array; if submatches[0] is -1, then the first string enumerated for each match will be all of the @@ -375,16 +375,16 @@ regex_constants::match_flag_type m = regex_constants::match_default);

    - Effects: returns a regex_token_iterator that enumerates - one sub_match + Effects: returns a regex_token_iterator that enumerates + one sub_match for each value in submatch for each occurrence of regular expression e in string p, matched - using match_flag_type + using match_flag_type m.

    - - Examples + + Examples

    The following example takes a string and splits it into a series of tokens: diff --git a/doc/html/boost_regex/ref/regex_traits.html b/doc/html/boost_regex/ref/regex_traits.html index d51514b8..50c47d4d 100644 --- a/doc/html/boost_regex/ref/regex_traits.html +++ b/doc/html/boost_regex/ref/regex_traits.html @@ -3,8 +3,8 @@ regex_traits - - + + @@ -24,7 +24,7 @@

    namespace boost{
     
    @@ -46,8 +46,8 @@
     } // namespace boost
     
    - - Description + + Description

    The class regex_traits is @@ -86,7 +86,7 @@

    - All these traits classes fulfil the traits + All these traits classes fulfil the traits class requirements.

    diff --git a/doc/html/boost_regex/ref/sub_match.html b/doc/html/boost_regex/ref/sub_match.html index f153c515..bcc5eed7 100644 --- a/doc/html/boost_regex/ref/sub_match.html +++ b/doc/html/boost_regex/ref/sub_match.html @@ -3,8 +3,8 @@ sub_match - - + + @@ -24,7 +24,7 @@
    #include <boost/regex.hpp>
     
    @@ -33,29 +33,29 @@ in that as well as finding an overall match they can also produce sub-expression matches: each sub-expression being delimited in the pattern by a pair of parenthesis (...). There has to be some method for reporting sub-expression - matches back to the user: this is achieved this by defining a class match_results + matches back to the user: this is achieved this by defining a class match_results that acts as an indexed collection of sub-expression matches, each sub-expression - match being contained in an object of type sub_match. + match being contained in an object of type sub_match.

    - Objects of type sub_match - may only be obtained by subscripting an object of type match_results. + Objects of type sub_match + may only be obtained by subscripting an object of type match_results.

    - Objects of type sub_match + Objects of type sub_match may be compared to objects of type std::basic_string, or const charT* or const charT.

    - Objects of type sub_match + Objects of type sub_match may be added to objects of type std::basic_string, or const charT* or const charT, to produce a new std::basic_string object.

    - When the marked sub-expression denoted by an object of type sub_match participated in a regular + When the marked sub-expression denoted by an object of type sub_match participated in a regular expression match then member matched evaluates to true, and members first and second denote the range of characters [first,second) which formed that match. Otherwise @@ -64,17 +64,17 @@ values.

    - When the marked sub-expression denoted by an object of type sub_match was repeated, then the - sub_match + When the marked sub-expression denoted by an object of type sub_match was repeated, then the + sub_match object represents the match obtained by the last repeat. The complete set of all the captures obtained for all the repeats, may be accessed via the captures() member function (Note: this has serious performance implications, you have to explicitly enable this feature).

    - If an object of type sub_match represents sub-expression + If an object of type sub_match represents sub-expression 0 - that is to say the whole match - then member matched - is always true, unless a partial + is always true, unless a partial match was obtained as a result of the flag match_partial being passed to a regular expression algorithm, in which case member matched is false, and members first and @@ -95,44 +95,44 @@ class sub_match : public std::pair<BidirectionalIterator, BidirectionalIterator> { public: - typedef typename iterator_traits<BidirectionalIterator>::value_type value_type; - typedef typename iterator_traits<BidirectionalIterator>::difference_type difference_type; - typedef BidirectionalIterator iterator; + typedef typename iterator_traits<BidirectionalIterator>::value_type value_type; + typedef typename iterator_traits<BidirectionalIterator>::difference_type difference_type; + typedef BidirectionalIterator iterator; - bool matched; + bool matched; - difference_type length()const; - operator basic_string<value_type>()const; - basic_string<value_type> str()const; + difference_type length()const; + operator basic_string<value_type>()const; + basic_string<value_type> str()const; - int compare(const sub_match& s)const; - int compare(const basic_string<value_type>& s)const; - int compare(const value_type* s)const; + int compare(const sub_match& s)const; + int compare(const basic_string<value_type>& s)const; + int compare(const value_type* s)const; #ifdef BOOST_REGEX_MATCH_EXTRA - typedef implementation-private capture_sequence_type; - const capture_sequence_type& captures()const; + typedef implementation-private capture_sequence_type; + const capture_sequence_type& captures()const; #endif }; // // comparisons to another sub_match: // template <class BidirectionalIterator> -bool operator == (const sub_match<BidirectionalIterator>& lhs, +bool operator == (const sub_match<BidirectionalIterator>& lhs, const sub_match<BidirectionalIterator>& rhs); template <class BidirectionalIterator> -bool operator != (const sub_match<BidirectionalIterator>& lhs, +bool operator != (const sub_match<BidirectionalIterator>& lhs, const sub_match<BidirectionalIterator>& rhs); template <class BidirectionalIterator> -bool operator < (const sub_match<BidirectionalIterator>& lhs, +bool operator < (const sub_match<BidirectionalIterator>& lhs, const sub_match<BidirectionalIterator>& rhs); template <class BidirectionalIterator> -bool operator <= (const sub_match<BidirectionalIterator>& lhs, +bool operator <= (const sub_match<BidirectionalIterator>& lhs, const sub_match<BidirectionalIterator>& rhs); template <class BidirectionalIterator> -bool operator >= (const sub_match<BidirectionalIterator>& lhs, +bool operator >= (const sub_match<BidirectionalIterator>& lhs, const sub_match<BidirectionalIterator>& rhs); template <class BidirectionalIterator> -bool operator > (const sub_match<BidirectionalIterator>& lhs, +bool operator > (const sub_match<BidirectionalIterator>& lhs, const sub_match<BidirectionalIterator>& rhs); @@ -140,63 +140,63 @@ // comparisons to a basic_string: // template <class BidirectionalIterator, class traits, class Allocator> -bool operator == (const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, +bool operator == (const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, traits, Allocator>& lhs, const sub_match<BidirectionalIterator>& rhs); template <class BidirectionalIterator, class traits, class Allocator> -bool operator != (const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, +bool operator != (const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, traits, Allocator>& lhs, const sub_match<BidirectionalIterator>& rhs); template <class BidirectionalIterator, class traits, class Allocator> -bool operator < (const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, +bool operator < (const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, traits, Allocator>& lhs, const sub_match<BidirectionalIterator>& rhs); template <class BidirectionalIterator, class traits, class Allocator> -bool operator > (const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, +bool operator > (const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, traits, Allocator>& lhs, const sub_match<BidirectionalIterator>& rhs); template <class BidirectionalIterator, class traits, class Allocator> -bool operator >= (const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, +bool operator >= (const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, traits, Allocator>& lhs, const sub_match<BidirectionalIterator>& rhs); template <class BidirectionalIterator, class traits, class Allocator> -bool operator <= (const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, +bool operator <= (const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, traits, Allocator>& lhs, const sub_match<BidirectionalIterator>& rhs); template <class BidirectionalIterator, class traits, class Allocator> -bool operator == (const sub_match<BidirectionalIterator>& lhs, +bool operator == (const sub_match<BidirectionalIterator>& lhs, const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, traits, Allocator>& rhs); template <class BidirectionalIterator, class traits, class Allocator> -bool operator != (const sub_match<BidirectionalIterator>& lhs, +bool operator != (const sub_match<BidirectionalIterator>& lhs, const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, traits, Allocator>& rhs); template <class BidirectionalIterator, class traits, class Allocator> -bool operator < (const sub_match<BidirectionalIterator>& lhs, +bool operator < (const sub_match<BidirectionalIterator>& lhs, const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, traits, Allocator>& rhs); template <class BidirectionalIterator, class traits, class Allocator> -bool operator > (const sub_match<BidirectionalIterator>& lhs, +bool operator > (const sub_match<BidirectionalIterator>& lhs, const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, traits, Allocator>& rhs); template <class BidirectionalIterator, class traits, class Allocator> -bool operator >= (const sub_match<BidirectionalIterator>& lhs, +bool operator >= (const sub_match<BidirectionalIterator>& lhs, const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, traits, Allocator>& rhs); template <class BidirectionalIterator, class traits, class Allocator> -bool operator <= (const sub_match<BidirectionalIterator>& lhs, +bool operator <= (const sub_match<BidirectionalIterator>& lhs, const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, traits, Allocator>& rhs); @@ -205,117 +205,117 @@ // comparisons to a pointer to a character array: // template <class BidirectionalIterator> -bool operator == (typename iterator_traits<BidirectionalIterator>::value_type const* lhs, +bool operator == (typename iterator_traits<BidirectionalIterator>::value_type const* lhs, const sub_match<BidirectionalIterator>& rhs); template <class BidirectionalIterator> -bool operator != (typename iterator_traits<BidirectionalIterator>::value_type const* lhs, +bool operator != (typename iterator_traits<BidirectionalIterator>::value_type const* lhs, const sub_match<BidirectionalIterator>& rhs); template <class BidirectionalIterator> -bool operator < (typename iterator_traits<BidirectionalIterator>::value_type const* lhs, +bool operator < (typename iterator_traits<BidirectionalIterator>::value_type const* lhs, const sub_match<BidirectionalIterator>& rhs); template <class BidirectionalIterator> -bool operator > (typename iterator_traits<BidirectionalIterator>::value_type const* lhs, +bool operator > (typename iterator_traits<BidirectionalIterator>::value_type const* lhs, const sub_match<BidirectionalIterator>& rhs); template <class BidirectionalIterator> -bool operator >= (typename iterator_traits<BidirectionalIterator>::value_type const* lhs, +bool operator >= (typename iterator_traits<BidirectionalIterator>::value_type const* lhs, const sub_match<BidirectionalIterator>& rhs); template <class BidirectionalIterator> -bool operator <= (typename iterator_traits<BidirectionalIterator>::value_type const* lhs, +bool operator <= (typename iterator_traits<BidirectionalIterator>::value_type const* lhs, const sub_match<BidirectionalIterator>& rhs); template <class BidirectionalIterator> -bool operator == (const sub_match<BidirectionalIterator>& lhs, +bool operator == (const sub_match<BidirectionalIterator>& lhs, typename iterator_traits<BidirectionalIterator>::value_type const* rhs); template <class BidirectionalIterator> -bool operator != (const sub_match<BidirectionalIterator>& lhs, +bool operator != (const sub_match<BidirectionalIterator>& lhs, typename iterator_traits<BidirectionalIterator>::value_type const* rhs); template <class BidirectionalIterator> -bool operator < (const sub_match<BidirectionalIterator>& lhs, +bool operator < (const sub_match<BidirectionalIterator>& lhs, typename iterator_traits<BidirectionalIterator>::value_type const* rhs); template <class BidirectionalIterator> -bool operator > (const sub_match<BidirectionalIterator>& lhs, +bool operator > (const sub_match<BidirectionalIterator>& lhs, typename iterator_traits<BidirectionalIterator>::value_type const* rhs); template <class BidirectionalIterator> -bool operator >= (const sub_match<BidirectionalIterator>& lhs, +bool operator >= (const sub_match<BidirectionalIterator>& lhs, typename iterator_traits<BidirectionalIterator>::value_type const* rhs); template <class BidirectionalIterator> -bool operator <= (const sub_match<BidirectionalIterator>& lhs, +bool operator <= (const sub_match<BidirectionalIterator>& lhs, typename iterator_traits<BidirectionalIterator>::value_type const* rhs); // // comparisons to a single character: // template <class BidirectionalIterator> -bool operator == (typename iterator_traits<BidirectionalIterator>::value_type const& lhs, +bool operator == (typename iterator_traits<BidirectionalIterator>::value_type const& lhs, const sub_match<BidirectionalIterator>& rhs); template <class BidirectionalIterator> -bool operator != (typename iterator_traits<BidirectionalIterator>::value_type const& lhs, +bool operator != (typename iterator_traits<BidirectionalIterator>::value_type const& lhs, const sub_match<BidirectionalIterator>& rhs); template <class BidirectionalIterator> -bool operator < (typename iterator_traits<BidirectionalIterator>::value_type const& lhs, +bool operator < (typename iterator_traits<BidirectionalIterator>::value_type const& lhs, const sub_match<BidirectionalIterator>& rhs); template <class BidirectionalIterator> -bool operator > (typename iterator_traits<BidirectionalIterator>::value_type const& lhs, +bool operator > (typename iterator_traits<BidirectionalIterator>::value_type const& lhs, const sub_match<BidirectionalIterator>& rhs); template <class BidirectionalIterator> -bool operator >= (typename iterator_traits<BidirectionalIterator>::value_type const& lhs, +bool operator >= (typename iterator_traits<BidirectionalIterator>::value_type const& lhs, const sub_match<BidirectionalIterator>& rhs); template <class BidirectionalIterator> -bool operator <= (typename iterator_traits<BidirectionalIterator>::value_type const& lhs, +bool operator <= (typename iterator_traits<BidirectionalIterator>::value_type const& lhs, const sub_match<BidirectionalIterator>& rhs); template <class BidirectionalIterator> -bool operator == (const sub_match<BidirectionalIterator>& lhs, +bool operator == (const sub_match<BidirectionalIterator>& lhs, typename iterator_traits<BidirectionalIterator>::value_type const& rhs); template <class BidirectionalIterator> -bool operator != (const sub_match<BidirectionalIterator>& lhs, +bool operator != (const sub_match<BidirectionalIterator>& lhs, typename iterator_traits<BidirectionalIterator>::value_type const& rhs); template <class BidirectionalIterator> -bool operator < (const sub_match<BidirectionalIterator>& lhs, +bool operator < (const sub_match<BidirectionalIterator>& lhs, typename iterator_traits<BidirectionalIterator>::value_type const& rhs); template <class BidirectionalIterator> -bool operator > (const sub_match<BidirectionalIterator>& lhs, +bool operator > (const sub_match<BidirectionalIterator>& lhs, typename iterator_traits<BidirectionalIterator>::value_type const& rhs); template <class BidirectionalIterator> -bool operator >= (const sub_match<BidirectionalIterator>& lhs, +bool operator >= (const sub_match<BidirectionalIterator>& lhs, typename iterator_traits<BidirectionalIterator>::value_type const& rhs); template <class BidirectionalIterator> -bool operator <= (const sub_match<BidirectionalIterator>& lhs, +bool operator <= (const sub_match<BidirectionalIterator>& lhs, typename iterator_traits<BidirectionalIterator>::value_type const& rhs); // // addition operators: // 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, + operator + (const std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type, traits, Allocator>& s, const sub_match<BidirectionalIterator>& m); template <class BidirectionalIterator, class traits, class Allocator> std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type, traits, Allocator> - operator + (const sub_match<BidirectionalIterator>& m, + operator + (const sub_match<BidirectionalIterator>& m, const std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type, traits, Allocator>& s); template <class BidirectionalIterator> std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type> - operator + (typename iterator_traits<BidirectionalIterator>::value_type const* s, + operator + (typename iterator_traits<BidirectionalIterator>::value_type const* s, const sub_match<BidirectionalIterator>& m); template <class BidirectionalIterator> std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type> - operator + (const sub_match<BidirectionalIterator>& m, + operator + (const sub_match<BidirectionalIterator>& m, typename iterator_traits<BidirectionalIterator>::value_type const * s); template <class BidirectionalIterator> std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type> - operator + (typename iterator_traits<BidirectionalIterator>::value_type const& s, + operator + (typename iterator_traits<BidirectionalIterator>::value_type const& s, const sub_match<BidirectionalIterator>& m); template <class BidirectionalIterator> std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type> - operator + (const sub_match<BidirectionalIterator>& m, + operator + (const sub_match<BidirectionalIterator>& m, typename iterator_traits<BidirectionalIterator>::value_type const& s); template <class BidirectionalIterator> std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type> - operator + (const sub_match<BidirectionalIterator>& m1, + operator + (const sub_match<BidirectionalIterator>& m1, const sub_match<BidirectionalIterator>& m2); // @@ -323,18 +323,18 @@ // template <class charT, class traits, class BidirectionalIterator> basic_ostream<charT, traits>& - operator << (basic_ostream<charT, traits>& os, + operator << (basic_ostream<charT, traits>& os, const sub_match<BidirectionalIterator>& m); } // namespace boost

    - - Description + + Description
    - - Members + + Members

    @@ -450,7 +450,7 @@ Preconditions: the library must be built and used with BOOST_REGEX_MATCH_EXTRA defined, and you must pass the flag match_extra to the regex - matching functions ( regex_match, regex_search, regex_iterator or regex_token_iterator) in order for + matching functions ( regex_match, regex_search, regex_iterator or regex_token_iterator) in order for this member #function to be defined and return useful information.

    @@ -473,8 +473,8 @@

    - - sub_match + + sub_match non-member operators

    @@ -922,7 +922,7 @@ <= rhs.

    - The addition operators for sub_match allow you to add a sub_match + The addition operators for sub_match allow you to add a sub_match to any type to which you can add a std::string and obtain a new string as the result.

    @@ -1008,8 +1008,8 @@ + m2.str().

    - - Stream inserter + + Stream inserter

    diff --git a/doc/html/boost_regex/ref/syntax_option_type.html b/doc/html/boost_regex/ref/syntax_option_type.html index 47e16b56..16e179c8 100644 --- a/doc/html/boost_regex/ref/syntax_option_type.html +++ b/doc/html/boost_regex/ref/syntax_option_type.html @@ -3,8 +3,8 @@ syntax_option_type - - + + @@ -24,7 +24,7 @@

    @@ -69,7 +69,7 @@

    Specifies that the grammar recognized by the regular expression - engine is the same as that used by POSIX + 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). @@ -112,7 +112,7 @@ Section 4, Utilit\ies, grep (FWD.1).

    - That is to say, the same as POSIX + 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. @@ -132,7 +132,7 @@

    - Specifies that the grammar recognised is the superset of the POSIX-Basic syntax + Specifies that the grammar recognised is the superset of the POSIX-Basic syntax used by the emacs program.

    @@ -199,7 +199,7 @@

    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. + in the supplied match_results structure.

    @@ -238,7 +238,7 @@

    Specifies that character ranges of the form [a-b] - should be locale sensitive. This bit is on by default for POSIX-Basic regular expressions, + 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.

    @@ -295,7 +295,7 @@

    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 + This bit is on by default for POSIX-basic regular expressions, but can be unset to force escapes to be recognised inside lists.

    @@ -368,11 +368,31 @@

    - Prevents basic_regex from throwing + Prevents basic_regex from throwing an exception when an invalid expression is encountered.

    + + +

    + save_subexpression_location +

    + + +

    + 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. +

    + +
    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 a3291b78..64163afc 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,8 +3,8 @@ Options for POSIX Extended Regular Expressions - - + + @@ -24,11 +24,11 @@

    - Exactly one of the following must always be set for POSIX + Exactly one of the following must always be set for POSIX extended regular expressions:

    @@ -75,7 +75,7 @@ (FWD.1).

    - Refer to the POSIX + Refer to the POSIX extended regular expression guide for more information.

    @@ -106,7 +106,7 @@ grep (FWD.1).

    - That is to say, the same as POSIX + That is to say, the same as POSIX extended syntax, but with the newline character acting as an alternation character in addition to "|".

    @@ -131,7 +131,7 @@ and Utilities, Section 4, awk (FWD.1).

    - That is to say: the same as POSIX + That is to say: the same as POSIX extended syntax, but with escape sequences in character classes permitted.

    @@ -207,7 +207,7 @@

    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. + in the supplied match_results structure.

    @@ -323,11 +323,31 @@ + + + + +

    - Prevents basic_regex from throwing + Prevents basic_regex from throwing an exception when an invalid expression is encountered.

    +

    + save_subexpression_location +

    +
    +

    + 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. +

    +
    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 5914a382..c948c3f6 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,8 +3,8 @@ Options for Literal Strings - - + + @@ -24,7 +24,7 @@

    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 1ebb3e4c..1ece1a8b 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,8 +3,8 @@ Overview of syntax_option_type - - + + @@ -24,13 +24,13 @@

    - The type syntax_option_type is an implementation + The type syntax_option_type is an implementation specific bitmask type (see C++ standard 17.3.2.1.2). Setting its elements - has the effects listed in the table below, a valid value of type syntax_option_type + has the effects listed in the table below, a valid value of type syntax_option_type will always have exactly one of the elements normal, basic, extended, awk, grep, @@ -39,7 +39,7 @@

    Note that for convenience all the constants listed here are duplicated - within the scope of class template basic_regex, so you can use any + within the scope of class template basic_regex, so you can use any of:

    boost::regex_constants::constant_name
    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 46962821..b6168a64 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,8 +3,8 @@
     
     Options for Perl Regular Expressions
     
    -
    -
    +
    +
     
     
     
    @@ -24,7 +24,7 @@
     

    @@ -73,7 +73,7 @@ part 10, RegExp (Regular Expression) Objects (FWD.1).

    - This is functionally identical to the Perl + This is functionally identical to the Perl regular expression syntax.

    @@ -211,7 +211,7 @@

    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. + in the supplied match_results structure.

    @@ -286,7 +286,7 @@

    - Prevents basic_regex from throwing + Prevents basic_regex from throwing an exception when an invalid expression is encountered.

    @@ -371,6 +371,26 @@

    + + +

    + save_subexpression_location +

    + + +

    + 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. +

    + +
    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 9fbc0e06..89ce344b 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,8 +3,8 @@ syntax_option_type Synopsis - - + + @@ -24,15 +24,15 @@

    - Type syntax_option_type + Type syntax_option_type is an implementation specific bitmask type that controls how a regular expression string is to be interpreted. For convenience note that all the constants listed here, are also duplicated within the scope of class template - basic_regex. + basic_regex.

    namespace std{ namespace regex_constants{
     
    @@ -54,8 +54,33 @@
     static const syntax_option_type nosubs;
     static const syntax_option_type optimize;
     static const syntax_option_type collate;
    -// other Boost.Regex specific options are listed below
    +
    +// 
    +// The remaining options are specific to Boost.Regex:
    +//
     
    +// Options common to both Perl and POSIX regular expressions:
    +static const syntax_option_type newline_alt;
    +static const syntax_option_type no_except;
    +static const syntax_option_type  save_subexpression_location;
    +
    +// Perl specific options:
    +static const syntax_option_type no_mod_m;
    +static const syntax_option_type no_mod_s;
    +static const syntax_option_type mod_s;
    +static const syntax_option_type mod_x;
    +
    +// POSIX extended specific options:
    +static const syntax_option_type no_escape_in_lists;
    +static const syntax_option_type no_bk_refs;
    +
    +// POSIX basic specific options:
    +static const syntax_option_type no_escape_in_lists;
    +static const syntax_option_type no_char_classes;
    +static const syntax_option_type no_intervals;
    +static const syntax_option_type bk_plus_qm;
    +static const syntax_option_type bk_vbar;
    +
     } // namespace regex_constants
     } // namespace std
     
    diff --git a/doc/html/boost_regex/syntax.html b/doc/html/boost_regex/syntax.html index 2509541a..ff46f19b 100644 --- a/doc/html/boost_regex/syntax.html +++ b/doc/html/boost_regex/syntax.html @@ -3,8 +3,8 @@ Regular Expression Syntax - - + + @@ -24,7 +24,7 @@
    Perl Regular Expression @@ -63,15 +63,15 @@

    diff --git a/doc/html/boost_regex/syntax/basic_extended.html b/doc/html/boost_regex/syntax/basic_extended.html index 48398b60..fe1d4cfa 100644 --- a/doc/html/boost_regex/syntax/basic_extended.html +++ b/doc/html/boost_regex/syntax/basic_extended.html @@ -3,8 +3,8 @@ POSIX Extended Regular Expression Syntax - - + + @@ -24,12 +24,12 @@

    - - Synopsis + + Synopsis

    The POSIX-Extended regular expression syntax is supported by the POSIX C @@ -46,8 +46,8 @@

    - - POSIX + + POSIX Extended Syntax

    @@ -56,8 +56,8 @@

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

    The single character '.' when used outside of a character set will match @@ -74,8 +74,8 @@

    - - Anchors: + + Anchors:

    A '^' character shall match the start of a line when used as the first character @@ -86,8 +86,8 @@ of an expression, or the last character of a sub-expression.

    - - Marked + + Marked sub-expressions:

    @@ -98,8 +98,8 @@ to by a back-reference.

    - - Repeats: + + Repeats:

    Any atom (a single character, a marked sub-expression, or a character class) @@ -184,8 +184,8 @@ cab operator to be applied to.

    - - Back references: + + Back references:

    An escape character followed by a digit n, where n @@ -214,8 +214,8 @@ cab

    - - Alternation + + Alternation

    The | operator will match either @@ -227,8 +227,8 @@ cab will match either of "abd" or "abef".

    - - Character + + Character sets:

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

    - - Single + + Single characters:

    @@ -249,8 +249,8 @@ cab or 'c'.

    - - Character + + Character ranges:

    @@ -260,13 +260,13 @@ cab within the range y to z, if it collates within that range; this results in locale specific behavior . This behavior can be turned off by unsetting the collate - option flag - in + option flag - in which case whether a character appears within a range is determined by comparing the code points of the characters only.

    - - Negation: + + Negation:

    If the bracket-expression begins with the ^ character, then it matches the @@ -274,18 +274,18 @@ cab range a-c.

    - - Character + + Character classes:

    An expression of the form [[:name:]] matches the named character class "name", for example [[:lower:]] matches any lower case character. See - character class names. + character class names.

    - - Collating + + Collating Elements:

    @@ -304,7 +304,7 @@ cab match either one of the characters 'abc^'.

    - As an extension, a collating element may also be specified via its symbolic name, for example: + As an extension, a collating element may also be specified via its symbolic name, for example:

    [[.NUL.]]
     
    @@ -312,15 +312,15 @@ cab matches a NUL character.

    - - Equivalence + + Equivalence classes:

    An expression of the form [[=col=]], matches any character or collating element whose primary sort key is the same as that for collating element col, as with colating - elements the name col may be a symbolic + 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 @@ -329,16 +329,16 @@ cab or even all locales on one platform.

    - - Combinations: + + Combinations:

    All of the above can be combined in one character set declaration, for example: [[:digit:]a-c[.NUL.]].

    - - Escapes + + Escapes

    The POSIX standard defines no escape sequences for POSIX-Extended regular @@ -363,8 +363,8 @@ cab extensions are also supported by Boost.Regex:

    - - Escapes + + Escapes matching a specific character

    @@ -552,8 +552,8 @@ cab

    - - "Single + + "Single character" character classes:

    @@ -706,8 +706,8 @@ cab

    - - Character + + Character Properties

    @@ -813,8 +813,8 @@ cab matches any "digit" character, as does \p{digit}.

    - - Word Boundaries + + Word Boundaries

    The following escape sequences match the boundaries of words: @@ -888,8 +888,8 @@ cab

    - - Buffer + + Buffer boundaries

    @@ -979,8 +979,8 @@ cab

    - - Continuation + + Continuation Escape

    @@ -991,8 +991,8 @@ cab match to start where the last one ended.

    - - Quoting + + Quoting escape

    @@ -1005,8 +1005,8 @@ cab \*+aaa

    - - Unicode + + Unicode escapes
    @@ -1056,8 +1056,8 @@ cab
    - - Any other + + Any other escape

    @@ -1065,8 +1065,8 @@ cab \@ matches a literal '@'.

    - - Operator + + Operator precedence

    @@ -1101,27 +1101,27 @@ cab

    - - What + + What Gets Matched

    When there is more that one way to match a regular expression, the "best" - possible match is obtained using the leftmost-longest + possible match is obtained using the leftmost-longest rule.

    - - Variations + + Variations

    - - Egrep + + Egrep

    - When an expression is compiled with the flag + When an expression is compiled with the flag egrep set, then the - expression is treated as a newline separated list of POSIX-Extended + expression is treated as a newline separated list of POSIX-Extended expressions, a match is found if any of the expressions in the list match, for example:

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

    - - awk + + awk

    - In addition to the POSIX-Extended + In addition to the POSIX-Extended features the escape character is special inside a character class declaration.

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

    - - Options + + Options

    - There are a variety + There are a variety of flags that may be combined with the extended and egrep options when constructing - the regular expression, in particular note that the newline_alt option alters the syntax, - while the collate, nosubs + the regular expression, in particular note that the newline_alt option alters the syntax, + while the collate, nosubs and icase options modify how the case and locale sensitivity are to be applied.

    - - References + + References

    IEEE diff --git a/doc/html/boost_regex/syntax/basic_syntax.html b/doc/html/boost_regex/syntax/basic_syntax.html index c9521955..87d92ff1 100644 --- a/doc/html/boost_regex/syntax/basic_syntax.html +++ b/doc/html/boost_regex/syntax/basic_syntax.html @@ -3,8 +3,8 @@ POSIX Basic Regular Expression Syntax - - + + @@ -24,18 +24,18 @@

    - - Synopsis + + Synopsis

    The POSIX-Basic regular expression syntax is used by the Unix utility sed, and variations are used by grep and emacs. You can construct POSIX basic regular expressions in Boost.Regex by passing the flag basic to the regex - constructor (see syntax_option_type), for example: + constructor (see syntax_option_type), for example:

    // e1 is a case sensitive POSIX-Basic expression:
     boost::regex e1(my_expression, boost::regex::basic);
    @@ -45,8 +45,8 @@
     

    - - POSIX + + POSIX Basic Syntax

    @@ -55,8 +55,8 @@

    .[\*^$
    - - Wildcard: + + Wildcard:

    The single character '.' when used outside of a character set will match @@ -73,8 +73,8 @@

    - - Anchors: + + Anchors:

    A '^' character shall match the start of a line when used as the first character @@ -85,8 +85,8 @@ of an expression, or the last character of a sub-expression.

    - - Marked + + Marked sub-expressions:

    @@ -97,8 +97,8 @@ by a back-reference.

    - - Repeats: + + Repeats:

    Any atom (a single character, a marked sub-expression, or a character class) @@ -155,8 +155,8 @@ aaaa to.

    - - Back references: + + Back references:

    An escape character followed by a digit n, where n @@ -173,8 +173,8 @@ aaaa

    aaabba
    - - Character + + Character sets:

    @@ -186,8 +186,8 @@ aaaa A bracket expression may contain any combination of the following:

    - - Single + + Single characters:

    @@ -195,8 +195,8 @@ aaaa or 'c'.

    - - Character + + Character ranges:

    @@ -211,8 +211,8 @@ aaaa of the characters only.

    - - Negation: + + Negation:

    If the bracket-expression begins with the ^ character, then it matches the @@ -220,18 +220,18 @@ aaaa range a-c.

    - - Character + + Character classes:

    An expression of the form [[:name:]] matches the named character class "name", for example [[:lower:]] matches any lower case character. See - character class names. + character class names.

    - - Collating + + Collating Elements:

    @@ -255,19 +255,19 @@ aaaa

    [[.NUL.]]

    - matches a 'NUL' character. See collating + matches a 'NUL' character. See collating element names.

    - - Equivalence + + Equivalence classes:

    An expression of theform [[=col=]], matches any character or collating element whose primary sort key is the same as that for collating element col, as with collating - elements the name col may be a collating + 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 @@ -276,16 +276,16 @@ aaaa or even all locales on one platform.

    - - Combinations: + + Combinations:

    All of the above can be combined in one character set declaration, for example: [[:digit:]a-c[.NUL.]].

    - - Escapes + + Escapes

    With the exception of the escape sequences \{, \}, \(, and \), which are @@ -299,45 +299,45 @@ aaaa will match either a literal '\' or a '^'.

    - - What Gets + + What Gets Matched

    When there is more that one way to match a regular expression, the "best" - possible match is obtained using the leftmost-longest + possible match is obtained using the leftmost-longest rule.

    - - Variations + + Variations

    - - Grep + + Grep

    When an expression is compiled with the flag grep - set, then the expression is treated as a newline separated list of POSIX-Basic expressions, a match + set, then the expression is treated as a newline separated list of POSIX-Basic expressions, a match is found if any of the expressions in the list match, for example:

    boost::regex e("abc\ndef", boost::regex::grep);
     

    - will match either of the POSIX-Basic + will match either of the POSIX-Basic expressions "abc" or "def".

    As its name suggests, this behavior is consistent with the Unix utility grep.

    - - emacs + + emacs

    - In addition to the POSIX-Basic features + In addition to the POSIX-Basic features the following characters are also special:

    @@ -606,29 +606,29 @@ aaaa

    Finally, you should note that emacs style regular expressions are matched - according to the Perl + according to the Perl "depth first search" rules. Emacs expressions are matched this way because they contain Perl-like extensions, that do not interact - well with the POSIX-style + well with the POSIX-style leftmost-longest rule.

    - - Options + + Options

    - There are a variety + There are a variety of flags that may be combined with the basic and grep options when constructing - the regular expression, in particular note that the newline_alt, no_char_classes, + the regular expression, in particular note that the newline_alt, no_char_classes, no-intervals, bk_plus_qm and bk_plus_vbar options - all alter the syntax, while the collate and icase + all alter the syntax, while the collate and icase options modify how the case and locale sensitivity are to be applied.

    - - References + + References

    IEEE diff --git a/doc/html/boost_regex/syntax/character_classes.html b/doc/html/boost_regex/syntax/character_classes.html index a149c5d5..730370e1 100644 --- a/doc/html/boost_regex/syntax/character_classes.html +++ b/doc/html/boost_regex/syntax/character_classes.html @@ -3,8 +3,8 @@ Character Class Names - - + + @@ -24,7 +24,7 @@

    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 d9addc04..13e92c0d 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,8 +3,8 @@ Character classes that are supported by Unicode Regular Expressions - - + + @@ -24,7 +24,7 @@

    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 2826f46f..f662c10c 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,8 +3,8 @@ Character Classes that are Always Supported - - + + @@ -24,7 +24,7 @@

    diff --git a/doc/html/boost_regex/syntax/collating_names.html b/doc/html/boost_regex/syntax/collating_names.html index 4902501a..c2ff15a2 100644 --- a/doc/html/boost_regex/syntax/collating_names.html +++ b/doc/html/boost_regex/syntax/collating_names.html @@ -3,8 +3,8 @@ Collating Names - - + + @@ -24,7 +24,7 @@

    Digraphs
    diff --git a/doc/html/boost_regex/syntax/collating_names/digraphs.html b/doc/html/boost_regex/syntax/collating_names/digraphs.html index f7132b3d..661301ad 100644 --- a/doc/html/boost_regex/syntax/collating_names/digraphs.html +++ b/doc/html/boost_regex/syntax/collating_names/digraphs.html @@ -3,8 +3,8 @@ Digraphs - - + + @@ -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 3cc6c247..fdadc6e9 100644 --- a/doc/html/boost_regex/syntax/collating_names/named_unicode.html +++ b/doc/html/boost_regex/syntax/collating_names/named_unicode.html @@ -3,8 +3,8 @@ Named Unicode Characters - - + + @@ -24,11 +24,11 @@

    - When using Unicode aware regular expressions + When using Unicode aware regular expressions (with the u32regex type), all the normal symbolic names for Unicode characters (those given in Unidata.txt) are recognised. So for example: 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 1ab94332..99d05b20 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,8 +3,8 @@ POSIX Symbolic Names - - + + @@ -24,7 +24,7 @@

    diff --git a/doc/html/boost_regex/syntax/leftmost_longest_rule.html b/doc/html/boost_regex/syntax/leftmost_longest_rule.html index 38cb3b76..951db6aa 100644 --- a/doc/html/boost_regex/syntax/leftmost_longest_rule.html +++ b/doc/html/boost_regex/syntax/leftmost_longest_rule.html @@ -3,8 +3,8 @@ The Leftmost Longest Rule - - + + @@ -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 2c1bf3b3..b4f5427f 100644 --- a/doc/html/boost_regex/syntax/perl_syntax.html +++ b/doc/html/boost_regex/syntax/perl_syntax.html @@ -3,8 +3,8 @@ Perl Regular Expression Syntax - - + + @@ -24,18 +24,18 @@

    - - Synopsis + + Synopsis

    The Perl regular expression syntax is based on that used by the programming language Perl . Perl regular expressions are the default behavior in Boost.Regex or you can pass the flag perl - to the basic_regex + to the basic_regex constructor, for example:

    // e1 is a case sensitive Perl regular expression: 
    @@ -45,8 +45,8 @@
     boost::regex e2(my_expression, boost::regex::perl|boost::regex::icase);
     

    - - Perl + + Perl Regular Expression Syntax

    @@ -55,8 +55,8 @@

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

    The single character '.' when used outside of a character set will match @@ -64,19 +64,19 @@

    - - Anchors + + Anchors

    A '^' character shall match the start of a line. @@ -85,8 +85,8 @@ A '$' character shall match the end of a line.

    - - Marked + + Marked sub-expressions

    @@ -97,8 +97,8 @@ to by a back-reference.

    - - Non-marking + + Non-marking grouping

    @@ -111,8 +111,8 @@ out any separate sub-expressions.

    - - Repeats + + Repeats

    Any atom (a single character, a marked sub-expression, or a character class) @@ -197,8 +197,8 @@ operator to be applied to.

    - - Non greedy + + Non greedy repeats

    @@ -228,8 +228,8 @@ input as possible.

    - - Back references + + Back references

    An escape character followed by a digit n, where n @@ -248,8 +248,8 @@

    aaabba
     
    - - Alternation + + Alternation

    The | operator will match either @@ -277,8 +277,8 @@ (?:abc)?? has exactly the same effect.

    - - Character sets + + Character sets

    A character set is a bracket-expression starting with [ @@ -290,16 +290,16 @@ A bracket expression may contain any combination of the following:

    - - Single characters + + Single characters

    For example [abc], will match any of the characters 'a', 'b', or 'c'.

    - - Character + + Character ranges

    @@ -307,12 +307,12 @@ will match any single character in the range 'a' to 'c'. By default, for Perl regular expressions, a character x is within the range y to z, if the code point of the character lies within the codepoints of the endpoints of - the range. Alternatively, if you set the collate flag when constructing the + the range. Alternatively, if you set the collate flag when constructing the regular expression, then ranges are locale sensitive.

    - - Negation + + Negation

    If the bracket-expression begins with the ^ character, then it matches the @@ -320,18 +320,18 @@ range a-c.

    - - Character + + Character classes

    An expression of the form [[:name:]] matches the named character class "name", for example [[:lower:]] matches any lower case character. See - character class names. + character class names.

    - - Collating + + Collating Elements

    @@ -345,7 +345,7 @@ a single collating element in the current locale.

    - As an extension, a collating element may also be specified via it's symbolic name, for example: + As an extension, a collating element may also be specified via it's symbolic name, for example:

    [[.NUL.]]
     
    @@ -354,15 +354,15 @@ character.

    - - Equivalence + + Equivalence classes

    An expression of the form [[=col=]], matches any character or collating element whose primary sort key is the same as that for collating element col, as with collating - elements the name col may be a symbolic + 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 @@ -371,8 +371,8 @@ or even all locales on one platform.

    - - Escaped + + Escaped Characters

    @@ -383,16 +383,16 @@ is not a "word" character.

    - - Combinations + + Combinations

    All of the above can be combined in one character set declaration, for example: [[:digit:]a-c[.NUL.]].

    - - Escapes + + Escapes

    Any special character preceded by an escape shall match itself. @@ -576,7 +576,7 @@

    - Matches the single character which has the symbolic + Matches the single character which has the symbolic name name. For example \N{newline} matches the single character \n.

    @@ -584,8 +584,8 @@
    - - "Single + + "Single character" character classes:

    @@ -738,13 +738,13 @@

    - - Character + + Character Properties

    The character property names in the following table are all equivalent to - the names used in character + the names used in character classes.

    @@ -846,8 +846,8 @@ matches any "digit" character, as does \p{digit}.

    - - Word Boundaries + + Word Boundaries

    The following escape sequences match the boundaries of words: @@ -868,8 +868,8 @@ Matches only when not at a word boundary.

    - - Buffer boundaries + + Buffer boundaries

    The following match only at buffer boundaries: a "buffer" in this @@ -893,8 +893,8 @@ to the regular expression \n*\z

    - - Continuation + + Continuation Escape

    @@ -905,8 +905,8 @@ match to start where the last one ended.

    - - Quoting escape + + Quoting escape

    The escape sequence \Q @@ -918,8 +918,8 @@ \*+aaa

    - - Unicode escapes + + Unicode escapes

    \C @@ -929,8 +929,8 @@ combining characters.

    - - Any other + + Any other escape

    @@ -938,8 +938,8 @@ \@ matches a literal '@'.

    - - Perl + + Perl Extended Patterns

    @@ -947,8 +947,8 @@ (?.

    - - Comments + + Comments

    (?# ... @@ -956,8 +956,8 @@ are ignored.

    - - Modifiers + + Modifiers

    (?imsx-imsx ... ) alters @@ -971,8 +971,8 @@ applies the specified modifiers to pattern only.

    - - Non-marking + + Non-marking groups

    @@ -980,8 +980,8 @@ an additional sub-expression.

    - - Lookahead + + Lookahead

    (?=pattern) consumes zero characters, only if pattern @@ -1003,8 +1003,8 @@ could be used to validate the password.

    - - Lookbehind + + Lookbehind

    (?<=pattern) consumes zero characters, only if pattern @@ -1017,8 +1017,8 @@ (pattern must be of fixed length).

    - - Independent + + Independent sub-expressions

    @@ -1030,8 +1030,8 @@ no match is found at all.

    - - Conditional + + Conditional Expressions

    @@ -1050,8 +1050,8 @@ sub-expression has been matched).

    - - Operator + + Operator precedence

    @@ -1086,8 +1086,8 @@

    - - What gets + + What gets matched

    @@ -1099,7 +1099,7 @@ Alternatively:

    - The best match found is the leftmost + The best match found is the leftmost match, with individual elements matched as follows;

    @@ -1271,20 +1271,20 @@

    - - Variations + + Variations

    - The options + The options normal, ECMAScript, JavaScript and JScript are all synonyms for perl.

    - - Options + + Options

    - There are a variety + There are a variety of flags that may be combined with the perl option when constructing the regular expression, in particular note that the newline_alt option alters @@ -1293,20 +1293,20 @@ sensitivity are to be applied.

    - - Pattern + + Pattern Modifiers

    The perl smix modifiers can either be applied using a (?smix-smix) prefix to the regular expression, or with - one of the regex-compile + one of the regex-compile time flags no_mod_m, mod_x, mod_s, and no_mod_s.

    - - References + + References

    Perl 5.8. diff --git a/doc/html/boost_regex/unicode.html b/doc/html/boost_regex/unicode.html index 72e5dbb2..85678400 100644 --- a/doc/html/boost_regex/unicode.html +++ b/doc/html/boost_regex/unicode.html @@ -3,8 +3,8 @@ Unicode and Boost.Regex - - + + @@ -24,14 +24,14 @@

    There are two ways to use Boost.Regex with Unicode strings:

    - - Rely on wchar_t + + Rely on wchar_t

    If your platform's wchar_t type @@ -56,16 +56,16 @@

    - - Use + + Use a Unicode Aware Regular Expression Type.

    If you have the ICU - library, then Boost.Regex can be configured + library, then Boost.Regex can be configured to make use of it, and provide a distinct regular expression type (boost::u32regex), that supports both Unicode specific character properties, and the searching - of text that is encoded in either UTF-8, UTF-16, or UTF-32. See: ICU + of text that is encoded in either UTF-8, UTF-16, or UTF-32. See: ICU string class support.

    diff --git a/doc/html/index.html b/doc/html/index.html index 24529589..a76835e6 100644 --- a/doc/html/index.html +++ b/doc/html/index.html @@ -3,8 +3,8 @@ Boost.Regex - - + + @@ -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 23, 2008 at 14:48:47 GMT

    Last revised: December 22, 2008 at 19:39:18 GMT


    diff --git a/doc/syntax_option_type.qbk b/doc/syntax_option_type.qbk index 6fca76f9..f501fcf4 100644 --- a/doc/syntax_option_type.qbk +++ b/doc/syntax_option_type.qbk @@ -35,7 +35,32 @@ duplicated within the scope of class template [basic_regex]. static const syntax_option_type nosubs; static const syntax_option_type optimize; static const syntax_option_type collate; - // other Boost.Regex specific options are listed below + + // + // The remaining options are specific to Boost.Regex: + // + + // Options common to both Perl and POSIX regular expressions: + static const syntax_option_type newline_alt; + static const syntax_option_type no_except; + static const syntax_option_type save_subexpression_location; + + // Perl specific options: + static const syntax_option_type no_mod_m; + static const syntax_option_type no_mod_s; + static const syntax_option_type mod_s; + static const syntax_option_type mod_x; + + // POSIX extended specific options: + static const syntax_option_type no_escape_in_lists; + static const syntax_option_type no_bk_refs; + + // POSIX basic specific options: + static const syntax_option_type no_escape_in_lists; + static const syntax_option_type no_char_classes; + static const syntax_option_type no_intervals; + static const syntax_option_type bk_plus_qm; + static const syntax_option_type bk_vbar; } // namespace regex_constants } // namespace std @@ -126,6 +151,9 @@ The following options may also be set when using perl-style regular expressions: whether `match_not_dot_newline` is set in the match flags.]] [[mod_x][No][Turns on the perl x-modifier: causes unescaped whitespace in the expression to be ignored.]] +[[save_subexpression_location][No][When set then the locations of individual +sub-expressions within the ['original regular expression string] can be accessed +via the [link boost_regex.basic_regex.subexpression `subexpression()`] member function of `basic_regex`.]] ] [endsect] @@ -203,6 +231,9 @@ The following options may also be set when using POSIX extended regular expressi to support for backreferences on.]] [[no_except][No][Prevents [basic_regex] from throwing an exception when an invalid expression is encountered.]] +[[save_subexpression_location][No][When set then the locations of individual +sub-expressions within the ['original regular expression string] can be accessed +via the [link boost_regex.basic_regex.subexpression `subexpression()`] member function of `basic_regex`.]] ] [endsect] @@ -268,6 +299,9 @@ The following options may also be set when using POSIX basic regular expressions [[bk_vbar][No][When set then `\|` acts as the alternation operator.]] [[no_except][No][Prevents [basic_regex] from throwing an exception when an invalid expression is encountered.]] +[[save_subexpression_location][No][When set then the locations of individual +sub-expressions within the ['original regular expression string] can be accessed +via the [link boost_regex.basic_regex.subexpression `subexpression()`] member function of `basic_regex`.]] ] [endsect] diff --git a/include/boost/regex/v4/basic_regex.hpp b/include/boost/regex/v4/basic_regex.hpp index 018a30f9..cb9ff3c5 100644 --- a/include/boost/regex/v4/basic_regex.hpp +++ b/include/boost/regex/v4/basic_regex.hpp @@ -74,6 +74,9 @@ struct regex_data unsigned int m_can_be_null; // whether we can match a null string re_detail::raw_storage m_data; // the buffer in which our states are constructed typename traits::char_class_type m_word_mask; // mask used to determine if a character is a word character + std::vector< + std::pair< + std::size_t, std::size_t> > m_subs; // Position of sub-expressions within the *string*. }; // // class basic_regex_implementation @@ -122,6 +125,14 @@ public: { return this->m_expression; } + 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."); + const std::pair& pi = this->m_subs.at(n - 1); + std::pair p(expression() + pi.first, expression() + pi.second); + return p; + } // // begin, end: const_iterator BOOST_REGEX_CALL begin()const @@ -366,7 +377,13 @@ public: return m_pimpl.get() ? m_pimpl->str() : std::basic_string(); } // - // begin, end: + // begin, end, subexpression: + 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."); + return m_pimpl->subexpression(n); + } const_iterator BOOST_REGEX_CALL begin()const { return (m_pimpl.get() ? m_pimpl->begin() : 0); diff --git a/include/boost/regex/v4/basic_regex_parser.hpp b/include/boost/regex/v4/basic_regex_parser.hpp index b2d99f09..38542bf9 100644 --- a/include/boost/regex/v4/basic_regex_parser.hpp +++ b/include/boost/regex/v4/basic_regex_parser.hpp @@ -368,7 +368,11 @@ bool basic_regex_parser::parse_open_paren() // unsigned markid = 0; if(0 == (this->flags() & regbase::nosubs)) + { markid = ++m_mark_count; + if(this->flags() & regbase::save_subexpression_location) + this->m_pdata->m_subs.push_back(std::pair(std::distance(m_base, m_position) - 1, 0)); + } re_brace* pb = static_cast(this->append_state(syntax_element_startmark, sizeof(re_brace))); pb->index = markid; std::ptrdiff_t last_paren_start = this->getoffset(pb); @@ -415,6 +419,8 @@ bool basic_regex_parser::parse_open_paren() return false; } BOOST_ASSERT(this->m_traits.syntax_type(*m_position) == regex_constants::syntax_close_mark); + if(markid && (this->flags() & regbase::save_subexpression_location)) + this->m_pdata->m_subs.at(markid - 1).second = std::distance(m_base, m_position); ++m_position; // // append closing parenthesis state: diff --git a/include/boost/regex/v4/perl_matcher.hpp b/include/boost/regex/v4/perl_matcher.hpp index a6e31f77..33afe6e9 100644 --- a/include/boost/regex/v4/perl_matcher.hpp +++ b/include/boost/regex/v4/perl_matcher.hpp @@ -65,10 +65,16 @@ inline bool can_start(unsigned short c, const unsigned char* map, unsigned char #if defined(WCHAR_MIN) && (WCHAR_MIN == 0) && !defined(BOOST_NO_INTRINSIC_WCHAR_T) inline bool can_start(wchar_t c, const unsigned char* map, unsigned char mask) { - return ((c >= (1 << CHAR_BIT)) ? true : map[c] & mask); + return ((c >= static_cast(1u << CHAR_BIT)) ? true : map[c] & mask); } #endif #endif +#if !defined(BOOST_NO_INTRINSIC_WCHAR_T) +inline bool can_start(unsigned int c, const unsigned char* map, unsigned char mask) +{ + return (((c >= static_cast(1u << CHAR_BIT)) ? true : map[c] & mask)); +} +#endif // diff --git a/include/boost/regex/v4/regbase.hpp b/include/boost/regex/v4/regbase.hpp index d27799c3..a6d8e7d1 100644 --- a/include/boost/regex/v4/regbase.hpp +++ b/include/boost/regex/v4/regbase.hpp @@ -84,6 +84,7 @@ public: nocollate = 0, // don't use locale specific collation (deprecated) collate = 1 << 21, // use locale specific collation nosubs = 1 << 22, // don't mark sub-expressions + save_subexpression_location = 1 << 23, // save subexpression locations optimize = 0, // not really supported @@ -141,6 +142,7 @@ namespace regex_constants{ mod_x = ::boost::regbase::mod_x, mod_s = ::boost::regbase::mod_s, no_mod_s = ::boost::regbase::no_mod_s, + save_subexpression_location = ::boost::regbase::save_subexpression_location, basic = ::boost::regbase::basic, extended = ::boost::regbase::extended, diff --git a/include/boost/regex/v4/regex_format.hpp b/include/boost/regex/v4/regex_format.hpp index ea55ed66..d114c2ed 100644 --- a/include/boost/regex/v4/regex_format.hpp +++ b/include/boost/regex/v4/regex_format.hpp @@ -231,6 +231,8 @@ void basic_regex_formatter::format_perl() // // OK find out what kind it is: // + bool have_brace = false; + const char_type* save_position = m_position; switch(*m_position) { case '&': @@ -248,22 +250,28 @@ void basic_regex_formatter::format_perl() case '$': put(*m_position++); break; + case '{': + have_brace = true; + ++m_position; + // fall through.... default: // see if we have a number: { 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); - if(v < 0) + if((v < 0) || (have_brace && ((m_position == m_end) || (*m_position != '}')))) { // leave the $ as is, and carry on: - --m_position; + m_position = --save_position; put(*m_position); ++m_position; break; } // otherwise output sub v: put(this->m_results[v]); + if(have_brace) + ++m_position; } } } diff --git a/include/boost/regex/v4/u32regex_token_iterator.hpp b/include/boost/regex/v4/u32regex_token_iterator.hpp index 72669ac4..2726d486 100644 --- a/include/boost/regex/v4/u32regex_token_iterator.hpp +++ b/include/boost/regex/v4/u32regex_token_iterator.hpp @@ -285,7 +285,7 @@ inline u32regex_token_iterator make_u32regex_token_iterator(cons #if !defined(U_WCHAR_IS_UTF16) && (U_SIZEOF_WCHAR_T != 2) inline u32regex_token_iterator make_u32regex_token_iterator(const UChar* p, const u32regex& e, int submatch = 0, 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 @@ -347,7 +347,7 @@ inline u32regex_token_iterator make_u32regex_token_iterator(cons #if !defined(U_WCHAR_IS_UTF16) && (U_SIZEOF_WCHAR_T != 2) inline u32regex_token_iterator make_u32regex_token_iterator(const UChar* p, const u32regex& e, const std::vector& submatch, 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 diff --git a/test/regress/test_regex_search.hpp b/test/regress/test_regex_search.hpp index 879ede77..debb1efb 100644 --- a/test/regress/test_regex_search.hpp +++ b/test/regress/test_regex_search.hpp @@ -471,6 +471,38 @@ void test(boost::basic_regex& r, const test_regex_search_tag&) test_regex_token_iterator(r); test_regex_grep(r); test_regex_match(r); + // + // Verify sub-expression locations: + // + if((syntax_options & boost::regbase::save_subexpression_location) == 0) + { + bool have_except = false; + try + { + r.subexpression(1); + } + catch(const std::out_of_range&) + { + have_except = true; + } + if(!have_except) + { + BOOST_REGEX_TEST_ERROR("Expected std::out_of_range error was not found.", charT); + } + } + r.assign(expression, syntax_options | boost::regbase::save_subexpression_location); + for(std::size_t i = 1; i < r.mark_count(); ++i) + { + std::pair p = r.subexpression(i); + if(*p.first != '(') + { + BOOST_REGEX_TEST_ERROR("Starting location of sub-expression " << i << " iterator was invalid.", charT); + } + if(*p.second != ')') + { + BOOST_REGEX_TEST_ERROR("Ending location of sub-expression " << i << " iterator was invalid.", charT); + } + } } catch(const boost::bad_expression& e) { diff --git a/test/regress/test_replace.cpp b/test/regress/test_replace.cpp index 446b6e93..e2acf380 100644 --- a/test/regress/test_replace.cpp +++ b/test/regress/test_replace.cpp @@ -116,5 +116,15 @@ void test_replace() TEST_REGEX_REPLACE("x", literal|icase, "xx", match_default|format_all, "a", "aa"); // literals: TEST_REGEX_REPLACE("(a(c)?)|(b)", perl, "acab", match_default|format_literal, "\\&$", "\\&$\\&$\\&$"); + // Bracketed sub expressions: + TEST_REGEX_REPLACE("a+", perl, "...aaa,,,", match_default, "$", "...$,,,"); + TEST_REGEX_REPLACE("a+", perl, "...aaa,,,", match_default, "${", "...${,,,"); + TEST_REGEX_REPLACE("a+", perl, "...aaa,,,", match_default, "${2", "...${2,,,"); + TEST_REGEX_REPLACE("a+", perl, "...aaa,,,", match_default, "${23", "...${23,,,"); + TEST_REGEX_REPLACE("a+", perl, "...aaa,,,", match_default, "${d}", "...${d},,,"); + TEST_REGEX_REPLACE("(a+)", perl, "...aaa,,,", match_default, "/${1}/", ".../aaa/,,,"); + TEST_REGEX_REPLACE("(a+)", perl, "...aaa,,,", match_default, "/${10}/", "...//,,,"); + TEST_REGEX_REPLACE("((((((((((a+))))))))))", perl, "...aaa,,,", match_default, "/${10}/", ".../aaa/,,,"); + TEST_REGEX_REPLACE("(a+)", perl, "...aaa,,,", match_default, "/${1}0/", ".../aaa0/,,,"); } From e4b31ea37f77f972232e50db023dfa284fa4903d Mon Sep 17 00:00:00 2001 From: John Maddock Date: Tue, 23 Dec 2008 19:06:04 +0000 Subject: [PATCH 45/72] 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 [@https://svn.boost.org/trac/boost/ticket/1081 #1081]. Fixes #1081. [SVN r50374] --- doc/history.qbk | 6 ++ .../background_information/examples.html | 6 +- .../background_information/history.html | 22 ++++--- .../background_information/locale.html | 8 +-- .../background_information/standards.html | 10 +-- .../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 +- .../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_traits.html | 2 +- .../syntax_option_type_perl.html | 17 ++++++ .../syntax_option_type_synopsis.html | 1 + doc/html/index.html | 2 +- doc/syntax_option_type.qbk | 2 + include/boost/regex/v4/basic_regex_parser.hpp | 25 +++++++- include/boost/regex/v4/regbase.hpp | 2 + test/regress/basic_tests.cpp | 3 +- test/regress/main.cpp | 61 ++++++++++--------- test/regress/test_alt.cpp | 15 +++-- test/regress/test_deprecated.cpp | 2 +- 25 files changed, 147 insertions(+), 81 deletions(-) diff --git a/doc/history.qbk b/doc/history.qbk index 9dbbcf4d..05a9710e 100644 --- a/doc/history.qbk +++ b/doc/history.qbk @@ -10,6 +10,12 @@ [h4 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_type] +['no_empty_expressions] is set then the old behaviour is preserved and +empty expressions are prohibited. This is issue +[@https://svn.boost.org/trac/boost/ticket/1081 #1081]. * Added support for Perl style ${n} expressions in format strings (issue [@https://svn.boost.org/trac/boost/ticket/2556 #2556]). * Added support for accessing the location of sub-expressions within the diff --git a/doc/html/boost_regex/background_information/examples.html b/doc/html/boost_regex/background_information/examples.html index 6b7f8b55..9f9dcc6c 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 cffee7a8..b2069ec7 100644 --- a/doc/html/boost_regex/background_information/history.html +++ b/doc/html/boost_regex/background_information/history.html @@ -26,11 +26,18 @@ History
    - + 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. +
    • Added support for Perl style ${n} expressions in format strings (issue #2556). @@ -40,12 +47,13 @@ regular expression string (issue #2269).
    • - Fixed compiler compatibility issues #2244 + Fixed compiler compatibility issues #2244, + #2514, and #2458.
    - + Boost 1.34
    @@ -68,7 +76,7 @@
    - + Boost 1.33.1
    @@ -138,7 +146,7 @@
    - + Boost 1.33.0
    @@ -193,7 +201,7 @@
    - + Boost 1.32.1
    @@ -201,7 +209,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 267d99d7..0e8b0694 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 60650ef6..d2732b2f 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/ref/concepts/traits_concept.html b/doc/html/boost_regex/ref/concepts/traits_concept.html index af155a02..ef09ab1c 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 5ca0844e..62293232 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 dd26f8ce..d91f0e9e 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 0285afd8..50784ec1 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/non_std_strings/icu/unicode_algo.html b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html index db172d3d..e636e849 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 aa461fc0..0fbd6483 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 5e9272f1..1f73a084 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 2d38fce9..1cae51e5 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 7fd25512..b60ac8c4 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_traits.html b/doc/html/boost_regex/ref/regex_traits.html index 50c47d4d..0d515761 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/syntax_option_type/syntax_option_type_perl.html b/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_perl.html index b6168a64..53eea33c 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 @@ -372,6 +372,23 @@ + +

    + no_empty_expressions +

    + + +

    + No +

    + + +

    + When set then empty expressions/alternatives are prohibited. +

    + + +

    save_subexpression_location 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 89ce344b..8ca8f042 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 @@ -69,6 +69,7 @@ static const syntax_option_type no_mod_s; static const syntax_option_type mod_s; static const syntax_option_type mod_x; +static const syntax_option_type no_empty_expressions; // POSIX extended specific options: static const syntax_option_type no_escape_in_lists; diff --git a/doc/html/index.html b/doc/html/index.html index a76835e6..9b623b67 100644 --- a/doc/html/index.html +++ b/doc/html/index.html @@ -196,7 +196,7 @@

    - +

    Last revised: December 22, 2008 at 19:39:18 GMT

    Last revised: December 23, 2008 at 17:35:37 GMT


    diff --git a/doc/syntax_option_type.qbk b/doc/syntax_option_type.qbk index f501fcf4..41036dbb 100644 --- a/doc/syntax_option_type.qbk +++ b/doc/syntax_option_type.qbk @@ -50,6 +50,7 @@ duplicated within the scope of class template [basic_regex]. static const syntax_option_type no_mod_s; static const syntax_option_type mod_s; static const syntax_option_type mod_x; + static const syntax_option_type no_empty_expressions; // POSIX extended specific options: static const syntax_option_type no_escape_in_lists; @@ -151,6 +152,7 @@ The following options may also be set when using perl-style regular expressions: whether `match_not_dot_newline` is set in the match flags.]] [[mod_x][No][Turns on the perl x-modifier: causes unescaped whitespace in the expression to be ignored.]] +[[no_empty_expressions][No][When set then empty expressions/alternatives are prohibited.]] [[save_subexpression_location][No][When set then the locations of individual sub-expressions within the ['original regular expression string] can be accessed via the [link boost_regex.basic_regex.subexpression `subexpression()`] member function of `basic_regex`.]] diff --git a/include/boost/regex/v4/basic_regex_parser.hpp b/include/boost/regex/v4/basic_regex_parser.hpp index 38542bf9..f94eb89c 100644 --- a/include/boost/regex/v4/basic_regex_parser.hpp +++ b/include/boost/regex/v4/basic_regex_parser.hpp @@ -109,7 +109,11 @@ void basic_regex_parser::parse(const charT* p1, const charT* p2, m_position = m_base = p1; m_end = p2; // empty strings are errors: - if(p1 == p2) + if((p1 == p2) && + ( + (l_flags & regbase::main_option_type) != regbase::perl_syntax_group) + || (l_flags & regbase::no_empty_expressions) + ) { fail(regex_constants::error_empty, 0); return; @@ -926,7 +930,15 @@ bool basic_regex_parser::parse_alt() // error check: if there have been no previous states, // or if the last state was a '(' then error: // - if((this->m_last_state == 0) || (this->m_last_state->type == syntax_element_startmark)) + if( + ((this->m_last_state == 0) || (this->m_last_state->type == syntax_element_startmark)) + && + !( + ((this->flags() & regbase::main_option_type) == regbase::perl_syntax_group) + && + ((this->flags() & regbase::no_empty_expressions) == 0) + ) + ) { fail(regex_constants::error_empty, this->m_position - this->m_base); return false; @@ -2075,7 +2087,14 @@ bool basic_regex_parser::unwind_alts(std::ptrdiff_t last_paren_st // alternative then that's an error: // if((this->m_alt_insert_point == static_cast(this->m_pdata->m_data.size())) - && m_alt_jumps.size() && (m_alt_jumps.back() > last_paren_start)) + && m_alt_jumps.size() && (m_alt_jumps.back() > last_paren_start) + && + !( + ((this->flags() & regbase::main_option_type) == regbase::perl_syntax_group) + && + ((this->flags() & regbase::no_empty_expressions) == 0) + ) + ) { fail(regex_constants::error_empty, this->m_position - this->m_base); return false; diff --git a/include/boost/regex/v4/regbase.hpp b/include/boost/regex/v4/regbase.hpp index a6d8e7d1..2b737d5a 100644 --- a/include/boost/regex/v4/regbase.hpp +++ b/include/boost/regex/v4/regbase.hpp @@ -85,6 +85,7 @@ public: collate = 1 << 21, // use locale specific collation nosubs = 1 << 22, // don't mark sub-expressions save_subexpression_location = 1 << 23, // save subexpression locations + no_empty_expressions = 1 << 24, // no empty expressions allowed optimize = 0, // not really supported @@ -143,6 +144,7 @@ namespace regex_constants{ mod_s = ::boost::regbase::mod_s, no_mod_s = ::boost::regbase::no_mod_s, save_subexpression_location = ::boost::regbase::save_subexpression_location, + no_empty_expressions = ::boost::regbase::no_empty_expressions, basic = ::boost::regbase::basic, extended = ::boost::regbase::extended, diff --git a/test/regress/basic_tests.cpp b/test/regress/basic_tests.cpp index 2c248fc0..af191823 100644 --- a/test/regress/basic_tests.cpp +++ b/test/regress/basic_tests.cpp @@ -42,7 +42,8 @@ void basic_tests() TEST_REGEX_SEARCH("()", perl, "zzz", match_default, make_array(0, 0, 0, 0, -2, 1, 1, 1, 1, -2, 2, 2, 2, 2, -2, 3, 3, 3, 3, -2, -2)); TEST_REGEX_SEARCH("()", perl, "", match_default, make_array(0, 0, 0, 0, -2, -2)); TEST_INVALID_REGEX("(", perl); - TEST_INVALID_REGEX("", perl); + TEST_INVALID_REGEX("", perl|no_empty_expressions); + TEST_REGEX_SEARCH("", perl, "abc", match_default, make_array(0, 0, -2, 1, 1, -2, 2, 2, -2, 3, 3, -2, -2)); TEST_INVALID_REGEX(")", perl); TEST_INVALID_REGEX("(aa", perl); TEST_INVALID_REGEX("aa)", perl); diff --git a/test/regress/main.cpp b/test/regress/main.cpp index f3324c24..ffbe5efe 100644 --- a/test/regress/main.cpp +++ b/test/regress/main.cpp @@ -33,38 +33,43 @@ int* get_array_data(); int error_count = 0; +#define RUN_TESTS(name) \ + std::cout << "Running test case \"" #name "\".\n";\ + name(); + + void run_tests() { - basic_tests(); - test_simple_repeats(); - test_alt(); - test_sets(); - test_sets2(); - test_anchors(); - test_backrefs(); - test_character_escapes(); - test_assertion_escapes(); - test_tricky_cases(); - test_grep(); - test_replace(); - test_non_greedy_repeats(); - test_non_marking_paren(); - test_partial_match(); - test_forward_lookahead_asserts(); - test_fast_repeats(); - test_fast_repeats2(); - test_independent_subs(); - test_nosubs(); - test_conditionals(); - test_options(); - test_options2(); + RUN_TESTS(basic_tests); + RUN_TESTS(test_simple_repeats); + RUN_TESTS(test_alt); + RUN_TESTS(test_sets); + RUN_TESTS(test_sets2); + RUN_TESTS(test_anchors); + RUN_TESTS(test_backrefs); + RUN_TESTS(test_character_escapes); + RUN_TESTS(test_assertion_escapes); + RUN_TESTS(test_tricky_cases); + RUN_TESTS(test_grep); + RUN_TESTS(test_replace); + RUN_TESTS(test_non_greedy_repeats); + RUN_TESTS(test_non_marking_paren); + RUN_TESTS(test_partial_match); + RUN_TESTS(test_forward_lookahead_asserts); + RUN_TESTS(test_fast_repeats); + RUN_TESTS(test_fast_repeats2); + RUN_TESTS(test_independent_subs); + RUN_TESTS(test_nosubs); + RUN_TESTS(test_conditionals); + RUN_TESTS(test_options); + RUN_TESTS(test_options2); #ifndef TEST_THREADS - test_en_locale(); + RUN_TESTS(test_en_locale); #endif - test_emacs(); - test_operators(); - test_overloads(); - test_unicode(); + RUN_TESTS(test_emacs); + RUN_TESTS(test_operators); + RUN_TESTS(test_overloads); + RUN_TESTS(test_unicode); } int cpp_main(int /*argc*/, char * /*argv*/[]) diff --git a/test/regress/test_alt.cpp b/test/regress/test_alt.cpp index e55129a2..7eb187fc 100644 --- a/test/regress/test_alt.cpp +++ b/test/regress/test_alt.cpp @@ -29,11 +29,16 @@ void test_alt() TEST_REGEX_SEARCH("a(b|c)", perl, "ad", match_default, make_array(-2, -2)); TEST_REGEX_SEARCH("(a|b|c)", perl, "c", match_default, make_array(0, 1, 0, 1, -2, -2)); TEST_REGEX_SEARCH("(a|(b)|.)", perl, "b", match_default, make_array(0, 1, 0, 1, 0, 1, -2, -2)); - TEST_INVALID_REGEX("|c", perl); - TEST_INVALID_REGEX("c|", perl); - TEST_INVALID_REGEX("(|)", perl); - TEST_INVALID_REGEX("(a|)", perl); - TEST_INVALID_REGEX("(|a)", perl); + TEST_INVALID_REGEX("|c", perl|no_empty_expressions); + TEST_REGEX_SEARCH("|c", perl, " c", match_default, make_array(0, 0, -2, 1, 1, -2, 1, 2, -2, 2, 2, -2, -2)); + TEST_INVALID_REGEX("c|", perl|no_empty_expressions); + TEST_REGEX_SEARCH("c|", perl, " c", match_default, make_array(0, 0, -2, 1, 2, -2, 2, 2, -2, -2)); + TEST_INVALID_REGEX("(|)", perl|no_empty_expressions); + TEST_REGEX_SEARCH("(|)", perl, " c", match_default, make_array(0, 0, 0, 0, -2, 1, 1, 1, 1, -2, 2, 2, 2, 2, -2, -2)); + TEST_INVALID_REGEX("(a|)", perl|no_empty_expressions); + TEST_REGEX_SEARCH("(a|)", perl, " a", match_default, make_array(0, 0, 0, 0, -2, 1, 2, 1, 2, -2, 2, 2, 2, 2, -2, -2)); + TEST_INVALID_REGEX("(|a)", perl|no_empty_expressions); + TEST_REGEX_SEARCH("(|a)", perl, " a", match_default, make_array(0, 0, 0, 0, -2, 1, 1, 1, 1, -2, 1, 2, 1, 2, -2, 2, 2, 2, 2, -2, -2)); TEST_REGEX_SEARCH("a\\|", perl, "a|", match_default, make_array(0, 2, -2, -2)); TEST_REGEX_SEARCH("a|", basic, "a|", match_default, make_array(0, 2, -2, -2)); diff --git a/test/regress/test_deprecated.cpp b/test/regress/test_deprecated.cpp index 171a3b56..af50ec76 100644 --- a/test/regress/test_deprecated.cpp +++ b/test/regress/test_deprecated.cpp @@ -38,7 +38,7 @@ int get_posix_compile_options(boost::regex_constants::syntax_option_type opts) { case regbase::perl: result = (opts & regbase::no_perl_ex) ? REG_EXTENDED : REG_PERL; - if(opts & (regbase::no_bk_refs|regbase::no_mod_m|regbase::mod_x|regbase::mod_s|regbase::no_mod_s|regbase::no_escape_in_lists)) + if(opts & (regbase::no_bk_refs|regbase::no_mod_m|regbase::mod_x|regbase::mod_s|regbase::no_mod_s|regbase::no_escape_in_lists|regbase::no_empty_expressions)) return -1; break; case regbase::basic: From 840a4ce2f5ea40196c2ce4f8bdffadae4b8c9f46 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Wed, 24 Dec 2008 10:14:55 +0000 Subject: [PATCH 46/72] Fix gcc warnings. [SVN r50377] --- include/boost/regex/v4/basic_regex_parser.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/boost/regex/v4/basic_regex_parser.hpp b/include/boost/regex/v4/basic_regex_parser.hpp index f94eb89c..b8bc9963 100644 --- a/include/boost/regex/v4/basic_regex_parser.hpp +++ b/include/boost/regex/v4/basic_regex_parser.hpp @@ -111,9 +111,10 @@ void basic_regex_parser::parse(const charT* p1, const charT* p2, // empty strings are errors: if((p1 == p2) && ( - (l_flags & regbase::main_option_type) != regbase::perl_syntax_group) + ((l_flags & regbase::main_option_type) != regbase::perl_syntax_group) || (l_flags & regbase::no_empty_expressions) ) + ) { fail(regex_constants::error_empty, 0); return; From d2be09791d8b77866fb8a0d81bc048793cd6ce00 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Thu, 1 Jan 2009 10:23:10 +0000 Subject: [PATCH 47/72] Fixes #2623. [SVN r50422] --- src/wide_posix_api.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wide_posix_api.cpp b/src/wide_posix_api.cpp index 83d651b8..c8a91902 100644 --- a/src/wide_posix_api.cpp +++ b/src/wide_posix_api.cpp @@ -29,7 +29,7 @@ #include #include -#if defined(BOOST_NO_STDC_NAMESPACE) +#if defined(BOOST_NO_STDC_NAMESPACE) || defined(__NetBSD__) namespace std{ # ifndef BOOST_NO_SWPRINTF using ::swprintf; From fd77d00dfd4809630d736be2dffd066cec23f898 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Wed, 7 Jan 2009 12:29:03 +0000 Subject: [PATCH 48/72] Update version number [SVN r50498] --- build/bcb6.mak | 1124 ++++++++++++++++++++-------------------- build/gcc-shared.mak | 168 +++--- build/gcc.mak | 172 +++--- build/generic.mak | 1 + build/sunpro.mak | 1 + 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 | 550 ++++++++++---------- build/vc9.mak | 736 +++++++++++++------------- 13 files changed, 3312 insertions(+), 3310 deletions(-) diff --git a/build/bcb6.mak b/build/bcb6.mak index bb395835..7dc50584 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_37 bcb\libboost_regex-bcb-s-1_37.lib bcb\libboost_regex-bcb-mt-s-1_37 bcb\libboost_regex-bcb-mt-s-1_37.lib bcb\boost_regex-bcb-mt-1_37 bcb\boost_regex-bcb-mt-1_37.lib bcb\boost_regex-bcb-1_37 bcb\boost_regex-bcb-1_37.lib bcb\libboost_regex-bcb-mt-1_37 bcb\libboost_regex-bcb-mt-1_37.lib bcb\libboost_regex-bcb-1_37 bcb\libboost_regex-bcb-1_37.lib bcb\libboost_regex-bcb-sd-1_37 bcb\libboost_regex-bcb-sd-1_37.lib bcb\libboost_regex-bcb-mt-sd-1_37 bcb\libboost_regex-bcb-mt-sd-1_37.lib bcb\boost_regex-bcb-mt-d-1_37 bcb\boost_regex-bcb-mt-d-1_37.lib bcb\boost_regex-bcb-d-1_37 bcb\boost_regex-bcb-d-1_37.lib bcb\libboost_regex-bcb-mt-d-1_37 bcb\libboost_regex-bcb-mt-d-1_37.lib bcb\libboost_regex-bcb-d-1_37 bcb\libboost_regex-bcb-d-1_37.lib +all : bcb bcb\libboost_regex-bcb-s-1_38 bcb\libboost_regex-bcb-s-1_38.lib bcb\libboost_regex-bcb-mt-s-1_38 bcb\libboost_regex-bcb-mt-s-1_38.lib bcb\boost_regex-bcb-mt-1_38 bcb\boost_regex-bcb-mt-1_38.lib bcb\boost_regex-bcb-1_38 bcb\boost_regex-bcb-1_38.lib bcb\libboost_regex-bcb-mt-1_38 bcb\libboost_regex-bcb-mt-1_38.lib bcb\libboost_regex-bcb-1_38 bcb\libboost_regex-bcb-1_38.lib bcb\libboost_regex-bcb-sd-1_38 bcb\libboost_regex-bcb-sd-1_38.lib bcb\libboost_regex-bcb-mt-sd-1_38 bcb\libboost_regex-bcb-mt-sd-1_38.lib bcb\boost_regex-bcb-mt-d-1_38 bcb\boost_regex-bcb-mt-d-1_38.lib bcb\boost_regex-bcb-d-1_38 bcb\boost_regex-bcb-d-1_38.lib bcb\libboost_regex-bcb-mt-d-1_38 bcb\libboost_regex-bcb-mt-d-1_38.lib bcb\libboost_regex-bcb-d-1_38 bcb\libboost_regex-bcb-d-1_38.lib -clean : libboost_regex-bcb-s-1_37_clean libboost_regex-bcb-mt-s-1_37_clean boost_regex-bcb-mt-1_37_clean boost_regex-bcb-1_37_clean libboost_regex-bcb-mt-1_37_clean libboost_regex-bcb-1_37_clean libboost_regex-bcb-sd-1_37_clean libboost_regex-bcb-mt-sd-1_37_clean boost_regex-bcb-mt-d-1_37_clean boost_regex-bcb-d-1_37_clean libboost_regex-bcb-mt-d-1_37_clean libboost_regex-bcb-d-1_37_clean +clean : libboost_regex-bcb-s-1_38_clean libboost_regex-bcb-mt-s-1_38_clean boost_regex-bcb-mt-1_38_clean boost_regex-bcb-1_38_clean libboost_regex-bcb-mt-1_38_clean libboost_regex-bcb-1_38_clean libboost_regex-bcb-sd-1_38_clean libboost_regex-bcb-mt-sd-1_38_clean boost_regex-bcb-mt-d-1_38_clean boost_regex-bcb-d-1_38_clean libboost_regex-bcb-mt-d-1_38_clean libboost_regex-bcb-d-1_38_clean install : all - copy bcb\libboost_regex-bcb-s-1_37.lib $(BCROOT)\lib - copy bcb\libboost_regex-bcb-mt-s-1_37.lib $(BCROOT)\lib - copy bcb\boost_regex-bcb-mt-1_37.lib $(BCROOT)\lib - copy bcb\boost_regex-bcb-mt-1_37.dll $(BCROOT)\bin - copy bcb\boost_regex-bcb-mt-1_37.tds $(BCROOT)\bin - copy bcb\boost_regex-bcb-1_37.lib $(BCROOT)\lib - copy bcb\boost_regex-bcb-1_37.dll $(BCROOT)\bin - copy bcb\boost_regex-bcb-1_37.tds $(BCROOT)\bin - copy bcb\libboost_regex-bcb-mt-1_37.lib $(BCROOT)\lib - copy bcb\libboost_regex-bcb-1_37.lib $(BCROOT)\lib - copy bcb\libboost_regex-bcb-sd-1_37.lib $(BCROOT)\lib - copy bcb\libboost_regex-bcb-mt-sd-1_37.lib $(BCROOT)\lib - copy bcb\boost_regex-bcb-mt-d-1_37.lib $(BCROOT)\lib - copy bcb\boost_regex-bcb-mt-d-1_37.dll $(BCROOT)\bin - copy bcb\boost_regex-bcb-mt-d-1_37.tds $(BCROOT)\bin - copy bcb\boost_regex-bcb-d-1_37.lib $(BCROOT)\lib - copy bcb\boost_regex-bcb-d-1_37.dll $(BCROOT)\bin - copy bcb\boost_regex-bcb-d-1_37.tds $(BCROOT)\bin - copy bcb\libboost_regex-bcb-mt-d-1_37.lib $(BCROOT)\lib - copy bcb\libboost_regex-bcb-d-1_37.lib $(BCROOT)\lib + copy bcb\libboost_regex-bcb-s-1_38.lib $(BCROOT)\lib + copy bcb\libboost_regex-bcb-mt-s-1_38.lib $(BCROOT)\lib + copy bcb\boost_regex-bcb-mt-1_38.lib $(BCROOT)\lib + copy bcb\boost_regex-bcb-mt-1_38.dll $(BCROOT)\bin + copy bcb\boost_regex-bcb-mt-1_38.tds $(BCROOT)\bin + copy bcb\boost_regex-bcb-1_38.lib $(BCROOT)\lib + copy bcb\boost_regex-bcb-1_38.dll $(BCROOT)\bin + copy bcb\boost_regex-bcb-1_38.tds $(BCROOT)\bin + copy bcb\libboost_regex-bcb-mt-1_38.lib $(BCROOT)\lib + copy bcb\libboost_regex-bcb-1_38.lib $(BCROOT)\lib + copy bcb\libboost_regex-bcb-sd-1_38.lib $(BCROOT)\lib + copy bcb\libboost_regex-bcb-mt-sd-1_38.lib $(BCROOT)\lib + copy bcb\boost_regex-bcb-mt-d-1_38.lib $(BCROOT)\lib + copy bcb\boost_regex-bcb-mt-d-1_38.dll $(BCROOT)\bin + copy bcb\boost_regex-bcb-mt-d-1_38.tds $(BCROOT)\bin + copy bcb\boost_regex-bcb-d-1_38.lib $(BCROOT)\lib + copy bcb\boost_regex-bcb-d-1_38.dll $(BCROOT)\bin + copy bcb\boost_regex-bcb-d-1_38.tds $(BCROOT)\bin + copy bcb\libboost_regex-bcb-mt-d-1_38.lib $(BCROOT)\lib + copy bcb\libboost_regex-bcb-d-1_38.lib $(BCROOT)\lib bcb : -@mkdir bcb @@ -73,1266 +73,1266 @@ bcb : ######################################################## # -# section for libboost_regex-bcb-s-1_37.lib +# section for libboost_regex-bcb-s-1_38.lib # ######################################################## -bcb\libboost_regex-bcb-s-1_37\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_38\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_37\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_38\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\libboost_regex-bcb-s-1_37\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_38\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_37\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_38\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\libboost_regex-bcb-s-1_37\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_38\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_37\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_38\cregex.obj ../src/cregex.cpp | -bcb\libboost_regex-bcb-s-1_37\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_38\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_37\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_38\fileiter.obj ../src/fileiter.cpp | -bcb\libboost_regex-bcb-s-1_37\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_38\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_37\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_38\icu.obj ../src/icu.cpp | -bcb\libboost_regex-bcb-s-1_37\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_38\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_37\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_38\instances.obj ../src/instances.cpp | -bcb\libboost_regex-bcb-s-1_37\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_38\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_37\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_38\posix_api.obj ../src/posix_api.cpp | -bcb\libboost_regex-bcb-s-1_37\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_38\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_37\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_38\regex.obj ../src/regex.cpp | -bcb\libboost_regex-bcb-s-1_37\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_38\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_37\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_38\regex_debug.obj ../src/regex_debug.cpp | -bcb\libboost_regex-bcb-s-1_37\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_38\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_37\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_38\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\libboost_regex-bcb-s-1_37\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_38\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_37\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_38\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\libboost_regex-bcb-s-1_37\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_38\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_37\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_38\static_mutex.obj ../src/static_mutex.cpp | -bcb\libboost_regex-bcb-s-1_37\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_38\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_37\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_38\usinstances.obj ../src/usinstances.cpp | -bcb\libboost_regex-bcb-s-1_37\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_38\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_37\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_38\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\libboost_regex-bcb-s-1_37\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_38\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_37\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_38\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\libboost_regex-bcb-s-1_37\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_38\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_37\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_38\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\libboost_regex-bcb-s-1_37\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_38\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_37\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_38\winstances.obj ../src/winstances.cpp | -bcb\libboost_regex-bcb-s-1_37 : - -@mkdir bcb\libboost_regex-bcb-s-1_37 +bcb\libboost_regex-bcb-s-1_38 : + -@mkdir bcb\libboost_regex-bcb-s-1_38 -libboost_regex-bcb-s-1_37_clean : - del bcb\libboost_regex-bcb-s-1_37\*.obj - del bcb\libboost_regex-bcb-s-1_37\*.il? - del bcb\libboost_regex-bcb-s-1_37\*.csm - del bcb\libboost_regex-bcb-s-1_37\*.tds +libboost_regex-bcb-s-1_38_clean : + del bcb\libboost_regex-bcb-s-1_38\*.obj + del bcb\libboost_regex-bcb-s-1_38\*.il? + del bcb\libboost_regex-bcb-s-1_38\*.csm + del bcb\libboost_regex-bcb-s-1_38\*.tds -bcb\libboost_regex-bcb-s-1_37.lib : bcb\libboost_regex-bcb-s-1_37\c_regex_traits.obj bcb\libboost_regex-bcb-s-1_37\cpp_regex_traits.obj bcb\libboost_regex-bcb-s-1_37\cregex.obj bcb\libboost_regex-bcb-s-1_37\fileiter.obj bcb\libboost_regex-bcb-s-1_37\icu.obj bcb\libboost_regex-bcb-s-1_37\instances.obj bcb\libboost_regex-bcb-s-1_37\posix_api.obj bcb\libboost_regex-bcb-s-1_37\regex.obj bcb\libboost_regex-bcb-s-1_37\regex_debug.obj bcb\libboost_regex-bcb-s-1_37\regex_raw_buffer.obj bcb\libboost_regex-bcb-s-1_37\regex_traits_defaults.obj bcb\libboost_regex-bcb-s-1_37\static_mutex.obj bcb\libboost_regex-bcb-s-1_37\usinstances.obj bcb\libboost_regex-bcb-s-1_37\w32_regex_traits.obj bcb\libboost_regex-bcb-s-1_37\wc_regex_traits.obj bcb\libboost_regex-bcb-s-1_37\wide_posix_api.obj bcb\libboost_regex-bcb-s-1_37\winstances.obj - if exist bcb\libboost_regex-bcb-s-1_37.lib del bcb\libboost_regex-bcb-s-1_37.lib +bcb\libboost_regex-bcb-s-1_38.lib : bcb\libboost_regex-bcb-s-1_38\c_regex_traits.obj bcb\libboost_regex-bcb-s-1_38\cpp_regex_traits.obj bcb\libboost_regex-bcb-s-1_38\cregex.obj bcb\libboost_regex-bcb-s-1_38\fileiter.obj bcb\libboost_regex-bcb-s-1_38\icu.obj bcb\libboost_regex-bcb-s-1_38\instances.obj bcb\libboost_regex-bcb-s-1_38\posix_api.obj bcb\libboost_regex-bcb-s-1_38\regex.obj bcb\libboost_regex-bcb-s-1_38\regex_debug.obj bcb\libboost_regex-bcb-s-1_38\regex_raw_buffer.obj bcb\libboost_regex-bcb-s-1_38\regex_traits_defaults.obj bcb\libboost_regex-bcb-s-1_38\static_mutex.obj bcb\libboost_regex-bcb-s-1_38\usinstances.obj bcb\libboost_regex-bcb-s-1_38\w32_regex_traits.obj bcb\libboost_regex-bcb-s-1_38\wc_regex_traits.obj bcb\libboost_regex-bcb-s-1_38\wide_posix_api.obj bcb\libboost_regex-bcb-s-1_38\winstances.obj + if exist bcb\libboost_regex-bcb-s-1_38.lib del bcb\libboost_regex-bcb-s-1_38.lib tlib @&&| -/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-s-1_37.lib" +"bcb\libboost_regex-bcb-s-1_37\c_regex_traits.obj" +"bcb\libboost_regex-bcb-s-1_37\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-s-1_37\cregex.obj" +"bcb\libboost_regex-bcb-s-1_37\fileiter.obj" +"bcb\libboost_regex-bcb-s-1_37\icu.obj" +"bcb\libboost_regex-bcb-s-1_37\instances.obj" +"bcb\libboost_regex-bcb-s-1_37\posix_api.obj" +"bcb\libboost_regex-bcb-s-1_37\regex.obj" +"bcb\libboost_regex-bcb-s-1_37\regex_debug.obj" +"bcb\libboost_regex-bcb-s-1_37\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-s-1_37\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-s-1_37\static_mutex.obj" +"bcb\libboost_regex-bcb-s-1_37\usinstances.obj" +"bcb\libboost_regex-bcb-s-1_37\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-s-1_37\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-s-1_37\wide_posix_api.obj" +"bcb\libboost_regex-bcb-s-1_37\winstances.obj" +/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-s-1_38.lib" +"bcb\libboost_regex-bcb-s-1_38\c_regex_traits.obj" +"bcb\libboost_regex-bcb-s-1_38\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-s-1_38\cregex.obj" +"bcb\libboost_regex-bcb-s-1_38\fileiter.obj" +"bcb\libboost_regex-bcb-s-1_38\icu.obj" +"bcb\libboost_regex-bcb-s-1_38\instances.obj" +"bcb\libboost_regex-bcb-s-1_38\posix_api.obj" +"bcb\libboost_regex-bcb-s-1_38\regex.obj" +"bcb\libboost_regex-bcb-s-1_38\regex_debug.obj" +"bcb\libboost_regex-bcb-s-1_38\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-s-1_38\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-s-1_38\static_mutex.obj" +"bcb\libboost_regex-bcb-s-1_38\usinstances.obj" +"bcb\libboost_regex-bcb-s-1_38\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-s-1_38\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-s-1_38\wide_posix_api.obj" +"bcb\libboost_regex-bcb-s-1_38\winstances.obj" | ######################################################## # -# section for libboost_regex-bcb-mt-s-1_37.lib +# section for libboost_regex-bcb-mt-s-1_38.lib # ######################################################## -bcb\libboost_regex-bcb-mt-s-1_37\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_38\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_37\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_38\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-s-1_37\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_38\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_37\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_38\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-s-1_37\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_38\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_37\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_38\cregex.obj ../src/cregex.cpp | -bcb\libboost_regex-bcb-mt-s-1_37\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_38\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_37\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_38\fileiter.obj ../src/fileiter.cpp | -bcb\libboost_regex-bcb-mt-s-1_37\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_38\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_37\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_38\icu.obj ../src/icu.cpp | -bcb\libboost_regex-bcb-mt-s-1_37\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_38\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_37\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_38\instances.obj ../src/instances.cpp | -bcb\libboost_regex-bcb-mt-s-1_37\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_38\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_37\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_38\posix_api.obj ../src/posix_api.cpp | -bcb\libboost_regex-bcb-mt-s-1_37\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_38\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_37\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_38\regex.obj ../src/regex.cpp | -bcb\libboost_regex-bcb-mt-s-1_37\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_38\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_37\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_38\regex_debug.obj ../src/regex_debug.cpp | -bcb\libboost_regex-bcb-mt-s-1_37\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_38\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_37\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_38\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\libboost_regex-bcb-mt-s-1_37\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_38\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_37\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_38\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\libboost_regex-bcb-mt-s-1_37\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_38\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_37\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_38\static_mutex.obj ../src/static_mutex.cpp | -bcb\libboost_regex-bcb-mt-s-1_37\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_38\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_37\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_38\usinstances.obj ../src/usinstances.cpp | -bcb\libboost_regex-bcb-mt-s-1_37\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_38\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_37\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_38\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-s-1_37\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_38\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_37\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_38\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-s-1_37\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_38\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_37\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_38\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\libboost_regex-bcb-mt-s-1_37\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_38\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_37\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_38\winstances.obj ../src/winstances.cpp | -bcb\libboost_regex-bcb-mt-s-1_37 : - -@mkdir bcb\libboost_regex-bcb-mt-s-1_37 +bcb\libboost_regex-bcb-mt-s-1_38 : + -@mkdir bcb\libboost_regex-bcb-mt-s-1_38 -libboost_regex-bcb-mt-s-1_37_clean : - del bcb\libboost_regex-bcb-mt-s-1_37\*.obj - del bcb\libboost_regex-bcb-mt-s-1_37\*.il? - del bcb\libboost_regex-bcb-mt-s-1_37\*.csm - del bcb\libboost_regex-bcb-mt-s-1_37\*.tds +libboost_regex-bcb-mt-s-1_38_clean : + del bcb\libboost_regex-bcb-mt-s-1_38\*.obj + del bcb\libboost_regex-bcb-mt-s-1_38\*.il? + del bcb\libboost_regex-bcb-mt-s-1_38\*.csm + del bcb\libboost_regex-bcb-mt-s-1_38\*.tds -bcb\libboost_regex-bcb-mt-s-1_37.lib : bcb\libboost_regex-bcb-mt-s-1_37\c_regex_traits.obj bcb\libboost_regex-bcb-mt-s-1_37\cpp_regex_traits.obj bcb\libboost_regex-bcb-mt-s-1_37\cregex.obj bcb\libboost_regex-bcb-mt-s-1_37\fileiter.obj bcb\libboost_regex-bcb-mt-s-1_37\icu.obj bcb\libboost_regex-bcb-mt-s-1_37\instances.obj bcb\libboost_regex-bcb-mt-s-1_37\posix_api.obj bcb\libboost_regex-bcb-mt-s-1_37\regex.obj bcb\libboost_regex-bcb-mt-s-1_37\regex_debug.obj bcb\libboost_regex-bcb-mt-s-1_37\regex_raw_buffer.obj bcb\libboost_regex-bcb-mt-s-1_37\regex_traits_defaults.obj bcb\libboost_regex-bcb-mt-s-1_37\static_mutex.obj bcb\libboost_regex-bcb-mt-s-1_37\usinstances.obj bcb\libboost_regex-bcb-mt-s-1_37\w32_regex_traits.obj bcb\libboost_regex-bcb-mt-s-1_37\wc_regex_traits.obj bcb\libboost_regex-bcb-mt-s-1_37\wide_posix_api.obj bcb\libboost_regex-bcb-mt-s-1_37\winstances.obj - if exist bcb\libboost_regex-bcb-mt-s-1_37.lib del bcb\libboost_regex-bcb-mt-s-1_37.lib +bcb\libboost_regex-bcb-mt-s-1_38.lib : bcb\libboost_regex-bcb-mt-s-1_38\c_regex_traits.obj bcb\libboost_regex-bcb-mt-s-1_38\cpp_regex_traits.obj bcb\libboost_regex-bcb-mt-s-1_38\cregex.obj bcb\libboost_regex-bcb-mt-s-1_38\fileiter.obj bcb\libboost_regex-bcb-mt-s-1_38\icu.obj bcb\libboost_regex-bcb-mt-s-1_38\instances.obj bcb\libboost_regex-bcb-mt-s-1_38\posix_api.obj bcb\libboost_regex-bcb-mt-s-1_38\regex.obj bcb\libboost_regex-bcb-mt-s-1_38\regex_debug.obj bcb\libboost_regex-bcb-mt-s-1_38\regex_raw_buffer.obj bcb\libboost_regex-bcb-mt-s-1_38\regex_traits_defaults.obj bcb\libboost_regex-bcb-mt-s-1_38\static_mutex.obj bcb\libboost_regex-bcb-mt-s-1_38\usinstances.obj bcb\libboost_regex-bcb-mt-s-1_38\w32_regex_traits.obj bcb\libboost_regex-bcb-mt-s-1_38\wc_regex_traits.obj bcb\libboost_regex-bcb-mt-s-1_38\wide_posix_api.obj bcb\libboost_regex-bcb-mt-s-1_38\winstances.obj + if exist bcb\libboost_regex-bcb-mt-s-1_38.lib del bcb\libboost_regex-bcb-mt-s-1_38.lib tlib @&&| -/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-mt-s-1_37.lib" +"bcb\libboost_regex-bcb-mt-s-1_37\c_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-s-1_37\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-s-1_37\cregex.obj" +"bcb\libboost_regex-bcb-mt-s-1_37\fileiter.obj" +"bcb\libboost_regex-bcb-mt-s-1_37\icu.obj" +"bcb\libboost_regex-bcb-mt-s-1_37\instances.obj" +"bcb\libboost_regex-bcb-mt-s-1_37\posix_api.obj" +"bcb\libboost_regex-bcb-mt-s-1_37\regex.obj" +"bcb\libboost_regex-bcb-mt-s-1_37\regex_debug.obj" +"bcb\libboost_regex-bcb-mt-s-1_37\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-mt-s-1_37\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-mt-s-1_37\static_mutex.obj" +"bcb\libboost_regex-bcb-mt-s-1_37\usinstances.obj" +"bcb\libboost_regex-bcb-mt-s-1_37\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-s-1_37\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-s-1_37\wide_posix_api.obj" +"bcb\libboost_regex-bcb-mt-s-1_37\winstances.obj" +/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-mt-s-1_38.lib" +"bcb\libboost_regex-bcb-mt-s-1_38\c_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-s-1_38\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-s-1_38\cregex.obj" +"bcb\libboost_regex-bcb-mt-s-1_38\fileiter.obj" +"bcb\libboost_regex-bcb-mt-s-1_38\icu.obj" +"bcb\libboost_regex-bcb-mt-s-1_38\instances.obj" +"bcb\libboost_regex-bcb-mt-s-1_38\posix_api.obj" +"bcb\libboost_regex-bcb-mt-s-1_38\regex.obj" +"bcb\libboost_regex-bcb-mt-s-1_38\regex_debug.obj" +"bcb\libboost_regex-bcb-mt-s-1_38\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-mt-s-1_38\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-mt-s-1_38\static_mutex.obj" +"bcb\libboost_regex-bcb-mt-s-1_38\usinstances.obj" +"bcb\libboost_regex-bcb-mt-s-1_38\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-s-1_38\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-s-1_38\wide_posix_api.obj" +"bcb\libboost_regex-bcb-mt-s-1_38\winstances.obj" | ######################################################## # -# section for boost_regex-bcb-mt-1_37.lib +# section for boost_regex-bcb-mt-1_38.lib # ######################################################## -bcb\boost_regex-bcb-mt-1_37\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_38\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_37\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_38\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\boost_regex-bcb-mt-1_37\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_38\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_37\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_38\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\boost_regex-bcb-mt-1_37\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_38\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_37\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_38\cregex.obj ../src/cregex.cpp | -bcb\boost_regex-bcb-mt-1_37\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_38\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_37\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_38\fileiter.obj ../src/fileiter.cpp | -bcb\boost_regex-bcb-mt-1_37\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_38\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_37\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_38\icu.obj ../src/icu.cpp | -bcb\boost_regex-bcb-mt-1_37\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_38\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_37\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_38\instances.obj ../src/instances.cpp | -bcb\boost_regex-bcb-mt-1_37\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_38\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_37\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_38\posix_api.obj ../src/posix_api.cpp | -bcb\boost_regex-bcb-mt-1_37\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_38\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_37\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_38\regex.obj ../src/regex.cpp | -bcb\boost_regex-bcb-mt-1_37\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_38\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_37\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_38\regex_debug.obj ../src/regex_debug.cpp | -bcb\boost_regex-bcb-mt-1_37\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_38\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_37\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_38\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\boost_regex-bcb-mt-1_37\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_38\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_37\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_38\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\boost_regex-bcb-mt-1_37\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_38\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_37\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_38\static_mutex.obj ../src/static_mutex.cpp | -bcb\boost_regex-bcb-mt-1_37\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_38\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_37\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_38\usinstances.obj ../src/usinstances.cpp | -bcb\boost_regex-bcb-mt-1_37\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_38\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_37\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_38\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\boost_regex-bcb-mt-1_37\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_38\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_37\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_38\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\boost_regex-bcb-mt-1_37\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_38\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_37\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_38\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\boost_regex-bcb-mt-1_37\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_38\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_37\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_38\winstances.obj ../src/winstances.cpp | -bcb\boost_regex-bcb-mt-1_37 : - -@mkdir bcb\boost_regex-bcb-mt-1_37 +bcb\boost_regex-bcb-mt-1_38 : + -@mkdir bcb\boost_regex-bcb-mt-1_38 -boost_regex-bcb-mt-1_37_clean : - del bcb\boost_regex-bcb-mt-1_37\*.obj - del bcb\boost_regex-bcb-mt-1_37\*.il? - del bcb\boost_regex-bcb-mt-1_37\*.csm - del bcb\boost_regex-bcb-mt-1_37\*.tds +boost_regex-bcb-mt-1_38_clean : + del bcb\boost_regex-bcb-mt-1_38\*.obj + del bcb\boost_regex-bcb-mt-1_38\*.il? + del bcb\boost_regex-bcb-mt-1_38\*.csm + del bcb\boost_regex-bcb-mt-1_38\*.tds del bcb\*.tds -bcb\boost_regex-bcb-mt-1_37.lib : bcb\boost_regex-bcb-mt-1_37\c_regex_traits.obj bcb\boost_regex-bcb-mt-1_37\cpp_regex_traits.obj bcb\boost_regex-bcb-mt-1_37\cregex.obj bcb\boost_regex-bcb-mt-1_37\fileiter.obj bcb\boost_regex-bcb-mt-1_37\icu.obj bcb\boost_regex-bcb-mt-1_37\instances.obj bcb\boost_regex-bcb-mt-1_37\posix_api.obj bcb\boost_regex-bcb-mt-1_37\regex.obj bcb\boost_regex-bcb-mt-1_37\regex_debug.obj bcb\boost_regex-bcb-mt-1_37\regex_raw_buffer.obj bcb\boost_regex-bcb-mt-1_37\regex_traits_defaults.obj bcb\boost_regex-bcb-mt-1_37\static_mutex.obj bcb\boost_regex-bcb-mt-1_37\usinstances.obj bcb\boost_regex-bcb-mt-1_37\w32_regex_traits.obj bcb\boost_regex-bcb-mt-1_37\wc_regex_traits.obj bcb\boost_regex-bcb-mt-1_37\wide_posix_api.obj bcb\boost_regex-bcb-mt-1_37\winstances.obj +bcb\boost_regex-bcb-mt-1_38.lib : bcb\boost_regex-bcb-mt-1_38\c_regex_traits.obj bcb\boost_regex-bcb-mt-1_38\cpp_regex_traits.obj bcb\boost_regex-bcb-mt-1_38\cregex.obj bcb\boost_regex-bcb-mt-1_38\fileiter.obj bcb\boost_regex-bcb-mt-1_38\icu.obj bcb\boost_regex-bcb-mt-1_38\instances.obj bcb\boost_regex-bcb-mt-1_38\posix_api.obj bcb\boost_regex-bcb-mt-1_38\regex.obj bcb\boost_regex-bcb-mt-1_38\regex_debug.obj bcb\boost_regex-bcb-mt-1_38\regex_raw_buffer.obj bcb\boost_regex-bcb-mt-1_38\regex_traits_defaults.obj bcb\boost_regex-bcb-mt-1_38\static_mutex.obj bcb\boost_regex-bcb-mt-1_38\usinstances.obj bcb\boost_regex-bcb-mt-1_38\w32_regex_traits.obj bcb\boost_regex-bcb-mt-1_38\wc_regex_traits.obj bcb\boost_regex-bcb-mt-1_38\wide_posix_api.obj bcb\boost_regex-bcb-mt-1_38\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_37.dll $(XLFLAGS) bcb\boost_regex-bcb-mt-1_37\c_regex_traits.obj bcb\boost_regex-bcb-mt-1_37\cpp_regex_traits.obj bcb\boost_regex-bcb-mt-1_37\cregex.obj bcb\boost_regex-bcb-mt-1_37\fileiter.obj bcb\boost_regex-bcb-mt-1_37\icu.obj bcb\boost_regex-bcb-mt-1_37\instances.obj bcb\boost_regex-bcb-mt-1_37\posix_api.obj bcb\boost_regex-bcb-mt-1_37\regex.obj bcb\boost_regex-bcb-mt-1_37\regex_debug.obj bcb\boost_regex-bcb-mt-1_37\regex_raw_buffer.obj bcb\boost_regex-bcb-mt-1_37\regex_traits_defaults.obj bcb\boost_regex-bcb-mt-1_37\static_mutex.obj bcb\boost_regex-bcb-mt-1_37\usinstances.obj bcb\boost_regex-bcb-mt-1_37\w32_regex_traits.obj bcb\boost_regex-bcb-mt-1_37\wc_regex_traits.obj bcb\boost_regex-bcb-mt-1_37\wide_posix_api.obj bcb\boost_regex-bcb-mt-1_37\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_38.dll $(XLFLAGS) bcb\boost_regex-bcb-mt-1_38\c_regex_traits.obj bcb\boost_regex-bcb-mt-1_38\cpp_regex_traits.obj bcb\boost_regex-bcb-mt-1_38\cregex.obj bcb\boost_regex-bcb-mt-1_38\fileiter.obj bcb\boost_regex-bcb-mt-1_38\icu.obj bcb\boost_regex-bcb-mt-1_38\instances.obj bcb\boost_regex-bcb-mt-1_38\posix_api.obj bcb\boost_regex-bcb-mt-1_38\regex.obj bcb\boost_regex-bcb-mt-1_38\regex_debug.obj bcb\boost_regex-bcb-mt-1_38\regex_raw_buffer.obj bcb\boost_regex-bcb-mt-1_38\regex_traits_defaults.obj bcb\boost_regex-bcb-mt-1_38\static_mutex.obj bcb\boost_regex-bcb-mt-1_38\usinstances.obj bcb\boost_regex-bcb-mt-1_38\w32_regex_traits.obj bcb\boost_regex-bcb-mt-1_38\wc_regex_traits.obj bcb\boost_regex-bcb-mt-1_38\wide_posix_api.obj bcb\boost_regex-bcb-mt-1_38\winstances.obj $(LIBS) | - implib -w bcb\boost_regex-bcb-mt-1_37.lib bcb\boost_regex-bcb-mt-1_37.dll + implib -w bcb\boost_regex-bcb-mt-1_38.lib bcb\boost_regex-bcb-mt-1_38.dll ######################################################## # -# section for boost_regex-bcb-1_37.lib +# section for boost_regex-bcb-1_38.lib # ######################################################## -bcb\boost_regex-bcb-1_37\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_38\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_37\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_38\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\boost_regex-bcb-1_37\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_38\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_37\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_38\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\boost_regex-bcb-1_37\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_38\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_37\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_38\cregex.obj ../src/cregex.cpp | -bcb\boost_regex-bcb-1_37\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_38\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_37\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_38\fileiter.obj ../src/fileiter.cpp | -bcb\boost_regex-bcb-1_37\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_38\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_37\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_38\icu.obj ../src/icu.cpp | -bcb\boost_regex-bcb-1_37\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_38\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_37\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_38\instances.obj ../src/instances.cpp | -bcb\boost_regex-bcb-1_37\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_38\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_37\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_38\posix_api.obj ../src/posix_api.cpp | -bcb\boost_regex-bcb-1_37\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_38\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_37\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_38\regex.obj ../src/regex.cpp | -bcb\boost_regex-bcb-1_37\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_38\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_37\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_38\regex_debug.obj ../src/regex_debug.cpp | -bcb\boost_regex-bcb-1_37\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_38\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_37\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_38\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\boost_regex-bcb-1_37\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_38\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_37\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_38\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\boost_regex-bcb-1_37\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_38\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_37\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_38\static_mutex.obj ../src/static_mutex.cpp | -bcb\boost_regex-bcb-1_37\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_38\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_37\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_38\usinstances.obj ../src/usinstances.cpp | -bcb\boost_regex-bcb-1_37\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_38\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_37\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_38\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\boost_regex-bcb-1_37\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_38\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_37\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_38\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\boost_regex-bcb-1_37\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_38\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_37\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_38\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\boost_regex-bcb-1_37\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_38\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_37\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_38\winstances.obj ../src/winstances.cpp | -bcb\boost_regex-bcb-1_37 : - -@mkdir bcb\boost_regex-bcb-1_37 +bcb\boost_regex-bcb-1_38 : + -@mkdir bcb\boost_regex-bcb-1_38 -boost_regex-bcb-1_37_clean : - del bcb\boost_regex-bcb-1_37\*.obj - del bcb\boost_regex-bcb-1_37\*.il? - del bcb\boost_regex-bcb-1_37\*.csm - del bcb\boost_regex-bcb-1_37\*.tds +boost_regex-bcb-1_38_clean : + del bcb\boost_regex-bcb-1_38\*.obj + del bcb\boost_regex-bcb-1_38\*.il? + del bcb\boost_regex-bcb-1_38\*.csm + del bcb\boost_regex-bcb-1_38\*.tds del bcb\*.tds -bcb\boost_regex-bcb-1_37.lib : bcb\boost_regex-bcb-1_37\c_regex_traits.obj bcb\boost_regex-bcb-1_37\cpp_regex_traits.obj bcb\boost_regex-bcb-1_37\cregex.obj bcb\boost_regex-bcb-1_37\fileiter.obj bcb\boost_regex-bcb-1_37\icu.obj bcb\boost_regex-bcb-1_37\instances.obj bcb\boost_regex-bcb-1_37\posix_api.obj bcb\boost_regex-bcb-1_37\regex.obj bcb\boost_regex-bcb-1_37\regex_debug.obj bcb\boost_regex-bcb-1_37\regex_raw_buffer.obj bcb\boost_regex-bcb-1_37\regex_traits_defaults.obj bcb\boost_regex-bcb-1_37\static_mutex.obj bcb\boost_regex-bcb-1_37\usinstances.obj bcb\boost_regex-bcb-1_37\w32_regex_traits.obj bcb\boost_regex-bcb-1_37\wc_regex_traits.obj bcb\boost_regex-bcb-1_37\wide_posix_api.obj bcb\boost_regex-bcb-1_37\winstances.obj +bcb\boost_regex-bcb-1_38.lib : bcb\boost_regex-bcb-1_38\c_regex_traits.obj bcb\boost_regex-bcb-1_38\cpp_regex_traits.obj bcb\boost_regex-bcb-1_38\cregex.obj bcb\boost_regex-bcb-1_38\fileiter.obj bcb\boost_regex-bcb-1_38\icu.obj bcb\boost_regex-bcb-1_38\instances.obj bcb\boost_regex-bcb-1_38\posix_api.obj bcb\boost_regex-bcb-1_38\regex.obj bcb\boost_regex-bcb-1_38\regex_debug.obj bcb\boost_regex-bcb-1_38\regex_raw_buffer.obj bcb\boost_regex-bcb-1_38\regex_traits_defaults.obj bcb\boost_regex-bcb-1_38\static_mutex.obj bcb\boost_regex-bcb-1_38\usinstances.obj bcb\boost_regex-bcb-1_38\w32_regex_traits.obj bcb\boost_regex-bcb-1_38\wc_regex_traits.obj bcb\boost_regex-bcb-1_38\wide_posix_api.obj bcb\boost_regex-bcb-1_38\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_37.dll $(XLFLAGS) bcb\boost_regex-bcb-1_37\c_regex_traits.obj bcb\boost_regex-bcb-1_37\cpp_regex_traits.obj bcb\boost_regex-bcb-1_37\cregex.obj bcb\boost_regex-bcb-1_37\fileiter.obj bcb\boost_regex-bcb-1_37\icu.obj bcb\boost_regex-bcb-1_37\instances.obj bcb\boost_regex-bcb-1_37\posix_api.obj bcb\boost_regex-bcb-1_37\regex.obj bcb\boost_regex-bcb-1_37\regex_debug.obj bcb\boost_regex-bcb-1_37\regex_raw_buffer.obj bcb\boost_regex-bcb-1_37\regex_traits_defaults.obj bcb\boost_regex-bcb-1_37\static_mutex.obj bcb\boost_regex-bcb-1_37\usinstances.obj bcb\boost_regex-bcb-1_37\w32_regex_traits.obj bcb\boost_regex-bcb-1_37\wc_regex_traits.obj bcb\boost_regex-bcb-1_37\wide_posix_api.obj bcb\boost_regex-bcb-1_37\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_38.dll $(XLFLAGS) bcb\boost_regex-bcb-1_38\c_regex_traits.obj bcb\boost_regex-bcb-1_38\cpp_regex_traits.obj bcb\boost_regex-bcb-1_38\cregex.obj bcb\boost_regex-bcb-1_38\fileiter.obj bcb\boost_regex-bcb-1_38\icu.obj bcb\boost_regex-bcb-1_38\instances.obj bcb\boost_regex-bcb-1_38\posix_api.obj bcb\boost_regex-bcb-1_38\regex.obj bcb\boost_regex-bcb-1_38\regex_debug.obj bcb\boost_regex-bcb-1_38\regex_raw_buffer.obj bcb\boost_regex-bcb-1_38\regex_traits_defaults.obj bcb\boost_regex-bcb-1_38\static_mutex.obj bcb\boost_regex-bcb-1_38\usinstances.obj bcb\boost_regex-bcb-1_38\w32_regex_traits.obj bcb\boost_regex-bcb-1_38\wc_regex_traits.obj bcb\boost_regex-bcb-1_38\wide_posix_api.obj bcb\boost_regex-bcb-1_38\winstances.obj $(LIBS) | - implib -w bcb\boost_regex-bcb-1_37.lib bcb\boost_regex-bcb-1_37.dll + implib -w bcb\boost_regex-bcb-1_38.lib bcb\boost_regex-bcb-1_38.dll ######################################################## # -# section for libboost_regex-bcb-mt-1_37.lib +# section for libboost_regex-bcb-mt-1_38.lib # ######################################################## -bcb\libboost_regex-bcb-mt-1_37\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_38\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_37\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_38\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-1_37\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_38\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_37\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_38\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-1_37\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_38\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_37\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_38\cregex.obj ../src/cregex.cpp | -bcb\libboost_regex-bcb-mt-1_37\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_38\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_37\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_38\fileiter.obj ../src/fileiter.cpp | -bcb\libboost_regex-bcb-mt-1_37\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_38\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_37\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_38\icu.obj ../src/icu.cpp | -bcb\libboost_regex-bcb-mt-1_37\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_38\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_37\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_38\instances.obj ../src/instances.cpp | -bcb\libboost_regex-bcb-mt-1_37\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_38\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_37\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_38\posix_api.obj ../src/posix_api.cpp | -bcb\libboost_regex-bcb-mt-1_37\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_38\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_37\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_38\regex.obj ../src/regex.cpp | -bcb\libboost_regex-bcb-mt-1_37\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_38\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_37\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_38\regex_debug.obj ../src/regex_debug.cpp | -bcb\libboost_regex-bcb-mt-1_37\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_38\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_37\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_38\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\libboost_regex-bcb-mt-1_37\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_38\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_37\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_38\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\libboost_regex-bcb-mt-1_37\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_38\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_37\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_38\static_mutex.obj ../src/static_mutex.cpp | -bcb\libboost_regex-bcb-mt-1_37\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_38\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_37\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_38\usinstances.obj ../src/usinstances.cpp | -bcb\libboost_regex-bcb-mt-1_37\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_38\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_37\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_38\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-1_37\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_38\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_37\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_38\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-1_37\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_38\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_37\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_38\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\libboost_regex-bcb-mt-1_37\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_38\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_37\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_38\winstances.obj ../src/winstances.cpp | -bcb\libboost_regex-bcb-mt-1_37 : - -@mkdir bcb\libboost_regex-bcb-mt-1_37 +bcb\libboost_regex-bcb-mt-1_38 : + -@mkdir bcb\libboost_regex-bcb-mt-1_38 -libboost_regex-bcb-mt-1_37_clean : - del bcb\libboost_regex-bcb-mt-1_37\*.obj - del bcb\libboost_regex-bcb-mt-1_37\*.il? - del bcb\libboost_regex-bcb-mt-1_37\*.csm - del bcb\libboost_regex-bcb-mt-1_37\*.tds +libboost_regex-bcb-mt-1_38_clean : + del bcb\libboost_regex-bcb-mt-1_38\*.obj + del bcb\libboost_regex-bcb-mt-1_38\*.il? + del bcb\libboost_regex-bcb-mt-1_38\*.csm + del bcb\libboost_regex-bcb-mt-1_38\*.tds -bcb\libboost_regex-bcb-mt-1_37.lib : bcb\libboost_regex-bcb-mt-1_37\c_regex_traits.obj bcb\libboost_regex-bcb-mt-1_37\cpp_regex_traits.obj bcb\libboost_regex-bcb-mt-1_37\cregex.obj bcb\libboost_regex-bcb-mt-1_37\fileiter.obj bcb\libboost_regex-bcb-mt-1_37\icu.obj bcb\libboost_regex-bcb-mt-1_37\instances.obj bcb\libboost_regex-bcb-mt-1_37\posix_api.obj bcb\libboost_regex-bcb-mt-1_37\regex.obj bcb\libboost_regex-bcb-mt-1_37\regex_debug.obj bcb\libboost_regex-bcb-mt-1_37\regex_raw_buffer.obj bcb\libboost_regex-bcb-mt-1_37\regex_traits_defaults.obj bcb\libboost_regex-bcb-mt-1_37\static_mutex.obj bcb\libboost_regex-bcb-mt-1_37\usinstances.obj bcb\libboost_regex-bcb-mt-1_37\w32_regex_traits.obj bcb\libboost_regex-bcb-mt-1_37\wc_regex_traits.obj bcb\libboost_regex-bcb-mt-1_37\wide_posix_api.obj bcb\libboost_regex-bcb-mt-1_37\winstances.obj - if exist bcb\libboost_regex-bcb-mt-1_37.lib del bcb\libboost_regex-bcb-mt-1_37.lib +bcb\libboost_regex-bcb-mt-1_38.lib : bcb\libboost_regex-bcb-mt-1_38\c_regex_traits.obj bcb\libboost_regex-bcb-mt-1_38\cpp_regex_traits.obj bcb\libboost_regex-bcb-mt-1_38\cregex.obj bcb\libboost_regex-bcb-mt-1_38\fileiter.obj bcb\libboost_regex-bcb-mt-1_38\icu.obj bcb\libboost_regex-bcb-mt-1_38\instances.obj bcb\libboost_regex-bcb-mt-1_38\posix_api.obj bcb\libboost_regex-bcb-mt-1_38\regex.obj bcb\libboost_regex-bcb-mt-1_38\regex_debug.obj bcb\libboost_regex-bcb-mt-1_38\regex_raw_buffer.obj bcb\libboost_regex-bcb-mt-1_38\regex_traits_defaults.obj bcb\libboost_regex-bcb-mt-1_38\static_mutex.obj bcb\libboost_regex-bcb-mt-1_38\usinstances.obj bcb\libboost_regex-bcb-mt-1_38\w32_regex_traits.obj bcb\libboost_regex-bcb-mt-1_38\wc_regex_traits.obj bcb\libboost_regex-bcb-mt-1_38\wide_posix_api.obj bcb\libboost_regex-bcb-mt-1_38\winstances.obj + if exist bcb\libboost_regex-bcb-mt-1_38.lib del bcb\libboost_regex-bcb-mt-1_38.lib tlib @&&| -/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-mt-1_37.lib" +"bcb\libboost_regex-bcb-mt-1_37\c_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-1_37\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-1_37\cregex.obj" +"bcb\libboost_regex-bcb-mt-1_37\fileiter.obj" +"bcb\libboost_regex-bcb-mt-1_37\icu.obj" +"bcb\libboost_regex-bcb-mt-1_37\instances.obj" +"bcb\libboost_regex-bcb-mt-1_37\posix_api.obj" +"bcb\libboost_regex-bcb-mt-1_37\regex.obj" +"bcb\libboost_regex-bcb-mt-1_37\regex_debug.obj" +"bcb\libboost_regex-bcb-mt-1_37\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-mt-1_37\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-mt-1_37\static_mutex.obj" +"bcb\libboost_regex-bcb-mt-1_37\usinstances.obj" +"bcb\libboost_regex-bcb-mt-1_37\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-1_37\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-1_37\wide_posix_api.obj" +"bcb\libboost_regex-bcb-mt-1_37\winstances.obj" +/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-mt-1_38.lib" +"bcb\libboost_regex-bcb-mt-1_38\c_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-1_38\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-1_38\cregex.obj" +"bcb\libboost_regex-bcb-mt-1_38\fileiter.obj" +"bcb\libboost_regex-bcb-mt-1_38\icu.obj" +"bcb\libboost_regex-bcb-mt-1_38\instances.obj" +"bcb\libboost_regex-bcb-mt-1_38\posix_api.obj" +"bcb\libboost_regex-bcb-mt-1_38\regex.obj" +"bcb\libboost_regex-bcb-mt-1_38\regex_debug.obj" +"bcb\libboost_regex-bcb-mt-1_38\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-mt-1_38\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-mt-1_38\static_mutex.obj" +"bcb\libboost_regex-bcb-mt-1_38\usinstances.obj" +"bcb\libboost_regex-bcb-mt-1_38\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-1_38\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-1_38\wide_posix_api.obj" +"bcb\libboost_regex-bcb-mt-1_38\winstances.obj" | ######################################################## # -# section for libboost_regex-bcb-1_37.lib +# section for libboost_regex-bcb-1_38.lib # ######################################################## -bcb\libboost_regex-bcb-1_37\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_38\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_37\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_38\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\libboost_regex-bcb-1_37\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_38\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_37\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_38\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\libboost_regex-bcb-1_37\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_38\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_37\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_38\cregex.obj ../src/cregex.cpp | -bcb\libboost_regex-bcb-1_37\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_38\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_37\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_38\fileiter.obj ../src/fileiter.cpp | -bcb\libboost_regex-bcb-1_37\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_38\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_37\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_38\icu.obj ../src/icu.cpp | -bcb\libboost_regex-bcb-1_37\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_38\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_37\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_38\instances.obj ../src/instances.cpp | -bcb\libboost_regex-bcb-1_37\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_38\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_37\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_38\posix_api.obj ../src/posix_api.cpp | -bcb\libboost_regex-bcb-1_37\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_38\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_37\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_38\regex.obj ../src/regex.cpp | -bcb\libboost_regex-bcb-1_37\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_38\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_37\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_38\regex_debug.obj ../src/regex_debug.cpp | -bcb\libboost_regex-bcb-1_37\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_38\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_37\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_38\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\libboost_regex-bcb-1_37\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_38\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_37\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_38\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\libboost_regex-bcb-1_37\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_38\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_37\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_38\static_mutex.obj ../src/static_mutex.cpp | -bcb\libboost_regex-bcb-1_37\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_38\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_37\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_38\usinstances.obj ../src/usinstances.cpp | -bcb\libboost_regex-bcb-1_37\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_38\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_37\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_38\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\libboost_regex-bcb-1_37\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_38\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_37\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_38\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\libboost_regex-bcb-1_37\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_38\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_37\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_38\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\libboost_regex-bcb-1_37\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_38\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_37\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_38\winstances.obj ../src/winstances.cpp | -bcb\libboost_regex-bcb-1_37 : - -@mkdir bcb\libboost_regex-bcb-1_37 +bcb\libboost_regex-bcb-1_38 : + -@mkdir bcb\libboost_regex-bcb-1_38 -libboost_regex-bcb-1_37_clean : - del bcb\libboost_regex-bcb-1_37\*.obj - del bcb\libboost_regex-bcb-1_37\*.il? - del bcb\libboost_regex-bcb-1_37\*.csm - del bcb\libboost_regex-bcb-1_37\*.tds +libboost_regex-bcb-1_38_clean : + del bcb\libboost_regex-bcb-1_38\*.obj + del bcb\libboost_regex-bcb-1_38\*.il? + del bcb\libboost_regex-bcb-1_38\*.csm + del bcb\libboost_regex-bcb-1_38\*.tds -bcb\libboost_regex-bcb-1_37.lib : bcb\libboost_regex-bcb-1_37\c_regex_traits.obj bcb\libboost_regex-bcb-1_37\cpp_regex_traits.obj bcb\libboost_regex-bcb-1_37\cregex.obj bcb\libboost_regex-bcb-1_37\fileiter.obj bcb\libboost_regex-bcb-1_37\icu.obj bcb\libboost_regex-bcb-1_37\instances.obj bcb\libboost_regex-bcb-1_37\posix_api.obj bcb\libboost_regex-bcb-1_37\regex.obj bcb\libboost_regex-bcb-1_37\regex_debug.obj bcb\libboost_regex-bcb-1_37\regex_raw_buffer.obj bcb\libboost_regex-bcb-1_37\regex_traits_defaults.obj bcb\libboost_regex-bcb-1_37\static_mutex.obj bcb\libboost_regex-bcb-1_37\usinstances.obj bcb\libboost_regex-bcb-1_37\w32_regex_traits.obj bcb\libboost_regex-bcb-1_37\wc_regex_traits.obj bcb\libboost_regex-bcb-1_37\wide_posix_api.obj bcb\libboost_regex-bcb-1_37\winstances.obj - if exist bcb\libboost_regex-bcb-1_37.lib del bcb\libboost_regex-bcb-1_37.lib +bcb\libboost_regex-bcb-1_38.lib : bcb\libboost_regex-bcb-1_38\c_regex_traits.obj bcb\libboost_regex-bcb-1_38\cpp_regex_traits.obj bcb\libboost_regex-bcb-1_38\cregex.obj bcb\libboost_regex-bcb-1_38\fileiter.obj bcb\libboost_regex-bcb-1_38\icu.obj bcb\libboost_regex-bcb-1_38\instances.obj bcb\libboost_regex-bcb-1_38\posix_api.obj bcb\libboost_regex-bcb-1_38\regex.obj bcb\libboost_regex-bcb-1_38\regex_debug.obj bcb\libboost_regex-bcb-1_38\regex_raw_buffer.obj bcb\libboost_regex-bcb-1_38\regex_traits_defaults.obj bcb\libboost_regex-bcb-1_38\static_mutex.obj bcb\libboost_regex-bcb-1_38\usinstances.obj bcb\libboost_regex-bcb-1_38\w32_regex_traits.obj bcb\libboost_regex-bcb-1_38\wc_regex_traits.obj bcb\libboost_regex-bcb-1_38\wide_posix_api.obj bcb\libboost_regex-bcb-1_38\winstances.obj + if exist bcb\libboost_regex-bcb-1_38.lib del bcb\libboost_regex-bcb-1_38.lib tlib @&&| -/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-1_37.lib" +"bcb\libboost_regex-bcb-1_37\c_regex_traits.obj" +"bcb\libboost_regex-bcb-1_37\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-1_37\cregex.obj" +"bcb\libboost_regex-bcb-1_37\fileiter.obj" +"bcb\libboost_regex-bcb-1_37\icu.obj" +"bcb\libboost_regex-bcb-1_37\instances.obj" +"bcb\libboost_regex-bcb-1_37\posix_api.obj" +"bcb\libboost_regex-bcb-1_37\regex.obj" +"bcb\libboost_regex-bcb-1_37\regex_debug.obj" +"bcb\libboost_regex-bcb-1_37\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-1_37\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-1_37\static_mutex.obj" +"bcb\libboost_regex-bcb-1_37\usinstances.obj" +"bcb\libboost_regex-bcb-1_37\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-1_37\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-1_37\wide_posix_api.obj" +"bcb\libboost_regex-bcb-1_37\winstances.obj" +/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-1_38.lib" +"bcb\libboost_regex-bcb-1_38\c_regex_traits.obj" +"bcb\libboost_regex-bcb-1_38\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-1_38\cregex.obj" +"bcb\libboost_regex-bcb-1_38\fileiter.obj" +"bcb\libboost_regex-bcb-1_38\icu.obj" +"bcb\libboost_regex-bcb-1_38\instances.obj" +"bcb\libboost_regex-bcb-1_38\posix_api.obj" +"bcb\libboost_regex-bcb-1_38\regex.obj" +"bcb\libboost_regex-bcb-1_38\regex_debug.obj" +"bcb\libboost_regex-bcb-1_38\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-1_38\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-1_38\static_mutex.obj" +"bcb\libboost_regex-bcb-1_38\usinstances.obj" +"bcb\libboost_regex-bcb-1_38\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-1_38\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-1_38\wide_posix_api.obj" +"bcb\libboost_regex-bcb-1_38\winstances.obj" | ######################################################## # -# section for libboost_regex-bcb-sd-1_37.lib +# section for libboost_regex-bcb-sd-1_38.lib # ######################################################## -bcb\libboost_regex-bcb-sd-1_37\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_38\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_37\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_38\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\libboost_regex-bcb-sd-1_37\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_38\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_37\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_38\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\libboost_regex-bcb-sd-1_37\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_38\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_37\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_38\cregex.obj ../src/cregex.cpp | -bcb\libboost_regex-bcb-sd-1_37\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_38\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_37\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_38\fileiter.obj ../src/fileiter.cpp | -bcb\libboost_regex-bcb-sd-1_37\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_38\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_37\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_38\icu.obj ../src/icu.cpp | -bcb\libboost_regex-bcb-sd-1_37\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_38\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_37\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_38\instances.obj ../src/instances.cpp | -bcb\libboost_regex-bcb-sd-1_37\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_38\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_37\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_38\posix_api.obj ../src/posix_api.cpp | -bcb\libboost_regex-bcb-sd-1_37\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_38\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_37\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_38\regex.obj ../src/regex.cpp | -bcb\libboost_regex-bcb-sd-1_37\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_38\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_37\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_38\regex_debug.obj ../src/regex_debug.cpp | -bcb\libboost_regex-bcb-sd-1_37\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_38\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_37\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_38\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\libboost_regex-bcb-sd-1_37\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_38\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_37\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_38\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\libboost_regex-bcb-sd-1_37\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_38\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_37\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_38\static_mutex.obj ../src/static_mutex.cpp | -bcb\libboost_regex-bcb-sd-1_37\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_38\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_37\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_38\usinstances.obj ../src/usinstances.cpp | -bcb\libboost_regex-bcb-sd-1_37\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_38\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_37\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_38\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\libboost_regex-bcb-sd-1_37\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_38\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_37\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_38\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\libboost_regex-bcb-sd-1_37\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_38\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_37\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_38\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\libboost_regex-bcb-sd-1_37\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_38\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_37\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_38\winstances.obj ../src/winstances.cpp | -bcb\libboost_regex-bcb-sd-1_37 : - -@mkdir bcb\libboost_regex-bcb-sd-1_37 +bcb\libboost_regex-bcb-sd-1_38 : + -@mkdir bcb\libboost_regex-bcb-sd-1_38 -libboost_regex-bcb-sd-1_37_clean : - del bcb\libboost_regex-bcb-sd-1_37\*.obj - del bcb\libboost_regex-bcb-sd-1_37\*.il? - del bcb\libboost_regex-bcb-sd-1_37\*.csm - del bcb\libboost_regex-bcb-sd-1_37\*.tds +libboost_regex-bcb-sd-1_38_clean : + del bcb\libboost_regex-bcb-sd-1_38\*.obj + del bcb\libboost_regex-bcb-sd-1_38\*.il? + del bcb\libboost_regex-bcb-sd-1_38\*.csm + del bcb\libboost_regex-bcb-sd-1_38\*.tds -bcb\libboost_regex-bcb-sd-1_37.lib : bcb\libboost_regex-bcb-sd-1_37\c_regex_traits.obj bcb\libboost_regex-bcb-sd-1_37\cpp_regex_traits.obj bcb\libboost_regex-bcb-sd-1_37\cregex.obj bcb\libboost_regex-bcb-sd-1_37\fileiter.obj bcb\libboost_regex-bcb-sd-1_37\icu.obj bcb\libboost_regex-bcb-sd-1_37\instances.obj bcb\libboost_regex-bcb-sd-1_37\posix_api.obj bcb\libboost_regex-bcb-sd-1_37\regex.obj bcb\libboost_regex-bcb-sd-1_37\regex_debug.obj bcb\libboost_regex-bcb-sd-1_37\regex_raw_buffer.obj bcb\libboost_regex-bcb-sd-1_37\regex_traits_defaults.obj bcb\libboost_regex-bcb-sd-1_37\static_mutex.obj bcb\libboost_regex-bcb-sd-1_37\usinstances.obj bcb\libboost_regex-bcb-sd-1_37\w32_regex_traits.obj bcb\libboost_regex-bcb-sd-1_37\wc_regex_traits.obj bcb\libboost_regex-bcb-sd-1_37\wide_posix_api.obj bcb\libboost_regex-bcb-sd-1_37\winstances.obj - if exist bcb\libboost_regex-bcb-sd-1_37.lib del bcb\libboost_regex-bcb-sd-1_37.lib +bcb\libboost_regex-bcb-sd-1_38.lib : bcb\libboost_regex-bcb-sd-1_38\c_regex_traits.obj bcb\libboost_regex-bcb-sd-1_38\cpp_regex_traits.obj bcb\libboost_regex-bcb-sd-1_38\cregex.obj bcb\libboost_regex-bcb-sd-1_38\fileiter.obj bcb\libboost_regex-bcb-sd-1_38\icu.obj bcb\libboost_regex-bcb-sd-1_38\instances.obj bcb\libboost_regex-bcb-sd-1_38\posix_api.obj bcb\libboost_regex-bcb-sd-1_38\regex.obj bcb\libboost_regex-bcb-sd-1_38\regex_debug.obj bcb\libboost_regex-bcb-sd-1_38\regex_raw_buffer.obj bcb\libboost_regex-bcb-sd-1_38\regex_traits_defaults.obj bcb\libboost_regex-bcb-sd-1_38\static_mutex.obj bcb\libboost_regex-bcb-sd-1_38\usinstances.obj bcb\libboost_regex-bcb-sd-1_38\w32_regex_traits.obj bcb\libboost_regex-bcb-sd-1_38\wc_regex_traits.obj bcb\libboost_regex-bcb-sd-1_38\wide_posix_api.obj bcb\libboost_regex-bcb-sd-1_38\winstances.obj + if exist bcb\libboost_regex-bcb-sd-1_38.lib del bcb\libboost_regex-bcb-sd-1_38.lib tlib @&&| -/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-sd-1_37.lib" +"bcb\libboost_regex-bcb-sd-1_37\c_regex_traits.obj" +"bcb\libboost_regex-bcb-sd-1_37\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-sd-1_37\cregex.obj" +"bcb\libboost_regex-bcb-sd-1_37\fileiter.obj" +"bcb\libboost_regex-bcb-sd-1_37\icu.obj" +"bcb\libboost_regex-bcb-sd-1_37\instances.obj" +"bcb\libboost_regex-bcb-sd-1_37\posix_api.obj" +"bcb\libboost_regex-bcb-sd-1_37\regex.obj" +"bcb\libboost_regex-bcb-sd-1_37\regex_debug.obj" +"bcb\libboost_regex-bcb-sd-1_37\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-sd-1_37\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-sd-1_37\static_mutex.obj" +"bcb\libboost_regex-bcb-sd-1_37\usinstances.obj" +"bcb\libboost_regex-bcb-sd-1_37\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-sd-1_37\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-sd-1_37\wide_posix_api.obj" +"bcb\libboost_regex-bcb-sd-1_37\winstances.obj" +/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-sd-1_38.lib" +"bcb\libboost_regex-bcb-sd-1_38\c_regex_traits.obj" +"bcb\libboost_regex-bcb-sd-1_38\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-sd-1_38\cregex.obj" +"bcb\libboost_regex-bcb-sd-1_38\fileiter.obj" +"bcb\libboost_regex-bcb-sd-1_38\icu.obj" +"bcb\libboost_regex-bcb-sd-1_38\instances.obj" +"bcb\libboost_regex-bcb-sd-1_38\posix_api.obj" +"bcb\libboost_regex-bcb-sd-1_38\regex.obj" +"bcb\libboost_regex-bcb-sd-1_38\regex_debug.obj" +"bcb\libboost_regex-bcb-sd-1_38\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-sd-1_38\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-sd-1_38\static_mutex.obj" +"bcb\libboost_regex-bcb-sd-1_38\usinstances.obj" +"bcb\libboost_regex-bcb-sd-1_38\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-sd-1_38\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-sd-1_38\wide_posix_api.obj" +"bcb\libboost_regex-bcb-sd-1_38\winstances.obj" | ######################################################## # -# section for libboost_regex-bcb-mt-sd-1_37.lib +# section for libboost_regex-bcb-mt-sd-1_38.lib # ######################################################## -bcb\libboost_regex-bcb-mt-sd-1_37\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_38\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_37\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_38\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-sd-1_37\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_38\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_37\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_38\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-sd-1_37\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_38\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_37\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_38\cregex.obj ../src/cregex.cpp | -bcb\libboost_regex-bcb-mt-sd-1_37\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_38\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_37\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_38\fileiter.obj ../src/fileiter.cpp | -bcb\libboost_regex-bcb-mt-sd-1_37\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_38\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_37\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_38\icu.obj ../src/icu.cpp | -bcb\libboost_regex-bcb-mt-sd-1_37\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_38\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_37\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_38\instances.obj ../src/instances.cpp | -bcb\libboost_regex-bcb-mt-sd-1_37\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_38\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_37\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_38\posix_api.obj ../src/posix_api.cpp | -bcb\libboost_regex-bcb-mt-sd-1_37\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_38\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_37\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_38\regex.obj ../src/regex.cpp | -bcb\libboost_regex-bcb-mt-sd-1_37\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_38\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_37\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_38\regex_debug.obj ../src/regex_debug.cpp | -bcb\libboost_regex-bcb-mt-sd-1_37\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_38\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_37\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_38\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\libboost_regex-bcb-mt-sd-1_37\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_38\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_37\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_38\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\libboost_regex-bcb-mt-sd-1_37\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_38\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_37\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_38\static_mutex.obj ../src/static_mutex.cpp | -bcb\libboost_regex-bcb-mt-sd-1_37\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_38\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_37\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_38\usinstances.obj ../src/usinstances.cpp | -bcb\libboost_regex-bcb-mt-sd-1_37\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_38\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_37\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_38\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-sd-1_37\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_38\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_37\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_38\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-sd-1_37\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_38\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_37\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_38\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\libboost_regex-bcb-mt-sd-1_37\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_38\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_37\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_38\winstances.obj ../src/winstances.cpp | -bcb\libboost_regex-bcb-mt-sd-1_37 : - -@mkdir bcb\libboost_regex-bcb-mt-sd-1_37 +bcb\libboost_regex-bcb-mt-sd-1_38 : + -@mkdir bcb\libboost_regex-bcb-mt-sd-1_38 -libboost_regex-bcb-mt-sd-1_37_clean : - del bcb\libboost_regex-bcb-mt-sd-1_37\*.obj - del bcb\libboost_regex-bcb-mt-sd-1_37\*.il? - del bcb\libboost_regex-bcb-mt-sd-1_37\*.csm - del bcb\libboost_regex-bcb-mt-sd-1_37\*.tds +libboost_regex-bcb-mt-sd-1_38_clean : + del bcb\libboost_regex-bcb-mt-sd-1_38\*.obj + del bcb\libboost_regex-bcb-mt-sd-1_38\*.il? + del bcb\libboost_regex-bcb-mt-sd-1_38\*.csm + del bcb\libboost_regex-bcb-mt-sd-1_38\*.tds -bcb\libboost_regex-bcb-mt-sd-1_37.lib : bcb\libboost_regex-bcb-mt-sd-1_37\c_regex_traits.obj bcb\libboost_regex-bcb-mt-sd-1_37\cpp_regex_traits.obj bcb\libboost_regex-bcb-mt-sd-1_37\cregex.obj bcb\libboost_regex-bcb-mt-sd-1_37\fileiter.obj bcb\libboost_regex-bcb-mt-sd-1_37\icu.obj bcb\libboost_regex-bcb-mt-sd-1_37\instances.obj bcb\libboost_regex-bcb-mt-sd-1_37\posix_api.obj bcb\libboost_regex-bcb-mt-sd-1_37\regex.obj bcb\libboost_regex-bcb-mt-sd-1_37\regex_debug.obj bcb\libboost_regex-bcb-mt-sd-1_37\regex_raw_buffer.obj bcb\libboost_regex-bcb-mt-sd-1_37\regex_traits_defaults.obj bcb\libboost_regex-bcb-mt-sd-1_37\static_mutex.obj bcb\libboost_regex-bcb-mt-sd-1_37\usinstances.obj bcb\libboost_regex-bcb-mt-sd-1_37\w32_regex_traits.obj bcb\libboost_regex-bcb-mt-sd-1_37\wc_regex_traits.obj bcb\libboost_regex-bcb-mt-sd-1_37\wide_posix_api.obj bcb\libboost_regex-bcb-mt-sd-1_37\winstances.obj - if exist bcb\libboost_regex-bcb-mt-sd-1_37.lib del bcb\libboost_regex-bcb-mt-sd-1_37.lib +bcb\libboost_regex-bcb-mt-sd-1_38.lib : bcb\libboost_regex-bcb-mt-sd-1_38\c_regex_traits.obj bcb\libboost_regex-bcb-mt-sd-1_38\cpp_regex_traits.obj bcb\libboost_regex-bcb-mt-sd-1_38\cregex.obj bcb\libboost_regex-bcb-mt-sd-1_38\fileiter.obj bcb\libboost_regex-bcb-mt-sd-1_38\icu.obj bcb\libboost_regex-bcb-mt-sd-1_38\instances.obj bcb\libboost_regex-bcb-mt-sd-1_38\posix_api.obj bcb\libboost_regex-bcb-mt-sd-1_38\regex.obj bcb\libboost_regex-bcb-mt-sd-1_38\regex_debug.obj bcb\libboost_regex-bcb-mt-sd-1_38\regex_raw_buffer.obj bcb\libboost_regex-bcb-mt-sd-1_38\regex_traits_defaults.obj bcb\libboost_regex-bcb-mt-sd-1_38\static_mutex.obj bcb\libboost_regex-bcb-mt-sd-1_38\usinstances.obj bcb\libboost_regex-bcb-mt-sd-1_38\w32_regex_traits.obj bcb\libboost_regex-bcb-mt-sd-1_38\wc_regex_traits.obj bcb\libboost_regex-bcb-mt-sd-1_38\wide_posix_api.obj bcb\libboost_regex-bcb-mt-sd-1_38\winstances.obj + if exist bcb\libboost_regex-bcb-mt-sd-1_38.lib del bcb\libboost_regex-bcb-mt-sd-1_38.lib tlib @&&| -/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-mt-sd-1_37.lib" +"bcb\libboost_regex-bcb-mt-sd-1_37\c_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-sd-1_37\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-sd-1_37\cregex.obj" +"bcb\libboost_regex-bcb-mt-sd-1_37\fileiter.obj" +"bcb\libboost_regex-bcb-mt-sd-1_37\icu.obj" +"bcb\libboost_regex-bcb-mt-sd-1_37\instances.obj" +"bcb\libboost_regex-bcb-mt-sd-1_37\posix_api.obj" +"bcb\libboost_regex-bcb-mt-sd-1_37\regex.obj" +"bcb\libboost_regex-bcb-mt-sd-1_37\regex_debug.obj" +"bcb\libboost_regex-bcb-mt-sd-1_37\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-mt-sd-1_37\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-mt-sd-1_37\static_mutex.obj" +"bcb\libboost_regex-bcb-mt-sd-1_37\usinstances.obj" +"bcb\libboost_regex-bcb-mt-sd-1_37\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-sd-1_37\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-sd-1_37\wide_posix_api.obj" +"bcb\libboost_regex-bcb-mt-sd-1_37\winstances.obj" +/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-mt-sd-1_38.lib" +"bcb\libboost_regex-bcb-mt-sd-1_38\c_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-sd-1_38\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-sd-1_38\cregex.obj" +"bcb\libboost_regex-bcb-mt-sd-1_38\fileiter.obj" +"bcb\libboost_regex-bcb-mt-sd-1_38\icu.obj" +"bcb\libboost_regex-bcb-mt-sd-1_38\instances.obj" +"bcb\libboost_regex-bcb-mt-sd-1_38\posix_api.obj" +"bcb\libboost_regex-bcb-mt-sd-1_38\regex.obj" +"bcb\libboost_regex-bcb-mt-sd-1_38\regex_debug.obj" +"bcb\libboost_regex-bcb-mt-sd-1_38\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-mt-sd-1_38\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-mt-sd-1_38\static_mutex.obj" +"bcb\libboost_regex-bcb-mt-sd-1_38\usinstances.obj" +"bcb\libboost_regex-bcb-mt-sd-1_38\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-sd-1_38\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-sd-1_38\wide_posix_api.obj" +"bcb\libboost_regex-bcb-mt-sd-1_38\winstances.obj" | ######################################################## # -# section for boost_regex-bcb-mt-d-1_37.lib +# section for boost_regex-bcb-mt-d-1_38.lib # ######################################################## -bcb\boost_regex-bcb-mt-d-1_37\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_38\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_37\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_38\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\boost_regex-bcb-mt-d-1_37\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_38\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_37\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_38\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\boost_regex-bcb-mt-d-1_37\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_38\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_37\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_38\cregex.obj ../src/cregex.cpp | -bcb\boost_regex-bcb-mt-d-1_37\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_38\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_37\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_38\fileiter.obj ../src/fileiter.cpp | -bcb\boost_regex-bcb-mt-d-1_37\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_38\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_37\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_38\icu.obj ../src/icu.cpp | -bcb\boost_regex-bcb-mt-d-1_37\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_38\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_37\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_38\instances.obj ../src/instances.cpp | -bcb\boost_regex-bcb-mt-d-1_37\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_38\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_37\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_38\posix_api.obj ../src/posix_api.cpp | -bcb\boost_regex-bcb-mt-d-1_37\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_38\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_37\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_38\regex.obj ../src/regex.cpp | -bcb\boost_regex-bcb-mt-d-1_37\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_38\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_37\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_38\regex_debug.obj ../src/regex_debug.cpp | -bcb\boost_regex-bcb-mt-d-1_37\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_38\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_37\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_38\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\boost_regex-bcb-mt-d-1_37\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_38\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_37\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_38\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\boost_regex-bcb-mt-d-1_37\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_38\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_37\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_38\static_mutex.obj ../src/static_mutex.cpp | -bcb\boost_regex-bcb-mt-d-1_37\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_38\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_37\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_38\usinstances.obj ../src/usinstances.cpp | -bcb\boost_regex-bcb-mt-d-1_37\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_38\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_37\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_38\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\boost_regex-bcb-mt-d-1_37\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_38\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_37\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_38\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\boost_regex-bcb-mt-d-1_37\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_38\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_37\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_38\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\boost_regex-bcb-mt-d-1_37\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_38\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_37\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_38\winstances.obj ../src/winstances.cpp | -bcb\boost_regex-bcb-mt-d-1_37 : - -@mkdir bcb\boost_regex-bcb-mt-d-1_37 +bcb\boost_regex-bcb-mt-d-1_38 : + -@mkdir bcb\boost_regex-bcb-mt-d-1_38 -boost_regex-bcb-mt-d-1_37_clean : - del bcb\boost_regex-bcb-mt-d-1_37\*.obj - del bcb\boost_regex-bcb-mt-d-1_37\*.il? - del bcb\boost_regex-bcb-mt-d-1_37\*.csm - del bcb\boost_regex-bcb-mt-d-1_37\*.tds +boost_regex-bcb-mt-d-1_38_clean : + del bcb\boost_regex-bcb-mt-d-1_38\*.obj + del bcb\boost_regex-bcb-mt-d-1_38\*.il? + del bcb\boost_regex-bcb-mt-d-1_38\*.csm + del bcb\boost_regex-bcb-mt-d-1_38\*.tds del bcb\*.tds -bcb\boost_regex-bcb-mt-d-1_37.lib : bcb\boost_regex-bcb-mt-d-1_37\c_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_37\cpp_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_37\cregex.obj bcb\boost_regex-bcb-mt-d-1_37\fileiter.obj bcb\boost_regex-bcb-mt-d-1_37\icu.obj bcb\boost_regex-bcb-mt-d-1_37\instances.obj bcb\boost_regex-bcb-mt-d-1_37\posix_api.obj bcb\boost_regex-bcb-mt-d-1_37\regex.obj bcb\boost_regex-bcb-mt-d-1_37\regex_debug.obj bcb\boost_regex-bcb-mt-d-1_37\regex_raw_buffer.obj bcb\boost_regex-bcb-mt-d-1_37\regex_traits_defaults.obj bcb\boost_regex-bcb-mt-d-1_37\static_mutex.obj bcb\boost_regex-bcb-mt-d-1_37\usinstances.obj bcb\boost_regex-bcb-mt-d-1_37\w32_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_37\wc_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_37\wide_posix_api.obj bcb\boost_regex-bcb-mt-d-1_37\winstances.obj +bcb\boost_regex-bcb-mt-d-1_38.lib : bcb\boost_regex-bcb-mt-d-1_38\c_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_38\cpp_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_38\cregex.obj bcb\boost_regex-bcb-mt-d-1_38\fileiter.obj bcb\boost_regex-bcb-mt-d-1_38\icu.obj bcb\boost_regex-bcb-mt-d-1_38\instances.obj bcb\boost_regex-bcb-mt-d-1_38\posix_api.obj bcb\boost_regex-bcb-mt-d-1_38\regex.obj bcb\boost_regex-bcb-mt-d-1_38\regex_debug.obj bcb\boost_regex-bcb-mt-d-1_38\regex_raw_buffer.obj bcb\boost_regex-bcb-mt-d-1_38\regex_traits_defaults.obj bcb\boost_regex-bcb-mt-d-1_38\static_mutex.obj bcb\boost_regex-bcb-mt-d-1_38\usinstances.obj bcb\boost_regex-bcb-mt-d-1_38\w32_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_38\wc_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_38\wide_posix_api.obj bcb\boost_regex-bcb-mt-d-1_38\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_37.dll $(XLFLAGS) bcb\boost_regex-bcb-mt-d-1_37\c_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_37\cpp_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_37\cregex.obj bcb\boost_regex-bcb-mt-d-1_37\fileiter.obj bcb\boost_regex-bcb-mt-d-1_37\icu.obj bcb\boost_regex-bcb-mt-d-1_37\instances.obj bcb\boost_regex-bcb-mt-d-1_37\posix_api.obj bcb\boost_regex-bcb-mt-d-1_37\regex.obj bcb\boost_regex-bcb-mt-d-1_37\regex_debug.obj bcb\boost_regex-bcb-mt-d-1_37\regex_raw_buffer.obj bcb\boost_regex-bcb-mt-d-1_37\regex_traits_defaults.obj bcb\boost_regex-bcb-mt-d-1_37\static_mutex.obj bcb\boost_regex-bcb-mt-d-1_37\usinstances.obj bcb\boost_regex-bcb-mt-d-1_37\w32_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_37\wc_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_37\wide_posix_api.obj bcb\boost_regex-bcb-mt-d-1_37\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_38.dll $(XLFLAGS) bcb\boost_regex-bcb-mt-d-1_38\c_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_38\cpp_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_38\cregex.obj bcb\boost_regex-bcb-mt-d-1_38\fileiter.obj bcb\boost_regex-bcb-mt-d-1_38\icu.obj bcb\boost_regex-bcb-mt-d-1_38\instances.obj bcb\boost_regex-bcb-mt-d-1_38\posix_api.obj bcb\boost_regex-bcb-mt-d-1_38\regex.obj bcb\boost_regex-bcb-mt-d-1_38\regex_debug.obj bcb\boost_regex-bcb-mt-d-1_38\regex_raw_buffer.obj bcb\boost_regex-bcb-mt-d-1_38\regex_traits_defaults.obj bcb\boost_regex-bcb-mt-d-1_38\static_mutex.obj bcb\boost_regex-bcb-mt-d-1_38\usinstances.obj bcb\boost_regex-bcb-mt-d-1_38\w32_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_38\wc_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_38\wide_posix_api.obj bcb\boost_regex-bcb-mt-d-1_38\winstances.obj $(LIBS) | - implib -w bcb\boost_regex-bcb-mt-d-1_37.lib bcb\boost_regex-bcb-mt-d-1_37.dll + implib -w bcb\boost_regex-bcb-mt-d-1_38.lib bcb\boost_regex-bcb-mt-d-1_38.dll ######################################################## # -# section for boost_regex-bcb-d-1_37.lib +# section for boost_regex-bcb-d-1_38.lib # ######################################################## -bcb\boost_regex-bcb-d-1_37\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_38\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_37\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_38\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\boost_regex-bcb-d-1_37\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_38\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_37\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_38\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\boost_regex-bcb-d-1_37\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_38\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_37\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_38\cregex.obj ../src/cregex.cpp | -bcb\boost_regex-bcb-d-1_37\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_38\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_37\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_38\fileiter.obj ../src/fileiter.cpp | -bcb\boost_regex-bcb-d-1_37\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_38\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_37\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_38\icu.obj ../src/icu.cpp | -bcb\boost_regex-bcb-d-1_37\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_38\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_37\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_38\instances.obj ../src/instances.cpp | -bcb\boost_regex-bcb-d-1_37\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_38\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_37\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_38\posix_api.obj ../src/posix_api.cpp | -bcb\boost_regex-bcb-d-1_37\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_38\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_37\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_38\regex.obj ../src/regex.cpp | -bcb\boost_regex-bcb-d-1_37\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_38\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_37\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_38\regex_debug.obj ../src/regex_debug.cpp | -bcb\boost_regex-bcb-d-1_37\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_38\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_37\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_38\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\boost_regex-bcb-d-1_37\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_38\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_37\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_38\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\boost_regex-bcb-d-1_37\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_38\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_37\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_38\static_mutex.obj ../src/static_mutex.cpp | -bcb\boost_regex-bcb-d-1_37\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_38\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_37\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_38\usinstances.obj ../src/usinstances.cpp | -bcb\boost_regex-bcb-d-1_37\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_38\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_37\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_38\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\boost_regex-bcb-d-1_37\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_38\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_37\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_38\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\boost_regex-bcb-d-1_37\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_38\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_37\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_38\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\boost_regex-bcb-d-1_37\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_38\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_37\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_38\winstances.obj ../src/winstances.cpp | -bcb\boost_regex-bcb-d-1_37 : - -@mkdir bcb\boost_regex-bcb-d-1_37 +bcb\boost_regex-bcb-d-1_38 : + -@mkdir bcb\boost_regex-bcb-d-1_38 -boost_regex-bcb-d-1_37_clean : - del bcb\boost_regex-bcb-d-1_37\*.obj - del bcb\boost_regex-bcb-d-1_37\*.il? - del bcb\boost_regex-bcb-d-1_37\*.csm - del bcb\boost_regex-bcb-d-1_37\*.tds +boost_regex-bcb-d-1_38_clean : + del bcb\boost_regex-bcb-d-1_38\*.obj + del bcb\boost_regex-bcb-d-1_38\*.il? + del bcb\boost_regex-bcb-d-1_38\*.csm + del bcb\boost_regex-bcb-d-1_38\*.tds del bcb\*.tds -bcb\boost_regex-bcb-d-1_37.lib : bcb\boost_regex-bcb-d-1_37\c_regex_traits.obj bcb\boost_regex-bcb-d-1_37\cpp_regex_traits.obj bcb\boost_regex-bcb-d-1_37\cregex.obj bcb\boost_regex-bcb-d-1_37\fileiter.obj bcb\boost_regex-bcb-d-1_37\icu.obj bcb\boost_regex-bcb-d-1_37\instances.obj bcb\boost_regex-bcb-d-1_37\posix_api.obj bcb\boost_regex-bcb-d-1_37\regex.obj bcb\boost_regex-bcb-d-1_37\regex_debug.obj bcb\boost_regex-bcb-d-1_37\regex_raw_buffer.obj bcb\boost_regex-bcb-d-1_37\regex_traits_defaults.obj bcb\boost_regex-bcb-d-1_37\static_mutex.obj bcb\boost_regex-bcb-d-1_37\usinstances.obj bcb\boost_regex-bcb-d-1_37\w32_regex_traits.obj bcb\boost_regex-bcb-d-1_37\wc_regex_traits.obj bcb\boost_regex-bcb-d-1_37\wide_posix_api.obj bcb\boost_regex-bcb-d-1_37\winstances.obj +bcb\boost_regex-bcb-d-1_38.lib : bcb\boost_regex-bcb-d-1_38\c_regex_traits.obj bcb\boost_regex-bcb-d-1_38\cpp_regex_traits.obj bcb\boost_regex-bcb-d-1_38\cregex.obj bcb\boost_regex-bcb-d-1_38\fileiter.obj bcb\boost_regex-bcb-d-1_38\icu.obj bcb\boost_regex-bcb-d-1_38\instances.obj bcb\boost_regex-bcb-d-1_38\posix_api.obj bcb\boost_regex-bcb-d-1_38\regex.obj bcb\boost_regex-bcb-d-1_38\regex_debug.obj bcb\boost_regex-bcb-d-1_38\regex_raw_buffer.obj bcb\boost_regex-bcb-d-1_38\regex_traits_defaults.obj bcb\boost_regex-bcb-d-1_38\static_mutex.obj bcb\boost_regex-bcb-d-1_38\usinstances.obj bcb\boost_regex-bcb-d-1_38\w32_regex_traits.obj bcb\boost_regex-bcb-d-1_38\wc_regex_traits.obj bcb\boost_regex-bcb-d-1_38\wide_posix_api.obj bcb\boost_regex-bcb-d-1_38\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_37.dll $(XLFLAGS) bcb\boost_regex-bcb-d-1_37\c_regex_traits.obj bcb\boost_regex-bcb-d-1_37\cpp_regex_traits.obj bcb\boost_regex-bcb-d-1_37\cregex.obj bcb\boost_regex-bcb-d-1_37\fileiter.obj bcb\boost_regex-bcb-d-1_37\icu.obj bcb\boost_regex-bcb-d-1_37\instances.obj bcb\boost_regex-bcb-d-1_37\posix_api.obj bcb\boost_regex-bcb-d-1_37\regex.obj bcb\boost_regex-bcb-d-1_37\regex_debug.obj bcb\boost_regex-bcb-d-1_37\regex_raw_buffer.obj bcb\boost_regex-bcb-d-1_37\regex_traits_defaults.obj bcb\boost_regex-bcb-d-1_37\static_mutex.obj bcb\boost_regex-bcb-d-1_37\usinstances.obj bcb\boost_regex-bcb-d-1_37\w32_regex_traits.obj bcb\boost_regex-bcb-d-1_37\wc_regex_traits.obj bcb\boost_regex-bcb-d-1_37\wide_posix_api.obj bcb\boost_regex-bcb-d-1_37\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_38.dll $(XLFLAGS) bcb\boost_regex-bcb-d-1_38\c_regex_traits.obj bcb\boost_regex-bcb-d-1_38\cpp_regex_traits.obj bcb\boost_regex-bcb-d-1_38\cregex.obj bcb\boost_regex-bcb-d-1_38\fileiter.obj bcb\boost_regex-bcb-d-1_38\icu.obj bcb\boost_regex-bcb-d-1_38\instances.obj bcb\boost_regex-bcb-d-1_38\posix_api.obj bcb\boost_regex-bcb-d-1_38\regex.obj bcb\boost_regex-bcb-d-1_38\regex_debug.obj bcb\boost_regex-bcb-d-1_38\regex_raw_buffer.obj bcb\boost_regex-bcb-d-1_38\regex_traits_defaults.obj bcb\boost_regex-bcb-d-1_38\static_mutex.obj bcb\boost_regex-bcb-d-1_38\usinstances.obj bcb\boost_regex-bcb-d-1_38\w32_regex_traits.obj bcb\boost_regex-bcb-d-1_38\wc_regex_traits.obj bcb\boost_regex-bcb-d-1_38\wide_posix_api.obj bcb\boost_regex-bcb-d-1_38\winstances.obj $(LIBS) | - implib -w bcb\boost_regex-bcb-d-1_37.lib bcb\boost_regex-bcb-d-1_37.dll + implib -w bcb\boost_regex-bcb-d-1_38.lib bcb\boost_regex-bcb-d-1_38.dll ######################################################## # -# section for libboost_regex-bcb-mt-d-1_37.lib +# section for libboost_regex-bcb-mt-d-1_38.lib # ######################################################## -bcb\libboost_regex-bcb-mt-d-1_37\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_38\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_37\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_38\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-d-1_37\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_38\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_37\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_38\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-d-1_37\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_38\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_37\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_38\cregex.obj ../src/cregex.cpp | -bcb\libboost_regex-bcb-mt-d-1_37\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_38\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_37\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_38\fileiter.obj ../src/fileiter.cpp | -bcb\libboost_regex-bcb-mt-d-1_37\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_38\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_37\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_38\icu.obj ../src/icu.cpp | -bcb\libboost_regex-bcb-mt-d-1_37\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_38\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_37\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_38\instances.obj ../src/instances.cpp | -bcb\libboost_regex-bcb-mt-d-1_37\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_38\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_37\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_38\posix_api.obj ../src/posix_api.cpp | -bcb\libboost_regex-bcb-mt-d-1_37\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_38\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_37\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_38\regex.obj ../src/regex.cpp | -bcb\libboost_regex-bcb-mt-d-1_37\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_38\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_37\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_38\regex_debug.obj ../src/regex_debug.cpp | -bcb\libboost_regex-bcb-mt-d-1_37\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_38\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_37\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_38\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\libboost_regex-bcb-mt-d-1_37\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_38\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_37\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_38\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\libboost_regex-bcb-mt-d-1_37\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_38\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_37\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_38\static_mutex.obj ../src/static_mutex.cpp | -bcb\libboost_regex-bcb-mt-d-1_37\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_38\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_37\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_38\usinstances.obj ../src/usinstances.cpp | -bcb\libboost_regex-bcb-mt-d-1_37\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_38\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_37\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_38\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-d-1_37\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_38\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_37\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_38\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-d-1_37\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_38\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_37\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_38\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\libboost_regex-bcb-mt-d-1_37\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_38\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_37\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_38\winstances.obj ../src/winstances.cpp | -bcb\libboost_regex-bcb-mt-d-1_37 : - -@mkdir bcb\libboost_regex-bcb-mt-d-1_37 +bcb\libboost_regex-bcb-mt-d-1_38 : + -@mkdir bcb\libboost_regex-bcb-mt-d-1_38 -libboost_regex-bcb-mt-d-1_37_clean : - del bcb\libboost_regex-bcb-mt-d-1_37\*.obj - del bcb\libboost_regex-bcb-mt-d-1_37\*.il? - del bcb\libboost_regex-bcb-mt-d-1_37\*.csm - del bcb\libboost_regex-bcb-mt-d-1_37\*.tds +libboost_regex-bcb-mt-d-1_38_clean : + del bcb\libboost_regex-bcb-mt-d-1_38\*.obj + del bcb\libboost_regex-bcb-mt-d-1_38\*.il? + del bcb\libboost_regex-bcb-mt-d-1_38\*.csm + del bcb\libboost_regex-bcb-mt-d-1_38\*.tds -bcb\libboost_regex-bcb-mt-d-1_37.lib : bcb\libboost_regex-bcb-mt-d-1_37\c_regex_traits.obj bcb\libboost_regex-bcb-mt-d-1_37\cpp_regex_traits.obj bcb\libboost_regex-bcb-mt-d-1_37\cregex.obj bcb\libboost_regex-bcb-mt-d-1_37\fileiter.obj bcb\libboost_regex-bcb-mt-d-1_37\icu.obj bcb\libboost_regex-bcb-mt-d-1_37\instances.obj bcb\libboost_regex-bcb-mt-d-1_37\posix_api.obj bcb\libboost_regex-bcb-mt-d-1_37\regex.obj bcb\libboost_regex-bcb-mt-d-1_37\regex_debug.obj bcb\libboost_regex-bcb-mt-d-1_37\regex_raw_buffer.obj bcb\libboost_regex-bcb-mt-d-1_37\regex_traits_defaults.obj bcb\libboost_regex-bcb-mt-d-1_37\static_mutex.obj bcb\libboost_regex-bcb-mt-d-1_37\usinstances.obj bcb\libboost_regex-bcb-mt-d-1_37\w32_regex_traits.obj bcb\libboost_regex-bcb-mt-d-1_37\wc_regex_traits.obj bcb\libboost_regex-bcb-mt-d-1_37\wide_posix_api.obj bcb\libboost_regex-bcb-mt-d-1_37\winstances.obj - if exist bcb\libboost_regex-bcb-mt-d-1_37.lib del bcb\libboost_regex-bcb-mt-d-1_37.lib +bcb\libboost_regex-bcb-mt-d-1_38.lib : bcb\libboost_regex-bcb-mt-d-1_38\c_regex_traits.obj bcb\libboost_regex-bcb-mt-d-1_38\cpp_regex_traits.obj bcb\libboost_regex-bcb-mt-d-1_38\cregex.obj bcb\libboost_regex-bcb-mt-d-1_38\fileiter.obj bcb\libboost_regex-bcb-mt-d-1_38\icu.obj bcb\libboost_regex-bcb-mt-d-1_38\instances.obj bcb\libboost_regex-bcb-mt-d-1_38\posix_api.obj bcb\libboost_regex-bcb-mt-d-1_38\regex.obj bcb\libboost_regex-bcb-mt-d-1_38\regex_debug.obj bcb\libboost_regex-bcb-mt-d-1_38\regex_raw_buffer.obj bcb\libboost_regex-bcb-mt-d-1_38\regex_traits_defaults.obj bcb\libboost_regex-bcb-mt-d-1_38\static_mutex.obj bcb\libboost_regex-bcb-mt-d-1_38\usinstances.obj bcb\libboost_regex-bcb-mt-d-1_38\w32_regex_traits.obj bcb\libboost_regex-bcb-mt-d-1_38\wc_regex_traits.obj bcb\libboost_regex-bcb-mt-d-1_38\wide_posix_api.obj bcb\libboost_regex-bcb-mt-d-1_38\winstances.obj + if exist bcb\libboost_regex-bcb-mt-d-1_38.lib del bcb\libboost_regex-bcb-mt-d-1_38.lib tlib @&&| -/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-mt-d-1_37.lib" +"bcb\libboost_regex-bcb-mt-d-1_37\c_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-d-1_37\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-d-1_37\cregex.obj" +"bcb\libboost_regex-bcb-mt-d-1_37\fileiter.obj" +"bcb\libboost_regex-bcb-mt-d-1_37\icu.obj" +"bcb\libboost_regex-bcb-mt-d-1_37\instances.obj" +"bcb\libboost_regex-bcb-mt-d-1_37\posix_api.obj" +"bcb\libboost_regex-bcb-mt-d-1_37\regex.obj" +"bcb\libboost_regex-bcb-mt-d-1_37\regex_debug.obj" +"bcb\libboost_regex-bcb-mt-d-1_37\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-mt-d-1_37\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-mt-d-1_37\static_mutex.obj" +"bcb\libboost_regex-bcb-mt-d-1_37\usinstances.obj" +"bcb\libboost_regex-bcb-mt-d-1_37\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-d-1_37\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-d-1_37\wide_posix_api.obj" +"bcb\libboost_regex-bcb-mt-d-1_37\winstances.obj" +/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-mt-d-1_38.lib" +"bcb\libboost_regex-bcb-mt-d-1_38\c_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-d-1_38\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-d-1_38\cregex.obj" +"bcb\libboost_regex-bcb-mt-d-1_38\fileiter.obj" +"bcb\libboost_regex-bcb-mt-d-1_38\icu.obj" +"bcb\libboost_regex-bcb-mt-d-1_38\instances.obj" +"bcb\libboost_regex-bcb-mt-d-1_38\posix_api.obj" +"bcb\libboost_regex-bcb-mt-d-1_38\regex.obj" +"bcb\libboost_regex-bcb-mt-d-1_38\regex_debug.obj" +"bcb\libboost_regex-bcb-mt-d-1_38\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-mt-d-1_38\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-mt-d-1_38\static_mutex.obj" +"bcb\libboost_regex-bcb-mt-d-1_38\usinstances.obj" +"bcb\libboost_regex-bcb-mt-d-1_38\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-d-1_38\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-d-1_38\wide_posix_api.obj" +"bcb\libboost_regex-bcb-mt-d-1_38\winstances.obj" | ######################################################## # -# section for libboost_regex-bcb-d-1_37.lib +# section for libboost_regex-bcb-d-1_38.lib # ######################################################## -bcb\libboost_regex-bcb-d-1_37\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_38\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_37\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_38\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\libboost_regex-bcb-d-1_37\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_38\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_37\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_38\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\libboost_regex-bcb-d-1_37\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_38\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_37\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_38\cregex.obj ../src/cregex.cpp | -bcb\libboost_regex-bcb-d-1_37\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_38\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_37\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_38\fileiter.obj ../src/fileiter.cpp | -bcb\libboost_regex-bcb-d-1_37\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_38\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_37\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_38\icu.obj ../src/icu.cpp | -bcb\libboost_regex-bcb-d-1_37\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_38\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_37\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_38\instances.obj ../src/instances.cpp | -bcb\libboost_regex-bcb-d-1_37\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_38\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_37\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_38\posix_api.obj ../src/posix_api.cpp | -bcb\libboost_regex-bcb-d-1_37\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_38\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_37\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_38\regex.obj ../src/regex.cpp | -bcb\libboost_regex-bcb-d-1_37\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_38\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_37\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_38\regex_debug.obj ../src/regex_debug.cpp | -bcb\libboost_regex-bcb-d-1_37\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_38\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_37\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_38\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\libboost_regex-bcb-d-1_37\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_38\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_37\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_38\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\libboost_regex-bcb-d-1_37\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_38\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_37\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_38\static_mutex.obj ../src/static_mutex.cpp | -bcb\libboost_regex-bcb-d-1_37\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_38\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_37\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_38\usinstances.obj ../src/usinstances.cpp | -bcb\libboost_regex-bcb-d-1_37\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_38\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_37\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_38\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\libboost_regex-bcb-d-1_37\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_38\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_37\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_38\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\libboost_regex-bcb-d-1_37\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_38\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_37\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_38\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\libboost_regex-bcb-d-1_37\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_38\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_37\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_38\winstances.obj ../src/winstances.cpp | -bcb\libboost_regex-bcb-d-1_37 : - -@mkdir bcb\libboost_regex-bcb-d-1_37 +bcb\libboost_regex-bcb-d-1_38 : + -@mkdir bcb\libboost_regex-bcb-d-1_38 -libboost_regex-bcb-d-1_37_clean : - del bcb\libboost_regex-bcb-d-1_37\*.obj - del bcb\libboost_regex-bcb-d-1_37\*.il? - del bcb\libboost_regex-bcb-d-1_37\*.csm - del bcb\libboost_regex-bcb-d-1_37\*.tds +libboost_regex-bcb-d-1_38_clean : + del bcb\libboost_regex-bcb-d-1_38\*.obj + del bcb\libboost_regex-bcb-d-1_38\*.il? + del bcb\libboost_regex-bcb-d-1_38\*.csm + del bcb\libboost_regex-bcb-d-1_38\*.tds -bcb\libboost_regex-bcb-d-1_37.lib : bcb\libboost_regex-bcb-d-1_37\c_regex_traits.obj bcb\libboost_regex-bcb-d-1_37\cpp_regex_traits.obj bcb\libboost_regex-bcb-d-1_37\cregex.obj bcb\libboost_regex-bcb-d-1_37\fileiter.obj bcb\libboost_regex-bcb-d-1_37\icu.obj bcb\libboost_regex-bcb-d-1_37\instances.obj bcb\libboost_regex-bcb-d-1_37\posix_api.obj bcb\libboost_regex-bcb-d-1_37\regex.obj bcb\libboost_regex-bcb-d-1_37\regex_debug.obj bcb\libboost_regex-bcb-d-1_37\regex_raw_buffer.obj bcb\libboost_regex-bcb-d-1_37\regex_traits_defaults.obj bcb\libboost_regex-bcb-d-1_37\static_mutex.obj bcb\libboost_regex-bcb-d-1_37\usinstances.obj bcb\libboost_regex-bcb-d-1_37\w32_regex_traits.obj bcb\libboost_regex-bcb-d-1_37\wc_regex_traits.obj bcb\libboost_regex-bcb-d-1_37\wide_posix_api.obj bcb\libboost_regex-bcb-d-1_37\winstances.obj - if exist bcb\libboost_regex-bcb-d-1_37.lib del bcb\libboost_regex-bcb-d-1_37.lib +bcb\libboost_regex-bcb-d-1_38.lib : bcb\libboost_regex-bcb-d-1_38\c_regex_traits.obj bcb\libboost_regex-bcb-d-1_38\cpp_regex_traits.obj bcb\libboost_regex-bcb-d-1_38\cregex.obj bcb\libboost_regex-bcb-d-1_38\fileiter.obj bcb\libboost_regex-bcb-d-1_38\icu.obj bcb\libboost_regex-bcb-d-1_38\instances.obj bcb\libboost_regex-bcb-d-1_38\posix_api.obj bcb\libboost_regex-bcb-d-1_38\regex.obj bcb\libboost_regex-bcb-d-1_38\regex_debug.obj bcb\libboost_regex-bcb-d-1_38\regex_raw_buffer.obj bcb\libboost_regex-bcb-d-1_38\regex_traits_defaults.obj bcb\libboost_regex-bcb-d-1_38\static_mutex.obj bcb\libboost_regex-bcb-d-1_38\usinstances.obj bcb\libboost_regex-bcb-d-1_38\w32_regex_traits.obj bcb\libboost_regex-bcb-d-1_38\wc_regex_traits.obj bcb\libboost_regex-bcb-d-1_38\wide_posix_api.obj bcb\libboost_regex-bcb-d-1_38\winstances.obj + if exist bcb\libboost_regex-bcb-d-1_38.lib del bcb\libboost_regex-bcb-d-1_38.lib tlib @&&| -/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-d-1_37.lib" +"bcb\libboost_regex-bcb-d-1_37\c_regex_traits.obj" +"bcb\libboost_regex-bcb-d-1_37\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-d-1_37\cregex.obj" +"bcb\libboost_regex-bcb-d-1_37\fileiter.obj" +"bcb\libboost_regex-bcb-d-1_37\icu.obj" +"bcb\libboost_regex-bcb-d-1_37\instances.obj" +"bcb\libboost_regex-bcb-d-1_37\posix_api.obj" +"bcb\libboost_regex-bcb-d-1_37\regex.obj" +"bcb\libboost_regex-bcb-d-1_37\regex_debug.obj" +"bcb\libboost_regex-bcb-d-1_37\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-d-1_37\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-d-1_37\static_mutex.obj" +"bcb\libboost_regex-bcb-d-1_37\usinstances.obj" +"bcb\libboost_regex-bcb-d-1_37\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-d-1_37\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-d-1_37\wide_posix_api.obj" +"bcb\libboost_regex-bcb-d-1_37\winstances.obj" +/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-d-1_38.lib" +"bcb\libboost_regex-bcb-d-1_38\c_regex_traits.obj" +"bcb\libboost_regex-bcb-d-1_38\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-d-1_38\cregex.obj" +"bcb\libboost_regex-bcb-d-1_38\fileiter.obj" +"bcb\libboost_regex-bcb-d-1_38\icu.obj" +"bcb\libboost_regex-bcb-d-1_38\instances.obj" +"bcb\libboost_regex-bcb-d-1_38\posix_api.obj" +"bcb\libboost_regex-bcb-d-1_38\regex.obj" +"bcb\libboost_regex-bcb-d-1_38\regex_debug.obj" +"bcb\libboost_regex-bcb-d-1_38\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-d-1_38\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-d-1_38\static_mutex.obj" +"bcb\libboost_regex-bcb-d-1_38\usinstances.obj" +"bcb\libboost_regex-bcb-d-1_38\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-d-1_38\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-d-1_38\wide_posix_api.obj" +"bcb\libboost_regex-bcb-d-1_38\winstances.obj" | diff --git a/build/gcc-shared.mak b/build/gcc-shared.mak index f049f7aa..da23de46 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_37_shared ./gcc/libboost_regex-gcc-1_37.so gcc gcc/boost_regex-gcc-d-1_37_shared ./gcc/libboost_regex-gcc-d-1_37.so +all : gcc gcc gcc/boost_regex-gcc-1_38_shared ./gcc/libboost_regex-gcc-1_38.so gcc gcc/boost_regex-gcc-d-1_38_shared ./gcc/libboost_regex-gcc-d-1_38.so gcc : mkdir -p gcc -clean : boost_regex-gcc-1_37_clean boost_regex-gcc-d-1_37_clean +clean : boost_regex-gcc-1_38_clean boost_regex-gcc-d-1_38_clean install : all @@ -60,132 +60,132 @@ install : all ######################################################## # -# section for libboost_regex-gcc-1_37.a +# section for libboost_regex-gcc-1_38.a # ######################################################## -gcc/boost_regex-gcc-1_37_shared/c_regex_traits.o: ../src/c_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37_shared/c_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/c_regex_traits.cpp +gcc/boost_regex-gcc-1_38_shared/c_regex_traits.o: ../src/c_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38_shared/c_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/c_regex_traits.cpp -gcc/boost_regex-gcc-1_37_shared/cpp_regex_traits.o: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37_shared/cpp_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cpp_regex_traits.cpp +gcc/boost_regex-gcc-1_38_shared/cpp_regex_traits.o: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38_shared/cpp_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cpp_regex_traits.cpp -gcc/boost_regex-gcc-1_37_shared/cregex.o: ../src/cregex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37_shared/cregex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cregex.cpp +gcc/boost_regex-gcc-1_38_shared/cregex.o: ../src/cregex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38_shared/cregex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cregex.cpp -gcc/boost_regex-gcc-1_37_shared/fileiter.o: ../src/fileiter.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37_shared/fileiter.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/fileiter.cpp +gcc/boost_regex-gcc-1_38_shared/fileiter.o: ../src/fileiter.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38_shared/fileiter.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/fileiter.cpp -gcc/boost_regex-gcc-1_37_shared/icu.o: ../src/icu.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37_shared/icu.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/icu.cpp +gcc/boost_regex-gcc-1_38_shared/icu.o: ../src/icu.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38_shared/icu.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/icu.cpp -gcc/boost_regex-gcc-1_37_shared/instances.o: ../src/instances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37_shared/instances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/instances.cpp +gcc/boost_regex-gcc-1_38_shared/instances.o: ../src/instances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38_shared/instances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/instances.cpp -gcc/boost_regex-gcc-1_37_shared/posix_api.o: ../src/posix_api.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37_shared/posix_api.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/posix_api.cpp +gcc/boost_regex-gcc-1_38_shared/posix_api.o: ../src/posix_api.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38_shared/posix_api.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/posix_api.cpp -gcc/boost_regex-gcc-1_37_shared/regex.o: ../src/regex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37_shared/regex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex.cpp +gcc/boost_regex-gcc-1_38_shared/regex.o: ../src/regex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38_shared/regex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex.cpp -gcc/boost_regex-gcc-1_37_shared/regex_debug.o: ../src/regex_debug.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37_shared/regex_debug.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_debug.cpp +gcc/boost_regex-gcc-1_38_shared/regex_debug.o: ../src/regex_debug.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38_shared/regex_debug.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_debug.cpp -gcc/boost_regex-gcc-1_37_shared/regex_raw_buffer.o: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37_shared/regex_raw_buffer.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_raw_buffer.cpp +gcc/boost_regex-gcc-1_38_shared/regex_raw_buffer.o: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38_shared/regex_raw_buffer.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_raw_buffer.cpp -gcc/boost_regex-gcc-1_37_shared/regex_traits_defaults.o: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37_shared/regex_traits_defaults.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_traits_defaults.cpp +gcc/boost_regex-gcc-1_38_shared/regex_traits_defaults.o: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38_shared/regex_traits_defaults.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_traits_defaults.cpp -gcc/boost_regex-gcc-1_37_shared/static_mutex.o: ../src/static_mutex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37_shared/static_mutex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/static_mutex.cpp +gcc/boost_regex-gcc-1_38_shared/static_mutex.o: ../src/static_mutex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38_shared/static_mutex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/static_mutex.cpp -gcc/boost_regex-gcc-1_37_shared/usinstances.o: ../src/usinstances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37_shared/usinstances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/usinstances.cpp +gcc/boost_regex-gcc-1_38_shared/usinstances.o: ../src/usinstances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38_shared/usinstances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/usinstances.cpp -gcc/boost_regex-gcc-1_37_shared/w32_regex_traits.o: ../src/w32_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37_shared/w32_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/w32_regex_traits.cpp +gcc/boost_regex-gcc-1_38_shared/w32_regex_traits.o: ../src/w32_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38_shared/w32_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/w32_regex_traits.cpp -gcc/boost_regex-gcc-1_37_shared/wc_regex_traits.o: ../src/wc_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37_shared/wc_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wc_regex_traits.cpp +gcc/boost_regex-gcc-1_38_shared/wc_regex_traits.o: ../src/wc_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38_shared/wc_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wc_regex_traits.cpp -gcc/boost_regex-gcc-1_37_shared/wide_posix_api.o: ../src/wide_posix_api.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37_shared/wide_posix_api.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wide_posix_api.cpp +gcc/boost_regex-gcc-1_38_shared/wide_posix_api.o: ../src/wide_posix_api.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38_shared/wide_posix_api.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wide_posix_api.cpp -gcc/boost_regex-gcc-1_37_shared/winstances.o: ../src/winstances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37_shared/winstances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/winstances.cpp +gcc/boost_regex-gcc-1_38_shared/winstances.o: ../src/winstances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38_shared/winstances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/winstances.cpp -gcc/boost_regex-gcc-1_37_shared : - mkdir -p gcc/boost_regex-gcc-1_37_shared +gcc/boost_regex-gcc-1_38_shared : + mkdir -p gcc/boost_regex-gcc-1_38_shared -boost_regex-gcc-1_37_clean : - rm -f gcc/boost_regex-gcc-1_37_shared/*.o +boost_regex-gcc-1_38_clean : + rm -f gcc/boost_regex-gcc-1_38_shared/*.o -./gcc/libboost_regex-gcc-1_37.so : gcc/boost_regex-gcc-1_37_shared/c_regex_traits.o gcc/boost_regex-gcc-1_37_shared/cpp_regex_traits.o gcc/boost_regex-gcc-1_37_shared/cregex.o gcc/boost_regex-gcc-1_37_shared/fileiter.o gcc/boost_regex-gcc-1_37_shared/icu.o gcc/boost_regex-gcc-1_37_shared/instances.o gcc/boost_regex-gcc-1_37_shared/posix_api.o gcc/boost_regex-gcc-1_37_shared/regex.o gcc/boost_regex-gcc-1_37_shared/regex_debug.o gcc/boost_regex-gcc-1_37_shared/regex_raw_buffer.o gcc/boost_regex-gcc-1_37_shared/regex_traits_defaults.o gcc/boost_regex-gcc-1_37_shared/static_mutex.o gcc/boost_regex-gcc-1_37_shared/usinstances.o gcc/boost_regex-gcc-1_37_shared/w32_regex_traits.o gcc/boost_regex-gcc-1_37_shared/wc_regex_traits.o gcc/boost_regex-gcc-1_37_shared/wide_posix_api.o gcc/boost_regex-gcc-1_37_shared/winstances.o - $(LINKER) -o gcc/libboost_regex-gcc-1_37.so $(LDFLAGS) $(ICU_LDFLAGS) gcc/boost_regex-gcc-1_37_shared/c_regex_traits.o gcc/boost_regex-gcc-1_37_shared/cpp_regex_traits.o gcc/boost_regex-gcc-1_37_shared/cregex.o gcc/boost_regex-gcc-1_37_shared/fileiter.o gcc/boost_regex-gcc-1_37_shared/icu.o gcc/boost_regex-gcc-1_37_shared/instances.o gcc/boost_regex-gcc-1_37_shared/posix_api.o gcc/boost_regex-gcc-1_37_shared/regex.o gcc/boost_regex-gcc-1_37_shared/regex_debug.o gcc/boost_regex-gcc-1_37_shared/regex_raw_buffer.o gcc/boost_regex-gcc-1_37_shared/regex_traits_defaults.o gcc/boost_regex-gcc-1_37_shared/static_mutex.o gcc/boost_regex-gcc-1_37_shared/usinstances.o gcc/boost_regex-gcc-1_37_shared/w32_regex_traits.o gcc/boost_regex-gcc-1_37_shared/wc_regex_traits.o gcc/boost_regex-gcc-1_37_shared/wide_posix_api.o gcc/boost_regex-gcc-1_37_shared/winstances.o $(ICU_LIBS) $(LIBS) +./gcc/libboost_regex-gcc-1_38.so : gcc/boost_regex-gcc-1_38_shared/c_regex_traits.o gcc/boost_regex-gcc-1_38_shared/cpp_regex_traits.o gcc/boost_regex-gcc-1_38_shared/cregex.o gcc/boost_regex-gcc-1_38_shared/fileiter.o gcc/boost_regex-gcc-1_38_shared/icu.o gcc/boost_regex-gcc-1_38_shared/instances.o gcc/boost_regex-gcc-1_38_shared/posix_api.o gcc/boost_regex-gcc-1_38_shared/regex.o gcc/boost_regex-gcc-1_38_shared/regex_debug.o gcc/boost_regex-gcc-1_38_shared/regex_raw_buffer.o gcc/boost_regex-gcc-1_38_shared/regex_traits_defaults.o gcc/boost_regex-gcc-1_38_shared/static_mutex.o gcc/boost_regex-gcc-1_38_shared/usinstances.o gcc/boost_regex-gcc-1_38_shared/w32_regex_traits.o gcc/boost_regex-gcc-1_38_shared/wc_regex_traits.o gcc/boost_regex-gcc-1_38_shared/wide_posix_api.o gcc/boost_regex-gcc-1_38_shared/winstances.o + $(LINKER) -o gcc/libboost_regex-gcc-1_38.so $(LDFLAGS) $(ICU_LDFLAGS) gcc/boost_regex-gcc-1_38_shared/c_regex_traits.o gcc/boost_regex-gcc-1_38_shared/cpp_regex_traits.o gcc/boost_regex-gcc-1_38_shared/cregex.o gcc/boost_regex-gcc-1_38_shared/fileiter.o gcc/boost_regex-gcc-1_38_shared/icu.o gcc/boost_regex-gcc-1_38_shared/instances.o gcc/boost_regex-gcc-1_38_shared/posix_api.o gcc/boost_regex-gcc-1_38_shared/regex.o gcc/boost_regex-gcc-1_38_shared/regex_debug.o gcc/boost_regex-gcc-1_38_shared/regex_raw_buffer.o gcc/boost_regex-gcc-1_38_shared/regex_traits_defaults.o gcc/boost_regex-gcc-1_38_shared/static_mutex.o gcc/boost_regex-gcc-1_38_shared/usinstances.o gcc/boost_regex-gcc-1_38_shared/w32_regex_traits.o gcc/boost_regex-gcc-1_38_shared/wc_regex_traits.o gcc/boost_regex-gcc-1_38_shared/wide_posix_api.o gcc/boost_regex-gcc-1_38_shared/winstances.o $(ICU_LIBS) $(LIBS) ######################################################## # -# section for libboost_regex-gcc-d-1_37.a +# section for libboost_regex-gcc-d-1_38.a # ######################################################## -gcc/boost_regex-gcc-d-1_37_shared/c_regex_traits.o: ../src/c_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37_shared/c_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/c_regex_traits.cpp +gcc/boost_regex-gcc-d-1_38_shared/c_regex_traits.o: ../src/c_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38_shared/c_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/c_regex_traits.cpp -gcc/boost_regex-gcc-d-1_37_shared/cpp_regex_traits.o: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37_shared/cpp_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cpp_regex_traits.cpp +gcc/boost_regex-gcc-d-1_38_shared/cpp_regex_traits.o: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38_shared/cpp_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cpp_regex_traits.cpp -gcc/boost_regex-gcc-d-1_37_shared/cregex.o: ../src/cregex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37_shared/cregex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cregex.cpp +gcc/boost_regex-gcc-d-1_38_shared/cregex.o: ../src/cregex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38_shared/cregex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cregex.cpp -gcc/boost_regex-gcc-d-1_37_shared/fileiter.o: ../src/fileiter.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37_shared/fileiter.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/fileiter.cpp +gcc/boost_regex-gcc-d-1_38_shared/fileiter.o: ../src/fileiter.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38_shared/fileiter.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/fileiter.cpp -gcc/boost_regex-gcc-d-1_37_shared/icu.o: ../src/icu.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37_shared/icu.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/icu.cpp +gcc/boost_regex-gcc-d-1_38_shared/icu.o: ../src/icu.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38_shared/icu.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/icu.cpp -gcc/boost_regex-gcc-d-1_37_shared/instances.o: ../src/instances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37_shared/instances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/instances.cpp +gcc/boost_regex-gcc-d-1_38_shared/instances.o: ../src/instances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38_shared/instances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/instances.cpp -gcc/boost_regex-gcc-d-1_37_shared/posix_api.o: ../src/posix_api.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37_shared/posix_api.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/posix_api.cpp +gcc/boost_regex-gcc-d-1_38_shared/posix_api.o: ../src/posix_api.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38_shared/posix_api.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/posix_api.cpp -gcc/boost_regex-gcc-d-1_37_shared/regex.o: ../src/regex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37_shared/regex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex.cpp +gcc/boost_regex-gcc-d-1_38_shared/regex.o: ../src/regex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38_shared/regex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex.cpp -gcc/boost_regex-gcc-d-1_37_shared/regex_debug.o: ../src/regex_debug.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37_shared/regex_debug.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_debug.cpp +gcc/boost_regex-gcc-d-1_38_shared/regex_debug.o: ../src/regex_debug.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38_shared/regex_debug.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_debug.cpp -gcc/boost_regex-gcc-d-1_37_shared/regex_raw_buffer.o: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37_shared/regex_raw_buffer.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_raw_buffer.cpp +gcc/boost_regex-gcc-d-1_38_shared/regex_raw_buffer.o: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38_shared/regex_raw_buffer.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_raw_buffer.cpp -gcc/boost_regex-gcc-d-1_37_shared/regex_traits_defaults.o: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37_shared/regex_traits_defaults.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_traits_defaults.cpp +gcc/boost_regex-gcc-d-1_38_shared/regex_traits_defaults.o: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38_shared/regex_traits_defaults.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_traits_defaults.cpp -gcc/boost_regex-gcc-d-1_37_shared/static_mutex.o: ../src/static_mutex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37_shared/static_mutex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/static_mutex.cpp +gcc/boost_regex-gcc-d-1_38_shared/static_mutex.o: ../src/static_mutex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38_shared/static_mutex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/static_mutex.cpp -gcc/boost_regex-gcc-d-1_37_shared/usinstances.o: ../src/usinstances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37_shared/usinstances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/usinstances.cpp +gcc/boost_regex-gcc-d-1_38_shared/usinstances.o: ../src/usinstances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38_shared/usinstances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/usinstances.cpp -gcc/boost_regex-gcc-d-1_37_shared/w32_regex_traits.o: ../src/w32_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37_shared/w32_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/w32_regex_traits.cpp +gcc/boost_regex-gcc-d-1_38_shared/w32_regex_traits.o: ../src/w32_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38_shared/w32_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/w32_regex_traits.cpp -gcc/boost_regex-gcc-d-1_37_shared/wc_regex_traits.o: ../src/wc_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37_shared/wc_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wc_regex_traits.cpp +gcc/boost_regex-gcc-d-1_38_shared/wc_regex_traits.o: ../src/wc_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38_shared/wc_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wc_regex_traits.cpp -gcc/boost_regex-gcc-d-1_37_shared/wide_posix_api.o: ../src/wide_posix_api.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37_shared/wide_posix_api.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wide_posix_api.cpp +gcc/boost_regex-gcc-d-1_38_shared/wide_posix_api.o: ../src/wide_posix_api.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38_shared/wide_posix_api.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wide_posix_api.cpp -gcc/boost_regex-gcc-d-1_37_shared/winstances.o: ../src/winstances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37_shared/winstances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/winstances.cpp +gcc/boost_regex-gcc-d-1_38_shared/winstances.o: ../src/winstances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38_shared/winstances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/winstances.cpp -gcc/boost_regex-gcc-d-1_37_shared : - mkdir -p gcc/boost_regex-gcc-d-1_37_shared +gcc/boost_regex-gcc-d-1_38_shared : + mkdir -p gcc/boost_regex-gcc-d-1_38_shared -boost_regex-gcc-d-1_37_clean : - rm -f gcc/boost_regex-gcc-d-1_37_shared/*.o +boost_regex-gcc-d-1_38_clean : + rm -f gcc/boost_regex-gcc-d-1_38_shared/*.o -./gcc/libboost_regex-gcc-d-1_37.so : gcc/boost_regex-gcc-d-1_37_shared/c_regex_traits.o gcc/boost_regex-gcc-d-1_37_shared/cpp_regex_traits.o gcc/boost_regex-gcc-d-1_37_shared/cregex.o gcc/boost_regex-gcc-d-1_37_shared/fileiter.o gcc/boost_regex-gcc-d-1_37_shared/icu.o gcc/boost_regex-gcc-d-1_37_shared/instances.o gcc/boost_regex-gcc-d-1_37_shared/posix_api.o gcc/boost_regex-gcc-d-1_37_shared/regex.o gcc/boost_regex-gcc-d-1_37_shared/regex_debug.o gcc/boost_regex-gcc-d-1_37_shared/regex_raw_buffer.o gcc/boost_regex-gcc-d-1_37_shared/regex_traits_defaults.o gcc/boost_regex-gcc-d-1_37_shared/static_mutex.o gcc/boost_regex-gcc-d-1_37_shared/usinstances.o gcc/boost_regex-gcc-d-1_37_shared/w32_regex_traits.o gcc/boost_regex-gcc-d-1_37_shared/wc_regex_traits.o gcc/boost_regex-gcc-d-1_37_shared/wide_posix_api.o gcc/boost_regex-gcc-d-1_37_shared/winstances.o - $(LINKER) -o gcc/libboost_regex-gcc-d-1_37.so $(LDFLAGS) $(ICU_LDFLAGS) gcc/boost_regex-gcc-d-1_37_shared/c_regex_traits.o gcc/boost_regex-gcc-d-1_37_shared/cpp_regex_traits.o gcc/boost_regex-gcc-d-1_37_shared/cregex.o gcc/boost_regex-gcc-d-1_37_shared/fileiter.o gcc/boost_regex-gcc-d-1_37_shared/icu.o gcc/boost_regex-gcc-d-1_37_shared/instances.o gcc/boost_regex-gcc-d-1_37_shared/posix_api.o gcc/boost_regex-gcc-d-1_37_shared/regex.o gcc/boost_regex-gcc-d-1_37_shared/regex_debug.o gcc/boost_regex-gcc-d-1_37_shared/regex_raw_buffer.o gcc/boost_regex-gcc-d-1_37_shared/regex_traits_defaults.o gcc/boost_regex-gcc-d-1_37_shared/static_mutex.o gcc/boost_regex-gcc-d-1_37_shared/usinstances.o gcc/boost_regex-gcc-d-1_37_shared/w32_regex_traits.o gcc/boost_regex-gcc-d-1_37_shared/wc_regex_traits.o gcc/boost_regex-gcc-d-1_37_shared/wide_posix_api.o gcc/boost_regex-gcc-d-1_37_shared/winstances.o $(ICU_LIBS) $(LIBS) +./gcc/libboost_regex-gcc-d-1_38.so : gcc/boost_regex-gcc-d-1_38_shared/c_regex_traits.o gcc/boost_regex-gcc-d-1_38_shared/cpp_regex_traits.o gcc/boost_regex-gcc-d-1_38_shared/cregex.o gcc/boost_regex-gcc-d-1_38_shared/fileiter.o gcc/boost_regex-gcc-d-1_38_shared/icu.o gcc/boost_regex-gcc-d-1_38_shared/instances.o gcc/boost_regex-gcc-d-1_38_shared/posix_api.o gcc/boost_regex-gcc-d-1_38_shared/regex.o gcc/boost_regex-gcc-d-1_38_shared/regex_debug.o gcc/boost_regex-gcc-d-1_38_shared/regex_raw_buffer.o gcc/boost_regex-gcc-d-1_38_shared/regex_traits_defaults.o gcc/boost_regex-gcc-d-1_38_shared/static_mutex.o gcc/boost_regex-gcc-d-1_38_shared/usinstances.o gcc/boost_regex-gcc-d-1_38_shared/w32_regex_traits.o gcc/boost_regex-gcc-d-1_38_shared/wc_regex_traits.o gcc/boost_regex-gcc-d-1_38_shared/wide_posix_api.o gcc/boost_regex-gcc-d-1_38_shared/winstances.o + $(LINKER) -o gcc/libboost_regex-gcc-d-1_38.so $(LDFLAGS) $(ICU_LDFLAGS) gcc/boost_regex-gcc-d-1_38_shared/c_regex_traits.o gcc/boost_regex-gcc-d-1_38_shared/cpp_regex_traits.o gcc/boost_regex-gcc-d-1_38_shared/cregex.o gcc/boost_regex-gcc-d-1_38_shared/fileiter.o gcc/boost_regex-gcc-d-1_38_shared/icu.o gcc/boost_regex-gcc-d-1_38_shared/instances.o gcc/boost_regex-gcc-d-1_38_shared/posix_api.o gcc/boost_regex-gcc-d-1_38_shared/regex.o gcc/boost_regex-gcc-d-1_38_shared/regex_debug.o gcc/boost_regex-gcc-d-1_38_shared/regex_raw_buffer.o gcc/boost_regex-gcc-d-1_38_shared/regex_traits_defaults.o gcc/boost_regex-gcc-d-1_38_shared/static_mutex.o gcc/boost_regex-gcc-d-1_38_shared/usinstances.o gcc/boost_regex-gcc-d-1_38_shared/w32_regex_traits.o gcc/boost_regex-gcc-d-1_38_shared/wc_regex_traits.o gcc/boost_regex-gcc-d-1_38_shared/wide_posix_api.o gcc/boost_regex-gcc-d-1_38_shared/winstances.o $(ICU_LIBS) $(LIBS) diff --git a/build/gcc.mak b/build/gcc.mak index 20075b06..16384122 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_37 ./gcc/libboost_regex-gcc-1_37.a gcc gcc/boost_regex-gcc-d-1_37 ./gcc/libboost_regex-gcc-d-1_37.a +all : gcc gcc gcc/boost_regex-gcc-1_38 ./gcc/libboost_regex-gcc-1_38.a gcc gcc/boost_regex-gcc-d-1_38 ./gcc/libboost_regex-gcc-d-1_38.a gcc : mkdir -p gcc -clean : boost_regex-gcc-1_37_clean boost_regex-gcc-d-1_37_clean +clean : boost_regex-gcc-1_38_clean boost_regex-gcc-d-1_38_clean install : all @@ -60,134 +60,134 @@ install : all ######################################################## # -# section for libboost_regex-gcc-1_37.a +# section for libboost_regex-gcc-1_38.a # ######################################################## -gcc/boost_regex-gcc-1_37/c_regex_traits.o: ../src/c_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37/c_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/c_regex_traits.cpp +gcc/boost_regex-gcc-1_38/c_regex_traits.o: ../src/c_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38/c_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/c_regex_traits.cpp -gcc/boost_regex-gcc-1_37/cpp_regex_traits.o: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37/cpp_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cpp_regex_traits.cpp +gcc/boost_regex-gcc-1_38/cpp_regex_traits.o: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38/cpp_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cpp_regex_traits.cpp -gcc/boost_regex-gcc-1_37/cregex.o: ../src/cregex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37/cregex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cregex.cpp +gcc/boost_regex-gcc-1_38/cregex.o: ../src/cregex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38/cregex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cregex.cpp -gcc/boost_regex-gcc-1_37/fileiter.o: ../src/fileiter.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37/fileiter.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/fileiter.cpp +gcc/boost_regex-gcc-1_38/fileiter.o: ../src/fileiter.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38/fileiter.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/fileiter.cpp -gcc/boost_regex-gcc-1_37/icu.o: ../src/icu.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37/icu.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/icu.cpp +gcc/boost_regex-gcc-1_38/icu.o: ../src/icu.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38/icu.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/icu.cpp -gcc/boost_regex-gcc-1_37/instances.o: ../src/instances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37/instances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/instances.cpp +gcc/boost_regex-gcc-1_38/instances.o: ../src/instances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38/instances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/instances.cpp -gcc/boost_regex-gcc-1_37/posix_api.o: ../src/posix_api.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37/posix_api.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/posix_api.cpp +gcc/boost_regex-gcc-1_38/posix_api.o: ../src/posix_api.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38/posix_api.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/posix_api.cpp -gcc/boost_regex-gcc-1_37/regex.o: ../src/regex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37/regex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex.cpp +gcc/boost_regex-gcc-1_38/regex.o: ../src/regex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38/regex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex.cpp -gcc/boost_regex-gcc-1_37/regex_debug.o: ../src/regex_debug.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37/regex_debug.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_debug.cpp +gcc/boost_regex-gcc-1_38/regex_debug.o: ../src/regex_debug.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38/regex_debug.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_debug.cpp -gcc/boost_regex-gcc-1_37/regex_raw_buffer.o: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37/regex_raw_buffer.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_raw_buffer.cpp +gcc/boost_regex-gcc-1_38/regex_raw_buffer.o: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38/regex_raw_buffer.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_raw_buffer.cpp -gcc/boost_regex-gcc-1_37/regex_traits_defaults.o: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37/regex_traits_defaults.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_traits_defaults.cpp +gcc/boost_regex-gcc-1_38/regex_traits_defaults.o: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38/regex_traits_defaults.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_traits_defaults.cpp -gcc/boost_regex-gcc-1_37/static_mutex.o: ../src/static_mutex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37/static_mutex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/static_mutex.cpp +gcc/boost_regex-gcc-1_38/static_mutex.o: ../src/static_mutex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38/static_mutex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/static_mutex.cpp -gcc/boost_regex-gcc-1_37/usinstances.o: ../src/usinstances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37/usinstances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/usinstances.cpp +gcc/boost_regex-gcc-1_38/usinstances.o: ../src/usinstances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38/usinstances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/usinstances.cpp -gcc/boost_regex-gcc-1_37/w32_regex_traits.o: ../src/w32_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37/w32_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/w32_regex_traits.cpp +gcc/boost_regex-gcc-1_38/w32_regex_traits.o: ../src/w32_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38/w32_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/w32_regex_traits.cpp -gcc/boost_regex-gcc-1_37/wc_regex_traits.o: ../src/wc_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37/wc_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wc_regex_traits.cpp +gcc/boost_regex-gcc-1_38/wc_regex_traits.o: ../src/wc_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38/wc_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wc_regex_traits.cpp -gcc/boost_regex-gcc-1_37/wide_posix_api.o: ../src/wide_posix_api.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37/wide_posix_api.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wide_posix_api.cpp +gcc/boost_regex-gcc-1_38/wide_posix_api.o: ../src/wide_posix_api.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38/wide_posix_api.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wide_posix_api.cpp -gcc/boost_regex-gcc-1_37/winstances.o: ../src/winstances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_37/winstances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/winstances.cpp +gcc/boost_regex-gcc-1_38/winstances.o: ../src/winstances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38/winstances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/winstances.cpp -gcc/boost_regex-gcc-1_37 : - mkdir -p gcc/boost_regex-gcc-1_37 +gcc/boost_regex-gcc-1_38 : + mkdir -p gcc/boost_regex-gcc-1_38 -boost_regex-gcc-1_37_clean : - rm -f gcc/boost_regex-gcc-1_37/*.o +boost_regex-gcc-1_38_clean : + rm -f gcc/boost_regex-gcc-1_38/*.o -./gcc/libboost_regex-gcc-1_37.a : gcc/boost_regex-gcc-1_37/c_regex_traits.o gcc/boost_regex-gcc-1_37/cpp_regex_traits.o gcc/boost_regex-gcc-1_37/cregex.o gcc/boost_regex-gcc-1_37/fileiter.o gcc/boost_regex-gcc-1_37/icu.o gcc/boost_regex-gcc-1_37/instances.o gcc/boost_regex-gcc-1_37/posix_api.o gcc/boost_regex-gcc-1_37/regex.o gcc/boost_regex-gcc-1_37/regex_debug.o gcc/boost_regex-gcc-1_37/regex_raw_buffer.o gcc/boost_regex-gcc-1_37/regex_traits_defaults.o gcc/boost_regex-gcc-1_37/static_mutex.o gcc/boost_regex-gcc-1_37/usinstances.o gcc/boost_regex-gcc-1_37/w32_regex_traits.o gcc/boost_regex-gcc-1_37/wc_regex_traits.o gcc/boost_regex-gcc-1_37/wide_posix_api.o gcc/boost_regex-gcc-1_37/winstances.o - ar -r gcc/libboost_regex-gcc-1_37.a gcc/boost_regex-gcc-1_37/c_regex_traits.o gcc/boost_regex-gcc-1_37/cpp_regex_traits.o gcc/boost_regex-gcc-1_37/cregex.o gcc/boost_regex-gcc-1_37/fileiter.o gcc/boost_regex-gcc-1_37/icu.o gcc/boost_regex-gcc-1_37/instances.o gcc/boost_regex-gcc-1_37/posix_api.o gcc/boost_regex-gcc-1_37/regex.o gcc/boost_regex-gcc-1_37/regex_debug.o gcc/boost_regex-gcc-1_37/regex_raw_buffer.o gcc/boost_regex-gcc-1_37/regex_traits_defaults.o gcc/boost_regex-gcc-1_37/static_mutex.o gcc/boost_regex-gcc-1_37/usinstances.o gcc/boost_regex-gcc-1_37/w32_regex_traits.o gcc/boost_regex-gcc-1_37/wc_regex_traits.o gcc/boost_regex-gcc-1_37/wide_posix_api.o gcc/boost_regex-gcc-1_37/winstances.o - -ar -s gcc/libboost_regex-gcc-1_37.a +./gcc/libboost_regex-gcc-1_38.a : gcc/boost_regex-gcc-1_38/c_regex_traits.o gcc/boost_regex-gcc-1_38/cpp_regex_traits.o gcc/boost_regex-gcc-1_38/cregex.o gcc/boost_regex-gcc-1_38/fileiter.o gcc/boost_regex-gcc-1_38/icu.o gcc/boost_regex-gcc-1_38/instances.o gcc/boost_regex-gcc-1_38/posix_api.o gcc/boost_regex-gcc-1_38/regex.o gcc/boost_regex-gcc-1_38/regex_debug.o gcc/boost_regex-gcc-1_38/regex_raw_buffer.o gcc/boost_regex-gcc-1_38/regex_traits_defaults.o gcc/boost_regex-gcc-1_38/static_mutex.o gcc/boost_regex-gcc-1_38/usinstances.o gcc/boost_regex-gcc-1_38/w32_regex_traits.o gcc/boost_regex-gcc-1_38/wc_regex_traits.o gcc/boost_regex-gcc-1_38/wide_posix_api.o gcc/boost_regex-gcc-1_38/winstances.o + ar -r gcc/libboost_regex-gcc-1_38.a gcc/boost_regex-gcc-1_38/c_regex_traits.o gcc/boost_regex-gcc-1_38/cpp_regex_traits.o gcc/boost_regex-gcc-1_38/cregex.o gcc/boost_regex-gcc-1_38/fileiter.o gcc/boost_regex-gcc-1_38/icu.o gcc/boost_regex-gcc-1_38/instances.o gcc/boost_regex-gcc-1_38/posix_api.o gcc/boost_regex-gcc-1_38/regex.o gcc/boost_regex-gcc-1_38/regex_debug.o gcc/boost_regex-gcc-1_38/regex_raw_buffer.o gcc/boost_regex-gcc-1_38/regex_traits_defaults.o gcc/boost_regex-gcc-1_38/static_mutex.o gcc/boost_regex-gcc-1_38/usinstances.o gcc/boost_regex-gcc-1_38/w32_regex_traits.o gcc/boost_regex-gcc-1_38/wc_regex_traits.o gcc/boost_regex-gcc-1_38/wide_posix_api.o gcc/boost_regex-gcc-1_38/winstances.o + -ar -s gcc/libboost_regex-gcc-1_38.a ######################################################## # -# section for libboost_regex-gcc-d-1_37.a +# section for libboost_regex-gcc-d-1_38.a # ######################################################## -gcc/boost_regex-gcc-d-1_37/c_regex_traits.o: ../src/c_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37/c_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/c_regex_traits.cpp +gcc/boost_regex-gcc-d-1_38/c_regex_traits.o: ../src/c_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38/c_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/c_regex_traits.cpp -gcc/boost_regex-gcc-d-1_37/cpp_regex_traits.o: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37/cpp_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cpp_regex_traits.cpp +gcc/boost_regex-gcc-d-1_38/cpp_regex_traits.o: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38/cpp_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cpp_regex_traits.cpp -gcc/boost_regex-gcc-d-1_37/cregex.o: ../src/cregex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37/cregex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cregex.cpp +gcc/boost_regex-gcc-d-1_38/cregex.o: ../src/cregex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38/cregex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cregex.cpp -gcc/boost_regex-gcc-d-1_37/fileiter.o: ../src/fileiter.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37/fileiter.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/fileiter.cpp +gcc/boost_regex-gcc-d-1_38/fileiter.o: ../src/fileiter.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38/fileiter.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/fileiter.cpp -gcc/boost_regex-gcc-d-1_37/icu.o: ../src/icu.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37/icu.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/icu.cpp +gcc/boost_regex-gcc-d-1_38/icu.o: ../src/icu.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38/icu.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/icu.cpp -gcc/boost_regex-gcc-d-1_37/instances.o: ../src/instances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37/instances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/instances.cpp +gcc/boost_regex-gcc-d-1_38/instances.o: ../src/instances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38/instances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/instances.cpp -gcc/boost_regex-gcc-d-1_37/posix_api.o: ../src/posix_api.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37/posix_api.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/posix_api.cpp +gcc/boost_regex-gcc-d-1_38/posix_api.o: ../src/posix_api.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38/posix_api.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/posix_api.cpp -gcc/boost_regex-gcc-d-1_37/regex.o: ../src/regex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37/regex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex.cpp +gcc/boost_regex-gcc-d-1_38/regex.o: ../src/regex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38/regex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex.cpp -gcc/boost_regex-gcc-d-1_37/regex_debug.o: ../src/regex_debug.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37/regex_debug.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_debug.cpp +gcc/boost_regex-gcc-d-1_38/regex_debug.o: ../src/regex_debug.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38/regex_debug.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_debug.cpp -gcc/boost_regex-gcc-d-1_37/regex_raw_buffer.o: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37/regex_raw_buffer.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_raw_buffer.cpp +gcc/boost_regex-gcc-d-1_38/regex_raw_buffer.o: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38/regex_raw_buffer.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_raw_buffer.cpp -gcc/boost_regex-gcc-d-1_37/regex_traits_defaults.o: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37/regex_traits_defaults.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_traits_defaults.cpp +gcc/boost_regex-gcc-d-1_38/regex_traits_defaults.o: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38/regex_traits_defaults.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_traits_defaults.cpp -gcc/boost_regex-gcc-d-1_37/static_mutex.o: ../src/static_mutex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37/static_mutex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/static_mutex.cpp +gcc/boost_regex-gcc-d-1_38/static_mutex.o: ../src/static_mutex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38/static_mutex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/static_mutex.cpp -gcc/boost_regex-gcc-d-1_37/usinstances.o: ../src/usinstances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37/usinstances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/usinstances.cpp +gcc/boost_regex-gcc-d-1_38/usinstances.o: ../src/usinstances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38/usinstances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/usinstances.cpp -gcc/boost_regex-gcc-d-1_37/w32_regex_traits.o: ../src/w32_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37/w32_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/w32_regex_traits.cpp +gcc/boost_regex-gcc-d-1_38/w32_regex_traits.o: ../src/w32_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38/w32_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/w32_regex_traits.cpp -gcc/boost_regex-gcc-d-1_37/wc_regex_traits.o: ../src/wc_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37/wc_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wc_regex_traits.cpp +gcc/boost_regex-gcc-d-1_38/wc_regex_traits.o: ../src/wc_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38/wc_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wc_regex_traits.cpp -gcc/boost_regex-gcc-d-1_37/wide_posix_api.o: ../src/wide_posix_api.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37/wide_posix_api.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wide_posix_api.cpp +gcc/boost_regex-gcc-d-1_38/wide_posix_api.o: ../src/wide_posix_api.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38/wide_posix_api.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wide_posix_api.cpp -gcc/boost_regex-gcc-d-1_37/winstances.o: ../src/winstances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_37/winstances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/winstances.cpp +gcc/boost_regex-gcc-d-1_38/winstances.o: ../src/winstances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38/winstances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/winstances.cpp -gcc/boost_regex-gcc-d-1_37 : - mkdir -p gcc/boost_regex-gcc-d-1_37 +gcc/boost_regex-gcc-d-1_38 : + mkdir -p gcc/boost_regex-gcc-d-1_38 -boost_regex-gcc-d-1_37_clean : - rm -f gcc/boost_regex-gcc-d-1_37/*.o +boost_regex-gcc-d-1_38_clean : + rm -f gcc/boost_regex-gcc-d-1_38/*.o -./gcc/libboost_regex-gcc-d-1_37.a : gcc/boost_regex-gcc-d-1_37/c_regex_traits.o gcc/boost_regex-gcc-d-1_37/cpp_regex_traits.o gcc/boost_regex-gcc-d-1_37/cregex.o gcc/boost_regex-gcc-d-1_37/fileiter.o gcc/boost_regex-gcc-d-1_37/icu.o gcc/boost_regex-gcc-d-1_37/instances.o gcc/boost_regex-gcc-d-1_37/posix_api.o gcc/boost_regex-gcc-d-1_37/regex.o gcc/boost_regex-gcc-d-1_37/regex_debug.o gcc/boost_regex-gcc-d-1_37/regex_raw_buffer.o gcc/boost_regex-gcc-d-1_37/regex_traits_defaults.o gcc/boost_regex-gcc-d-1_37/static_mutex.o gcc/boost_regex-gcc-d-1_37/usinstances.o gcc/boost_regex-gcc-d-1_37/w32_regex_traits.o gcc/boost_regex-gcc-d-1_37/wc_regex_traits.o gcc/boost_regex-gcc-d-1_37/wide_posix_api.o gcc/boost_regex-gcc-d-1_37/winstances.o - ar -r gcc/libboost_regex-gcc-d-1_37.a gcc/boost_regex-gcc-d-1_37/c_regex_traits.o gcc/boost_regex-gcc-d-1_37/cpp_regex_traits.o gcc/boost_regex-gcc-d-1_37/cregex.o gcc/boost_regex-gcc-d-1_37/fileiter.o gcc/boost_regex-gcc-d-1_37/icu.o gcc/boost_regex-gcc-d-1_37/instances.o gcc/boost_regex-gcc-d-1_37/posix_api.o gcc/boost_regex-gcc-d-1_37/regex.o gcc/boost_regex-gcc-d-1_37/regex_debug.o gcc/boost_regex-gcc-d-1_37/regex_raw_buffer.o gcc/boost_regex-gcc-d-1_37/regex_traits_defaults.o gcc/boost_regex-gcc-d-1_37/static_mutex.o gcc/boost_regex-gcc-d-1_37/usinstances.o gcc/boost_regex-gcc-d-1_37/w32_regex_traits.o gcc/boost_regex-gcc-d-1_37/wc_regex_traits.o gcc/boost_regex-gcc-d-1_37/wide_posix_api.o gcc/boost_regex-gcc-d-1_37/winstances.o - -ar -s gcc/libboost_regex-gcc-d-1_37.a +./gcc/libboost_regex-gcc-d-1_38.a : gcc/boost_regex-gcc-d-1_38/c_regex_traits.o gcc/boost_regex-gcc-d-1_38/cpp_regex_traits.o gcc/boost_regex-gcc-d-1_38/cregex.o gcc/boost_regex-gcc-d-1_38/fileiter.o gcc/boost_regex-gcc-d-1_38/icu.o gcc/boost_regex-gcc-d-1_38/instances.o gcc/boost_regex-gcc-d-1_38/posix_api.o gcc/boost_regex-gcc-d-1_38/regex.o gcc/boost_regex-gcc-d-1_38/regex_debug.o gcc/boost_regex-gcc-d-1_38/regex_raw_buffer.o gcc/boost_regex-gcc-d-1_38/regex_traits_defaults.o gcc/boost_regex-gcc-d-1_38/static_mutex.o gcc/boost_regex-gcc-d-1_38/usinstances.o gcc/boost_regex-gcc-d-1_38/w32_regex_traits.o gcc/boost_regex-gcc-d-1_38/wc_regex_traits.o gcc/boost_regex-gcc-d-1_38/wide_posix_api.o gcc/boost_regex-gcc-d-1_38/winstances.o + ar -r gcc/libboost_regex-gcc-d-1_38.a gcc/boost_regex-gcc-d-1_38/c_regex_traits.o gcc/boost_regex-gcc-d-1_38/cpp_regex_traits.o gcc/boost_regex-gcc-d-1_38/cregex.o gcc/boost_regex-gcc-d-1_38/fileiter.o gcc/boost_regex-gcc-d-1_38/icu.o gcc/boost_regex-gcc-d-1_38/instances.o gcc/boost_regex-gcc-d-1_38/posix_api.o gcc/boost_regex-gcc-d-1_38/regex.o gcc/boost_regex-gcc-d-1_38/regex_debug.o gcc/boost_regex-gcc-d-1_38/regex_raw_buffer.o gcc/boost_regex-gcc-d-1_38/regex_traits_defaults.o gcc/boost_regex-gcc-d-1_38/static_mutex.o gcc/boost_regex-gcc-d-1_38/usinstances.o gcc/boost_regex-gcc-d-1_38/w32_regex_traits.o gcc/boost_regex-gcc-d-1_38/wc_regex_traits.o gcc/boost_regex-gcc-d-1_38/wide_posix_api.o gcc/boost_regex-gcc-d-1_38/winstances.o + -ar -s gcc/libboost_regex-gcc-d-1_38.a diff --git a/build/generic.mak b/build/generic.mak index 4ef093cc..73b90509 100644 --- a/build/generic.mak +++ b/build/generic.mak @@ -108,3 +108,4 @@ boost_regex_clean : ./$(DIRNAME)/libboost_regex.so : $(DIRNAME)/boost_regex/c_regex_traits.o $(DIRNAME)/boost_regex/cpp_regex_traits.o $(DIRNAME)/boost_regex/cregex.o $(DIRNAME)/boost_regex/fileiter.o $(DIRNAME)/boost_regex/icu.o $(DIRNAME)/boost_regex/instances.o $(DIRNAME)/boost_regex/posix_api.o $(DIRNAME)/boost_regex/regex.o $(DIRNAME)/boost_regex/regex_debug.o $(DIRNAME)/boost_regex/regex_raw_buffer.o $(DIRNAME)/boost_regex/regex_traits_defaults.o $(DIRNAME)/boost_regex/static_mutex.o $(DIRNAME)/boost_regex/usinstances.o $(DIRNAME)/boost_regex/w32_regex_traits.o $(DIRNAME)/boost_regex/wc_regex_traits.o $(DIRNAME)/boost_regex/wide_posix_api.o $(DIRNAME)/boost_regex/winstances.o $(LINKER) $(LDFLAGS) -o $(DIRNAME)/libboost_regex.so $(DIRNAME)/boost_regex/c_regex_traits.o $(DIRNAME)/boost_regex/cpp_regex_traits.o $(DIRNAME)/boost_regex/cregex.o $(DIRNAME)/boost_regex/fileiter.o $(DIRNAME)/boost_regex/icu.o $(DIRNAME)/boost_regex/instances.o $(DIRNAME)/boost_regex/posix_api.o $(DIRNAME)/boost_regex/regex.o $(DIRNAME)/boost_regex/regex_debug.o $(DIRNAME)/boost_regex/regex_raw_buffer.o $(DIRNAME)/boost_regex/regex_traits_defaults.o $(DIRNAME)/boost_regex/static_mutex.o $(DIRNAME)/boost_regex/usinstances.o $(DIRNAME)/boost_regex/w32_regex_traits.o $(DIRNAME)/boost_regex/wc_regex_traits.o $(DIRNAME)/boost_regex/wide_posix_api.o $(DIRNAME)/boost_regex/winstances.o $(LIBS) + diff --git a/build/sunpro.mak b/build/sunpro.mak index 2fd0232d..89b632b4 100644 --- a/build/sunpro.mak +++ b/build/sunpro.mak @@ -314,3 +314,4 @@ libboost_regex_mt$(LIBSUFFIX)_clean_shared : sunpro/libboost_regex_mt$(LIBSUFFIX).so : sunpro/shared_libboost_regex_mt$(LIBSUFFIX)/c_regex_traits.o sunpro/shared_libboost_regex_mt$(LIBSUFFIX)/cpp_regex_traits.o sunpro/shared_libboost_regex_mt$(LIBSUFFIX)/cregex.o sunpro/shared_libboost_regex_mt$(LIBSUFFIX)/fileiter.o sunpro/shared_libboost_regex_mt$(LIBSUFFIX)/icu.o sunpro/shared_libboost_regex_mt$(LIBSUFFIX)/instances.o sunpro/shared_libboost_regex_mt$(LIBSUFFIX)/posix_api.o sunpro/shared_libboost_regex_mt$(LIBSUFFIX)/regex.o sunpro/shared_libboost_regex_mt$(LIBSUFFIX)/regex_debug.o sunpro/shared_libboost_regex_mt$(LIBSUFFIX)/regex_raw_buffer.o sunpro/shared_libboost_regex_mt$(LIBSUFFIX)/regex_traits_defaults.o sunpro/shared_libboost_regex_mt$(LIBSUFFIX)/static_mutex.o sunpro/shared_libboost_regex_mt$(LIBSUFFIX)/usinstances.o sunpro/shared_libboost_regex_mt$(LIBSUFFIX)/w32_regex_traits.o sunpro/shared_libboost_regex_mt$(LIBSUFFIX)/wc_regex_traits.o sunpro/shared_libboost_regex_mt$(LIBSUFFIX)/wide_posix_api.o sunpro/shared_libboost_regex_mt$(LIBSUFFIX)/winstances.o CC -KPIC -O2 -mt -I../../../ -G -o sunpro/libboost_regex_mt$(LIBSUFFIX).so $(LDFLAGS) sunpro/shared_libboost_regex_mt$(LIBSUFFIX)/c_regex_traits.o sunpro/shared_libboost_regex_mt$(LIBSUFFIX)/cpp_regex_traits.o sunpro/shared_libboost_regex_mt$(LIBSUFFIX)/cregex.o sunpro/shared_libboost_regex_mt$(LIBSUFFIX)/fileiter.o sunpro/shared_libboost_regex_mt$(LIBSUFFIX)/icu.o sunpro/shared_libboost_regex_mt$(LIBSUFFIX)/instances.o sunpro/shared_libboost_regex_mt$(LIBSUFFIX)/posix_api.o sunpro/shared_libboost_regex_mt$(LIBSUFFIX)/regex.o sunpro/shared_libboost_regex_mt$(LIBSUFFIX)/regex_debug.o sunpro/shared_libboost_regex_mt$(LIBSUFFIX)/regex_raw_buffer.o sunpro/shared_libboost_regex_mt$(LIBSUFFIX)/regex_traits_defaults.o sunpro/shared_libboost_regex_mt$(LIBSUFFIX)/static_mutex.o sunpro/shared_libboost_regex_mt$(LIBSUFFIX)/usinstances.o sunpro/shared_libboost_regex_mt$(LIBSUFFIX)/w32_regex_traits.o sunpro/shared_libboost_regex_mt$(LIBSUFFIX)/wc_regex_traits.o sunpro/shared_libboost_regex_mt$(LIBSUFFIX)/wide_posix_api.o sunpro/shared_libboost_regex_mt$(LIBSUFFIX)/winstances.o $(LIBS) + diff --git a/build/vc6-stlport.mak b/build/vc6-stlport.mak index 3d0c10bc..f46da324 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_37_dir ./vc6-stlport/libboost_regex-vc6-mt-sp-1_37.lib boost_regex-vc6-mt-p-1_37_dir ./vc6-stlport/boost_regex-vc6-mt-p-1_37.lib libboost_regex-vc6-mt-p-1_37_dir ./vc6-stlport/libboost_regex-vc6-mt-p-1_37.lib boost_regex-vc6-mt-gdp-1_37_dir ./vc6-stlport/boost_regex-vc6-mt-gdp-1_37.lib libboost_regex-vc6-mt-sgdp-1_37_dir ./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37.lib libboost_regex-vc6-mt-gdp-1_37_dir ./vc6-stlport/libboost_regex-vc6-mt-gdp-1_37.lib +all : main_dir libboost_regex-vc6-mt-sp-1_38_dir ./vc6-stlport/libboost_regex-vc6-mt-sp-1_38.lib boost_regex-vc6-mt-p-1_38_dir ./vc6-stlport/boost_regex-vc6-mt-p-1_38.lib libboost_regex-vc6-mt-p-1_38_dir ./vc6-stlport/libboost_regex-vc6-mt-p-1_38.lib boost_regex-vc6-mt-gdp-1_38_dir ./vc6-stlport/boost_regex-vc6-mt-gdp-1_38.lib libboost_regex-vc6-mt-sgdp-1_38_dir ./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38.lib libboost_regex-vc6-mt-gdp-1_38_dir ./vc6-stlport/libboost_regex-vc6-mt-gdp-1_38.lib -clean : libboost_regex-vc6-mt-sp-1_37_clean boost_regex-vc6-mt-p-1_37_clean libboost_regex-vc6-mt-p-1_37_clean boost_regex-vc6-mt-gdp-1_37_clean libboost_regex-vc6-mt-sgdp-1_37_clean libboost_regex-vc6-mt-gdp-1_37_clean +clean : libboost_regex-vc6-mt-sp-1_38_clean boost_regex-vc6-mt-p-1_38_clean libboost_regex-vc6-mt-p-1_38_clean boost_regex-vc6-mt-gdp-1_38_clean libboost_regex-vc6-mt-sgdp-1_38_clean libboost_regex-vc6-mt-gdp-1_38_clean install : stlport_check all - copy vc6-stlport\libboost_regex-vc6-mt-sp-1_37.lib "$(MSVCDIR)\lib" - copy vc6-stlport\boost_regex-vc6-mt-p-1_37.lib "$(MSVCDIR)\lib" - copy vc6-stlport\boost_regex-vc6-mt-p-1_37.dll "$(MSVCDIR)\bin" - copy vc6-stlport\libboost_regex-vc6-mt-p-1_37.lib "$(MSVCDIR)\lib" - copy vc6-stlport\boost_regex-vc6-mt-gdp-1_37.lib "$(MSVCDIR)\lib" - copy vc6-stlport\boost_regex-vc6-mt-gdp-1_37.dll "$(MSVCDIR)\bin" - copy vc6-stlport\boost_regex-vc6-mt-gdp-1_37.pdb "$(MSVCDIR)\lib" - copy vc6-stlport\libboost_regex-vc6-mt-sgdp-1_37.lib "$(MSVCDIR)\lib" - copy vc6-stlport\libboost_regex-vc6-mt-sgdp-1_37.pdb "$(MSVCDIR)\lib" - copy vc6-stlport\libboost_regex-vc6-mt-gdp-1_37.lib "$(MSVCDIR)\lib" - copy vc6-stlport\libboost_regex-vc6-mt-gdp-1_37.pdb "$(MSVCDIR)\lib" + copy vc6-stlport\libboost_regex-vc6-mt-sp-1_38.lib "$(MSVCDIR)\lib" + copy vc6-stlport\boost_regex-vc6-mt-p-1_38.lib "$(MSVCDIR)\lib" + copy vc6-stlport\boost_regex-vc6-mt-p-1_38.dll "$(MSVCDIR)\bin" + copy vc6-stlport\libboost_regex-vc6-mt-p-1_38.lib "$(MSVCDIR)\lib" + copy vc6-stlport\boost_regex-vc6-mt-gdp-1_38.lib "$(MSVCDIR)\lib" + copy vc6-stlport\boost_regex-vc6-mt-gdp-1_38.dll "$(MSVCDIR)\bin" + copy vc6-stlport\boost_regex-vc6-mt-gdp-1_38.pdb "$(MSVCDIR)\lib" + copy vc6-stlport\libboost_regex-vc6-mt-sgdp-1_38.lib "$(MSVCDIR)\lib" + copy vc6-stlport\libboost_regex-vc6-mt-sgdp-1_38.pdb "$(MSVCDIR)\lib" + copy vc6-stlport\libboost_regex-vc6-mt-gdp-1_38.lib "$(MSVCDIR)\lib" + copy vc6-stlport\libboost_regex-vc6-mt-gdp-1_38.pdb "$(MSVCDIR)\lib" main_dir : @if not exist "vc6-stlport\$(NULL)" mkdir vc6-stlport @@ -88,410 +88,410 @@ stlport_check : "$(STLPORT_PATH)\stlport\string" ######################################################## # -# section for libboost_regex-vc6-mt-sp-1_37.lib +# section for libboost_regex-vc6-mt-sp-1_38.lib # ######################################################## -vc6-stlport/libboost_regex-vc6-mt-sp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_37.pdb ../src/c_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_38.pdb ../src/c_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_37.pdb ../src/cpp_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_38.pdb ../src/cpp_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_37.pdb ../src/cregex.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_38.pdb ../src/cregex.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_37.pdb ../src/fileiter.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_38.pdb ../src/fileiter.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_37.pdb ../src/icu.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_38.pdb ../src/icu.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_37.pdb ../src/instances.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_38.pdb ../src/instances.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_37.pdb ../src/posix_api.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_38.pdb ../src/posix_api.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_37.pdb ../src/regex.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_38.pdb ../src/regex.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_37.pdb ../src/regex_debug.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_38.pdb ../src/regex_debug.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_37.pdb ../src/regex_raw_buffer.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_38.pdb ../src/regex_raw_buffer.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_37.pdb ../src/regex_traits_defaults.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_38.pdb ../src/regex_traits_defaults.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_37.pdb ../src/static_mutex.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_38.pdb ../src/static_mutex.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_37.pdb ../src/usinstances.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_38.pdb ../src/usinstances.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_37.pdb ../src/w32_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_38.pdb ../src/w32_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_37.pdb ../src/wc_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_38.pdb ../src/wc_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_37.pdb ../src/wide_posix_api.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_38.pdb ../src/wide_posix_api.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_37.pdb ../src/winstances.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_38.pdb ../src/winstances.cpp -libboost_regex-vc6-mt-sp-1_37_dir : - @if not exist "vc6-stlport\libboost_regex-vc6-mt-sp-1_37\$(NULL)" mkdir vc6-stlport\libboost_regex-vc6-mt-sp-1_37 +libboost_regex-vc6-mt-sp-1_38_dir : + @if not exist "vc6-stlport\libboost_regex-vc6-mt-sp-1_38\$(NULL)" mkdir vc6-stlport\libboost_regex-vc6-mt-sp-1_38 -libboost_regex-vc6-mt-sp-1_37_clean : - del vc6-stlport\libboost_regex-vc6-mt-sp-1_37\*.obj - del vc6-stlport\libboost_regex-vc6-mt-sp-1_37\*.idb - del vc6-stlport\libboost_regex-vc6-mt-sp-1_37\*.exp - del vc6-stlport\libboost_regex-vc6-mt-sp-1_37\*.pch +libboost_regex-vc6-mt-sp-1_38_clean : + del vc6-stlport\libboost_regex-vc6-mt-sp-1_38\*.obj + del vc6-stlport\libboost_regex-vc6-mt-sp-1_38\*.idb + del vc6-stlport\libboost_regex-vc6-mt-sp-1_38\*.exp + del vc6-stlport\libboost_regex-vc6-mt-sp-1_38\*.pch -./vc6-stlport/libboost_regex-vc6-mt-sp-1_37.lib : vc6-stlport/libboost_regex-vc6-mt-sp-1_37/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/cregex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/icu.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/instances.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/regex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/winstances.obj - link -lib /nologo /out:vc6-stlport/libboost_regex-vc6-mt-sp-1_37.lib $(XSFLAGS) vc6-stlport/libboost_regex-vc6-mt-sp-1_37/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/cregex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/icu.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/instances.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/regex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_37/winstances.obj +./vc6-stlport/libboost_regex-vc6-mt-sp-1_38.lib : vc6-stlport/libboost_regex-vc6-mt-sp-1_38/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/cregex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/icu.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/instances.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/regex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/winstances.obj + link -lib /nologo /out:vc6-stlport/libboost_regex-vc6-mt-sp-1_38.lib $(XSFLAGS) vc6-stlport/libboost_regex-vc6-mt-sp-1_38/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/cregex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/icu.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/instances.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/regex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/winstances.obj ######################################################## # -# section for boost_regex-vc6-mt-p-1_37.lib +# section for boost_regex-vc6-mt-p-1_38.lib # ######################################################## -vc6-stlport/boost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_37.pdb ../src/c_regex_traits.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_38.pdb ../src/c_regex_traits.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_37.pdb ../src/cpp_regex_traits.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_38.pdb ../src/cpp_regex_traits.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_37.pdb ../src/cregex.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_38.pdb ../src/cregex.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_37.pdb ../src/fileiter.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_38.pdb ../src/fileiter.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_37.pdb ../src/icu.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_38.pdb ../src/icu.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_37.pdb ../src/instances.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_38.pdb ../src/instances.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_37.pdb ../src/posix_api.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_38.pdb ../src/posix_api.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_37.pdb ../src/regex.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_38.pdb ../src/regex.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_37.pdb ../src/regex_debug.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_38.pdb ../src/regex_debug.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_37.pdb ../src/regex_raw_buffer.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_38.pdb ../src/regex_raw_buffer.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_37.pdb ../src/regex_traits_defaults.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_38.pdb ../src/regex_traits_defaults.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_37.pdb ../src/static_mutex.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_38.pdb ../src/static_mutex.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_37.pdb ../src/usinstances.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_38.pdb ../src/usinstances.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_37.pdb ../src/w32_regex_traits.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_38.pdb ../src/w32_regex_traits.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_37.pdb ../src/wc_regex_traits.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_38.pdb ../src/wc_regex_traits.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_37.pdb ../src/wide_posix_api.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_38.pdb ../src/wide_posix_api.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_37.pdb ../src/winstances.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_38.pdb ../src/winstances.cpp -boost_regex-vc6-mt-p-1_37_dir : - @if not exist "vc6-stlport\boost_regex-vc6-mt-p-1_37\$(NULL)" mkdir vc6-stlport\boost_regex-vc6-mt-p-1_37 +boost_regex-vc6-mt-p-1_38_dir : + @if not exist "vc6-stlport\boost_regex-vc6-mt-p-1_38\$(NULL)" mkdir vc6-stlport\boost_regex-vc6-mt-p-1_38 -boost_regex-vc6-mt-p-1_37_clean : - del vc6-stlport\boost_regex-vc6-mt-p-1_37\*.obj - del vc6-stlport\boost_regex-vc6-mt-p-1_37\*.idb - del vc6-stlport\boost_regex-vc6-mt-p-1_37\*.exp - del vc6-stlport\boost_regex-vc6-mt-p-1_37\*.pch +boost_regex-vc6-mt-p-1_38_clean : + del vc6-stlport\boost_regex-vc6-mt-p-1_38\*.obj + del vc6-stlport\boost_regex-vc6-mt-p-1_38\*.idb + del vc6-stlport\boost_regex-vc6-mt-p-1_38\*.exp + del vc6-stlport\boost_regex-vc6-mt-p-1_38\*.pch -./vc6-stlport/boost_regex-vc6-mt-p-1_37.lib : vc6-stlport/boost_regex-vc6-mt-p-1_37/c_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/cpp_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/cregex.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/fileiter.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/icu.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/instances.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/posix_api.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/regex.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/regex_debug.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/regex_raw_buffer.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/regex_traits_defaults.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/static_mutex.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/usinstances.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/w32_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/wc_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/wide_posix_api.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/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_37.pdb" /debug /machine:I386 /out:"vc6-stlport/boost_regex-vc6-mt-p-1_37.dll" /implib:"vc6-stlport/boost_regex-vc6-mt-p-1_37.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc6-stlport/boost_regex-vc6-mt-p-1_37/c_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/cpp_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/cregex.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/fileiter.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/icu.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/instances.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/posix_api.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/regex.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/regex_debug.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/regex_raw_buffer.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/regex_traits_defaults.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/static_mutex.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/usinstances.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/w32_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/wc_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/wide_posix_api.obj vc6-stlport/boost_regex-vc6-mt-p-1_37/winstances.obj +./vc6-stlport/boost_regex-vc6-mt-p-1_38.lib : vc6-stlport/boost_regex-vc6-mt-p-1_38/c_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/cpp_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/cregex.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/fileiter.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/icu.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/instances.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/posix_api.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/regex.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/regex_debug.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/regex_raw_buffer.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/regex_traits_defaults.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/static_mutex.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/usinstances.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/w32_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/wc_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/wide_posix_api.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/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_38.pdb" /debug /machine:I386 /out:"vc6-stlport/boost_regex-vc6-mt-p-1_38.dll" /implib:"vc6-stlport/boost_regex-vc6-mt-p-1_38.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc6-stlport/boost_regex-vc6-mt-p-1_38/c_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/cpp_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/cregex.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/fileiter.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/icu.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/instances.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/posix_api.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/regex.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/regex_debug.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/regex_raw_buffer.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/regex_traits_defaults.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/static_mutex.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/usinstances.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/w32_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/wc_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/wide_posix_api.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/winstances.obj ######################################################## # -# section for libboost_regex-vc6-mt-p-1_37.lib +# section for libboost_regex-vc6-mt-p-1_38.lib # ######################################################## -vc6-stlport/libboost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_37.pdb ../src/c_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_38.pdb ../src/c_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_37.pdb ../src/cpp_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_38.pdb ../src/cpp_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_37.pdb ../src/cregex.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_38.pdb ../src/cregex.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_37.pdb ../src/fileiter.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_38.pdb ../src/fileiter.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_37.pdb ../src/icu.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_38.pdb ../src/icu.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_37.pdb ../src/instances.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_38.pdb ../src/instances.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_37.pdb ../src/posix_api.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_38.pdb ../src/posix_api.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_37.pdb ../src/regex.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_38.pdb ../src/regex.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_37.pdb ../src/regex_debug.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_38.pdb ../src/regex_debug.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_37.pdb ../src/regex_raw_buffer.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_38.pdb ../src/regex_raw_buffer.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_37.pdb ../src/regex_traits_defaults.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_38.pdb ../src/regex_traits_defaults.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_37.pdb ../src/static_mutex.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_38.pdb ../src/static_mutex.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_37.pdb ../src/usinstances.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_38.pdb ../src/usinstances.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_37.pdb ../src/w32_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_38.pdb ../src/w32_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_37.pdb ../src/wc_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_38.pdb ../src/wc_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_37.pdb ../src/wide_posix_api.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_38.pdb ../src/wide_posix_api.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_37.pdb ../src/winstances.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_38.pdb ../src/winstances.cpp -libboost_regex-vc6-mt-p-1_37_dir : - @if not exist "vc6-stlport\libboost_regex-vc6-mt-p-1_37\$(NULL)" mkdir vc6-stlport\libboost_regex-vc6-mt-p-1_37 +libboost_regex-vc6-mt-p-1_38_dir : + @if not exist "vc6-stlport\libboost_regex-vc6-mt-p-1_38\$(NULL)" mkdir vc6-stlport\libboost_regex-vc6-mt-p-1_38 -libboost_regex-vc6-mt-p-1_37_clean : - del vc6-stlport\libboost_regex-vc6-mt-p-1_37\*.obj - del vc6-stlport\libboost_regex-vc6-mt-p-1_37\*.idb - del vc6-stlport\libboost_regex-vc6-mt-p-1_37\*.exp - del vc6-stlport\libboost_regex-vc6-mt-p-1_37\*.pch +libboost_regex-vc6-mt-p-1_38_clean : + del vc6-stlport\libboost_regex-vc6-mt-p-1_38\*.obj + del vc6-stlport\libboost_regex-vc6-mt-p-1_38\*.idb + del vc6-stlport\libboost_regex-vc6-mt-p-1_38\*.exp + del vc6-stlport\libboost_regex-vc6-mt-p-1_38\*.pch -./vc6-stlport/libboost_regex-vc6-mt-p-1_37.lib : vc6-stlport/libboost_regex-vc6-mt-p-1_37/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/cregex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/icu.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/instances.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/regex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/winstances.obj - link -lib /nologo /out:vc6-stlport/libboost_regex-vc6-mt-p-1_37.lib $(XSFLAGS) vc6-stlport/libboost_regex-vc6-mt-p-1_37/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/cregex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/icu.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/instances.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/regex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-p-1_37/winstances.obj +./vc6-stlport/libboost_regex-vc6-mt-p-1_38.lib : vc6-stlport/libboost_regex-vc6-mt-p-1_38/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/cregex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/icu.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/instances.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/regex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/winstances.obj + link -lib /nologo /out:vc6-stlport/libboost_regex-vc6-mt-p-1_38.lib $(XSFLAGS) vc6-stlport/libboost_regex-vc6-mt-p-1_38/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/cregex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/icu.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/instances.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/regex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/winstances.obj ######################################################## # -# section for boost_regex-vc6-mt-gdp-1_37.lib +# section for boost_regex-vc6-mt-gdp-1_38.lib # ######################################################## -vc6-stlport/boost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_37.pdb ../src/c_regex_traits.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_38.pdb ../src/c_regex_traits.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_37.pdb ../src/cpp_regex_traits.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_38.pdb ../src/cpp_regex_traits.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_37.pdb ../src/cregex.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_38.pdb ../src/cregex.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_37.pdb ../src/fileiter.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_38.pdb ../src/fileiter.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_37.pdb ../src/icu.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_38.pdb ../src/icu.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_37.pdb ../src/instances.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_38.pdb ../src/instances.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_37.pdb ../src/posix_api.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_38.pdb ../src/posix_api.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_37.pdb ../src/regex.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_38.pdb ../src/regex.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_37.pdb ../src/regex_debug.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_38.pdb ../src/regex_debug.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_37.pdb ../src/regex_raw_buffer.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_38.pdb ../src/regex_raw_buffer.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_37.pdb ../src/regex_traits_defaults.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_38.pdb ../src/regex_traits_defaults.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_37.pdb ../src/static_mutex.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_38.pdb ../src/static_mutex.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_37.pdb ../src/usinstances.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_38.pdb ../src/usinstances.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_37.pdb ../src/w32_regex_traits.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_38.pdb ../src/w32_regex_traits.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_37.pdb ../src/wc_regex_traits.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_38.pdb ../src/wc_regex_traits.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_37.pdb ../src/wide_posix_api.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_38.pdb ../src/wide_posix_api.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_37.pdb ../src/winstances.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_38.pdb ../src/winstances.cpp -boost_regex-vc6-mt-gdp-1_37_dir : - @if not exist "vc6-stlport\boost_regex-vc6-mt-gdp-1_37\$(NULL)" mkdir vc6-stlport\boost_regex-vc6-mt-gdp-1_37 +boost_regex-vc6-mt-gdp-1_38_dir : + @if not exist "vc6-stlport\boost_regex-vc6-mt-gdp-1_38\$(NULL)" mkdir vc6-stlport\boost_regex-vc6-mt-gdp-1_38 -boost_regex-vc6-mt-gdp-1_37_clean : - del vc6-stlport\boost_regex-vc6-mt-gdp-1_37\*.obj - del vc6-stlport\boost_regex-vc6-mt-gdp-1_37\*.idb - del vc6-stlport\boost_regex-vc6-mt-gdp-1_37\*.exp - del vc6-stlport\boost_regex-vc6-mt-gdp-1_37\*.pch +boost_regex-vc6-mt-gdp-1_38_clean : + del vc6-stlport\boost_regex-vc6-mt-gdp-1_38\*.obj + del vc6-stlport\boost_regex-vc6-mt-gdp-1_38\*.idb + del vc6-stlport\boost_regex-vc6-mt-gdp-1_38\*.exp + del vc6-stlport\boost_regex-vc6-mt-gdp-1_38\*.pch -./vc6-stlport/boost_regex-vc6-mt-gdp-1_37.lib : vc6-stlport/boost_regex-vc6-mt-gdp-1_37/c_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/cpp_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/cregex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/fileiter.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/icu.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/instances.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/posix_api.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/regex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/regex_debug.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/regex_raw_buffer.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/regex_traits_defaults.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/static_mutex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/usinstances.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/w32_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/wc_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/wide_posix_api.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/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_37.pdb" /debug /machine:I386 /out:"vc6-stlport/boost_regex-vc6-mt-gdp-1_37.dll" /implib:"vc6-stlport/boost_regex-vc6-mt-gdp-1_37.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc6-stlport/boost_regex-vc6-mt-gdp-1_37/c_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/cpp_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/cregex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/fileiter.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/icu.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/instances.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/posix_api.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/regex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/regex_debug.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/regex_raw_buffer.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/regex_traits_defaults.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/static_mutex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/usinstances.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/w32_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/wc_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/wide_posix_api.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_37/winstances.obj +./vc6-stlport/boost_regex-vc6-mt-gdp-1_38.lib : vc6-stlport/boost_regex-vc6-mt-gdp-1_38/c_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/cpp_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/cregex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/fileiter.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/icu.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/instances.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/posix_api.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/regex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/regex_debug.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/regex_raw_buffer.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/regex_traits_defaults.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/static_mutex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/usinstances.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/w32_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/wc_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/wide_posix_api.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/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_38.pdb" /debug /machine:I386 /out:"vc6-stlport/boost_regex-vc6-mt-gdp-1_38.dll" /implib:"vc6-stlport/boost_regex-vc6-mt-gdp-1_38.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc6-stlport/boost_regex-vc6-mt-gdp-1_38/c_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/cpp_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/cregex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/fileiter.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/icu.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/instances.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/posix_api.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/regex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/regex_debug.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/regex_raw_buffer.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/regex_traits_defaults.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/static_mutex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/usinstances.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/w32_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/wc_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/wide_posix_api.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/winstances.obj ######################################################## # -# section for libboost_regex-vc6-mt-sgdp-1_37.lib +# section for libboost_regex-vc6-mt-sgdp-1_38.lib # ######################################################## -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_37.pdb ../src/c_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_38.pdb ../src/c_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_37.pdb ../src/cpp_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_38.pdb ../src/cpp_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_37.pdb ../src/cregex.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_38.pdb ../src/cregex.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_37.pdb ../src/fileiter.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_38.pdb ../src/fileiter.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_37.pdb ../src/icu.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_38.pdb ../src/icu.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_37.pdb ../src/instances.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_38.pdb ../src/instances.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_37.pdb ../src/posix_api.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_38.pdb ../src/posix_api.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_37.pdb ../src/regex.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_38.pdb ../src/regex.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_37.pdb ../src/regex_debug.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_38.pdb ../src/regex_debug.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_37.pdb ../src/regex_raw_buffer.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_38.pdb ../src/regex_raw_buffer.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_37.pdb ../src/regex_traits_defaults.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_38.pdb ../src/regex_traits_defaults.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_37.pdb ../src/static_mutex.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_38.pdb ../src/static_mutex.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_37.pdb ../src/usinstances.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_38.pdb ../src/usinstances.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_37.pdb ../src/w32_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_38.pdb ../src/w32_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_37.pdb ../src/wc_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_38.pdb ../src/wc_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_37.pdb ../src/wide_posix_api.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_38.pdb ../src/wide_posix_api.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_37.pdb ../src/winstances.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_38.pdb ../src/winstances.cpp -libboost_regex-vc6-mt-sgdp-1_37_dir : - @if not exist "vc6-stlport\libboost_regex-vc6-mt-sgdp-1_37\$(NULL)" mkdir vc6-stlport\libboost_regex-vc6-mt-sgdp-1_37 +libboost_regex-vc6-mt-sgdp-1_38_dir : + @if not exist "vc6-stlport\libboost_regex-vc6-mt-sgdp-1_38\$(NULL)" mkdir vc6-stlport\libboost_regex-vc6-mt-sgdp-1_38 -libboost_regex-vc6-mt-sgdp-1_37_clean : - del vc6-stlport\libboost_regex-vc6-mt-sgdp-1_37\*.obj - del vc6-stlport\libboost_regex-vc6-mt-sgdp-1_37\*.idb - del vc6-stlport\libboost_regex-vc6-mt-sgdp-1_37\*.exp - del vc6-stlport\libboost_regex-vc6-mt-sgdp-1_37\*.pch +libboost_regex-vc6-mt-sgdp-1_38_clean : + del vc6-stlport\libboost_regex-vc6-mt-sgdp-1_38\*.obj + del vc6-stlport\libboost_regex-vc6-mt-sgdp-1_38\*.idb + del vc6-stlport\libboost_regex-vc6-mt-sgdp-1_38\*.exp + del vc6-stlport\libboost_regex-vc6-mt-sgdp-1_38\*.pch -./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37.lib : vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/cregex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/icu.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/instances.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/regex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/winstances.obj - link -lib /nologo /out:vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37.lib $(XSFLAGS) vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/cregex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/icu.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/instances.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/regex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_37/winstances.obj +./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38.lib : vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/cregex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/icu.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/instances.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/regex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/winstances.obj + link -lib /nologo /out:vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38.lib $(XSFLAGS) vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/cregex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/icu.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/instances.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/regex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/winstances.obj ######################################################## # -# section for libboost_regex-vc6-mt-gdp-1_37.lib +# section for libboost_regex-vc6-mt-gdp-1_38.lib # ######################################################## -vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_37.pdb ../src/c_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_38.pdb ../src/c_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_37.pdb ../src/cpp_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_38.pdb ../src/cpp_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_37.pdb ../src/cregex.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_38.pdb ../src/cregex.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_37.pdb ../src/fileiter.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_38.pdb ../src/fileiter.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_37.pdb ../src/icu.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_38.pdb ../src/icu.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_37.pdb ../src/instances.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_38.pdb ../src/instances.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_37.pdb ../src/posix_api.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_38.pdb ../src/posix_api.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_37.pdb ../src/regex.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_38.pdb ../src/regex.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_37.pdb ../src/regex_debug.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_38.pdb ../src/regex_debug.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_37.pdb ../src/regex_raw_buffer.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_38.pdb ../src/regex_raw_buffer.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_37.pdb ../src/regex_traits_defaults.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_38.pdb ../src/regex_traits_defaults.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_37.pdb ../src/static_mutex.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_38.pdb ../src/static_mutex.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_37.pdb ../src/usinstances.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_38.pdb ../src/usinstances.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_37.pdb ../src/w32_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_38.pdb ../src/w32_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_37.pdb ../src/wc_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_38.pdb ../src/wc_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_37.pdb ../src/wide_posix_api.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_38.pdb ../src/wide_posix_api.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/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_37/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_37.pdb ../src/winstances.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_38.pdb ../src/winstances.cpp -libboost_regex-vc6-mt-gdp-1_37_dir : - @if not exist "vc6-stlport\libboost_regex-vc6-mt-gdp-1_37\$(NULL)" mkdir vc6-stlport\libboost_regex-vc6-mt-gdp-1_37 +libboost_regex-vc6-mt-gdp-1_38_dir : + @if not exist "vc6-stlport\libboost_regex-vc6-mt-gdp-1_38\$(NULL)" mkdir vc6-stlport\libboost_regex-vc6-mt-gdp-1_38 -libboost_regex-vc6-mt-gdp-1_37_clean : - del vc6-stlport\libboost_regex-vc6-mt-gdp-1_37\*.obj - del vc6-stlport\libboost_regex-vc6-mt-gdp-1_37\*.idb - del vc6-stlport\libboost_regex-vc6-mt-gdp-1_37\*.exp - del vc6-stlport\libboost_regex-vc6-mt-gdp-1_37\*.pch +libboost_regex-vc6-mt-gdp-1_38_clean : + del vc6-stlport\libboost_regex-vc6-mt-gdp-1_38\*.obj + del vc6-stlport\libboost_regex-vc6-mt-gdp-1_38\*.idb + del vc6-stlport\libboost_regex-vc6-mt-gdp-1_38\*.exp + del vc6-stlport\libboost_regex-vc6-mt-gdp-1_38\*.pch -./vc6-stlport/libboost_regex-vc6-mt-gdp-1_37.lib : vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/cregex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/icu.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/instances.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/regex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/winstances.obj - link -lib /nologo /out:vc6-stlport/libboost_regex-vc6-mt-gdp-1_37.lib $(XSFLAGS) vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/cregex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/icu.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/instances.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/regex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_37/winstances.obj +./vc6-stlport/libboost_regex-vc6-mt-gdp-1_38.lib : vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/cregex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/icu.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/instances.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/regex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/winstances.obj + link -lib /nologo /out:vc6-stlport/libboost_regex-vc6-mt-gdp-1_38.lib $(XSFLAGS) vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/cregex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/icu.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/instances.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/regex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/winstances.obj diff --git a/build/vc6.mak b/build/vc6.mak index 4a7fa5c4..28c79a21 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_37_dir ./vc6/libboost_regex-vc6-s-1_37.lib libboost_regex-vc6-mt-s-1_37_dir ./vc6/libboost_regex-vc6-mt-s-1_37.lib libboost_regex-vc6-sgd-1_37_dir ./vc6/libboost_regex-vc6-sgd-1_37.lib libboost_regex-vc6-mt-sgd-1_37_dir ./vc6/libboost_regex-vc6-mt-sgd-1_37.lib boost_regex-vc6-mt-gd-1_37_dir ./vc6/boost_regex-vc6-mt-gd-1_37.lib boost_regex-vc6-mt-1_37_dir ./vc6/boost_regex-vc6-mt-1_37.lib libboost_regex-vc6-mt-1_37_dir ./vc6/libboost_regex-vc6-mt-1_37.lib libboost_regex-vc6-mt-gd-1_37_dir ./vc6/libboost_regex-vc6-mt-gd-1_37.lib +all : main_dir libboost_regex-vc6-s-1_38_dir ./vc6/libboost_regex-vc6-s-1_38.lib libboost_regex-vc6-mt-s-1_38_dir ./vc6/libboost_regex-vc6-mt-s-1_38.lib libboost_regex-vc6-sgd-1_38_dir ./vc6/libboost_regex-vc6-sgd-1_38.lib libboost_regex-vc6-mt-sgd-1_38_dir ./vc6/libboost_regex-vc6-mt-sgd-1_38.lib boost_regex-vc6-mt-gd-1_38_dir ./vc6/boost_regex-vc6-mt-gd-1_38.lib boost_regex-vc6-mt-1_38_dir ./vc6/boost_regex-vc6-mt-1_38.lib libboost_regex-vc6-mt-1_38_dir ./vc6/libboost_regex-vc6-mt-1_38.lib libboost_regex-vc6-mt-gd-1_38_dir ./vc6/libboost_regex-vc6-mt-gd-1_38.lib -clean : libboost_regex-vc6-s-1_37_clean libboost_regex-vc6-mt-s-1_37_clean libboost_regex-vc6-sgd-1_37_clean libboost_regex-vc6-mt-sgd-1_37_clean boost_regex-vc6-mt-gd-1_37_clean boost_regex-vc6-mt-1_37_clean libboost_regex-vc6-mt-1_37_clean libboost_regex-vc6-mt-gd-1_37_clean +clean : libboost_regex-vc6-s-1_38_clean libboost_regex-vc6-mt-s-1_38_clean libboost_regex-vc6-sgd-1_38_clean libboost_regex-vc6-mt-sgd-1_38_clean boost_regex-vc6-mt-gd-1_38_clean boost_regex-vc6-mt-1_38_clean libboost_regex-vc6-mt-1_38_clean libboost_regex-vc6-mt-gd-1_38_clean install : all - copy vc6\libboost_regex-vc6-s-1_37.lib "$(MSVCDIR)\lib" - copy vc6\libboost_regex-vc6-mt-s-1_37.lib "$(MSVCDIR)\lib" - copy vc6\libboost_regex-vc6-sgd-1_37.lib "$(MSVCDIR)\lib" - copy vc6\libboost_regex-vc6-sgd-1_37.pdb "$(MSVCDIR)\lib" - copy vc6\libboost_regex-vc6-mt-sgd-1_37.lib "$(MSVCDIR)\lib" - copy vc6\libboost_regex-vc6-mt-sgd-1_37.pdb "$(MSVCDIR)\lib" - copy vc6\boost_regex-vc6-mt-gd-1_37.lib "$(MSVCDIR)\lib" - copy vc6\boost_regex-vc6-mt-gd-1_37.dll "$(MSVCDIR)\bin" - copy vc6\boost_regex-vc6-mt-gd-1_37.pdb "$(MSVCDIR)\lib" - copy vc6\boost_regex-vc6-mt-1_37.lib "$(MSVCDIR)\lib" - copy vc6\boost_regex-vc6-mt-1_37.dll "$(MSVCDIR)\bin" - copy vc6\libboost_regex-vc6-mt-1_37.lib "$(MSVCDIR)\lib" - copy vc6\libboost_regex-vc6-mt-gd-1_37.lib "$(MSVCDIR)\lib" - copy vc6\libboost_regex-vc6-mt-gd-1_37.pdb "$(MSVCDIR)\lib" + copy vc6\libboost_regex-vc6-s-1_38.lib "$(MSVCDIR)\lib" + copy vc6\libboost_regex-vc6-mt-s-1_38.lib "$(MSVCDIR)\lib" + copy vc6\libboost_regex-vc6-sgd-1_38.lib "$(MSVCDIR)\lib" + copy vc6\libboost_regex-vc6-sgd-1_38.pdb "$(MSVCDIR)\lib" + copy vc6\libboost_regex-vc6-mt-sgd-1_38.lib "$(MSVCDIR)\lib" + copy vc6\libboost_regex-vc6-mt-sgd-1_38.pdb "$(MSVCDIR)\lib" + copy vc6\boost_regex-vc6-mt-gd-1_38.lib "$(MSVCDIR)\lib" + copy vc6\boost_regex-vc6-mt-gd-1_38.dll "$(MSVCDIR)\bin" + copy vc6\boost_regex-vc6-mt-gd-1_38.pdb "$(MSVCDIR)\lib" + copy vc6\boost_regex-vc6-mt-1_38.lib "$(MSVCDIR)\lib" + copy vc6\boost_regex-vc6-mt-1_38.dll "$(MSVCDIR)\bin" + copy vc6\libboost_regex-vc6-mt-1_38.lib "$(MSVCDIR)\lib" + copy vc6\libboost_regex-vc6-mt-gd-1_38.lib "$(MSVCDIR)\lib" + copy vc6\libboost_regex-vc6-mt-gd-1_38.pdb "$(MSVCDIR)\lib" main_dir : @if not exist "vc6\$(NULL)" mkdir vc6 @@ -88,546 +88,546 @@ main_dir : ######################################################## # -# section for libboost_regex-vc6-s-1_37.lib +# section for libboost_regex-vc6-s-1_38.lib # ######################################################## -vc6/libboost_regex-vc6-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-s-1_37.pdb ../src/c_regex_traits.cpp +vc6/libboost_regex-vc6-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-s-1_38.pdb ../src/c_regex_traits.cpp -vc6/libboost_regex-vc6-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-s-1_37.pdb ../src/cpp_regex_traits.cpp +vc6/libboost_regex-vc6-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-s-1_38.pdb ../src/cpp_regex_traits.cpp -vc6/libboost_regex-vc6-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-s-1_37.pdb ../src/cregex.cpp +vc6/libboost_regex-vc6-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-s-1_38.pdb ../src/cregex.cpp -vc6/libboost_regex-vc6-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-s-1_37.pdb ../src/fileiter.cpp +vc6/libboost_regex-vc6-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-s-1_38.pdb ../src/fileiter.cpp -vc6/libboost_regex-vc6-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-s-1_37.pdb ../src/icu.cpp +vc6/libboost_regex-vc6-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-s-1_38.pdb ../src/icu.cpp -vc6/libboost_regex-vc6-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-s-1_37.pdb ../src/instances.cpp +vc6/libboost_regex-vc6-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-s-1_38.pdb ../src/instances.cpp -vc6/libboost_regex-vc6-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-s-1_37.pdb ../src/posix_api.cpp +vc6/libboost_regex-vc6-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-s-1_38.pdb ../src/posix_api.cpp -vc6/libboost_regex-vc6-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-s-1_37.pdb ../src/regex.cpp +vc6/libboost_regex-vc6-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-s-1_38.pdb ../src/regex.cpp -vc6/libboost_regex-vc6-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-s-1_37.pdb ../src/regex_debug.cpp +vc6/libboost_regex-vc6-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-s-1_38.pdb ../src/regex_debug.cpp -vc6/libboost_regex-vc6-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-s-1_37.pdb ../src/regex_raw_buffer.cpp +vc6/libboost_regex-vc6-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-s-1_38.pdb ../src/regex_raw_buffer.cpp -vc6/libboost_regex-vc6-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-s-1_37.pdb ../src/regex_traits_defaults.cpp +vc6/libboost_regex-vc6-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-s-1_38.pdb ../src/regex_traits_defaults.cpp -vc6/libboost_regex-vc6-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-s-1_37.pdb ../src/static_mutex.cpp +vc6/libboost_regex-vc6-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-s-1_38.pdb ../src/static_mutex.cpp -vc6/libboost_regex-vc6-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-s-1_37.pdb ../src/usinstances.cpp +vc6/libboost_regex-vc6-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-s-1_38.pdb ../src/usinstances.cpp -vc6/libboost_regex-vc6-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-s-1_37.pdb ../src/w32_regex_traits.cpp +vc6/libboost_regex-vc6-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-s-1_38.pdb ../src/w32_regex_traits.cpp -vc6/libboost_regex-vc6-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-s-1_37.pdb ../src/wc_regex_traits.cpp +vc6/libboost_regex-vc6-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-s-1_38.pdb ../src/wc_regex_traits.cpp -vc6/libboost_regex-vc6-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-s-1_37.pdb ../src/wide_posix_api.cpp +vc6/libboost_regex-vc6-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-s-1_38.pdb ../src/wide_posix_api.cpp -vc6/libboost_regex-vc6-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-s-1_37.pdb ../src/winstances.cpp +vc6/libboost_regex-vc6-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-s-1_38.pdb ../src/winstances.cpp -libboost_regex-vc6-s-1_37_dir : - @if not exist "vc6\libboost_regex-vc6-s-1_37\$(NULL)" mkdir vc6\libboost_regex-vc6-s-1_37 +libboost_regex-vc6-s-1_38_dir : + @if not exist "vc6\libboost_regex-vc6-s-1_38\$(NULL)" mkdir vc6\libboost_regex-vc6-s-1_38 -libboost_regex-vc6-s-1_37_clean : - del vc6\libboost_regex-vc6-s-1_37\*.obj - del vc6\libboost_regex-vc6-s-1_37\*.idb - del vc6\libboost_regex-vc6-s-1_37\*.exp - del vc6\libboost_regex-vc6-s-1_37\*.pch +libboost_regex-vc6-s-1_38_clean : + del vc6\libboost_regex-vc6-s-1_38\*.obj + del vc6\libboost_regex-vc6-s-1_38\*.idb + del vc6\libboost_regex-vc6-s-1_38\*.exp + del vc6\libboost_regex-vc6-s-1_38\*.pch -./vc6/libboost_regex-vc6-s-1_37.lib : vc6/libboost_regex-vc6-s-1_37/c_regex_traits.obj vc6/libboost_regex-vc6-s-1_37/cpp_regex_traits.obj vc6/libboost_regex-vc6-s-1_37/cregex.obj vc6/libboost_regex-vc6-s-1_37/fileiter.obj vc6/libboost_regex-vc6-s-1_37/icu.obj vc6/libboost_regex-vc6-s-1_37/instances.obj vc6/libboost_regex-vc6-s-1_37/posix_api.obj vc6/libboost_regex-vc6-s-1_37/regex.obj vc6/libboost_regex-vc6-s-1_37/regex_debug.obj vc6/libboost_regex-vc6-s-1_37/regex_raw_buffer.obj vc6/libboost_regex-vc6-s-1_37/regex_traits_defaults.obj vc6/libboost_regex-vc6-s-1_37/static_mutex.obj vc6/libboost_regex-vc6-s-1_37/usinstances.obj vc6/libboost_regex-vc6-s-1_37/w32_regex_traits.obj vc6/libboost_regex-vc6-s-1_37/wc_regex_traits.obj vc6/libboost_regex-vc6-s-1_37/wide_posix_api.obj vc6/libboost_regex-vc6-s-1_37/winstances.obj - link -lib /nologo /out:vc6/libboost_regex-vc6-s-1_37.lib $(XSFLAGS) vc6/libboost_regex-vc6-s-1_37/c_regex_traits.obj vc6/libboost_regex-vc6-s-1_37/cpp_regex_traits.obj vc6/libboost_regex-vc6-s-1_37/cregex.obj vc6/libboost_regex-vc6-s-1_37/fileiter.obj vc6/libboost_regex-vc6-s-1_37/icu.obj vc6/libboost_regex-vc6-s-1_37/instances.obj vc6/libboost_regex-vc6-s-1_37/posix_api.obj vc6/libboost_regex-vc6-s-1_37/regex.obj vc6/libboost_regex-vc6-s-1_37/regex_debug.obj vc6/libboost_regex-vc6-s-1_37/regex_raw_buffer.obj vc6/libboost_regex-vc6-s-1_37/regex_traits_defaults.obj vc6/libboost_regex-vc6-s-1_37/static_mutex.obj vc6/libboost_regex-vc6-s-1_37/usinstances.obj vc6/libboost_regex-vc6-s-1_37/w32_regex_traits.obj vc6/libboost_regex-vc6-s-1_37/wc_regex_traits.obj vc6/libboost_regex-vc6-s-1_37/wide_posix_api.obj vc6/libboost_regex-vc6-s-1_37/winstances.obj +./vc6/libboost_regex-vc6-s-1_38.lib : vc6/libboost_regex-vc6-s-1_38/c_regex_traits.obj vc6/libboost_regex-vc6-s-1_38/cpp_regex_traits.obj vc6/libboost_regex-vc6-s-1_38/cregex.obj vc6/libboost_regex-vc6-s-1_38/fileiter.obj vc6/libboost_regex-vc6-s-1_38/icu.obj vc6/libboost_regex-vc6-s-1_38/instances.obj vc6/libboost_regex-vc6-s-1_38/posix_api.obj vc6/libboost_regex-vc6-s-1_38/regex.obj vc6/libboost_regex-vc6-s-1_38/regex_debug.obj vc6/libboost_regex-vc6-s-1_38/regex_raw_buffer.obj vc6/libboost_regex-vc6-s-1_38/regex_traits_defaults.obj vc6/libboost_regex-vc6-s-1_38/static_mutex.obj vc6/libboost_regex-vc6-s-1_38/usinstances.obj vc6/libboost_regex-vc6-s-1_38/w32_regex_traits.obj vc6/libboost_regex-vc6-s-1_38/wc_regex_traits.obj vc6/libboost_regex-vc6-s-1_38/wide_posix_api.obj vc6/libboost_regex-vc6-s-1_38/winstances.obj + link -lib /nologo /out:vc6/libboost_regex-vc6-s-1_38.lib $(XSFLAGS) vc6/libboost_regex-vc6-s-1_38/c_regex_traits.obj vc6/libboost_regex-vc6-s-1_38/cpp_regex_traits.obj vc6/libboost_regex-vc6-s-1_38/cregex.obj vc6/libboost_regex-vc6-s-1_38/fileiter.obj vc6/libboost_regex-vc6-s-1_38/icu.obj vc6/libboost_regex-vc6-s-1_38/instances.obj vc6/libboost_regex-vc6-s-1_38/posix_api.obj vc6/libboost_regex-vc6-s-1_38/regex.obj vc6/libboost_regex-vc6-s-1_38/regex_debug.obj vc6/libboost_regex-vc6-s-1_38/regex_raw_buffer.obj vc6/libboost_regex-vc6-s-1_38/regex_traits_defaults.obj vc6/libboost_regex-vc6-s-1_38/static_mutex.obj vc6/libboost_regex-vc6-s-1_38/usinstances.obj vc6/libboost_regex-vc6-s-1_38/w32_regex_traits.obj vc6/libboost_regex-vc6-s-1_38/wc_regex_traits.obj vc6/libboost_regex-vc6-s-1_38/wide_posix_api.obj vc6/libboost_regex-vc6-s-1_38/winstances.obj ######################################################## # -# section for libboost_regex-vc6-mt-s-1_37.lib +# section for libboost_regex-vc6-mt-s-1_38.lib # ######################################################## -vc6/libboost_regex-vc6-mt-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-s-1_37.pdb ../src/c_regex_traits.cpp +vc6/libboost_regex-vc6-mt-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-s-1_38.pdb ../src/c_regex_traits.cpp -vc6/libboost_regex-vc6-mt-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-s-1_37.pdb ../src/cpp_regex_traits.cpp +vc6/libboost_regex-vc6-mt-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-s-1_38.pdb ../src/cpp_regex_traits.cpp -vc6/libboost_regex-vc6-mt-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-s-1_37.pdb ../src/cregex.cpp +vc6/libboost_regex-vc6-mt-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-s-1_38.pdb ../src/cregex.cpp -vc6/libboost_regex-vc6-mt-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-s-1_37.pdb ../src/fileiter.cpp +vc6/libboost_regex-vc6-mt-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-s-1_38.pdb ../src/fileiter.cpp -vc6/libboost_regex-vc6-mt-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-s-1_37.pdb ../src/icu.cpp +vc6/libboost_regex-vc6-mt-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-s-1_38.pdb ../src/icu.cpp -vc6/libboost_regex-vc6-mt-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-s-1_37.pdb ../src/instances.cpp +vc6/libboost_regex-vc6-mt-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-s-1_38.pdb ../src/instances.cpp -vc6/libboost_regex-vc6-mt-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-s-1_37.pdb ../src/posix_api.cpp +vc6/libboost_regex-vc6-mt-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-s-1_38.pdb ../src/posix_api.cpp -vc6/libboost_regex-vc6-mt-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-s-1_37.pdb ../src/regex.cpp +vc6/libboost_regex-vc6-mt-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-s-1_38.pdb ../src/regex.cpp -vc6/libboost_regex-vc6-mt-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-s-1_37.pdb ../src/regex_debug.cpp +vc6/libboost_regex-vc6-mt-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-s-1_38.pdb ../src/regex_debug.cpp -vc6/libboost_regex-vc6-mt-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-s-1_37.pdb ../src/regex_raw_buffer.cpp +vc6/libboost_regex-vc6-mt-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-s-1_38.pdb ../src/regex_raw_buffer.cpp -vc6/libboost_regex-vc6-mt-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-s-1_37.pdb ../src/regex_traits_defaults.cpp +vc6/libboost_regex-vc6-mt-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-s-1_38.pdb ../src/regex_traits_defaults.cpp -vc6/libboost_regex-vc6-mt-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-s-1_37.pdb ../src/static_mutex.cpp +vc6/libboost_regex-vc6-mt-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-s-1_38.pdb ../src/static_mutex.cpp -vc6/libboost_regex-vc6-mt-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-s-1_37.pdb ../src/usinstances.cpp +vc6/libboost_regex-vc6-mt-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-s-1_38.pdb ../src/usinstances.cpp -vc6/libboost_regex-vc6-mt-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-s-1_37.pdb ../src/w32_regex_traits.cpp +vc6/libboost_regex-vc6-mt-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-s-1_38.pdb ../src/w32_regex_traits.cpp -vc6/libboost_regex-vc6-mt-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-s-1_37.pdb ../src/wc_regex_traits.cpp +vc6/libboost_regex-vc6-mt-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-s-1_38.pdb ../src/wc_regex_traits.cpp -vc6/libboost_regex-vc6-mt-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-s-1_37.pdb ../src/wide_posix_api.cpp +vc6/libboost_regex-vc6-mt-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-s-1_38.pdb ../src/wide_posix_api.cpp -vc6/libboost_regex-vc6-mt-s-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-s-1_37.pdb ../src/winstances.cpp +vc6/libboost_regex-vc6-mt-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-s-1_38.pdb ../src/winstances.cpp -libboost_regex-vc6-mt-s-1_37_dir : - @if not exist "vc6\libboost_regex-vc6-mt-s-1_37\$(NULL)" mkdir vc6\libboost_regex-vc6-mt-s-1_37 +libboost_regex-vc6-mt-s-1_38_dir : + @if not exist "vc6\libboost_regex-vc6-mt-s-1_38\$(NULL)" mkdir vc6\libboost_regex-vc6-mt-s-1_38 -libboost_regex-vc6-mt-s-1_37_clean : - del vc6\libboost_regex-vc6-mt-s-1_37\*.obj - del vc6\libboost_regex-vc6-mt-s-1_37\*.idb - del vc6\libboost_regex-vc6-mt-s-1_37\*.exp - del vc6\libboost_regex-vc6-mt-s-1_37\*.pch +libboost_regex-vc6-mt-s-1_38_clean : + del vc6\libboost_regex-vc6-mt-s-1_38\*.obj + del vc6\libboost_regex-vc6-mt-s-1_38\*.idb + del vc6\libboost_regex-vc6-mt-s-1_38\*.exp + del vc6\libboost_regex-vc6-mt-s-1_38\*.pch -./vc6/libboost_regex-vc6-mt-s-1_37.lib : vc6/libboost_regex-vc6-mt-s-1_37/c_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_37/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_37/cregex.obj vc6/libboost_regex-vc6-mt-s-1_37/fileiter.obj vc6/libboost_regex-vc6-mt-s-1_37/icu.obj vc6/libboost_regex-vc6-mt-s-1_37/instances.obj vc6/libboost_regex-vc6-mt-s-1_37/posix_api.obj vc6/libboost_regex-vc6-mt-s-1_37/regex.obj vc6/libboost_regex-vc6-mt-s-1_37/regex_debug.obj vc6/libboost_regex-vc6-mt-s-1_37/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-s-1_37/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-s-1_37/static_mutex.obj vc6/libboost_regex-vc6-mt-s-1_37/usinstances.obj vc6/libboost_regex-vc6-mt-s-1_37/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_37/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_37/wide_posix_api.obj vc6/libboost_regex-vc6-mt-s-1_37/winstances.obj - link -lib /nologo /out:vc6/libboost_regex-vc6-mt-s-1_37.lib $(XSFLAGS) vc6/libboost_regex-vc6-mt-s-1_37/c_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_37/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_37/cregex.obj vc6/libboost_regex-vc6-mt-s-1_37/fileiter.obj vc6/libboost_regex-vc6-mt-s-1_37/icu.obj vc6/libboost_regex-vc6-mt-s-1_37/instances.obj vc6/libboost_regex-vc6-mt-s-1_37/posix_api.obj vc6/libboost_regex-vc6-mt-s-1_37/regex.obj vc6/libboost_regex-vc6-mt-s-1_37/regex_debug.obj vc6/libboost_regex-vc6-mt-s-1_37/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-s-1_37/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-s-1_37/static_mutex.obj vc6/libboost_regex-vc6-mt-s-1_37/usinstances.obj vc6/libboost_regex-vc6-mt-s-1_37/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_37/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_37/wide_posix_api.obj vc6/libboost_regex-vc6-mt-s-1_37/winstances.obj +./vc6/libboost_regex-vc6-mt-s-1_38.lib : vc6/libboost_regex-vc6-mt-s-1_38/c_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_38/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_38/cregex.obj vc6/libboost_regex-vc6-mt-s-1_38/fileiter.obj vc6/libboost_regex-vc6-mt-s-1_38/icu.obj vc6/libboost_regex-vc6-mt-s-1_38/instances.obj vc6/libboost_regex-vc6-mt-s-1_38/posix_api.obj vc6/libboost_regex-vc6-mt-s-1_38/regex.obj vc6/libboost_regex-vc6-mt-s-1_38/regex_debug.obj vc6/libboost_regex-vc6-mt-s-1_38/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-s-1_38/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-s-1_38/static_mutex.obj vc6/libboost_regex-vc6-mt-s-1_38/usinstances.obj vc6/libboost_regex-vc6-mt-s-1_38/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_38/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_38/wide_posix_api.obj vc6/libboost_regex-vc6-mt-s-1_38/winstances.obj + link -lib /nologo /out:vc6/libboost_regex-vc6-mt-s-1_38.lib $(XSFLAGS) vc6/libboost_regex-vc6-mt-s-1_38/c_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_38/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_38/cregex.obj vc6/libboost_regex-vc6-mt-s-1_38/fileiter.obj vc6/libboost_regex-vc6-mt-s-1_38/icu.obj vc6/libboost_regex-vc6-mt-s-1_38/instances.obj vc6/libboost_regex-vc6-mt-s-1_38/posix_api.obj vc6/libboost_regex-vc6-mt-s-1_38/regex.obj vc6/libboost_regex-vc6-mt-s-1_38/regex_debug.obj vc6/libboost_regex-vc6-mt-s-1_38/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-s-1_38/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-s-1_38/static_mutex.obj vc6/libboost_regex-vc6-mt-s-1_38/usinstances.obj vc6/libboost_regex-vc6-mt-s-1_38/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_38/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_38/wide_posix_api.obj vc6/libboost_regex-vc6-mt-s-1_38/winstances.obj ######################################################## # -# section for libboost_regex-vc6-sgd-1_37.lib +# section for libboost_regex-vc6-sgd-1_38.lib # ######################################################## -vc6/libboost_regex-vc6-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-sgd-1_37.pdb ../src/c_regex_traits.cpp +vc6/libboost_regex-vc6-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-sgd-1_38.pdb ../src/c_regex_traits.cpp -vc6/libboost_regex-vc6-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-sgd-1_37.pdb ../src/cpp_regex_traits.cpp +vc6/libboost_regex-vc6-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-sgd-1_38.pdb ../src/cpp_regex_traits.cpp -vc6/libboost_regex-vc6-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-sgd-1_37.pdb ../src/cregex.cpp +vc6/libboost_regex-vc6-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-sgd-1_38.pdb ../src/cregex.cpp -vc6/libboost_regex-vc6-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-sgd-1_37.pdb ../src/fileiter.cpp +vc6/libboost_regex-vc6-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-sgd-1_38.pdb ../src/fileiter.cpp -vc6/libboost_regex-vc6-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-sgd-1_37.pdb ../src/icu.cpp +vc6/libboost_regex-vc6-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-sgd-1_38.pdb ../src/icu.cpp -vc6/libboost_regex-vc6-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-sgd-1_37.pdb ../src/instances.cpp +vc6/libboost_regex-vc6-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-sgd-1_38.pdb ../src/instances.cpp -vc6/libboost_regex-vc6-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-sgd-1_37.pdb ../src/posix_api.cpp +vc6/libboost_regex-vc6-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-sgd-1_38.pdb ../src/posix_api.cpp -vc6/libboost_regex-vc6-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-sgd-1_37.pdb ../src/regex.cpp +vc6/libboost_regex-vc6-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-sgd-1_38.pdb ../src/regex.cpp -vc6/libboost_regex-vc6-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-sgd-1_37.pdb ../src/regex_debug.cpp +vc6/libboost_regex-vc6-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-sgd-1_38.pdb ../src/regex_debug.cpp -vc6/libboost_regex-vc6-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-sgd-1_37.pdb ../src/regex_raw_buffer.cpp +vc6/libboost_regex-vc6-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-sgd-1_38.pdb ../src/regex_raw_buffer.cpp -vc6/libboost_regex-vc6-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-sgd-1_37.pdb ../src/regex_traits_defaults.cpp +vc6/libboost_regex-vc6-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-sgd-1_38.pdb ../src/regex_traits_defaults.cpp -vc6/libboost_regex-vc6-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-sgd-1_37.pdb ../src/static_mutex.cpp +vc6/libboost_regex-vc6-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-sgd-1_38.pdb ../src/static_mutex.cpp -vc6/libboost_regex-vc6-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-sgd-1_37.pdb ../src/usinstances.cpp +vc6/libboost_regex-vc6-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-sgd-1_38.pdb ../src/usinstances.cpp -vc6/libboost_regex-vc6-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-sgd-1_37.pdb ../src/w32_regex_traits.cpp +vc6/libboost_regex-vc6-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-sgd-1_38.pdb ../src/w32_regex_traits.cpp -vc6/libboost_regex-vc6-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-sgd-1_37.pdb ../src/wc_regex_traits.cpp +vc6/libboost_regex-vc6-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-sgd-1_38.pdb ../src/wc_regex_traits.cpp -vc6/libboost_regex-vc6-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-sgd-1_37.pdb ../src/wide_posix_api.cpp +vc6/libboost_regex-vc6-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-sgd-1_38.pdb ../src/wide_posix_api.cpp -vc6/libboost_regex-vc6-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-sgd-1_37.pdb ../src/winstances.cpp +vc6/libboost_regex-vc6-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-sgd-1_38.pdb ../src/winstances.cpp -libboost_regex-vc6-sgd-1_37_dir : - @if not exist "vc6\libboost_regex-vc6-sgd-1_37\$(NULL)" mkdir vc6\libboost_regex-vc6-sgd-1_37 +libboost_regex-vc6-sgd-1_38_dir : + @if not exist "vc6\libboost_regex-vc6-sgd-1_38\$(NULL)" mkdir vc6\libboost_regex-vc6-sgd-1_38 -libboost_regex-vc6-sgd-1_37_clean : - del vc6\libboost_regex-vc6-sgd-1_37\*.obj - del vc6\libboost_regex-vc6-sgd-1_37\*.idb - del vc6\libboost_regex-vc6-sgd-1_37\*.exp - del vc6\libboost_regex-vc6-sgd-1_37\*.pch +libboost_regex-vc6-sgd-1_38_clean : + del vc6\libboost_regex-vc6-sgd-1_38\*.obj + del vc6\libboost_regex-vc6-sgd-1_38\*.idb + del vc6\libboost_regex-vc6-sgd-1_38\*.exp + del vc6\libboost_regex-vc6-sgd-1_38\*.pch -./vc6/libboost_regex-vc6-sgd-1_37.lib : vc6/libboost_regex-vc6-sgd-1_37/c_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_37/cpp_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_37/cregex.obj vc6/libboost_regex-vc6-sgd-1_37/fileiter.obj vc6/libboost_regex-vc6-sgd-1_37/icu.obj vc6/libboost_regex-vc6-sgd-1_37/instances.obj vc6/libboost_regex-vc6-sgd-1_37/posix_api.obj vc6/libboost_regex-vc6-sgd-1_37/regex.obj vc6/libboost_regex-vc6-sgd-1_37/regex_debug.obj vc6/libboost_regex-vc6-sgd-1_37/regex_raw_buffer.obj vc6/libboost_regex-vc6-sgd-1_37/regex_traits_defaults.obj vc6/libboost_regex-vc6-sgd-1_37/static_mutex.obj vc6/libboost_regex-vc6-sgd-1_37/usinstances.obj vc6/libboost_regex-vc6-sgd-1_37/w32_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_37/wc_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_37/wide_posix_api.obj vc6/libboost_regex-vc6-sgd-1_37/winstances.obj - link -lib /nologo /out:vc6/libboost_regex-vc6-sgd-1_37.lib $(XSFLAGS) vc6/libboost_regex-vc6-sgd-1_37/c_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_37/cpp_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_37/cregex.obj vc6/libboost_regex-vc6-sgd-1_37/fileiter.obj vc6/libboost_regex-vc6-sgd-1_37/icu.obj vc6/libboost_regex-vc6-sgd-1_37/instances.obj vc6/libboost_regex-vc6-sgd-1_37/posix_api.obj vc6/libboost_regex-vc6-sgd-1_37/regex.obj vc6/libboost_regex-vc6-sgd-1_37/regex_debug.obj vc6/libboost_regex-vc6-sgd-1_37/regex_raw_buffer.obj vc6/libboost_regex-vc6-sgd-1_37/regex_traits_defaults.obj vc6/libboost_regex-vc6-sgd-1_37/static_mutex.obj vc6/libboost_regex-vc6-sgd-1_37/usinstances.obj vc6/libboost_regex-vc6-sgd-1_37/w32_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_37/wc_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_37/wide_posix_api.obj vc6/libboost_regex-vc6-sgd-1_37/winstances.obj +./vc6/libboost_regex-vc6-sgd-1_38.lib : vc6/libboost_regex-vc6-sgd-1_38/c_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_38/cpp_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_38/cregex.obj vc6/libboost_regex-vc6-sgd-1_38/fileiter.obj vc6/libboost_regex-vc6-sgd-1_38/icu.obj vc6/libboost_regex-vc6-sgd-1_38/instances.obj vc6/libboost_regex-vc6-sgd-1_38/posix_api.obj vc6/libboost_regex-vc6-sgd-1_38/regex.obj vc6/libboost_regex-vc6-sgd-1_38/regex_debug.obj vc6/libboost_regex-vc6-sgd-1_38/regex_raw_buffer.obj vc6/libboost_regex-vc6-sgd-1_38/regex_traits_defaults.obj vc6/libboost_regex-vc6-sgd-1_38/static_mutex.obj vc6/libboost_regex-vc6-sgd-1_38/usinstances.obj vc6/libboost_regex-vc6-sgd-1_38/w32_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_38/wc_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_38/wide_posix_api.obj vc6/libboost_regex-vc6-sgd-1_38/winstances.obj + link -lib /nologo /out:vc6/libboost_regex-vc6-sgd-1_38.lib $(XSFLAGS) vc6/libboost_regex-vc6-sgd-1_38/c_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_38/cpp_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_38/cregex.obj vc6/libboost_regex-vc6-sgd-1_38/fileiter.obj vc6/libboost_regex-vc6-sgd-1_38/icu.obj vc6/libboost_regex-vc6-sgd-1_38/instances.obj vc6/libboost_regex-vc6-sgd-1_38/posix_api.obj vc6/libboost_regex-vc6-sgd-1_38/regex.obj vc6/libboost_regex-vc6-sgd-1_38/regex_debug.obj vc6/libboost_regex-vc6-sgd-1_38/regex_raw_buffer.obj vc6/libboost_regex-vc6-sgd-1_38/regex_traits_defaults.obj vc6/libboost_regex-vc6-sgd-1_38/static_mutex.obj vc6/libboost_regex-vc6-sgd-1_38/usinstances.obj vc6/libboost_regex-vc6-sgd-1_38/w32_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_38/wc_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_38/wide_posix_api.obj vc6/libboost_regex-vc6-sgd-1_38/winstances.obj ######################################################## # -# section for libboost_regex-vc6-mt-sgd-1_37.lib +# section for libboost_regex-vc6-mt-sgd-1_38.lib # ######################################################## -vc6/libboost_regex-vc6-mt-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_37.pdb ../src/c_regex_traits.cpp +vc6/libboost_regex-vc6-mt-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_38.pdb ../src/c_regex_traits.cpp -vc6/libboost_regex-vc6-mt-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_37.pdb ../src/cpp_regex_traits.cpp +vc6/libboost_regex-vc6-mt-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_38.pdb ../src/cpp_regex_traits.cpp -vc6/libboost_regex-vc6-mt-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_37.pdb ../src/cregex.cpp +vc6/libboost_regex-vc6-mt-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_38.pdb ../src/cregex.cpp -vc6/libboost_regex-vc6-mt-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_37.pdb ../src/fileiter.cpp +vc6/libboost_regex-vc6-mt-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_38.pdb ../src/fileiter.cpp -vc6/libboost_regex-vc6-mt-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_37.pdb ../src/icu.cpp +vc6/libboost_regex-vc6-mt-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_38.pdb ../src/icu.cpp -vc6/libboost_regex-vc6-mt-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_37.pdb ../src/instances.cpp +vc6/libboost_regex-vc6-mt-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_38.pdb ../src/instances.cpp -vc6/libboost_regex-vc6-mt-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_37.pdb ../src/posix_api.cpp +vc6/libboost_regex-vc6-mt-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_38.pdb ../src/posix_api.cpp -vc6/libboost_regex-vc6-mt-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_37.pdb ../src/regex.cpp +vc6/libboost_regex-vc6-mt-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_38.pdb ../src/regex.cpp -vc6/libboost_regex-vc6-mt-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_37.pdb ../src/regex_debug.cpp +vc6/libboost_regex-vc6-mt-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_38.pdb ../src/regex_debug.cpp -vc6/libboost_regex-vc6-mt-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_37.pdb ../src/regex_raw_buffer.cpp +vc6/libboost_regex-vc6-mt-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_38.pdb ../src/regex_raw_buffer.cpp -vc6/libboost_regex-vc6-mt-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_37.pdb ../src/regex_traits_defaults.cpp +vc6/libboost_regex-vc6-mt-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_38.pdb ../src/regex_traits_defaults.cpp -vc6/libboost_regex-vc6-mt-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_37.pdb ../src/static_mutex.cpp +vc6/libboost_regex-vc6-mt-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_38.pdb ../src/static_mutex.cpp -vc6/libboost_regex-vc6-mt-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_37.pdb ../src/usinstances.cpp +vc6/libboost_regex-vc6-mt-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_38.pdb ../src/usinstances.cpp -vc6/libboost_regex-vc6-mt-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_37.pdb ../src/w32_regex_traits.cpp +vc6/libboost_regex-vc6-mt-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_38.pdb ../src/w32_regex_traits.cpp -vc6/libboost_regex-vc6-mt-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_37.pdb ../src/wc_regex_traits.cpp +vc6/libboost_regex-vc6-mt-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_38.pdb ../src/wc_regex_traits.cpp -vc6/libboost_regex-vc6-mt-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_37.pdb ../src/wide_posix_api.cpp +vc6/libboost_regex-vc6-mt-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_38.pdb ../src/wide_posix_api.cpp -vc6/libboost_regex-vc6-mt-sgd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_37.pdb ../src/winstances.cpp +vc6/libboost_regex-vc6-mt-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_38.pdb ../src/winstances.cpp -libboost_regex-vc6-mt-sgd-1_37_dir : - @if not exist "vc6\libboost_regex-vc6-mt-sgd-1_37\$(NULL)" mkdir vc6\libboost_regex-vc6-mt-sgd-1_37 +libboost_regex-vc6-mt-sgd-1_38_dir : + @if not exist "vc6\libboost_regex-vc6-mt-sgd-1_38\$(NULL)" mkdir vc6\libboost_regex-vc6-mt-sgd-1_38 -libboost_regex-vc6-mt-sgd-1_37_clean : - del vc6\libboost_regex-vc6-mt-sgd-1_37\*.obj - del vc6\libboost_regex-vc6-mt-sgd-1_37\*.idb - del vc6\libboost_regex-vc6-mt-sgd-1_37\*.exp - del vc6\libboost_regex-vc6-mt-sgd-1_37\*.pch +libboost_regex-vc6-mt-sgd-1_38_clean : + del vc6\libboost_regex-vc6-mt-sgd-1_38\*.obj + del vc6\libboost_regex-vc6-mt-sgd-1_38\*.idb + del vc6\libboost_regex-vc6-mt-sgd-1_38\*.exp + del vc6\libboost_regex-vc6-mt-sgd-1_38\*.pch -./vc6/libboost_regex-vc6-mt-sgd-1_37.lib : vc6/libboost_regex-vc6-mt-sgd-1_37/c_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_37/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_37/cregex.obj vc6/libboost_regex-vc6-mt-sgd-1_37/fileiter.obj vc6/libboost_regex-vc6-mt-sgd-1_37/icu.obj vc6/libboost_regex-vc6-mt-sgd-1_37/instances.obj vc6/libboost_regex-vc6-mt-sgd-1_37/posix_api.obj vc6/libboost_regex-vc6-mt-sgd-1_37/regex.obj vc6/libboost_regex-vc6-mt-sgd-1_37/regex_debug.obj vc6/libboost_regex-vc6-mt-sgd-1_37/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-sgd-1_37/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-sgd-1_37/static_mutex.obj vc6/libboost_regex-vc6-mt-sgd-1_37/usinstances.obj vc6/libboost_regex-vc6-mt-sgd-1_37/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_37/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_37/wide_posix_api.obj vc6/libboost_regex-vc6-mt-sgd-1_37/winstances.obj - link -lib /nologo /out:vc6/libboost_regex-vc6-mt-sgd-1_37.lib $(XSFLAGS) vc6/libboost_regex-vc6-mt-sgd-1_37/c_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_37/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_37/cregex.obj vc6/libboost_regex-vc6-mt-sgd-1_37/fileiter.obj vc6/libboost_regex-vc6-mt-sgd-1_37/icu.obj vc6/libboost_regex-vc6-mt-sgd-1_37/instances.obj vc6/libboost_regex-vc6-mt-sgd-1_37/posix_api.obj vc6/libboost_regex-vc6-mt-sgd-1_37/regex.obj vc6/libboost_regex-vc6-mt-sgd-1_37/regex_debug.obj vc6/libboost_regex-vc6-mt-sgd-1_37/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-sgd-1_37/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-sgd-1_37/static_mutex.obj vc6/libboost_regex-vc6-mt-sgd-1_37/usinstances.obj vc6/libboost_regex-vc6-mt-sgd-1_37/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_37/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_37/wide_posix_api.obj vc6/libboost_regex-vc6-mt-sgd-1_37/winstances.obj +./vc6/libboost_regex-vc6-mt-sgd-1_38.lib : vc6/libboost_regex-vc6-mt-sgd-1_38/c_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_38/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_38/cregex.obj vc6/libboost_regex-vc6-mt-sgd-1_38/fileiter.obj vc6/libboost_regex-vc6-mt-sgd-1_38/icu.obj vc6/libboost_regex-vc6-mt-sgd-1_38/instances.obj vc6/libboost_regex-vc6-mt-sgd-1_38/posix_api.obj vc6/libboost_regex-vc6-mt-sgd-1_38/regex.obj vc6/libboost_regex-vc6-mt-sgd-1_38/regex_debug.obj vc6/libboost_regex-vc6-mt-sgd-1_38/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-sgd-1_38/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-sgd-1_38/static_mutex.obj vc6/libboost_regex-vc6-mt-sgd-1_38/usinstances.obj vc6/libboost_regex-vc6-mt-sgd-1_38/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_38/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_38/wide_posix_api.obj vc6/libboost_regex-vc6-mt-sgd-1_38/winstances.obj + link -lib /nologo /out:vc6/libboost_regex-vc6-mt-sgd-1_38.lib $(XSFLAGS) vc6/libboost_regex-vc6-mt-sgd-1_38/c_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_38/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_38/cregex.obj vc6/libboost_regex-vc6-mt-sgd-1_38/fileiter.obj vc6/libboost_regex-vc6-mt-sgd-1_38/icu.obj vc6/libboost_regex-vc6-mt-sgd-1_38/instances.obj vc6/libboost_regex-vc6-mt-sgd-1_38/posix_api.obj vc6/libboost_regex-vc6-mt-sgd-1_38/regex.obj vc6/libboost_regex-vc6-mt-sgd-1_38/regex_debug.obj vc6/libboost_regex-vc6-mt-sgd-1_38/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-sgd-1_38/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-sgd-1_38/static_mutex.obj vc6/libboost_regex-vc6-mt-sgd-1_38/usinstances.obj vc6/libboost_regex-vc6-mt-sgd-1_38/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_38/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_38/wide_posix_api.obj vc6/libboost_regex-vc6-mt-sgd-1_38/winstances.obj ######################################################## # -# section for boost_regex-vc6-mt-gd-1_37.lib +# section for boost_regex-vc6-mt-gd-1_38.lib # ######################################################## -vc6/boost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-gd-1_37.pdb ../src/c_regex_traits.cpp +vc6/boost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-gd-1_38.pdb ../src/c_regex_traits.cpp -vc6/boost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-gd-1_37.pdb ../src/cpp_regex_traits.cpp +vc6/boost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-gd-1_38.pdb ../src/cpp_regex_traits.cpp -vc6/boost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-gd-1_37.pdb ../src/cregex.cpp +vc6/boost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-gd-1_38.pdb ../src/cregex.cpp -vc6/boost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-gd-1_37.pdb ../src/fileiter.cpp +vc6/boost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-gd-1_38.pdb ../src/fileiter.cpp -vc6/boost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-gd-1_37.pdb ../src/icu.cpp +vc6/boost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-gd-1_38.pdb ../src/icu.cpp -vc6/boost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-gd-1_37.pdb ../src/instances.cpp +vc6/boost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-gd-1_38.pdb ../src/instances.cpp -vc6/boost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-gd-1_37.pdb ../src/posix_api.cpp +vc6/boost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-gd-1_38.pdb ../src/posix_api.cpp -vc6/boost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-gd-1_37.pdb ../src/regex.cpp +vc6/boost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-gd-1_38.pdb ../src/regex.cpp -vc6/boost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-gd-1_37.pdb ../src/regex_debug.cpp +vc6/boost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-gd-1_38.pdb ../src/regex_debug.cpp -vc6/boost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-gd-1_37.pdb ../src/regex_raw_buffer.cpp +vc6/boost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-gd-1_38.pdb ../src/regex_raw_buffer.cpp -vc6/boost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-gd-1_37.pdb ../src/regex_traits_defaults.cpp +vc6/boost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-gd-1_38.pdb ../src/regex_traits_defaults.cpp -vc6/boost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-gd-1_37.pdb ../src/static_mutex.cpp +vc6/boost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-gd-1_38.pdb ../src/static_mutex.cpp -vc6/boost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-gd-1_37.pdb ../src/usinstances.cpp +vc6/boost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-gd-1_38.pdb ../src/usinstances.cpp -vc6/boost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-gd-1_37.pdb ../src/w32_regex_traits.cpp +vc6/boost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-gd-1_38.pdb ../src/w32_regex_traits.cpp -vc6/boost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-gd-1_37.pdb ../src/wc_regex_traits.cpp +vc6/boost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-gd-1_38.pdb ../src/wc_regex_traits.cpp -vc6/boost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-gd-1_37.pdb ../src/wide_posix_api.cpp +vc6/boost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-gd-1_38.pdb ../src/wide_posix_api.cpp -vc6/boost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-gd-1_37.pdb ../src/winstances.cpp +vc6/boost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-gd-1_38.pdb ../src/winstances.cpp -boost_regex-vc6-mt-gd-1_37_dir : - @if not exist "vc6\boost_regex-vc6-mt-gd-1_37\$(NULL)" mkdir vc6\boost_regex-vc6-mt-gd-1_37 +boost_regex-vc6-mt-gd-1_38_dir : + @if not exist "vc6\boost_regex-vc6-mt-gd-1_38\$(NULL)" mkdir vc6\boost_regex-vc6-mt-gd-1_38 -boost_regex-vc6-mt-gd-1_37_clean : - del vc6\boost_regex-vc6-mt-gd-1_37\*.obj - del vc6\boost_regex-vc6-mt-gd-1_37\*.idb - del vc6\boost_regex-vc6-mt-gd-1_37\*.exp - del vc6\boost_regex-vc6-mt-gd-1_37\*.pch +boost_regex-vc6-mt-gd-1_38_clean : + del vc6\boost_regex-vc6-mt-gd-1_38\*.obj + del vc6\boost_regex-vc6-mt-gd-1_38\*.idb + del vc6\boost_regex-vc6-mt-gd-1_38\*.exp + del vc6\boost_regex-vc6-mt-gd-1_38\*.pch -./vc6/boost_regex-vc6-mt-gd-1_37.lib : vc6/boost_regex-vc6-mt-gd-1_37/c_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_37/cpp_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_37/cregex.obj vc6/boost_regex-vc6-mt-gd-1_37/fileiter.obj vc6/boost_regex-vc6-mt-gd-1_37/icu.obj vc6/boost_regex-vc6-mt-gd-1_37/instances.obj vc6/boost_regex-vc6-mt-gd-1_37/posix_api.obj vc6/boost_regex-vc6-mt-gd-1_37/regex.obj vc6/boost_regex-vc6-mt-gd-1_37/regex_debug.obj vc6/boost_regex-vc6-mt-gd-1_37/regex_raw_buffer.obj vc6/boost_regex-vc6-mt-gd-1_37/regex_traits_defaults.obj vc6/boost_regex-vc6-mt-gd-1_37/static_mutex.obj vc6/boost_regex-vc6-mt-gd-1_37/usinstances.obj vc6/boost_regex-vc6-mt-gd-1_37/w32_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_37/wc_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_37/wide_posix_api.obj vc6/boost_regex-vc6-mt-gd-1_37/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_37.pdb" /debug /machine:I386 /out:"vc6/boost_regex-vc6-mt-gd-1_37.dll" /implib:"vc6/boost_regex-vc6-mt-gd-1_37.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc6/boost_regex-vc6-mt-gd-1_37/c_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_37/cpp_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_37/cregex.obj vc6/boost_regex-vc6-mt-gd-1_37/fileiter.obj vc6/boost_regex-vc6-mt-gd-1_37/icu.obj vc6/boost_regex-vc6-mt-gd-1_37/instances.obj vc6/boost_regex-vc6-mt-gd-1_37/posix_api.obj vc6/boost_regex-vc6-mt-gd-1_37/regex.obj vc6/boost_regex-vc6-mt-gd-1_37/regex_debug.obj vc6/boost_regex-vc6-mt-gd-1_37/regex_raw_buffer.obj vc6/boost_regex-vc6-mt-gd-1_37/regex_traits_defaults.obj vc6/boost_regex-vc6-mt-gd-1_37/static_mutex.obj vc6/boost_regex-vc6-mt-gd-1_37/usinstances.obj vc6/boost_regex-vc6-mt-gd-1_37/w32_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_37/wc_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_37/wide_posix_api.obj vc6/boost_regex-vc6-mt-gd-1_37/winstances.obj +./vc6/boost_regex-vc6-mt-gd-1_38.lib : vc6/boost_regex-vc6-mt-gd-1_38/c_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_38/cpp_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_38/cregex.obj vc6/boost_regex-vc6-mt-gd-1_38/fileiter.obj vc6/boost_regex-vc6-mt-gd-1_38/icu.obj vc6/boost_regex-vc6-mt-gd-1_38/instances.obj vc6/boost_regex-vc6-mt-gd-1_38/posix_api.obj vc6/boost_regex-vc6-mt-gd-1_38/regex.obj vc6/boost_regex-vc6-mt-gd-1_38/regex_debug.obj vc6/boost_regex-vc6-mt-gd-1_38/regex_raw_buffer.obj vc6/boost_regex-vc6-mt-gd-1_38/regex_traits_defaults.obj vc6/boost_regex-vc6-mt-gd-1_38/static_mutex.obj vc6/boost_regex-vc6-mt-gd-1_38/usinstances.obj vc6/boost_regex-vc6-mt-gd-1_38/w32_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_38/wc_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_38/wide_posix_api.obj vc6/boost_regex-vc6-mt-gd-1_38/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_38.pdb" /debug /machine:I386 /out:"vc6/boost_regex-vc6-mt-gd-1_38.dll" /implib:"vc6/boost_regex-vc6-mt-gd-1_38.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc6/boost_regex-vc6-mt-gd-1_38/c_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_38/cpp_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_38/cregex.obj vc6/boost_regex-vc6-mt-gd-1_38/fileiter.obj vc6/boost_regex-vc6-mt-gd-1_38/icu.obj vc6/boost_regex-vc6-mt-gd-1_38/instances.obj vc6/boost_regex-vc6-mt-gd-1_38/posix_api.obj vc6/boost_regex-vc6-mt-gd-1_38/regex.obj vc6/boost_regex-vc6-mt-gd-1_38/regex_debug.obj vc6/boost_regex-vc6-mt-gd-1_38/regex_raw_buffer.obj vc6/boost_regex-vc6-mt-gd-1_38/regex_traits_defaults.obj vc6/boost_regex-vc6-mt-gd-1_38/static_mutex.obj vc6/boost_regex-vc6-mt-gd-1_38/usinstances.obj vc6/boost_regex-vc6-mt-gd-1_38/w32_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_38/wc_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_38/wide_posix_api.obj vc6/boost_regex-vc6-mt-gd-1_38/winstances.obj ######################################################## # -# section for boost_regex-vc6-mt-1_37.lib +# section for boost_regex-vc6-mt-1_38.lib # ######################################################## -vc6/boost_regex-vc6-mt-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-1_37.pdb ../src/c_regex_traits.cpp +vc6/boost_regex-vc6-mt-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-1_38.pdb ../src/c_regex_traits.cpp -vc6/boost_regex-vc6-mt-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-1_37.pdb ../src/cpp_regex_traits.cpp +vc6/boost_regex-vc6-mt-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-1_38.pdb ../src/cpp_regex_traits.cpp -vc6/boost_regex-vc6-mt-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-1_37.pdb ../src/cregex.cpp +vc6/boost_regex-vc6-mt-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-1_38.pdb ../src/cregex.cpp -vc6/boost_regex-vc6-mt-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-1_37.pdb ../src/fileiter.cpp +vc6/boost_regex-vc6-mt-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-1_38.pdb ../src/fileiter.cpp -vc6/boost_regex-vc6-mt-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-1_37.pdb ../src/icu.cpp +vc6/boost_regex-vc6-mt-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-1_38.pdb ../src/icu.cpp -vc6/boost_regex-vc6-mt-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-1_37.pdb ../src/instances.cpp +vc6/boost_regex-vc6-mt-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-1_38.pdb ../src/instances.cpp -vc6/boost_regex-vc6-mt-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-1_37.pdb ../src/posix_api.cpp +vc6/boost_regex-vc6-mt-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-1_38.pdb ../src/posix_api.cpp -vc6/boost_regex-vc6-mt-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-1_37.pdb ../src/regex.cpp +vc6/boost_regex-vc6-mt-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-1_38.pdb ../src/regex.cpp -vc6/boost_regex-vc6-mt-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-1_37.pdb ../src/regex_debug.cpp +vc6/boost_regex-vc6-mt-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-1_38.pdb ../src/regex_debug.cpp -vc6/boost_regex-vc6-mt-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-1_37.pdb ../src/regex_raw_buffer.cpp +vc6/boost_regex-vc6-mt-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-1_38.pdb ../src/regex_raw_buffer.cpp -vc6/boost_regex-vc6-mt-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-1_37.pdb ../src/regex_traits_defaults.cpp +vc6/boost_regex-vc6-mt-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-1_38.pdb ../src/regex_traits_defaults.cpp -vc6/boost_regex-vc6-mt-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-1_37.pdb ../src/static_mutex.cpp +vc6/boost_regex-vc6-mt-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-1_38.pdb ../src/static_mutex.cpp -vc6/boost_regex-vc6-mt-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-1_37.pdb ../src/usinstances.cpp +vc6/boost_regex-vc6-mt-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-1_38.pdb ../src/usinstances.cpp -vc6/boost_regex-vc6-mt-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-1_37.pdb ../src/w32_regex_traits.cpp +vc6/boost_regex-vc6-mt-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-1_38.pdb ../src/w32_regex_traits.cpp -vc6/boost_regex-vc6-mt-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-1_37.pdb ../src/wc_regex_traits.cpp +vc6/boost_regex-vc6-mt-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-1_38.pdb ../src/wc_regex_traits.cpp -vc6/boost_regex-vc6-mt-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-1_37.pdb ../src/wide_posix_api.cpp +vc6/boost_regex-vc6-mt-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-1_38.pdb ../src/wide_posix_api.cpp -vc6/boost_regex-vc6-mt-1_37/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_37/ -Fdvc6/boost_regex-vc6-mt-1_37.pdb ../src/winstances.cpp +vc6/boost_regex-vc6-mt-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-1_38.pdb ../src/winstances.cpp -boost_regex-vc6-mt-1_37_dir : - @if not exist "vc6\boost_regex-vc6-mt-1_37\$(NULL)" mkdir vc6\boost_regex-vc6-mt-1_37 +boost_regex-vc6-mt-1_38_dir : + @if not exist "vc6\boost_regex-vc6-mt-1_38\$(NULL)" mkdir vc6\boost_regex-vc6-mt-1_38 -boost_regex-vc6-mt-1_37_clean : - del vc6\boost_regex-vc6-mt-1_37\*.obj - del vc6\boost_regex-vc6-mt-1_37\*.idb - del vc6\boost_regex-vc6-mt-1_37\*.exp - del vc6\boost_regex-vc6-mt-1_37\*.pch +boost_regex-vc6-mt-1_38_clean : + del vc6\boost_regex-vc6-mt-1_38\*.obj + del vc6\boost_regex-vc6-mt-1_38\*.idb + del vc6\boost_regex-vc6-mt-1_38\*.exp + del vc6\boost_regex-vc6-mt-1_38\*.pch -./vc6/boost_regex-vc6-mt-1_37.lib : vc6/boost_regex-vc6-mt-1_37/c_regex_traits.obj vc6/boost_regex-vc6-mt-1_37/cpp_regex_traits.obj vc6/boost_regex-vc6-mt-1_37/cregex.obj vc6/boost_regex-vc6-mt-1_37/fileiter.obj vc6/boost_regex-vc6-mt-1_37/icu.obj vc6/boost_regex-vc6-mt-1_37/instances.obj vc6/boost_regex-vc6-mt-1_37/posix_api.obj vc6/boost_regex-vc6-mt-1_37/regex.obj vc6/boost_regex-vc6-mt-1_37/regex_debug.obj vc6/boost_regex-vc6-mt-1_37/regex_raw_buffer.obj vc6/boost_regex-vc6-mt-1_37/regex_traits_defaults.obj vc6/boost_regex-vc6-mt-1_37/static_mutex.obj vc6/boost_regex-vc6-mt-1_37/usinstances.obj vc6/boost_regex-vc6-mt-1_37/w32_regex_traits.obj vc6/boost_regex-vc6-mt-1_37/wc_regex_traits.obj vc6/boost_regex-vc6-mt-1_37/wide_posix_api.obj vc6/boost_regex-vc6-mt-1_37/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_37.pdb" /debug /machine:I386 /out:"vc6/boost_regex-vc6-mt-1_37.dll" /implib:"vc6/boost_regex-vc6-mt-1_37.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc6/boost_regex-vc6-mt-1_37/c_regex_traits.obj vc6/boost_regex-vc6-mt-1_37/cpp_regex_traits.obj vc6/boost_regex-vc6-mt-1_37/cregex.obj vc6/boost_regex-vc6-mt-1_37/fileiter.obj vc6/boost_regex-vc6-mt-1_37/icu.obj vc6/boost_regex-vc6-mt-1_37/instances.obj vc6/boost_regex-vc6-mt-1_37/posix_api.obj vc6/boost_regex-vc6-mt-1_37/regex.obj vc6/boost_regex-vc6-mt-1_37/regex_debug.obj vc6/boost_regex-vc6-mt-1_37/regex_raw_buffer.obj vc6/boost_regex-vc6-mt-1_37/regex_traits_defaults.obj vc6/boost_regex-vc6-mt-1_37/static_mutex.obj vc6/boost_regex-vc6-mt-1_37/usinstances.obj vc6/boost_regex-vc6-mt-1_37/w32_regex_traits.obj vc6/boost_regex-vc6-mt-1_37/wc_regex_traits.obj vc6/boost_regex-vc6-mt-1_37/wide_posix_api.obj vc6/boost_regex-vc6-mt-1_37/winstances.obj +./vc6/boost_regex-vc6-mt-1_38.lib : vc6/boost_regex-vc6-mt-1_38/c_regex_traits.obj vc6/boost_regex-vc6-mt-1_38/cpp_regex_traits.obj vc6/boost_regex-vc6-mt-1_38/cregex.obj vc6/boost_regex-vc6-mt-1_38/fileiter.obj vc6/boost_regex-vc6-mt-1_38/icu.obj vc6/boost_regex-vc6-mt-1_38/instances.obj vc6/boost_regex-vc6-mt-1_38/posix_api.obj vc6/boost_regex-vc6-mt-1_38/regex.obj vc6/boost_regex-vc6-mt-1_38/regex_debug.obj vc6/boost_regex-vc6-mt-1_38/regex_raw_buffer.obj vc6/boost_regex-vc6-mt-1_38/regex_traits_defaults.obj vc6/boost_regex-vc6-mt-1_38/static_mutex.obj vc6/boost_regex-vc6-mt-1_38/usinstances.obj vc6/boost_regex-vc6-mt-1_38/w32_regex_traits.obj vc6/boost_regex-vc6-mt-1_38/wc_regex_traits.obj vc6/boost_regex-vc6-mt-1_38/wide_posix_api.obj vc6/boost_regex-vc6-mt-1_38/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_38.pdb" /debug /machine:I386 /out:"vc6/boost_regex-vc6-mt-1_38.dll" /implib:"vc6/boost_regex-vc6-mt-1_38.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc6/boost_regex-vc6-mt-1_38/c_regex_traits.obj vc6/boost_regex-vc6-mt-1_38/cpp_regex_traits.obj vc6/boost_regex-vc6-mt-1_38/cregex.obj vc6/boost_regex-vc6-mt-1_38/fileiter.obj vc6/boost_regex-vc6-mt-1_38/icu.obj vc6/boost_regex-vc6-mt-1_38/instances.obj vc6/boost_regex-vc6-mt-1_38/posix_api.obj vc6/boost_regex-vc6-mt-1_38/regex.obj vc6/boost_regex-vc6-mt-1_38/regex_debug.obj vc6/boost_regex-vc6-mt-1_38/regex_raw_buffer.obj vc6/boost_regex-vc6-mt-1_38/regex_traits_defaults.obj vc6/boost_regex-vc6-mt-1_38/static_mutex.obj vc6/boost_regex-vc6-mt-1_38/usinstances.obj vc6/boost_regex-vc6-mt-1_38/w32_regex_traits.obj vc6/boost_regex-vc6-mt-1_38/wc_regex_traits.obj vc6/boost_regex-vc6-mt-1_38/wide_posix_api.obj vc6/boost_regex-vc6-mt-1_38/winstances.obj ######################################################## # -# section for libboost_regex-vc6-mt-1_37.lib +# section for libboost_regex-vc6-mt-1_38.lib # ######################################################## -vc6/libboost_regex-vc6-mt-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-1_37.pdb ../src/c_regex_traits.cpp +vc6/libboost_regex-vc6-mt-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-1_38.pdb ../src/c_regex_traits.cpp -vc6/libboost_regex-vc6-mt-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-1_37.pdb ../src/cpp_regex_traits.cpp +vc6/libboost_regex-vc6-mt-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-1_38.pdb ../src/cpp_regex_traits.cpp -vc6/libboost_regex-vc6-mt-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-1_37.pdb ../src/cregex.cpp +vc6/libboost_regex-vc6-mt-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-1_38.pdb ../src/cregex.cpp -vc6/libboost_regex-vc6-mt-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-1_37.pdb ../src/fileiter.cpp +vc6/libboost_regex-vc6-mt-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-1_38.pdb ../src/fileiter.cpp -vc6/libboost_regex-vc6-mt-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-1_37.pdb ../src/icu.cpp +vc6/libboost_regex-vc6-mt-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-1_38.pdb ../src/icu.cpp -vc6/libboost_regex-vc6-mt-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-1_37.pdb ../src/instances.cpp +vc6/libboost_regex-vc6-mt-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-1_38.pdb ../src/instances.cpp -vc6/libboost_regex-vc6-mt-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-1_37.pdb ../src/posix_api.cpp +vc6/libboost_regex-vc6-mt-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-1_38.pdb ../src/posix_api.cpp -vc6/libboost_regex-vc6-mt-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-1_37.pdb ../src/regex.cpp +vc6/libboost_regex-vc6-mt-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-1_38.pdb ../src/regex.cpp -vc6/libboost_regex-vc6-mt-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-1_37.pdb ../src/regex_debug.cpp +vc6/libboost_regex-vc6-mt-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-1_38.pdb ../src/regex_debug.cpp -vc6/libboost_regex-vc6-mt-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-1_37.pdb ../src/regex_raw_buffer.cpp +vc6/libboost_regex-vc6-mt-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-1_38.pdb ../src/regex_raw_buffer.cpp -vc6/libboost_regex-vc6-mt-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-1_37.pdb ../src/regex_traits_defaults.cpp +vc6/libboost_regex-vc6-mt-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-1_38.pdb ../src/regex_traits_defaults.cpp -vc6/libboost_regex-vc6-mt-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-1_37.pdb ../src/static_mutex.cpp +vc6/libboost_regex-vc6-mt-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-1_38.pdb ../src/static_mutex.cpp -vc6/libboost_regex-vc6-mt-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-1_37.pdb ../src/usinstances.cpp +vc6/libboost_regex-vc6-mt-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-1_38.pdb ../src/usinstances.cpp -vc6/libboost_regex-vc6-mt-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-1_37.pdb ../src/w32_regex_traits.cpp +vc6/libboost_regex-vc6-mt-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-1_38.pdb ../src/w32_regex_traits.cpp -vc6/libboost_regex-vc6-mt-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-1_37.pdb ../src/wc_regex_traits.cpp +vc6/libboost_regex-vc6-mt-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-1_38.pdb ../src/wc_regex_traits.cpp -vc6/libboost_regex-vc6-mt-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-1_37.pdb ../src/wide_posix_api.cpp +vc6/libboost_regex-vc6-mt-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-1_38.pdb ../src/wide_posix_api.cpp -vc6/libboost_regex-vc6-mt-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-1_37.pdb ../src/winstances.cpp +vc6/libboost_regex-vc6-mt-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-1_38.pdb ../src/winstances.cpp -libboost_regex-vc6-mt-1_37_dir : - @if not exist "vc6\libboost_regex-vc6-mt-1_37\$(NULL)" mkdir vc6\libboost_regex-vc6-mt-1_37 +libboost_regex-vc6-mt-1_38_dir : + @if not exist "vc6\libboost_regex-vc6-mt-1_38\$(NULL)" mkdir vc6\libboost_regex-vc6-mt-1_38 -libboost_regex-vc6-mt-1_37_clean : - del vc6\libboost_regex-vc6-mt-1_37\*.obj - del vc6\libboost_regex-vc6-mt-1_37\*.idb - del vc6\libboost_regex-vc6-mt-1_37\*.exp - del vc6\libboost_regex-vc6-mt-1_37\*.pch +libboost_regex-vc6-mt-1_38_clean : + del vc6\libboost_regex-vc6-mt-1_38\*.obj + del vc6\libboost_regex-vc6-mt-1_38\*.idb + del vc6\libboost_regex-vc6-mt-1_38\*.exp + del vc6\libboost_regex-vc6-mt-1_38\*.pch -./vc6/libboost_regex-vc6-mt-1_37.lib : vc6/libboost_regex-vc6-mt-1_37/c_regex_traits.obj vc6/libboost_regex-vc6-mt-1_37/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-1_37/cregex.obj vc6/libboost_regex-vc6-mt-1_37/fileiter.obj vc6/libboost_regex-vc6-mt-1_37/icu.obj vc6/libboost_regex-vc6-mt-1_37/instances.obj vc6/libboost_regex-vc6-mt-1_37/posix_api.obj vc6/libboost_regex-vc6-mt-1_37/regex.obj vc6/libboost_regex-vc6-mt-1_37/regex_debug.obj vc6/libboost_regex-vc6-mt-1_37/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-1_37/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-1_37/static_mutex.obj vc6/libboost_regex-vc6-mt-1_37/usinstances.obj vc6/libboost_regex-vc6-mt-1_37/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-1_37/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-1_37/wide_posix_api.obj vc6/libboost_regex-vc6-mt-1_37/winstances.obj - link -lib /nologo /out:vc6/libboost_regex-vc6-mt-1_37.lib $(XSFLAGS) vc6/libboost_regex-vc6-mt-1_37/c_regex_traits.obj vc6/libboost_regex-vc6-mt-1_37/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-1_37/cregex.obj vc6/libboost_regex-vc6-mt-1_37/fileiter.obj vc6/libboost_regex-vc6-mt-1_37/icu.obj vc6/libboost_regex-vc6-mt-1_37/instances.obj vc6/libboost_regex-vc6-mt-1_37/posix_api.obj vc6/libboost_regex-vc6-mt-1_37/regex.obj vc6/libboost_regex-vc6-mt-1_37/regex_debug.obj vc6/libboost_regex-vc6-mt-1_37/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-1_37/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-1_37/static_mutex.obj vc6/libboost_regex-vc6-mt-1_37/usinstances.obj vc6/libboost_regex-vc6-mt-1_37/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-1_37/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-1_37/wide_posix_api.obj vc6/libboost_regex-vc6-mt-1_37/winstances.obj +./vc6/libboost_regex-vc6-mt-1_38.lib : vc6/libboost_regex-vc6-mt-1_38/c_regex_traits.obj vc6/libboost_regex-vc6-mt-1_38/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-1_38/cregex.obj vc6/libboost_regex-vc6-mt-1_38/fileiter.obj vc6/libboost_regex-vc6-mt-1_38/icu.obj vc6/libboost_regex-vc6-mt-1_38/instances.obj vc6/libboost_regex-vc6-mt-1_38/posix_api.obj vc6/libboost_regex-vc6-mt-1_38/regex.obj vc6/libboost_regex-vc6-mt-1_38/regex_debug.obj vc6/libboost_regex-vc6-mt-1_38/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-1_38/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-1_38/static_mutex.obj vc6/libboost_regex-vc6-mt-1_38/usinstances.obj vc6/libboost_regex-vc6-mt-1_38/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-1_38/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-1_38/wide_posix_api.obj vc6/libboost_regex-vc6-mt-1_38/winstances.obj + link -lib /nologo /out:vc6/libboost_regex-vc6-mt-1_38.lib $(XSFLAGS) vc6/libboost_regex-vc6-mt-1_38/c_regex_traits.obj vc6/libboost_regex-vc6-mt-1_38/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-1_38/cregex.obj vc6/libboost_regex-vc6-mt-1_38/fileiter.obj vc6/libboost_regex-vc6-mt-1_38/icu.obj vc6/libboost_regex-vc6-mt-1_38/instances.obj vc6/libboost_regex-vc6-mt-1_38/posix_api.obj vc6/libboost_regex-vc6-mt-1_38/regex.obj vc6/libboost_regex-vc6-mt-1_38/regex_debug.obj vc6/libboost_regex-vc6-mt-1_38/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-1_38/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-1_38/static_mutex.obj vc6/libboost_regex-vc6-mt-1_38/usinstances.obj vc6/libboost_regex-vc6-mt-1_38/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-1_38/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-1_38/wide_posix_api.obj vc6/libboost_regex-vc6-mt-1_38/winstances.obj ######################################################## # -# section for libboost_regex-vc6-mt-gd-1_37.lib +# section for libboost_regex-vc6-mt-gd-1_38.lib # ######################################################## -vc6/libboost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-gd-1_37.pdb ../src/c_regex_traits.cpp +vc6/libboost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-gd-1_38.pdb ../src/c_regex_traits.cpp -vc6/libboost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-gd-1_37.pdb ../src/cpp_regex_traits.cpp +vc6/libboost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-gd-1_38.pdb ../src/cpp_regex_traits.cpp -vc6/libboost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-gd-1_37.pdb ../src/cregex.cpp +vc6/libboost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-gd-1_38.pdb ../src/cregex.cpp -vc6/libboost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-gd-1_37.pdb ../src/fileiter.cpp +vc6/libboost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-gd-1_38.pdb ../src/fileiter.cpp -vc6/libboost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-gd-1_37.pdb ../src/icu.cpp +vc6/libboost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-gd-1_38.pdb ../src/icu.cpp -vc6/libboost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-gd-1_37.pdb ../src/instances.cpp +vc6/libboost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-gd-1_38.pdb ../src/instances.cpp -vc6/libboost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-gd-1_37.pdb ../src/posix_api.cpp +vc6/libboost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-gd-1_38.pdb ../src/posix_api.cpp -vc6/libboost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-gd-1_37.pdb ../src/regex.cpp +vc6/libboost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-gd-1_38.pdb ../src/regex.cpp -vc6/libboost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-gd-1_37.pdb ../src/regex_debug.cpp +vc6/libboost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-gd-1_38.pdb ../src/regex_debug.cpp -vc6/libboost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-gd-1_37.pdb ../src/regex_raw_buffer.cpp +vc6/libboost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-gd-1_38.pdb ../src/regex_raw_buffer.cpp -vc6/libboost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-gd-1_37.pdb ../src/regex_traits_defaults.cpp +vc6/libboost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-gd-1_38.pdb ../src/regex_traits_defaults.cpp -vc6/libboost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-gd-1_37.pdb ../src/static_mutex.cpp +vc6/libboost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-gd-1_38.pdb ../src/static_mutex.cpp -vc6/libboost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-gd-1_37.pdb ../src/usinstances.cpp +vc6/libboost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-gd-1_38.pdb ../src/usinstances.cpp -vc6/libboost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-gd-1_37.pdb ../src/w32_regex_traits.cpp +vc6/libboost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-gd-1_38.pdb ../src/w32_regex_traits.cpp -vc6/libboost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-gd-1_37.pdb ../src/wc_regex_traits.cpp +vc6/libboost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-gd-1_38.pdb ../src/wc_regex_traits.cpp -vc6/libboost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-gd-1_37.pdb ../src/wide_posix_api.cpp +vc6/libboost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-gd-1_38.pdb ../src/wide_posix_api.cpp -vc6/libboost_regex-vc6-mt-gd-1_37/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_37/ -Fdvc6/libboost_regex-vc6-mt-gd-1_37.pdb ../src/winstances.cpp +vc6/libboost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-gd-1_38.pdb ../src/winstances.cpp -libboost_regex-vc6-mt-gd-1_37_dir : - @if not exist "vc6\libboost_regex-vc6-mt-gd-1_37\$(NULL)" mkdir vc6\libboost_regex-vc6-mt-gd-1_37 +libboost_regex-vc6-mt-gd-1_38_dir : + @if not exist "vc6\libboost_regex-vc6-mt-gd-1_38\$(NULL)" mkdir vc6\libboost_regex-vc6-mt-gd-1_38 -libboost_regex-vc6-mt-gd-1_37_clean : - del vc6\libboost_regex-vc6-mt-gd-1_37\*.obj - del vc6\libboost_regex-vc6-mt-gd-1_37\*.idb - del vc6\libboost_regex-vc6-mt-gd-1_37\*.exp - del vc6\libboost_regex-vc6-mt-gd-1_37\*.pch +libboost_regex-vc6-mt-gd-1_38_clean : + del vc6\libboost_regex-vc6-mt-gd-1_38\*.obj + del vc6\libboost_regex-vc6-mt-gd-1_38\*.idb + del vc6\libboost_regex-vc6-mt-gd-1_38\*.exp + del vc6\libboost_regex-vc6-mt-gd-1_38\*.pch -./vc6/libboost_regex-vc6-mt-gd-1_37.lib : vc6/libboost_regex-vc6-mt-gd-1_37/c_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_37/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_37/cregex.obj vc6/libboost_regex-vc6-mt-gd-1_37/fileiter.obj vc6/libboost_regex-vc6-mt-gd-1_37/icu.obj vc6/libboost_regex-vc6-mt-gd-1_37/instances.obj vc6/libboost_regex-vc6-mt-gd-1_37/posix_api.obj vc6/libboost_regex-vc6-mt-gd-1_37/regex.obj vc6/libboost_regex-vc6-mt-gd-1_37/regex_debug.obj vc6/libboost_regex-vc6-mt-gd-1_37/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-gd-1_37/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-gd-1_37/static_mutex.obj vc6/libboost_regex-vc6-mt-gd-1_37/usinstances.obj vc6/libboost_regex-vc6-mt-gd-1_37/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_37/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_37/wide_posix_api.obj vc6/libboost_regex-vc6-mt-gd-1_37/winstances.obj - link -lib /nologo /out:vc6/libboost_regex-vc6-mt-gd-1_37.lib $(XSFLAGS) vc6/libboost_regex-vc6-mt-gd-1_37/c_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_37/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_37/cregex.obj vc6/libboost_regex-vc6-mt-gd-1_37/fileiter.obj vc6/libboost_regex-vc6-mt-gd-1_37/icu.obj vc6/libboost_regex-vc6-mt-gd-1_37/instances.obj vc6/libboost_regex-vc6-mt-gd-1_37/posix_api.obj vc6/libboost_regex-vc6-mt-gd-1_37/regex.obj vc6/libboost_regex-vc6-mt-gd-1_37/regex_debug.obj vc6/libboost_regex-vc6-mt-gd-1_37/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-gd-1_37/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-gd-1_37/static_mutex.obj vc6/libboost_regex-vc6-mt-gd-1_37/usinstances.obj vc6/libboost_regex-vc6-mt-gd-1_37/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_37/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_37/wide_posix_api.obj vc6/libboost_regex-vc6-mt-gd-1_37/winstances.obj +./vc6/libboost_regex-vc6-mt-gd-1_38.lib : vc6/libboost_regex-vc6-mt-gd-1_38/c_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_38/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_38/cregex.obj vc6/libboost_regex-vc6-mt-gd-1_38/fileiter.obj vc6/libboost_regex-vc6-mt-gd-1_38/icu.obj vc6/libboost_regex-vc6-mt-gd-1_38/instances.obj vc6/libboost_regex-vc6-mt-gd-1_38/posix_api.obj vc6/libboost_regex-vc6-mt-gd-1_38/regex.obj vc6/libboost_regex-vc6-mt-gd-1_38/regex_debug.obj vc6/libboost_regex-vc6-mt-gd-1_38/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-gd-1_38/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-gd-1_38/static_mutex.obj vc6/libboost_regex-vc6-mt-gd-1_38/usinstances.obj vc6/libboost_regex-vc6-mt-gd-1_38/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_38/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_38/wide_posix_api.obj vc6/libboost_regex-vc6-mt-gd-1_38/winstances.obj + link -lib /nologo /out:vc6/libboost_regex-vc6-mt-gd-1_38.lib $(XSFLAGS) vc6/libboost_regex-vc6-mt-gd-1_38/c_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_38/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_38/cregex.obj vc6/libboost_regex-vc6-mt-gd-1_38/fileiter.obj vc6/libboost_regex-vc6-mt-gd-1_38/icu.obj vc6/libboost_regex-vc6-mt-gd-1_38/instances.obj vc6/libboost_regex-vc6-mt-gd-1_38/posix_api.obj vc6/libboost_regex-vc6-mt-gd-1_38/regex.obj vc6/libboost_regex-vc6-mt-gd-1_38/regex_debug.obj vc6/libboost_regex-vc6-mt-gd-1_38/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-gd-1_38/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-gd-1_38/static_mutex.obj vc6/libboost_regex-vc6-mt-gd-1_38/usinstances.obj vc6/libboost_regex-vc6-mt-gd-1_38/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_38/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_38/wide_posix_api.obj vc6/libboost_regex-vc6-mt-gd-1_38/winstances.obj diff --git a/build/vc7-stlport.mak b/build/vc7-stlport.mak index 5fdefa5f..0955dee4 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_37_dir ./vc7-stlport/libboost_regex-vc7-mt-sp-1_37.lib boost_regex-vc7-mt-p-1_37_dir ./vc7-stlport/boost_regex-vc7-mt-p-1_37.lib libboost_regex-vc7-mt-p-1_37_dir ./vc7-stlport/libboost_regex-vc7-mt-p-1_37.lib boost_regex-vc7-mt-gdp-1_37_dir ./vc7-stlport/boost_regex-vc7-mt-gdp-1_37.lib libboost_regex-vc7-mt-sgdp-1_37_dir ./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37.lib libboost_regex-vc7-mt-gdp-1_37_dir ./vc7-stlport/libboost_regex-vc7-mt-gdp-1_37.lib +all : main_dir libboost_regex-vc7-mt-sp-1_38_dir ./vc7-stlport/libboost_regex-vc7-mt-sp-1_38.lib boost_regex-vc7-mt-p-1_38_dir ./vc7-stlport/boost_regex-vc7-mt-p-1_38.lib libboost_regex-vc7-mt-p-1_38_dir ./vc7-stlport/libboost_regex-vc7-mt-p-1_38.lib boost_regex-vc7-mt-gdp-1_38_dir ./vc7-stlport/boost_regex-vc7-mt-gdp-1_38.lib libboost_regex-vc7-mt-sgdp-1_38_dir ./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38.lib libboost_regex-vc7-mt-gdp-1_38_dir ./vc7-stlport/libboost_regex-vc7-mt-gdp-1_38.lib -clean : libboost_regex-vc7-mt-sp-1_37_clean boost_regex-vc7-mt-p-1_37_clean libboost_regex-vc7-mt-p-1_37_clean boost_regex-vc7-mt-gdp-1_37_clean libboost_regex-vc7-mt-sgdp-1_37_clean libboost_regex-vc7-mt-gdp-1_37_clean +clean : libboost_regex-vc7-mt-sp-1_38_clean boost_regex-vc7-mt-p-1_38_clean libboost_regex-vc7-mt-p-1_38_clean boost_regex-vc7-mt-gdp-1_38_clean libboost_regex-vc7-mt-sgdp-1_38_clean libboost_regex-vc7-mt-gdp-1_38_clean install : stlport_check all - copy vc7-stlport\libboost_regex-vc7-mt-sp-1_37.lib "$(MSVCDIR)\lib" - copy vc7-stlport\boost_regex-vc7-mt-p-1_37.lib "$(MSVCDIR)\lib" - copy vc7-stlport\boost_regex-vc7-mt-p-1_37.dll "$(MSVCDIR)\bin" - copy vc7-stlport\libboost_regex-vc7-mt-p-1_37.lib "$(MSVCDIR)\lib" - copy vc7-stlport\boost_regex-vc7-mt-gdp-1_37.lib "$(MSVCDIR)\lib" - copy vc7-stlport\boost_regex-vc7-mt-gdp-1_37.dll "$(MSVCDIR)\bin" - copy vc7-stlport\boost_regex-vc7-mt-gdp-1_37.pdb "$(MSVCDIR)\lib" - copy vc7-stlport\libboost_regex-vc7-mt-sgdp-1_37.lib "$(MSVCDIR)\lib" - copy vc7-stlport\libboost_regex-vc7-mt-sgdp-1_37.pdb "$(MSVCDIR)\lib" - copy vc7-stlport\libboost_regex-vc7-mt-gdp-1_37.lib "$(MSVCDIR)\lib" - copy vc7-stlport\libboost_regex-vc7-mt-gdp-1_37.pdb "$(MSVCDIR)\lib" + copy vc7-stlport\libboost_regex-vc7-mt-sp-1_38.lib "$(MSVCDIR)\lib" + copy vc7-stlport\boost_regex-vc7-mt-p-1_38.lib "$(MSVCDIR)\lib" + copy vc7-stlport\boost_regex-vc7-mt-p-1_38.dll "$(MSVCDIR)\bin" + copy vc7-stlport\libboost_regex-vc7-mt-p-1_38.lib "$(MSVCDIR)\lib" + copy vc7-stlport\boost_regex-vc7-mt-gdp-1_38.lib "$(MSVCDIR)\lib" + copy vc7-stlport\boost_regex-vc7-mt-gdp-1_38.dll "$(MSVCDIR)\bin" + copy vc7-stlport\boost_regex-vc7-mt-gdp-1_38.pdb "$(MSVCDIR)\lib" + copy vc7-stlport\libboost_regex-vc7-mt-sgdp-1_38.lib "$(MSVCDIR)\lib" + copy vc7-stlport\libboost_regex-vc7-mt-sgdp-1_38.pdb "$(MSVCDIR)\lib" + copy vc7-stlport\libboost_regex-vc7-mt-gdp-1_38.lib "$(MSVCDIR)\lib" + copy vc7-stlport\libboost_regex-vc7-mt-gdp-1_38.pdb "$(MSVCDIR)\lib" main_dir : @if not exist "vc7-stlport\$(NULL)" mkdir vc7-stlport @@ -88,410 +88,410 @@ stlport_check : "$(STLPORT_PATH)\stlport\string" ######################################################## # -# section for libboost_regex-vc7-mt-sp-1_37.lib +# section for libboost_regex-vc7-mt-sp-1_38.lib # ######################################################## -vc7-stlport/libboost_regex-vc7-mt-sp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_37.pdb ../src/c_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_38.pdb ../src/c_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_37.pdb ../src/cpp_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_38.pdb ../src/cpp_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_37.pdb ../src/cregex.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_38.pdb ../src/cregex.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_37.pdb ../src/fileiter.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_38.pdb ../src/fileiter.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_37.pdb ../src/icu.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_38.pdb ../src/icu.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_37.pdb ../src/instances.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_38.pdb ../src/instances.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_37.pdb ../src/posix_api.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_38.pdb ../src/posix_api.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_37.pdb ../src/regex.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_38.pdb ../src/regex.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_37.pdb ../src/regex_debug.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_38.pdb ../src/regex_debug.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_37.pdb ../src/regex_raw_buffer.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_38.pdb ../src/regex_raw_buffer.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_37.pdb ../src/regex_traits_defaults.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_38.pdb ../src/regex_traits_defaults.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_37.pdb ../src/static_mutex.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_38.pdb ../src/static_mutex.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_37.pdb ../src/usinstances.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_38.pdb ../src/usinstances.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_37.pdb ../src/w32_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_38.pdb ../src/w32_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_37.pdb ../src/wc_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_38.pdb ../src/wc_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_37.pdb ../src/wide_posix_api.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_38.pdb ../src/wide_posix_api.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_37.pdb ../src/winstances.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_38.pdb ../src/winstances.cpp -libboost_regex-vc7-mt-sp-1_37_dir : - @if not exist "vc7-stlport\libboost_regex-vc7-mt-sp-1_37\$(NULL)" mkdir vc7-stlport\libboost_regex-vc7-mt-sp-1_37 +libboost_regex-vc7-mt-sp-1_38_dir : + @if not exist "vc7-stlport\libboost_regex-vc7-mt-sp-1_38\$(NULL)" mkdir vc7-stlport\libboost_regex-vc7-mt-sp-1_38 -libboost_regex-vc7-mt-sp-1_37_clean : - del vc7-stlport\libboost_regex-vc7-mt-sp-1_37\*.obj - del vc7-stlport\libboost_regex-vc7-mt-sp-1_37\*.idb - del vc7-stlport\libboost_regex-vc7-mt-sp-1_37\*.exp - del vc7-stlport\libboost_regex-vc7-mt-sp-1_37\*.pch +libboost_regex-vc7-mt-sp-1_38_clean : + del vc7-stlport\libboost_regex-vc7-mt-sp-1_38\*.obj + del vc7-stlport\libboost_regex-vc7-mt-sp-1_38\*.idb + del vc7-stlport\libboost_regex-vc7-mt-sp-1_38\*.exp + del vc7-stlport\libboost_regex-vc7-mt-sp-1_38\*.pch -./vc7-stlport/libboost_regex-vc7-mt-sp-1_37.lib : vc7-stlport/libboost_regex-vc7-mt-sp-1_37/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/cregex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/icu.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/instances.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/regex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/winstances.obj - link -lib /nologo /out:vc7-stlport/libboost_regex-vc7-mt-sp-1_37.lib $(XSFLAGS) vc7-stlport/libboost_regex-vc7-mt-sp-1_37/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/cregex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/icu.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/instances.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/regex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_37/winstances.obj +./vc7-stlport/libboost_regex-vc7-mt-sp-1_38.lib : vc7-stlport/libboost_regex-vc7-mt-sp-1_38/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/cregex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/icu.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/instances.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/regex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/winstances.obj + link -lib /nologo /out:vc7-stlport/libboost_regex-vc7-mt-sp-1_38.lib $(XSFLAGS) vc7-stlport/libboost_regex-vc7-mt-sp-1_38/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/cregex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/icu.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/instances.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/regex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/winstances.obj ######################################################## # -# section for boost_regex-vc7-mt-p-1_37.lib +# section for boost_regex-vc7-mt-p-1_38.lib # ######################################################## -vc7-stlport/boost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_37.pdb ../src/c_regex_traits.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_38.pdb ../src/c_regex_traits.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_37.pdb ../src/cpp_regex_traits.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_38.pdb ../src/cpp_regex_traits.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_37.pdb ../src/cregex.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_38.pdb ../src/cregex.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_37.pdb ../src/fileiter.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_38.pdb ../src/fileiter.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_37.pdb ../src/icu.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_38.pdb ../src/icu.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_37.pdb ../src/instances.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_38.pdb ../src/instances.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_37.pdb ../src/posix_api.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_38.pdb ../src/posix_api.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_37.pdb ../src/regex.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_38.pdb ../src/regex.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_37.pdb ../src/regex_debug.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_38.pdb ../src/regex_debug.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_37.pdb ../src/regex_raw_buffer.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_38.pdb ../src/regex_raw_buffer.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_37.pdb ../src/regex_traits_defaults.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_38.pdb ../src/regex_traits_defaults.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_37.pdb ../src/static_mutex.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_38.pdb ../src/static_mutex.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_37.pdb ../src/usinstances.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_38.pdb ../src/usinstances.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_37.pdb ../src/w32_regex_traits.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_38.pdb ../src/w32_regex_traits.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_37.pdb ../src/wc_regex_traits.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_38.pdb ../src/wc_regex_traits.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_37.pdb ../src/wide_posix_api.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_38.pdb ../src/wide_posix_api.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_37.pdb ../src/winstances.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_38.pdb ../src/winstances.cpp -boost_regex-vc7-mt-p-1_37_dir : - @if not exist "vc7-stlport\boost_regex-vc7-mt-p-1_37\$(NULL)" mkdir vc7-stlport\boost_regex-vc7-mt-p-1_37 +boost_regex-vc7-mt-p-1_38_dir : + @if not exist "vc7-stlport\boost_regex-vc7-mt-p-1_38\$(NULL)" mkdir vc7-stlport\boost_regex-vc7-mt-p-1_38 -boost_regex-vc7-mt-p-1_37_clean : - del vc7-stlport\boost_regex-vc7-mt-p-1_37\*.obj - del vc7-stlport\boost_regex-vc7-mt-p-1_37\*.idb - del vc7-stlport\boost_regex-vc7-mt-p-1_37\*.exp - del vc7-stlport\boost_regex-vc7-mt-p-1_37\*.pch +boost_regex-vc7-mt-p-1_38_clean : + del vc7-stlport\boost_regex-vc7-mt-p-1_38\*.obj + del vc7-stlport\boost_regex-vc7-mt-p-1_38\*.idb + del vc7-stlport\boost_regex-vc7-mt-p-1_38\*.exp + del vc7-stlport\boost_regex-vc7-mt-p-1_38\*.pch -./vc7-stlport/boost_regex-vc7-mt-p-1_37.lib : vc7-stlport/boost_regex-vc7-mt-p-1_37/c_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/cpp_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/cregex.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/fileiter.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/icu.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/instances.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/posix_api.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/regex.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/regex_debug.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/regex_raw_buffer.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/regex_traits_defaults.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/static_mutex.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/usinstances.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/w32_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/wc_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/wide_posix_api.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/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_37.pdb" /debug /machine:I386 /out:"vc7-stlport/boost_regex-vc7-mt-p-1_37.dll" /implib:"vc7-stlport/boost_regex-vc7-mt-p-1_37.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc7-stlport/boost_regex-vc7-mt-p-1_37/c_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/cpp_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/cregex.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/fileiter.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/icu.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/instances.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/posix_api.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/regex.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/regex_debug.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/regex_raw_buffer.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/regex_traits_defaults.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/static_mutex.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/usinstances.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/w32_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/wc_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/wide_posix_api.obj vc7-stlport/boost_regex-vc7-mt-p-1_37/winstances.obj +./vc7-stlport/boost_regex-vc7-mt-p-1_38.lib : vc7-stlport/boost_regex-vc7-mt-p-1_38/c_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/cpp_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/cregex.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/fileiter.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/icu.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/instances.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/posix_api.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/regex.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/regex_debug.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/regex_raw_buffer.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/regex_traits_defaults.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/static_mutex.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/usinstances.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/w32_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/wc_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/wide_posix_api.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/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_38.pdb" /debug /machine:I386 /out:"vc7-stlport/boost_regex-vc7-mt-p-1_38.dll" /implib:"vc7-stlport/boost_regex-vc7-mt-p-1_38.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc7-stlport/boost_regex-vc7-mt-p-1_38/c_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/cpp_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/cregex.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/fileiter.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/icu.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/instances.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/posix_api.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/regex.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/regex_debug.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/regex_raw_buffer.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/regex_traits_defaults.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/static_mutex.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/usinstances.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/w32_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/wc_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/wide_posix_api.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/winstances.obj ######################################################## # -# section for libboost_regex-vc7-mt-p-1_37.lib +# section for libboost_regex-vc7-mt-p-1_38.lib # ######################################################## -vc7-stlport/libboost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_37.pdb ../src/c_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_38.pdb ../src/c_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_37.pdb ../src/cpp_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_38.pdb ../src/cpp_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_37.pdb ../src/cregex.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_38.pdb ../src/cregex.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_37.pdb ../src/fileiter.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_38.pdb ../src/fileiter.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_37.pdb ../src/icu.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_38.pdb ../src/icu.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_37.pdb ../src/instances.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_38.pdb ../src/instances.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_37.pdb ../src/posix_api.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_38.pdb ../src/posix_api.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_37.pdb ../src/regex.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_38.pdb ../src/regex.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_37.pdb ../src/regex_debug.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_38.pdb ../src/regex_debug.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_37.pdb ../src/regex_raw_buffer.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_38.pdb ../src/regex_raw_buffer.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_37.pdb ../src/regex_traits_defaults.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_38.pdb ../src/regex_traits_defaults.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_37.pdb ../src/static_mutex.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_38.pdb ../src/static_mutex.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_37.pdb ../src/usinstances.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_38.pdb ../src/usinstances.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_37.pdb ../src/w32_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_38.pdb ../src/w32_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_37.pdb ../src/wc_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_38.pdb ../src/wc_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_37.pdb ../src/wide_posix_api.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_38.pdb ../src/wide_posix_api.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_37.pdb ../src/winstances.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_38.pdb ../src/winstances.cpp -libboost_regex-vc7-mt-p-1_37_dir : - @if not exist "vc7-stlport\libboost_regex-vc7-mt-p-1_37\$(NULL)" mkdir vc7-stlport\libboost_regex-vc7-mt-p-1_37 +libboost_regex-vc7-mt-p-1_38_dir : + @if not exist "vc7-stlport\libboost_regex-vc7-mt-p-1_38\$(NULL)" mkdir vc7-stlport\libboost_regex-vc7-mt-p-1_38 -libboost_regex-vc7-mt-p-1_37_clean : - del vc7-stlport\libboost_regex-vc7-mt-p-1_37\*.obj - del vc7-stlport\libboost_regex-vc7-mt-p-1_37\*.idb - del vc7-stlport\libboost_regex-vc7-mt-p-1_37\*.exp - del vc7-stlport\libboost_regex-vc7-mt-p-1_37\*.pch +libboost_regex-vc7-mt-p-1_38_clean : + del vc7-stlport\libboost_regex-vc7-mt-p-1_38\*.obj + del vc7-stlport\libboost_regex-vc7-mt-p-1_38\*.idb + del vc7-stlport\libboost_regex-vc7-mt-p-1_38\*.exp + del vc7-stlport\libboost_regex-vc7-mt-p-1_38\*.pch -./vc7-stlport/libboost_regex-vc7-mt-p-1_37.lib : vc7-stlport/libboost_regex-vc7-mt-p-1_37/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/cregex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/icu.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/instances.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/regex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/winstances.obj - link -lib /nologo /out:vc7-stlport/libboost_regex-vc7-mt-p-1_37.lib $(XSFLAGS) vc7-stlport/libboost_regex-vc7-mt-p-1_37/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/cregex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/icu.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/instances.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/regex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-p-1_37/winstances.obj +./vc7-stlport/libboost_regex-vc7-mt-p-1_38.lib : vc7-stlport/libboost_regex-vc7-mt-p-1_38/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/cregex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/icu.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/instances.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/regex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/winstances.obj + link -lib /nologo /out:vc7-stlport/libboost_regex-vc7-mt-p-1_38.lib $(XSFLAGS) vc7-stlport/libboost_regex-vc7-mt-p-1_38/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/cregex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/icu.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/instances.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/regex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/winstances.obj ######################################################## # -# section for boost_regex-vc7-mt-gdp-1_37.lib +# section for boost_regex-vc7-mt-gdp-1_38.lib # ######################################################## -vc7-stlport/boost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_37.pdb ../src/c_regex_traits.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_38.pdb ../src/c_regex_traits.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_37.pdb ../src/cpp_regex_traits.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_38.pdb ../src/cpp_regex_traits.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_37.pdb ../src/cregex.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_38.pdb ../src/cregex.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_37.pdb ../src/fileiter.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_38.pdb ../src/fileiter.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_37.pdb ../src/icu.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_38.pdb ../src/icu.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_37.pdb ../src/instances.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_38.pdb ../src/instances.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_37.pdb ../src/posix_api.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_38.pdb ../src/posix_api.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_37.pdb ../src/regex.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_38.pdb ../src/regex.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_37.pdb ../src/regex_debug.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_38.pdb ../src/regex_debug.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_37.pdb ../src/regex_raw_buffer.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_38.pdb ../src/regex_raw_buffer.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_37.pdb ../src/regex_traits_defaults.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_38.pdb ../src/regex_traits_defaults.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_37.pdb ../src/static_mutex.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_38.pdb ../src/static_mutex.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_37.pdb ../src/usinstances.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_38.pdb ../src/usinstances.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_37.pdb ../src/w32_regex_traits.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_38.pdb ../src/w32_regex_traits.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_37.pdb ../src/wc_regex_traits.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_38.pdb ../src/wc_regex_traits.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_37.pdb ../src/wide_posix_api.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_38.pdb ../src/wide_posix_api.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_37.pdb ../src/winstances.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_38.pdb ../src/winstances.cpp -boost_regex-vc7-mt-gdp-1_37_dir : - @if not exist "vc7-stlport\boost_regex-vc7-mt-gdp-1_37\$(NULL)" mkdir vc7-stlport\boost_regex-vc7-mt-gdp-1_37 +boost_regex-vc7-mt-gdp-1_38_dir : + @if not exist "vc7-stlport\boost_regex-vc7-mt-gdp-1_38\$(NULL)" mkdir vc7-stlport\boost_regex-vc7-mt-gdp-1_38 -boost_regex-vc7-mt-gdp-1_37_clean : - del vc7-stlport\boost_regex-vc7-mt-gdp-1_37\*.obj - del vc7-stlport\boost_regex-vc7-mt-gdp-1_37\*.idb - del vc7-stlport\boost_regex-vc7-mt-gdp-1_37\*.exp - del vc7-stlport\boost_regex-vc7-mt-gdp-1_37\*.pch +boost_regex-vc7-mt-gdp-1_38_clean : + del vc7-stlport\boost_regex-vc7-mt-gdp-1_38\*.obj + del vc7-stlport\boost_regex-vc7-mt-gdp-1_38\*.idb + del vc7-stlport\boost_regex-vc7-mt-gdp-1_38\*.exp + del vc7-stlport\boost_regex-vc7-mt-gdp-1_38\*.pch -./vc7-stlport/boost_regex-vc7-mt-gdp-1_37.lib : vc7-stlport/boost_regex-vc7-mt-gdp-1_37/c_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/cpp_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/cregex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/fileiter.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/icu.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/instances.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/posix_api.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/regex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/regex_debug.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/regex_raw_buffer.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/regex_traits_defaults.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/static_mutex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/usinstances.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/w32_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/wc_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/wide_posix_api.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/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_37.pdb" /debug /machine:I386 /out:"vc7-stlport/boost_regex-vc7-mt-gdp-1_37.dll" /implib:"vc7-stlport/boost_regex-vc7-mt-gdp-1_37.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc7-stlport/boost_regex-vc7-mt-gdp-1_37/c_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/cpp_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/cregex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/fileiter.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/icu.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/instances.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/posix_api.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/regex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/regex_debug.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/regex_raw_buffer.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/regex_traits_defaults.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/static_mutex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/usinstances.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/w32_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/wc_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/wide_posix_api.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_37/winstances.obj +./vc7-stlport/boost_regex-vc7-mt-gdp-1_38.lib : vc7-stlport/boost_regex-vc7-mt-gdp-1_38/c_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/cpp_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/cregex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/fileiter.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/icu.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/instances.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/posix_api.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/regex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/regex_debug.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/regex_raw_buffer.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/regex_traits_defaults.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/static_mutex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/usinstances.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/w32_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/wc_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/wide_posix_api.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/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_38.pdb" /debug /machine:I386 /out:"vc7-stlport/boost_regex-vc7-mt-gdp-1_38.dll" /implib:"vc7-stlport/boost_regex-vc7-mt-gdp-1_38.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc7-stlport/boost_regex-vc7-mt-gdp-1_38/c_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/cpp_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/cregex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/fileiter.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/icu.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/instances.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/posix_api.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/regex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/regex_debug.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/regex_raw_buffer.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/regex_traits_defaults.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/static_mutex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/usinstances.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/w32_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/wc_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/wide_posix_api.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/winstances.obj ######################################################## # -# section for libboost_regex-vc7-mt-sgdp-1_37.lib +# section for libboost_regex-vc7-mt-sgdp-1_38.lib # ######################################################## -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_37.pdb ../src/c_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_38.pdb ../src/c_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_37.pdb ../src/cpp_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_38.pdb ../src/cpp_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_37.pdb ../src/cregex.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_38.pdb ../src/cregex.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_37.pdb ../src/fileiter.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_38.pdb ../src/fileiter.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_37.pdb ../src/icu.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_38.pdb ../src/icu.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_37.pdb ../src/instances.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_38.pdb ../src/instances.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_37.pdb ../src/posix_api.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_38.pdb ../src/posix_api.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_37.pdb ../src/regex.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_38.pdb ../src/regex.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_37.pdb ../src/regex_debug.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_38.pdb ../src/regex_debug.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_37.pdb ../src/regex_raw_buffer.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_38.pdb ../src/regex_raw_buffer.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_37.pdb ../src/regex_traits_defaults.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_38.pdb ../src/regex_traits_defaults.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_37.pdb ../src/static_mutex.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_38.pdb ../src/static_mutex.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_37.pdb ../src/usinstances.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_38.pdb ../src/usinstances.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_37.pdb ../src/w32_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_38.pdb ../src/w32_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_37.pdb ../src/wc_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_38.pdb ../src/wc_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_37.pdb ../src/wide_posix_api.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_38.pdb ../src/wide_posix_api.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_37.pdb ../src/winstances.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_38.pdb ../src/winstances.cpp -libboost_regex-vc7-mt-sgdp-1_37_dir : - @if not exist "vc7-stlport\libboost_regex-vc7-mt-sgdp-1_37\$(NULL)" mkdir vc7-stlport\libboost_regex-vc7-mt-sgdp-1_37 +libboost_regex-vc7-mt-sgdp-1_38_dir : + @if not exist "vc7-stlport\libboost_regex-vc7-mt-sgdp-1_38\$(NULL)" mkdir vc7-stlport\libboost_regex-vc7-mt-sgdp-1_38 -libboost_regex-vc7-mt-sgdp-1_37_clean : - del vc7-stlport\libboost_regex-vc7-mt-sgdp-1_37\*.obj - del vc7-stlport\libboost_regex-vc7-mt-sgdp-1_37\*.idb - del vc7-stlport\libboost_regex-vc7-mt-sgdp-1_37\*.exp - del vc7-stlport\libboost_regex-vc7-mt-sgdp-1_37\*.pch +libboost_regex-vc7-mt-sgdp-1_38_clean : + del vc7-stlport\libboost_regex-vc7-mt-sgdp-1_38\*.obj + del vc7-stlport\libboost_regex-vc7-mt-sgdp-1_38\*.idb + del vc7-stlport\libboost_regex-vc7-mt-sgdp-1_38\*.exp + del vc7-stlport\libboost_regex-vc7-mt-sgdp-1_38\*.pch -./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37.lib : vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/cregex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/icu.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/instances.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/regex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/winstances.obj - link -lib /nologo /out:vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37.lib $(XSFLAGS) vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/cregex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/icu.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/instances.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/regex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_37/winstances.obj +./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38.lib : vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/cregex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/icu.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/instances.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/regex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/winstances.obj + link -lib /nologo /out:vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38.lib $(XSFLAGS) vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/cregex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/icu.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/instances.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/regex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/winstances.obj ######################################################## # -# section for libboost_regex-vc7-mt-gdp-1_37.lib +# section for libboost_regex-vc7-mt-gdp-1_38.lib # ######################################################## -vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_37.pdb ../src/c_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_38.pdb ../src/c_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_37.pdb ../src/cpp_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_38.pdb ../src/cpp_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_37.pdb ../src/cregex.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_38.pdb ../src/cregex.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_37.pdb ../src/fileiter.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_38.pdb ../src/fileiter.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_37.pdb ../src/icu.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_38.pdb ../src/icu.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_37.pdb ../src/instances.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_38.pdb ../src/instances.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_37.pdb ../src/posix_api.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_38.pdb ../src/posix_api.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_37.pdb ../src/regex.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_38.pdb ../src/regex.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_37.pdb ../src/regex_debug.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_38.pdb ../src/regex_debug.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_37.pdb ../src/regex_raw_buffer.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_38.pdb ../src/regex_raw_buffer.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_37.pdb ../src/regex_traits_defaults.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_38.pdb ../src/regex_traits_defaults.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_37.pdb ../src/static_mutex.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_38.pdb ../src/static_mutex.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_37.pdb ../src/usinstances.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_38.pdb ../src/usinstances.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_37.pdb ../src/w32_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_38.pdb ../src/w32_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_37.pdb ../src/wc_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_38.pdb ../src/wc_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_37.pdb ../src/wide_posix_api.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_38.pdb ../src/wide_posix_api.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/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_37/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_37.pdb ../src/winstances.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_38.pdb ../src/winstances.cpp -libboost_regex-vc7-mt-gdp-1_37_dir : - @if not exist "vc7-stlport\libboost_regex-vc7-mt-gdp-1_37\$(NULL)" mkdir vc7-stlport\libboost_regex-vc7-mt-gdp-1_37 +libboost_regex-vc7-mt-gdp-1_38_dir : + @if not exist "vc7-stlport\libboost_regex-vc7-mt-gdp-1_38\$(NULL)" mkdir vc7-stlport\libboost_regex-vc7-mt-gdp-1_38 -libboost_regex-vc7-mt-gdp-1_37_clean : - del vc7-stlport\libboost_regex-vc7-mt-gdp-1_37\*.obj - del vc7-stlport\libboost_regex-vc7-mt-gdp-1_37\*.idb - del vc7-stlport\libboost_regex-vc7-mt-gdp-1_37\*.exp - del vc7-stlport\libboost_regex-vc7-mt-gdp-1_37\*.pch +libboost_regex-vc7-mt-gdp-1_38_clean : + del vc7-stlport\libboost_regex-vc7-mt-gdp-1_38\*.obj + del vc7-stlport\libboost_regex-vc7-mt-gdp-1_38\*.idb + del vc7-stlport\libboost_regex-vc7-mt-gdp-1_38\*.exp + del vc7-stlport\libboost_regex-vc7-mt-gdp-1_38\*.pch -./vc7-stlport/libboost_regex-vc7-mt-gdp-1_37.lib : vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/cregex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/icu.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/instances.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/regex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/winstances.obj - link -lib /nologo /out:vc7-stlport/libboost_regex-vc7-mt-gdp-1_37.lib $(XSFLAGS) vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/cregex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/icu.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/instances.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/regex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_37/winstances.obj +./vc7-stlport/libboost_regex-vc7-mt-gdp-1_38.lib : vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/cregex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/icu.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/instances.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/regex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/winstances.obj + link -lib /nologo /out:vc7-stlport/libboost_regex-vc7-mt-gdp-1_38.lib $(XSFLAGS) vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/cregex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/icu.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/instances.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/regex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/winstances.obj diff --git a/build/vc7.mak b/build/vc7.mak index b797e8f0..9fc56fa1 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_37_dir ./vc7/libboost_regex-vc7-s-1_37.lib libboost_regex-vc7-mt-s-1_37_dir ./vc7/libboost_regex-vc7-mt-s-1_37.lib libboost_regex-vc7-sgd-1_37_dir ./vc7/libboost_regex-vc7-sgd-1_37.lib libboost_regex-vc7-mt-sgd-1_37_dir ./vc7/libboost_regex-vc7-mt-sgd-1_37.lib boost_regex-vc7-mt-gd-1_37_dir ./vc7/boost_regex-vc7-mt-gd-1_37.lib boost_regex-vc7-mt-1_37_dir ./vc7/boost_regex-vc7-mt-1_37.lib libboost_regex-vc7-mt-1_37_dir ./vc7/libboost_regex-vc7-mt-1_37.lib libboost_regex-vc7-mt-gd-1_37_dir ./vc7/libboost_regex-vc7-mt-gd-1_37.lib +all : main_dir libboost_regex-vc7-s-1_38_dir ./vc7/libboost_regex-vc7-s-1_38.lib libboost_regex-vc7-mt-s-1_38_dir ./vc7/libboost_regex-vc7-mt-s-1_38.lib libboost_regex-vc7-sgd-1_38_dir ./vc7/libboost_regex-vc7-sgd-1_38.lib libboost_regex-vc7-mt-sgd-1_38_dir ./vc7/libboost_regex-vc7-mt-sgd-1_38.lib boost_regex-vc7-mt-gd-1_38_dir ./vc7/boost_regex-vc7-mt-gd-1_38.lib boost_regex-vc7-mt-1_38_dir ./vc7/boost_regex-vc7-mt-1_38.lib libboost_regex-vc7-mt-1_38_dir ./vc7/libboost_regex-vc7-mt-1_38.lib libboost_regex-vc7-mt-gd-1_38_dir ./vc7/libboost_regex-vc7-mt-gd-1_38.lib -clean : libboost_regex-vc7-s-1_37_clean libboost_regex-vc7-mt-s-1_37_clean libboost_regex-vc7-sgd-1_37_clean libboost_regex-vc7-mt-sgd-1_37_clean boost_regex-vc7-mt-gd-1_37_clean boost_regex-vc7-mt-1_37_clean libboost_regex-vc7-mt-1_37_clean libboost_regex-vc7-mt-gd-1_37_clean +clean : libboost_regex-vc7-s-1_38_clean libboost_regex-vc7-mt-s-1_38_clean libboost_regex-vc7-sgd-1_38_clean libboost_regex-vc7-mt-sgd-1_38_clean boost_regex-vc7-mt-gd-1_38_clean boost_regex-vc7-mt-1_38_clean libboost_regex-vc7-mt-1_38_clean libboost_regex-vc7-mt-gd-1_38_clean install : all - copy vc7\libboost_regex-vc7-s-1_37.lib "$(MSVCDIR)\lib" - copy vc7\libboost_regex-vc7-mt-s-1_37.lib "$(MSVCDIR)\lib" - copy vc7\libboost_regex-vc7-sgd-1_37.lib "$(MSVCDIR)\lib" - copy vc7\libboost_regex-vc7-sgd-1_37.pdb "$(MSVCDIR)\lib" - copy vc7\libboost_regex-vc7-mt-sgd-1_37.lib "$(MSVCDIR)\lib" - copy vc7\libboost_regex-vc7-mt-sgd-1_37.pdb "$(MSVCDIR)\lib" - copy vc7\boost_regex-vc7-mt-gd-1_37.lib "$(MSVCDIR)\lib" - copy vc7\boost_regex-vc7-mt-gd-1_37.dll "$(MSVCDIR)\bin" - copy vc7\boost_regex-vc7-mt-gd-1_37.pdb "$(MSVCDIR)\lib" - copy vc7\boost_regex-vc7-mt-1_37.lib "$(MSVCDIR)\lib" - copy vc7\boost_regex-vc7-mt-1_37.dll "$(MSVCDIR)\bin" - copy vc7\libboost_regex-vc7-mt-1_37.lib "$(MSVCDIR)\lib" - copy vc7\libboost_regex-vc7-mt-gd-1_37.lib "$(MSVCDIR)\lib" - copy vc7\libboost_regex-vc7-mt-gd-1_37.pdb "$(MSVCDIR)\lib" + copy vc7\libboost_regex-vc7-s-1_38.lib "$(MSVCDIR)\lib" + copy vc7\libboost_regex-vc7-mt-s-1_38.lib "$(MSVCDIR)\lib" + copy vc7\libboost_regex-vc7-sgd-1_38.lib "$(MSVCDIR)\lib" + copy vc7\libboost_regex-vc7-sgd-1_38.pdb "$(MSVCDIR)\lib" + copy vc7\libboost_regex-vc7-mt-sgd-1_38.lib "$(MSVCDIR)\lib" + copy vc7\libboost_regex-vc7-mt-sgd-1_38.pdb "$(MSVCDIR)\lib" + copy vc7\boost_regex-vc7-mt-gd-1_38.lib "$(MSVCDIR)\lib" + copy vc7\boost_regex-vc7-mt-gd-1_38.dll "$(MSVCDIR)\bin" + copy vc7\boost_regex-vc7-mt-gd-1_38.pdb "$(MSVCDIR)\lib" + copy vc7\boost_regex-vc7-mt-1_38.lib "$(MSVCDIR)\lib" + copy vc7\boost_regex-vc7-mt-1_38.dll "$(MSVCDIR)\bin" + copy vc7\libboost_regex-vc7-mt-1_38.lib "$(MSVCDIR)\lib" + copy vc7\libboost_regex-vc7-mt-gd-1_38.lib "$(MSVCDIR)\lib" + copy vc7\libboost_regex-vc7-mt-gd-1_38.pdb "$(MSVCDIR)\lib" main_dir : @if not exist "vc7\$(NULL)" mkdir vc7 @@ -88,546 +88,546 @@ main_dir : ######################################################## # -# section for libboost_regex-vc7-s-1_37.lib +# section for libboost_regex-vc7-s-1_38.lib # ######################################################## -vc7/libboost_regex-vc7-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-s-1_37.pdb ../src/c_regex_traits.cpp +vc7/libboost_regex-vc7-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-s-1_38.pdb ../src/c_regex_traits.cpp -vc7/libboost_regex-vc7-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-s-1_37.pdb ../src/cpp_regex_traits.cpp +vc7/libboost_regex-vc7-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-s-1_38.pdb ../src/cpp_regex_traits.cpp -vc7/libboost_regex-vc7-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-s-1_37.pdb ../src/cregex.cpp +vc7/libboost_regex-vc7-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-s-1_38.pdb ../src/cregex.cpp -vc7/libboost_regex-vc7-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-s-1_37.pdb ../src/fileiter.cpp +vc7/libboost_regex-vc7-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-s-1_38.pdb ../src/fileiter.cpp -vc7/libboost_regex-vc7-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-s-1_37.pdb ../src/icu.cpp +vc7/libboost_regex-vc7-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-s-1_38.pdb ../src/icu.cpp -vc7/libboost_regex-vc7-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-s-1_37.pdb ../src/instances.cpp +vc7/libboost_regex-vc7-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-s-1_38.pdb ../src/instances.cpp -vc7/libboost_regex-vc7-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-s-1_37.pdb ../src/posix_api.cpp +vc7/libboost_regex-vc7-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-s-1_38.pdb ../src/posix_api.cpp -vc7/libboost_regex-vc7-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-s-1_37.pdb ../src/regex.cpp +vc7/libboost_regex-vc7-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-s-1_38.pdb ../src/regex.cpp -vc7/libboost_regex-vc7-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-s-1_37.pdb ../src/regex_debug.cpp +vc7/libboost_regex-vc7-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-s-1_38.pdb ../src/regex_debug.cpp -vc7/libboost_regex-vc7-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-s-1_37.pdb ../src/regex_raw_buffer.cpp +vc7/libboost_regex-vc7-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-s-1_38.pdb ../src/regex_raw_buffer.cpp -vc7/libboost_regex-vc7-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-s-1_37.pdb ../src/regex_traits_defaults.cpp +vc7/libboost_regex-vc7-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-s-1_38.pdb ../src/regex_traits_defaults.cpp -vc7/libboost_regex-vc7-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-s-1_37.pdb ../src/static_mutex.cpp +vc7/libboost_regex-vc7-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-s-1_38.pdb ../src/static_mutex.cpp -vc7/libboost_regex-vc7-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-s-1_37.pdb ../src/usinstances.cpp +vc7/libboost_regex-vc7-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-s-1_38.pdb ../src/usinstances.cpp -vc7/libboost_regex-vc7-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-s-1_37.pdb ../src/w32_regex_traits.cpp +vc7/libboost_regex-vc7-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-s-1_38.pdb ../src/w32_regex_traits.cpp -vc7/libboost_regex-vc7-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-s-1_37.pdb ../src/wc_regex_traits.cpp +vc7/libboost_regex-vc7-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-s-1_38.pdb ../src/wc_regex_traits.cpp -vc7/libboost_regex-vc7-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-s-1_37.pdb ../src/wide_posix_api.cpp +vc7/libboost_regex-vc7-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-s-1_38.pdb ../src/wide_posix_api.cpp -vc7/libboost_regex-vc7-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-s-1_37.pdb ../src/winstances.cpp +vc7/libboost_regex-vc7-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-s-1_38.pdb ../src/winstances.cpp -libboost_regex-vc7-s-1_37_dir : - @if not exist "vc7\libboost_regex-vc7-s-1_37\$(NULL)" mkdir vc7\libboost_regex-vc7-s-1_37 +libboost_regex-vc7-s-1_38_dir : + @if not exist "vc7\libboost_regex-vc7-s-1_38\$(NULL)" mkdir vc7\libboost_regex-vc7-s-1_38 -libboost_regex-vc7-s-1_37_clean : - del vc7\libboost_regex-vc7-s-1_37\*.obj - del vc7\libboost_regex-vc7-s-1_37\*.idb - del vc7\libboost_regex-vc7-s-1_37\*.exp - del vc7\libboost_regex-vc7-s-1_37\*.pch +libboost_regex-vc7-s-1_38_clean : + del vc7\libboost_regex-vc7-s-1_38\*.obj + del vc7\libboost_regex-vc7-s-1_38\*.idb + del vc7\libboost_regex-vc7-s-1_38\*.exp + del vc7\libboost_regex-vc7-s-1_38\*.pch -./vc7/libboost_regex-vc7-s-1_37.lib : vc7/libboost_regex-vc7-s-1_37/c_regex_traits.obj vc7/libboost_regex-vc7-s-1_37/cpp_regex_traits.obj vc7/libboost_regex-vc7-s-1_37/cregex.obj vc7/libboost_regex-vc7-s-1_37/fileiter.obj vc7/libboost_regex-vc7-s-1_37/icu.obj vc7/libboost_regex-vc7-s-1_37/instances.obj vc7/libboost_regex-vc7-s-1_37/posix_api.obj vc7/libboost_regex-vc7-s-1_37/regex.obj vc7/libboost_regex-vc7-s-1_37/regex_debug.obj vc7/libboost_regex-vc7-s-1_37/regex_raw_buffer.obj vc7/libboost_regex-vc7-s-1_37/regex_traits_defaults.obj vc7/libboost_regex-vc7-s-1_37/static_mutex.obj vc7/libboost_regex-vc7-s-1_37/usinstances.obj vc7/libboost_regex-vc7-s-1_37/w32_regex_traits.obj vc7/libboost_regex-vc7-s-1_37/wc_regex_traits.obj vc7/libboost_regex-vc7-s-1_37/wide_posix_api.obj vc7/libboost_regex-vc7-s-1_37/winstances.obj - link -lib /nologo /out:vc7/libboost_regex-vc7-s-1_37.lib $(XSFLAGS) vc7/libboost_regex-vc7-s-1_37/c_regex_traits.obj vc7/libboost_regex-vc7-s-1_37/cpp_regex_traits.obj vc7/libboost_regex-vc7-s-1_37/cregex.obj vc7/libboost_regex-vc7-s-1_37/fileiter.obj vc7/libboost_regex-vc7-s-1_37/icu.obj vc7/libboost_regex-vc7-s-1_37/instances.obj vc7/libboost_regex-vc7-s-1_37/posix_api.obj vc7/libboost_regex-vc7-s-1_37/regex.obj vc7/libboost_regex-vc7-s-1_37/regex_debug.obj vc7/libboost_regex-vc7-s-1_37/regex_raw_buffer.obj vc7/libboost_regex-vc7-s-1_37/regex_traits_defaults.obj vc7/libboost_regex-vc7-s-1_37/static_mutex.obj vc7/libboost_regex-vc7-s-1_37/usinstances.obj vc7/libboost_regex-vc7-s-1_37/w32_regex_traits.obj vc7/libboost_regex-vc7-s-1_37/wc_regex_traits.obj vc7/libboost_regex-vc7-s-1_37/wide_posix_api.obj vc7/libboost_regex-vc7-s-1_37/winstances.obj +./vc7/libboost_regex-vc7-s-1_38.lib : vc7/libboost_regex-vc7-s-1_38/c_regex_traits.obj vc7/libboost_regex-vc7-s-1_38/cpp_regex_traits.obj vc7/libboost_regex-vc7-s-1_38/cregex.obj vc7/libboost_regex-vc7-s-1_38/fileiter.obj vc7/libboost_regex-vc7-s-1_38/icu.obj vc7/libboost_regex-vc7-s-1_38/instances.obj vc7/libboost_regex-vc7-s-1_38/posix_api.obj vc7/libboost_regex-vc7-s-1_38/regex.obj vc7/libboost_regex-vc7-s-1_38/regex_debug.obj vc7/libboost_regex-vc7-s-1_38/regex_raw_buffer.obj vc7/libboost_regex-vc7-s-1_38/regex_traits_defaults.obj vc7/libboost_regex-vc7-s-1_38/static_mutex.obj vc7/libboost_regex-vc7-s-1_38/usinstances.obj vc7/libboost_regex-vc7-s-1_38/w32_regex_traits.obj vc7/libboost_regex-vc7-s-1_38/wc_regex_traits.obj vc7/libboost_regex-vc7-s-1_38/wide_posix_api.obj vc7/libboost_regex-vc7-s-1_38/winstances.obj + link -lib /nologo /out:vc7/libboost_regex-vc7-s-1_38.lib $(XSFLAGS) vc7/libboost_regex-vc7-s-1_38/c_regex_traits.obj vc7/libboost_regex-vc7-s-1_38/cpp_regex_traits.obj vc7/libboost_regex-vc7-s-1_38/cregex.obj vc7/libboost_regex-vc7-s-1_38/fileiter.obj vc7/libboost_regex-vc7-s-1_38/icu.obj vc7/libboost_regex-vc7-s-1_38/instances.obj vc7/libboost_regex-vc7-s-1_38/posix_api.obj vc7/libboost_regex-vc7-s-1_38/regex.obj vc7/libboost_regex-vc7-s-1_38/regex_debug.obj vc7/libboost_regex-vc7-s-1_38/regex_raw_buffer.obj vc7/libboost_regex-vc7-s-1_38/regex_traits_defaults.obj vc7/libboost_regex-vc7-s-1_38/static_mutex.obj vc7/libboost_regex-vc7-s-1_38/usinstances.obj vc7/libboost_regex-vc7-s-1_38/w32_regex_traits.obj vc7/libboost_regex-vc7-s-1_38/wc_regex_traits.obj vc7/libboost_regex-vc7-s-1_38/wide_posix_api.obj vc7/libboost_regex-vc7-s-1_38/winstances.obj ######################################################## # -# section for libboost_regex-vc7-mt-s-1_37.lib +# section for libboost_regex-vc7-mt-s-1_38.lib # ######################################################## -vc7/libboost_regex-vc7-mt-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-s-1_37.pdb ../src/c_regex_traits.cpp +vc7/libboost_regex-vc7-mt-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-s-1_38.pdb ../src/c_regex_traits.cpp -vc7/libboost_regex-vc7-mt-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-s-1_37.pdb ../src/cpp_regex_traits.cpp +vc7/libboost_regex-vc7-mt-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-s-1_38.pdb ../src/cpp_regex_traits.cpp -vc7/libboost_regex-vc7-mt-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-s-1_37.pdb ../src/cregex.cpp +vc7/libboost_regex-vc7-mt-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-s-1_38.pdb ../src/cregex.cpp -vc7/libboost_regex-vc7-mt-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-s-1_37.pdb ../src/fileiter.cpp +vc7/libboost_regex-vc7-mt-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-s-1_38.pdb ../src/fileiter.cpp -vc7/libboost_regex-vc7-mt-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-s-1_37.pdb ../src/icu.cpp +vc7/libboost_regex-vc7-mt-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-s-1_38.pdb ../src/icu.cpp -vc7/libboost_regex-vc7-mt-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-s-1_37.pdb ../src/instances.cpp +vc7/libboost_regex-vc7-mt-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-s-1_38.pdb ../src/instances.cpp -vc7/libboost_regex-vc7-mt-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-s-1_37.pdb ../src/posix_api.cpp +vc7/libboost_regex-vc7-mt-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-s-1_38.pdb ../src/posix_api.cpp -vc7/libboost_regex-vc7-mt-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-s-1_37.pdb ../src/regex.cpp +vc7/libboost_regex-vc7-mt-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-s-1_38.pdb ../src/regex.cpp -vc7/libboost_regex-vc7-mt-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-s-1_37.pdb ../src/regex_debug.cpp +vc7/libboost_regex-vc7-mt-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-s-1_38.pdb ../src/regex_debug.cpp -vc7/libboost_regex-vc7-mt-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-s-1_37.pdb ../src/regex_raw_buffer.cpp +vc7/libboost_regex-vc7-mt-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-s-1_38.pdb ../src/regex_raw_buffer.cpp -vc7/libboost_regex-vc7-mt-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-s-1_37.pdb ../src/regex_traits_defaults.cpp +vc7/libboost_regex-vc7-mt-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-s-1_38.pdb ../src/regex_traits_defaults.cpp -vc7/libboost_regex-vc7-mt-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-s-1_37.pdb ../src/static_mutex.cpp +vc7/libboost_regex-vc7-mt-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-s-1_38.pdb ../src/static_mutex.cpp -vc7/libboost_regex-vc7-mt-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-s-1_37.pdb ../src/usinstances.cpp +vc7/libboost_regex-vc7-mt-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-s-1_38.pdb ../src/usinstances.cpp -vc7/libboost_regex-vc7-mt-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-s-1_37.pdb ../src/w32_regex_traits.cpp +vc7/libboost_regex-vc7-mt-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-s-1_38.pdb ../src/w32_regex_traits.cpp -vc7/libboost_regex-vc7-mt-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-s-1_37.pdb ../src/wc_regex_traits.cpp +vc7/libboost_regex-vc7-mt-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-s-1_38.pdb ../src/wc_regex_traits.cpp -vc7/libboost_regex-vc7-mt-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-s-1_37.pdb ../src/wide_posix_api.cpp +vc7/libboost_regex-vc7-mt-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-s-1_38.pdb ../src/wide_posix_api.cpp -vc7/libboost_regex-vc7-mt-s-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-s-1_37.pdb ../src/winstances.cpp +vc7/libboost_regex-vc7-mt-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-s-1_38.pdb ../src/winstances.cpp -libboost_regex-vc7-mt-s-1_37_dir : - @if not exist "vc7\libboost_regex-vc7-mt-s-1_37\$(NULL)" mkdir vc7\libboost_regex-vc7-mt-s-1_37 +libboost_regex-vc7-mt-s-1_38_dir : + @if not exist "vc7\libboost_regex-vc7-mt-s-1_38\$(NULL)" mkdir vc7\libboost_regex-vc7-mt-s-1_38 -libboost_regex-vc7-mt-s-1_37_clean : - del vc7\libboost_regex-vc7-mt-s-1_37\*.obj - del vc7\libboost_regex-vc7-mt-s-1_37\*.idb - del vc7\libboost_regex-vc7-mt-s-1_37\*.exp - del vc7\libboost_regex-vc7-mt-s-1_37\*.pch +libboost_regex-vc7-mt-s-1_38_clean : + del vc7\libboost_regex-vc7-mt-s-1_38\*.obj + del vc7\libboost_regex-vc7-mt-s-1_38\*.idb + del vc7\libboost_regex-vc7-mt-s-1_38\*.exp + del vc7\libboost_regex-vc7-mt-s-1_38\*.pch -./vc7/libboost_regex-vc7-mt-s-1_37.lib : vc7/libboost_regex-vc7-mt-s-1_37/c_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_37/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_37/cregex.obj vc7/libboost_regex-vc7-mt-s-1_37/fileiter.obj vc7/libboost_regex-vc7-mt-s-1_37/icu.obj vc7/libboost_regex-vc7-mt-s-1_37/instances.obj vc7/libboost_regex-vc7-mt-s-1_37/posix_api.obj vc7/libboost_regex-vc7-mt-s-1_37/regex.obj vc7/libboost_regex-vc7-mt-s-1_37/regex_debug.obj vc7/libboost_regex-vc7-mt-s-1_37/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-s-1_37/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-s-1_37/static_mutex.obj vc7/libboost_regex-vc7-mt-s-1_37/usinstances.obj vc7/libboost_regex-vc7-mt-s-1_37/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_37/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_37/wide_posix_api.obj vc7/libboost_regex-vc7-mt-s-1_37/winstances.obj - link -lib /nologo /out:vc7/libboost_regex-vc7-mt-s-1_37.lib $(XSFLAGS) vc7/libboost_regex-vc7-mt-s-1_37/c_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_37/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_37/cregex.obj vc7/libboost_regex-vc7-mt-s-1_37/fileiter.obj vc7/libboost_regex-vc7-mt-s-1_37/icu.obj vc7/libboost_regex-vc7-mt-s-1_37/instances.obj vc7/libboost_regex-vc7-mt-s-1_37/posix_api.obj vc7/libboost_regex-vc7-mt-s-1_37/regex.obj vc7/libboost_regex-vc7-mt-s-1_37/regex_debug.obj vc7/libboost_regex-vc7-mt-s-1_37/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-s-1_37/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-s-1_37/static_mutex.obj vc7/libboost_regex-vc7-mt-s-1_37/usinstances.obj vc7/libboost_regex-vc7-mt-s-1_37/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_37/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_37/wide_posix_api.obj vc7/libboost_regex-vc7-mt-s-1_37/winstances.obj +./vc7/libboost_regex-vc7-mt-s-1_38.lib : vc7/libboost_regex-vc7-mt-s-1_38/c_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_38/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_38/cregex.obj vc7/libboost_regex-vc7-mt-s-1_38/fileiter.obj vc7/libboost_regex-vc7-mt-s-1_38/icu.obj vc7/libboost_regex-vc7-mt-s-1_38/instances.obj vc7/libboost_regex-vc7-mt-s-1_38/posix_api.obj vc7/libboost_regex-vc7-mt-s-1_38/regex.obj vc7/libboost_regex-vc7-mt-s-1_38/regex_debug.obj vc7/libboost_regex-vc7-mt-s-1_38/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-s-1_38/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-s-1_38/static_mutex.obj vc7/libboost_regex-vc7-mt-s-1_38/usinstances.obj vc7/libboost_regex-vc7-mt-s-1_38/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_38/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_38/wide_posix_api.obj vc7/libboost_regex-vc7-mt-s-1_38/winstances.obj + link -lib /nologo /out:vc7/libboost_regex-vc7-mt-s-1_38.lib $(XSFLAGS) vc7/libboost_regex-vc7-mt-s-1_38/c_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_38/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_38/cregex.obj vc7/libboost_regex-vc7-mt-s-1_38/fileiter.obj vc7/libboost_regex-vc7-mt-s-1_38/icu.obj vc7/libboost_regex-vc7-mt-s-1_38/instances.obj vc7/libboost_regex-vc7-mt-s-1_38/posix_api.obj vc7/libboost_regex-vc7-mt-s-1_38/regex.obj vc7/libboost_regex-vc7-mt-s-1_38/regex_debug.obj vc7/libboost_regex-vc7-mt-s-1_38/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-s-1_38/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-s-1_38/static_mutex.obj vc7/libboost_regex-vc7-mt-s-1_38/usinstances.obj vc7/libboost_regex-vc7-mt-s-1_38/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_38/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_38/wide_posix_api.obj vc7/libboost_regex-vc7-mt-s-1_38/winstances.obj ######################################################## # -# section for libboost_regex-vc7-sgd-1_37.lib +# section for libboost_regex-vc7-sgd-1_38.lib # ######################################################## -vc7/libboost_regex-vc7-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-sgd-1_37.pdb ../src/c_regex_traits.cpp +vc7/libboost_regex-vc7-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-sgd-1_38.pdb ../src/c_regex_traits.cpp -vc7/libboost_regex-vc7-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-sgd-1_37.pdb ../src/cpp_regex_traits.cpp +vc7/libboost_regex-vc7-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-sgd-1_38.pdb ../src/cpp_regex_traits.cpp -vc7/libboost_regex-vc7-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-sgd-1_37.pdb ../src/cregex.cpp +vc7/libboost_regex-vc7-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-sgd-1_38.pdb ../src/cregex.cpp -vc7/libboost_regex-vc7-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-sgd-1_37.pdb ../src/fileiter.cpp +vc7/libboost_regex-vc7-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-sgd-1_38.pdb ../src/fileiter.cpp -vc7/libboost_regex-vc7-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-sgd-1_37.pdb ../src/icu.cpp +vc7/libboost_regex-vc7-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-sgd-1_38.pdb ../src/icu.cpp -vc7/libboost_regex-vc7-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-sgd-1_37.pdb ../src/instances.cpp +vc7/libboost_regex-vc7-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-sgd-1_38.pdb ../src/instances.cpp -vc7/libboost_regex-vc7-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-sgd-1_37.pdb ../src/posix_api.cpp +vc7/libboost_regex-vc7-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-sgd-1_38.pdb ../src/posix_api.cpp -vc7/libboost_regex-vc7-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-sgd-1_37.pdb ../src/regex.cpp +vc7/libboost_regex-vc7-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-sgd-1_38.pdb ../src/regex.cpp -vc7/libboost_regex-vc7-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-sgd-1_37.pdb ../src/regex_debug.cpp +vc7/libboost_regex-vc7-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-sgd-1_38.pdb ../src/regex_debug.cpp -vc7/libboost_regex-vc7-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-sgd-1_37.pdb ../src/regex_raw_buffer.cpp +vc7/libboost_regex-vc7-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-sgd-1_38.pdb ../src/regex_raw_buffer.cpp -vc7/libboost_regex-vc7-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-sgd-1_37.pdb ../src/regex_traits_defaults.cpp +vc7/libboost_regex-vc7-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-sgd-1_38.pdb ../src/regex_traits_defaults.cpp -vc7/libboost_regex-vc7-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-sgd-1_37.pdb ../src/static_mutex.cpp +vc7/libboost_regex-vc7-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-sgd-1_38.pdb ../src/static_mutex.cpp -vc7/libboost_regex-vc7-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-sgd-1_37.pdb ../src/usinstances.cpp +vc7/libboost_regex-vc7-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-sgd-1_38.pdb ../src/usinstances.cpp -vc7/libboost_regex-vc7-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-sgd-1_37.pdb ../src/w32_regex_traits.cpp +vc7/libboost_regex-vc7-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-sgd-1_38.pdb ../src/w32_regex_traits.cpp -vc7/libboost_regex-vc7-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-sgd-1_37.pdb ../src/wc_regex_traits.cpp +vc7/libboost_regex-vc7-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-sgd-1_38.pdb ../src/wc_regex_traits.cpp -vc7/libboost_regex-vc7-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-sgd-1_37.pdb ../src/wide_posix_api.cpp +vc7/libboost_regex-vc7-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-sgd-1_38.pdb ../src/wide_posix_api.cpp -vc7/libboost_regex-vc7-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-sgd-1_37.pdb ../src/winstances.cpp +vc7/libboost_regex-vc7-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-sgd-1_38.pdb ../src/winstances.cpp -libboost_regex-vc7-sgd-1_37_dir : - @if not exist "vc7\libboost_regex-vc7-sgd-1_37\$(NULL)" mkdir vc7\libboost_regex-vc7-sgd-1_37 +libboost_regex-vc7-sgd-1_38_dir : + @if not exist "vc7\libboost_regex-vc7-sgd-1_38\$(NULL)" mkdir vc7\libboost_regex-vc7-sgd-1_38 -libboost_regex-vc7-sgd-1_37_clean : - del vc7\libboost_regex-vc7-sgd-1_37\*.obj - del vc7\libboost_regex-vc7-sgd-1_37\*.idb - del vc7\libboost_regex-vc7-sgd-1_37\*.exp - del vc7\libboost_regex-vc7-sgd-1_37\*.pch +libboost_regex-vc7-sgd-1_38_clean : + del vc7\libboost_regex-vc7-sgd-1_38\*.obj + del vc7\libboost_regex-vc7-sgd-1_38\*.idb + del vc7\libboost_regex-vc7-sgd-1_38\*.exp + del vc7\libboost_regex-vc7-sgd-1_38\*.pch -./vc7/libboost_regex-vc7-sgd-1_37.lib : vc7/libboost_regex-vc7-sgd-1_37/c_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_37/cpp_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_37/cregex.obj vc7/libboost_regex-vc7-sgd-1_37/fileiter.obj vc7/libboost_regex-vc7-sgd-1_37/icu.obj vc7/libboost_regex-vc7-sgd-1_37/instances.obj vc7/libboost_regex-vc7-sgd-1_37/posix_api.obj vc7/libboost_regex-vc7-sgd-1_37/regex.obj vc7/libboost_regex-vc7-sgd-1_37/regex_debug.obj vc7/libboost_regex-vc7-sgd-1_37/regex_raw_buffer.obj vc7/libboost_regex-vc7-sgd-1_37/regex_traits_defaults.obj vc7/libboost_regex-vc7-sgd-1_37/static_mutex.obj vc7/libboost_regex-vc7-sgd-1_37/usinstances.obj vc7/libboost_regex-vc7-sgd-1_37/w32_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_37/wc_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_37/wide_posix_api.obj vc7/libboost_regex-vc7-sgd-1_37/winstances.obj - link -lib /nologo /out:vc7/libboost_regex-vc7-sgd-1_37.lib $(XSFLAGS) vc7/libboost_regex-vc7-sgd-1_37/c_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_37/cpp_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_37/cregex.obj vc7/libboost_regex-vc7-sgd-1_37/fileiter.obj vc7/libboost_regex-vc7-sgd-1_37/icu.obj vc7/libboost_regex-vc7-sgd-1_37/instances.obj vc7/libboost_regex-vc7-sgd-1_37/posix_api.obj vc7/libboost_regex-vc7-sgd-1_37/regex.obj vc7/libboost_regex-vc7-sgd-1_37/regex_debug.obj vc7/libboost_regex-vc7-sgd-1_37/regex_raw_buffer.obj vc7/libboost_regex-vc7-sgd-1_37/regex_traits_defaults.obj vc7/libboost_regex-vc7-sgd-1_37/static_mutex.obj vc7/libboost_regex-vc7-sgd-1_37/usinstances.obj vc7/libboost_regex-vc7-sgd-1_37/w32_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_37/wc_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_37/wide_posix_api.obj vc7/libboost_regex-vc7-sgd-1_37/winstances.obj +./vc7/libboost_regex-vc7-sgd-1_38.lib : vc7/libboost_regex-vc7-sgd-1_38/c_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_38/cpp_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_38/cregex.obj vc7/libboost_regex-vc7-sgd-1_38/fileiter.obj vc7/libboost_regex-vc7-sgd-1_38/icu.obj vc7/libboost_regex-vc7-sgd-1_38/instances.obj vc7/libboost_regex-vc7-sgd-1_38/posix_api.obj vc7/libboost_regex-vc7-sgd-1_38/regex.obj vc7/libboost_regex-vc7-sgd-1_38/regex_debug.obj vc7/libboost_regex-vc7-sgd-1_38/regex_raw_buffer.obj vc7/libboost_regex-vc7-sgd-1_38/regex_traits_defaults.obj vc7/libboost_regex-vc7-sgd-1_38/static_mutex.obj vc7/libboost_regex-vc7-sgd-1_38/usinstances.obj vc7/libboost_regex-vc7-sgd-1_38/w32_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_38/wc_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_38/wide_posix_api.obj vc7/libboost_regex-vc7-sgd-1_38/winstances.obj + link -lib /nologo /out:vc7/libboost_regex-vc7-sgd-1_38.lib $(XSFLAGS) vc7/libboost_regex-vc7-sgd-1_38/c_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_38/cpp_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_38/cregex.obj vc7/libboost_regex-vc7-sgd-1_38/fileiter.obj vc7/libboost_regex-vc7-sgd-1_38/icu.obj vc7/libboost_regex-vc7-sgd-1_38/instances.obj vc7/libboost_regex-vc7-sgd-1_38/posix_api.obj vc7/libboost_regex-vc7-sgd-1_38/regex.obj vc7/libboost_regex-vc7-sgd-1_38/regex_debug.obj vc7/libboost_regex-vc7-sgd-1_38/regex_raw_buffer.obj vc7/libboost_regex-vc7-sgd-1_38/regex_traits_defaults.obj vc7/libboost_regex-vc7-sgd-1_38/static_mutex.obj vc7/libboost_regex-vc7-sgd-1_38/usinstances.obj vc7/libboost_regex-vc7-sgd-1_38/w32_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_38/wc_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_38/wide_posix_api.obj vc7/libboost_regex-vc7-sgd-1_38/winstances.obj ######################################################## # -# section for libboost_regex-vc7-mt-sgd-1_37.lib +# section for libboost_regex-vc7-mt-sgd-1_38.lib # ######################################################## -vc7/libboost_regex-vc7-mt-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_37.pdb ../src/c_regex_traits.cpp +vc7/libboost_regex-vc7-mt-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_38.pdb ../src/c_regex_traits.cpp -vc7/libboost_regex-vc7-mt-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_37.pdb ../src/cpp_regex_traits.cpp +vc7/libboost_regex-vc7-mt-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_38.pdb ../src/cpp_regex_traits.cpp -vc7/libboost_regex-vc7-mt-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_37.pdb ../src/cregex.cpp +vc7/libboost_regex-vc7-mt-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_38.pdb ../src/cregex.cpp -vc7/libboost_regex-vc7-mt-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_37.pdb ../src/fileiter.cpp +vc7/libboost_regex-vc7-mt-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_38.pdb ../src/fileiter.cpp -vc7/libboost_regex-vc7-mt-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_37.pdb ../src/icu.cpp +vc7/libboost_regex-vc7-mt-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_38.pdb ../src/icu.cpp -vc7/libboost_regex-vc7-mt-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_37.pdb ../src/instances.cpp +vc7/libboost_regex-vc7-mt-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_38.pdb ../src/instances.cpp -vc7/libboost_regex-vc7-mt-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_37.pdb ../src/posix_api.cpp +vc7/libboost_regex-vc7-mt-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_38.pdb ../src/posix_api.cpp -vc7/libboost_regex-vc7-mt-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_37.pdb ../src/regex.cpp +vc7/libboost_regex-vc7-mt-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_38.pdb ../src/regex.cpp -vc7/libboost_regex-vc7-mt-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_37.pdb ../src/regex_debug.cpp +vc7/libboost_regex-vc7-mt-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_38.pdb ../src/regex_debug.cpp -vc7/libboost_regex-vc7-mt-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_37.pdb ../src/regex_raw_buffer.cpp +vc7/libboost_regex-vc7-mt-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_38.pdb ../src/regex_raw_buffer.cpp -vc7/libboost_regex-vc7-mt-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_37.pdb ../src/regex_traits_defaults.cpp +vc7/libboost_regex-vc7-mt-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_38.pdb ../src/regex_traits_defaults.cpp -vc7/libboost_regex-vc7-mt-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_37.pdb ../src/static_mutex.cpp +vc7/libboost_regex-vc7-mt-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_38.pdb ../src/static_mutex.cpp -vc7/libboost_regex-vc7-mt-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_37.pdb ../src/usinstances.cpp +vc7/libboost_regex-vc7-mt-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_38.pdb ../src/usinstances.cpp -vc7/libboost_regex-vc7-mt-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_37.pdb ../src/w32_regex_traits.cpp +vc7/libboost_regex-vc7-mt-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_38.pdb ../src/w32_regex_traits.cpp -vc7/libboost_regex-vc7-mt-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_37.pdb ../src/wc_regex_traits.cpp +vc7/libboost_regex-vc7-mt-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_38.pdb ../src/wc_regex_traits.cpp -vc7/libboost_regex-vc7-mt-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_37.pdb ../src/wide_posix_api.cpp +vc7/libboost_regex-vc7-mt-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_38.pdb ../src/wide_posix_api.cpp -vc7/libboost_regex-vc7-mt-sgd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_37.pdb ../src/winstances.cpp +vc7/libboost_regex-vc7-mt-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_38.pdb ../src/winstances.cpp -libboost_regex-vc7-mt-sgd-1_37_dir : - @if not exist "vc7\libboost_regex-vc7-mt-sgd-1_37\$(NULL)" mkdir vc7\libboost_regex-vc7-mt-sgd-1_37 +libboost_regex-vc7-mt-sgd-1_38_dir : + @if not exist "vc7\libboost_regex-vc7-mt-sgd-1_38\$(NULL)" mkdir vc7\libboost_regex-vc7-mt-sgd-1_38 -libboost_regex-vc7-mt-sgd-1_37_clean : - del vc7\libboost_regex-vc7-mt-sgd-1_37\*.obj - del vc7\libboost_regex-vc7-mt-sgd-1_37\*.idb - del vc7\libboost_regex-vc7-mt-sgd-1_37\*.exp - del vc7\libboost_regex-vc7-mt-sgd-1_37\*.pch +libboost_regex-vc7-mt-sgd-1_38_clean : + del vc7\libboost_regex-vc7-mt-sgd-1_38\*.obj + del vc7\libboost_regex-vc7-mt-sgd-1_38\*.idb + del vc7\libboost_regex-vc7-mt-sgd-1_38\*.exp + del vc7\libboost_regex-vc7-mt-sgd-1_38\*.pch -./vc7/libboost_regex-vc7-mt-sgd-1_37.lib : vc7/libboost_regex-vc7-mt-sgd-1_37/c_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_37/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_37/cregex.obj vc7/libboost_regex-vc7-mt-sgd-1_37/fileiter.obj vc7/libboost_regex-vc7-mt-sgd-1_37/icu.obj vc7/libboost_regex-vc7-mt-sgd-1_37/instances.obj vc7/libboost_regex-vc7-mt-sgd-1_37/posix_api.obj vc7/libboost_regex-vc7-mt-sgd-1_37/regex.obj vc7/libboost_regex-vc7-mt-sgd-1_37/regex_debug.obj vc7/libboost_regex-vc7-mt-sgd-1_37/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-sgd-1_37/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-sgd-1_37/static_mutex.obj vc7/libboost_regex-vc7-mt-sgd-1_37/usinstances.obj vc7/libboost_regex-vc7-mt-sgd-1_37/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_37/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_37/wide_posix_api.obj vc7/libboost_regex-vc7-mt-sgd-1_37/winstances.obj - link -lib /nologo /out:vc7/libboost_regex-vc7-mt-sgd-1_37.lib $(XSFLAGS) vc7/libboost_regex-vc7-mt-sgd-1_37/c_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_37/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_37/cregex.obj vc7/libboost_regex-vc7-mt-sgd-1_37/fileiter.obj vc7/libboost_regex-vc7-mt-sgd-1_37/icu.obj vc7/libboost_regex-vc7-mt-sgd-1_37/instances.obj vc7/libboost_regex-vc7-mt-sgd-1_37/posix_api.obj vc7/libboost_regex-vc7-mt-sgd-1_37/regex.obj vc7/libboost_regex-vc7-mt-sgd-1_37/regex_debug.obj vc7/libboost_regex-vc7-mt-sgd-1_37/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-sgd-1_37/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-sgd-1_37/static_mutex.obj vc7/libboost_regex-vc7-mt-sgd-1_37/usinstances.obj vc7/libboost_regex-vc7-mt-sgd-1_37/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_37/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_37/wide_posix_api.obj vc7/libboost_regex-vc7-mt-sgd-1_37/winstances.obj +./vc7/libboost_regex-vc7-mt-sgd-1_38.lib : vc7/libboost_regex-vc7-mt-sgd-1_38/c_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_38/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_38/cregex.obj vc7/libboost_regex-vc7-mt-sgd-1_38/fileiter.obj vc7/libboost_regex-vc7-mt-sgd-1_38/icu.obj vc7/libboost_regex-vc7-mt-sgd-1_38/instances.obj vc7/libboost_regex-vc7-mt-sgd-1_38/posix_api.obj vc7/libboost_regex-vc7-mt-sgd-1_38/regex.obj vc7/libboost_regex-vc7-mt-sgd-1_38/regex_debug.obj vc7/libboost_regex-vc7-mt-sgd-1_38/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-sgd-1_38/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-sgd-1_38/static_mutex.obj vc7/libboost_regex-vc7-mt-sgd-1_38/usinstances.obj vc7/libboost_regex-vc7-mt-sgd-1_38/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_38/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_38/wide_posix_api.obj vc7/libboost_regex-vc7-mt-sgd-1_38/winstances.obj + link -lib /nologo /out:vc7/libboost_regex-vc7-mt-sgd-1_38.lib $(XSFLAGS) vc7/libboost_regex-vc7-mt-sgd-1_38/c_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_38/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_38/cregex.obj vc7/libboost_regex-vc7-mt-sgd-1_38/fileiter.obj vc7/libboost_regex-vc7-mt-sgd-1_38/icu.obj vc7/libboost_regex-vc7-mt-sgd-1_38/instances.obj vc7/libboost_regex-vc7-mt-sgd-1_38/posix_api.obj vc7/libboost_regex-vc7-mt-sgd-1_38/regex.obj vc7/libboost_regex-vc7-mt-sgd-1_38/regex_debug.obj vc7/libboost_regex-vc7-mt-sgd-1_38/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-sgd-1_38/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-sgd-1_38/static_mutex.obj vc7/libboost_regex-vc7-mt-sgd-1_38/usinstances.obj vc7/libboost_regex-vc7-mt-sgd-1_38/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_38/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_38/wide_posix_api.obj vc7/libboost_regex-vc7-mt-sgd-1_38/winstances.obj ######################################################## # -# section for boost_regex-vc7-mt-gd-1_37.lib +# section for boost_regex-vc7-mt-gd-1_38.lib # ######################################################## -vc7/boost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-gd-1_37.pdb ../src/c_regex_traits.cpp +vc7/boost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-gd-1_38.pdb ../src/c_regex_traits.cpp -vc7/boost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-gd-1_37.pdb ../src/cpp_regex_traits.cpp +vc7/boost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-gd-1_38.pdb ../src/cpp_regex_traits.cpp -vc7/boost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-gd-1_37.pdb ../src/cregex.cpp +vc7/boost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-gd-1_38.pdb ../src/cregex.cpp -vc7/boost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-gd-1_37.pdb ../src/fileiter.cpp +vc7/boost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-gd-1_38.pdb ../src/fileiter.cpp -vc7/boost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-gd-1_37.pdb ../src/icu.cpp +vc7/boost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-gd-1_38.pdb ../src/icu.cpp -vc7/boost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-gd-1_37.pdb ../src/instances.cpp +vc7/boost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-gd-1_38.pdb ../src/instances.cpp -vc7/boost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-gd-1_37.pdb ../src/posix_api.cpp +vc7/boost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-gd-1_38.pdb ../src/posix_api.cpp -vc7/boost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-gd-1_37.pdb ../src/regex.cpp +vc7/boost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-gd-1_38.pdb ../src/regex.cpp -vc7/boost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-gd-1_37.pdb ../src/regex_debug.cpp +vc7/boost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-gd-1_38.pdb ../src/regex_debug.cpp -vc7/boost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-gd-1_37.pdb ../src/regex_raw_buffer.cpp +vc7/boost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-gd-1_38.pdb ../src/regex_raw_buffer.cpp -vc7/boost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-gd-1_37.pdb ../src/regex_traits_defaults.cpp +vc7/boost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-gd-1_38.pdb ../src/regex_traits_defaults.cpp -vc7/boost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-gd-1_37.pdb ../src/static_mutex.cpp +vc7/boost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-gd-1_38.pdb ../src/static_mutex.cpp -vc7/boost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-gd-1_37.pdb ../src/usinstances.cpp +vc7/boost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-gd-1_38.pdb ../src/usinstances.cpp -vc7/boost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-gd-1_37.pdb ../src/w32_regex_traits.cpp +vc7/boost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-gd-1_38.pdb ../src/w32_regex_traits.cpp -vc7/boost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-gd-1_37.pdb ../src/wc_regex_traits.cpp +vc7/boost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-gd-1_38.pdb ../src/wc_regex_traits.cpp -vc7/boost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-gd-1_37.pdb ../src/wide_posix_api.cpp +vc7/boost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-gd-1_38.pdb ../src/wide_posix_api.cpp -vc7/boost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-gd-1_37.pdb ../src/winstances.cpp +vc7/boost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-gd-1_38.pdb ../src/winstances.cpp -boost_regex-vc7-mt-gd-1_37_dir : - @if not exist "vc7\boost_regex-vc7-mt-gd-1_37\$(NULL)" mkdir vc7\boost_regex-vc7-mt-gd-1_37 +boost_regex-vc7-mt-gd-1_38_dir : + @if not exist "vc7\boost_regex-vc7-mt-gd-1_38\$(NULL)" mkdir vc7\boost_regex-vc7-mt-gd-1_38 -boost_regex-vc7-mt-gd-1_37_clean : - del vc7\boost_regex-vc7-mt-gd-1_37\*.obj - del vc7\boost_regex-vc7-mt-gd-1_37\*.idb - del vc7\boost_regex-vc7-mt-gd-1_37\*.exp - del vc7\boost_regex-vc7-mt-gd-1_37\*.pch +boost_regex-vc7-mt-gd-1_38_clean : + del vc7\boost_regex-vc7-mt-gd-1_38\*.obj + del vc7\boost_regex-vc7-mt-gd-1_38\*.idb + del vc7\boost_regex-vc7-mt-gd-1_38\*.exp + del vc7\boost_regex-vc7-mt-gd-1_38\*.pch -./vc7/boost_regex-vc7-mt-gd-1_37.lib : vc7/boost_regex-vc7-mt-gd-1_37/c_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_37/cpp_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_37/cregex.obj vc7/boost_regex-vc7-mt-gd-1_37/fileiter.obj vc7/boost_regex-vc7-mt-gd-1_37/icu.obj vc7/boost_regex-vc7-mt-gd-1_37/instances.obj vc7/boost_regex-vc7-mt-gd-1_37/posix_api.obj vc7/boost_regex-vc7-mt-gd-1_37/regex.obj vc7/boost_regex-vc7-mt-gd-1_37/regex_debug.obj vc7/boost_regex-vc7-mt-gd-1_37/regex_raw_buffer.obj vc7/boost_regex-vc7-mt-gd-1_37/regex_traits_defaults.obj vc7/boost_regex-vc7-mt-gd-1_37/static_mutex.obj vc7/boost_regex-vc7-mt-gd-1_37/usinstances.obj vc7/boost_regex-vc7-mt-gd-1_37/w32_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_37/wc_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_37/wide_posix_api.obj vc7/boost_regex-vc7-mt-gd-1_37/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_37.pdb" /debug /machine:I386 /out:"vc7/boost_regex-vc7-mt-gd-1_37.dll" /implib:"vc7/boost_regex-vc7-mt-gd-1_37.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc7/boost_regex-vc7-mt-gd-1_37/c_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_37/cpp_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_37/cregex.obj vc7/boost_regex-vc7-mt-gd-1_37/fileiter.obj vc7/boost_regex-vc7-mt-gd-1_37/icu.obj vc7/boost_regex-vc7-mt-gd-1_37/instances.obj vc7/boost_regex-vc7-mt-gd-1_37/posix_api.obj vc7/boost_regex-vc7-mt-gd-1_37/regex.obj vc7/boost_regex-vc7-mt-gd-1_37/regex_debug.obj vc7/boost_regex-vc7-mt-gd-1_37/regex_raw_buffer.obj vc7/boost_regex-vc7-mt-gd-1_37/regex_traits_defaults.obj vc7/boost_regex-vc7-mt-gd-1_37/static_mutex.obj vc7/boost_regex-vc7-mt-gd-1_37/usinstances.obj vc7/boost_regex-vc7-mt-gd-1_37/w32_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_37/wc_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_37/wide_posix_api.obj vc7/boost_regex-vc7-mt-gd-1_37/winstances.obj +./vc7/boost_regex-vc7-mt-gd-1_38.lib : vc7/boost_regex-vc7-mt-gd-1_38/c_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_38/cpp_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_38/cregex.obj vc7/boost_regex-vc7-mt-gd-1_38/fileiter.obj vc7/boost_regex-vc7-mt-gd-1_38/icu.obj vc7/boost_regex-vc7-mt-gd-1_38/instances.obj vc7/boost_regex-vc7-mt-gd-1_38/posix_api.obj vc7/boost_regex-vc7-mt-gd-1_38/regex.obj vc7/boost_regex-vc7-mt-gd-1_38/regex_debug.obj vc7/boost_regex-vc7-mt-gd-1_38/regex_raw_buffer.obj vc7/boost_regex-vc7-mt-gd-1_38/regex_traits_defaults.obj vc7/boost_regex-vc7-mt-gd-1_38/static_mutex.obj vc7/boost_regex-vc7-mt-gd-1_38/usinstances.obj vc7/boost_regex-vc7-mt-gd-1_38/w32_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_38/wc_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_38/wide_posix_api.obj vc7/boost_regex-vc7-mt-gd-1_38/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_38.pdb" /debug /machine:I386 /out:"vc7/boost_regex-vc7-mt-gd-1_38.dll" /implib:"vc7/boost_regex-vc7-mt-gd-1_38.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc7/boost_regex-vc7-mt-gd-1_38/c_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_38/cpp_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_38/cregex.obj vc7/boost_regex-vc7-mt-gd-1_38/fileiter.obj vc7/boost_regex-vc7-mt-gd-1_38/icu.obj vc7/boost_regex-vc7-mt-gd-1_38/instances.obj vc7/boost_regex-vc7-mt-gd-1_38/posix_api.obj vc7/boost_regex-vc7-mt-gd-1_38/regex.obj vc7/boost_regex-vc7-mt-gd-1_38/regex_debug.obj vc7/boost_regex-vc7-mt-gd-1_38/regex_raw_buffer.obj vc7/boost_regex-vc7-mt-gd-1_38/regex_traits_defaults.obj vc7/boost_regex-vc7-mt-gd-1_38/static_mutex.obj vc7/boost_regex-vc7-mt-gd-1_38/usinstances.obj vc7/boost_regex-vc7-mt-gd-1_38/w32_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_38/wc_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_38/wide_posix_api.obj vc7/boost_regex-vc7-mt-gd-1_38/winstances.obj ######################################################## # -# section for boost_regex-vc7-mt-1_37.lib +# section for boost_regex-vc7-mt-1_38.lib # ######################################################## -vc7/boost_regex-vc7-mt-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-1_37.pdb ../src/c_regex_traits.cpp +vc7/boost_regex-vc7-mt-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-1_38.pdb ../src/c_regex_traits.cpp -vc7/boost_regex-vc7-mt-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-1_37.pdb ../src/cpp_regex_traits.cpp +vc7/boost_regex-vc7-mt-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-1_38.pdb ../src/cpp_regex_traits.cpp -vc7/boost_regex-vc7-mt-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-1_37.pdb ../src/cregex.cpp +vc7/boost_regex-vc7-mt-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-1_38.pdb ../src/cregex.cpp -vc7/boost_regex-vc7-mt-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-1_37.pdb ../src/fileiter.cpp +vc7/boost_regex-vc7-mt-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-1_38.pdb ../src/fileiter.cpp -vc7/boost_regex-vc7-mt-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-1_37.pdb ../src/icu.cpp +vc7/boost_regex-vc7-mt-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-1_38.pdb ../src/icu.cpp -vc7/boost_regex-vc7-mt-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-1_37.pdb ../src/instances.cpp +vc7/boost_regex-vc7-mt-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-1_38.pdb ../src/instances.cpp -vc7/boost_regex-vc7-mt-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-1_37.pdb ../src/posix_api.cpp +vc7/boost_regex-vc7-mt-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-1_38.pdb ../src/posix_api.cpp -vc7/boost_regex-vc7-mt-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-1_37.pdb ../src/regex.cpp +vc7/boost_regex-vc7-mt-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-1_38.pdb ../src/regex.cpp -vc7/boost_regex-vc7-mt-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-1_37.pdb ../src/regex_debug.cpp +vc7/boost_regex-vc7-mt-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-1_38.pdb ../src/regex_debug.cpp -vc7/boost_regex-vc7-mt-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-1_37.pdb ../src/regex_raw_buffer.cpp +vc7/boost_regex-vc7-mt-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-1_38.pdb ../src/regex_raw_buffer.cpp -vc7/boost_regex-vc7-mt-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-1_37.pdb ../src/regex_traits_defaults.cpp +vc7/boost_regex-vc7-mt-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-1_38.pdb ../src/regex_traits_defaults.cpp -vc7/boost_regex-vc7-mt-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-1_37.pdb ../src/static_mutex.cpp +vc7/boost_regex-vc7-mt-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-1_38.pdb ../src/static_mutex.cpp -vc7/boost_regex-vc7-mt-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-1_37.pdb ../src/usinstances.cpp +vc7/boost_regex-vc7-mt-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-1_38.pdb ../src/usinstances.cpp -vc7/boost_regex-vc7-mt-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-1_37.pdb ../src/w32_regex_traits.cpp +vc7/boost_regex-vc7-mt-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-1_38.pdb ../src/w32_regex_traits.cpp -vc7/boost_regex-vc7-mt-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-1_37.pdb ../src/wc_regex_traits.cpp +vc7/boost_regex-vc7-mt-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-1_38.pdb ../src/wc_regex_traits.cpp -vc7/boost_regex-vc7-mt-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-1_37.pdb ../src/wide_posix_api.cpp +vc7/boost_regex-vc7-mt-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-1_38.pdb ../src/wide_posix_api.cpp -vc7/boost_regex-vc7-mt-1_37/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_37/ -Fdvc7/boost_regex-vc7-mt-1_37.pdb ../src/winstances.cpp +vc7/boost_regex-vc7-mt-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-1_38.pdb ../src/winstances.cpp -boost_regex-vc7-mt-1_37_dir : - @if not exist "vc7\boost_regex-vc7-mt-1_37\$(NULL)" mkdir vc7\boost_regex-vc7-mt-1_37 +boost_regex-vc7-mt-1_38_dir : + @if not exist "vc7\boost_regex-vc7-mt-1_38\$(NULL)" mkdir vc7\boost_regex-vc7-mt-1_38 -boost_regex-vc7-mt-1_37_clean : - del vc7\boost_regex-vc7-mt-1_37\*.obj - del vc7\boost_regex-vc7-mt-1_37\*.idb - del vc7\boost_regex-vc7-mt-1_37\*.exp - del vc7\boost_regex-vc7-mt-1_37\*.pch +boost_regex-vc7-mt-1_38_clean : + del vc7\boost_regex-vc7-mt-1_38\*.obj + del vc7\boost_regex-vc7-mt-1_38\*.idb + del vc7\boost_regex-vc7-mt-1_38\*.exp + del vc7\boost_regex-vc7-mt-1_38\*.pch -./vc7/boost_regex-vc7-mt-1_37.lib : vc7/boost_regex-vc7-mt-1_37/c_regex_traits.obj vc7/boost_regex-vc7-mt-1_37/cpp_regex_traits.obj vc7/boost_regex-vc7-mt-1_37/cregex.obj vc7/boost_regex-vc7-mt-1_37/fileiter.obj vc7/boost_regex-vc7-mt-1_37/icu.obj vc7/boost_regex-vc7-mt-1_37/instances.obj vc7/boost_regex-vc7-mt-1_37/posix_api.obj vc7/boost_regex-vc7-mt-1_37/regex.obj vc7/boost_regex-vc7-mt-1_37/regex_debug.obj vc7/boost_regex-vc7-mt-1_37/regex_raw_buffer.obj vc7/boost_regex-vc7-mt-1_37/regex_traits_defaults.obj vc7/boost_regex-vc7-mt-1_37/static_mutex.obj vc7/boost_regex-vc7-mt-1_37/usinstances.obj vc7/boost_regex-vc7-mt-1_37/w32_regex_traits.obj vc7/boost_regex-vc7-mt-1_37/wc_regex_traits.obj vc7/boost_regex-vc7-mt-1_37/wide_posix_api.obj vc7/boost_regex-vc7-mt-1_37/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_37.pdb" /debug /machine:I386 /out:"vc7/boost_regex-vc7-mt-1_37.dll" /implib:"vc7/boost_regex-vc7-mt-1_37.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc7/boost_regex-vc7-mt-1_37/c_regex_traits.obj vc7/boost_regex-vc7-mt-1_37/cpp_regex_traits.obj vc7/boost_regex-vc7-mt-1_37/cregex.obj vc7/boost_regex-vc7-mt-1_37/fileiter.obj vc7/boost_regex-vc7-mt-1_37/icu.obj vc7/boost_regex-vc7-mt-1_37/instances.obj vc7/boost_regex-vc7-mt-1_37/posix_api.obj vc7/boost_regex-vc7-mt-1_37/regex.obj vc7/boost_regex-vc7-mt-1_37/regex_debug.obj vc7/boost_regex-vc7-mt-1_37/regex_raw_buffer.obj vc7/boost_regex-vc7-mt-1_37/regex_traits_defaults.obj vc7/boost_regex-vc7-mt-1_37/static_mutex.obj vc7/boost_regex-vc7-mt-1_37/usinstances.obj vc7/boost_regex-vc7-mt-1_37/w32_regex_traits.obj vc7/boost_regex-vc7-mt-1_37/wc_regex_traits.obj vc7/boost_regex-vc7-mt-1_37/wide_posix_api.obj vc7/boost_regex-vc7-mt-1_37/winstances.obj +./vc7/boost_regex-vc7-mt-1_38.lib : vc7/boost_regex-vc7-mt-1_38/c_regex_traits.obj vc7/boost_regex-vc7-mt-1_38/cpp_regex_traits.obj vc7/boost_regex-vc7-mt-1_38/cregex.obj vc7/boost_regex-vc7-mt-1_38/fileiter.obj vc7/boost_regex-vc7-mt-1_38/icu.obj vc7/boost_regex-vc7-mt-1_38/instances.obj vc7/boost_regex-vc7-mt-1_38/posix_api.obj vc7/boost_regex-vc7-mt-1_38/regex.obj vc7/boost_regex-vc7-mt-1_38/regex_debug.obj vc7/boost_regex-vc7-mt-1_38/regex_raw_buffer.obj vc7/boost_regex-vc7-mt-1_38/regex_traits_defaults.obj vc7/boost_regex-vc7-mt-1_38/static_mutex.obj vc7/boost_regex-vc7-mt-1_38/usinstances.obj vc7/boost_regex-vc7-mt-1_38/w32_regex_traits.obj vc7/boost_regex-vc7-mt-1_38/wc_regex_traits.obj vc7/boost_regex-vc7-mt-1_38/wide_posix_api.obj vc7/boost_regex-vc7-mt-1_38/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_38.pdb" /debug /machine:I386 /out:"vc7/boost_regex-vc7-mt-1_38.dll" /implib:"vc7/boost_regex-vc7-mt-1_38.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc7/boost_regex-vc7-mt-1_38/c_regex_traits.obj vc7/boost_regex-vc7-mt-1_38/cpp_regex_traits.obj vc7/boost_regex-vc7-mt-1_38/cregex.obj vc7/boost_regex-vc7-mt-1_38/fileiter.obj vc7/boost_regex-vc7-mt-1_38/icu.obj vc7/boost_regex-vc7-mt-1_38/instances.obj vc7/boost_regex-vc7-mt-1_38/posix_api.obj vc7/boost_regex-vc7-mt-1_38/regex.obj vc7/boost_regex-vc7-mt-1_38/regex_debug.obj vc7/boost_regex-vc7-mt-1_38/regex_raw_buffer.obj vc7/boost_regex-vc7-mt-1_38/regex_traits_defaults.obj vc7/boost_regex-vc7-mt-1_38/static_mutex.obj vc7/boost_regex-vc7-mt-1_38/usinstances.obj vc7/boost_regex-vc7-mt-1_38/w32_regex_traits.obj vc7/boost_regex-vc7-mt-1_38/wc_regex_traits.obj vc7/boost_regex-vc7-mt-1_38/wide_posix_api.obj vc7/boost_regex-vc7-mt-1_38/winstances.obj ######################################################## # -# section for libboost_regex-vc7-mt-1_37.lib +# section for libboost_regex-vc7-mt-1_38.lib # ######################################################## -vc7/libboost_regex-vc7-mt-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-1_37.pdb ../src/c_regex_traits.cpp +vc7/libboost_regex-vc7-mt-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-1_38.pdb ../src/c_regex_traits.cpp -vc7/libboost_regex-vc7-mt-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-1_37.pdb ../src/cpp_regex_traits.cpp +vc7/libboost_regex-vc7-mt-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-1_38.pdb ../src/cpp_regex_traits.cpp -vc7/libboost_regex-vc7-mt-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-1_37.pdb ../src/cregex.cpp +vc7/libboost_regex-vc7-mt-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-1_38.pdb ../src/cregex.cpp -vc7/libboost_regex-vc7-mt-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-1_37.pdb ../src/fileiter.cpp +vc7/libboost_regex-vc7-mt-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-1_38.pdb ../src/fileiter.cpp -vc7/libboost_regex-vc7-mt-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-1_37.pdb ../src/icu.cpp +vc7/libboost_regex-vc7-mt-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-1_38.pdb ../src/icu.cpp -vc7/libboost_regex-vc7-mt-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-1_37.pdb ../src/instances.cpp +vc7/libboost_regex-vc7-mt-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-1_38.pdb ../src/instances.cpp -vc7/libboost_regex-vc7-mt-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-1_37.pdb ../src/posix_api.cpp +vc7/libboost_regex-vc7-mt-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-1_38.pdb ../src/posix_api.cpp -vc7/libboost_regex-vc7-mt-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-1_37.pdb ../src/regex.cpp +vc7/libboost_regex-vc7-mt-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-1_38.pdb ../src/regex.cpp -vc7/libboost_regex-vc7-mt-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-1_37.pdb ../src/regex_debug.cpp +vc7/libboost_regex-vc7-mt-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-1_38.pdb ../src/regex_debug.cpp -vc7/libboost_regex-vc7-mt-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-1_37.pdb ../src/regex_raw_buffer.cpp +vc7/libboost_regex-vc7-mt-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-1_38.pdb ../src/regex_raw_buffer.cpp -vc7/libboost_regex-vc7-mt-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-1_37.pdb ../src/regex_traits_defaults.cpp +vc7/libboost_regex-vc7-mt-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-1_38.pdb ../src/regex_traits_defaults.cpp -vc7/libboost_regex-vc7-mt-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-1_37.pdb ../src/static_mutex.cpp +vc7/libboost_regex-vc7-mt-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-1_38.pdb ../src/static_mutex.cpp -vc7/libboost_regex-vc7-mt-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-1_37.pdb ../src/usinstances.cpp +vc7/libboost_regex-vc7-mt-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-1_38.pdb ../src/usinstances.cpp -vc7/libboost_regex-vc7-mt-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-1_37.pdb ../src/w32_regex_traits.cpp +vc7/libboost_regex-vc7-mt-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-1_38.pdb ../src/w32_regex_traits.cpp -vc7/libboost_regex-vc7-mt-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-1_37.pdb ../src/wc_regex_traits.cpp +vc7/libboost_regex-vc7-mt-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-1_38.pdb ../src/wc_regex_traits.cpp -vc7/libboost_regex-vc7-mt-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-1_37.pdb ../src/wide_posix_api.cpp +vc7/libboost_regex-vc7-mt-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-1_38.pdb ../src/wide_posix_api.cpp -vc7/libboost_regex-vc7-mt-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-1_37.pdb ../src/winstances.cpp +vc7/libboost_regex-vc7-mt-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-1_38.pdb ../src/winstances.cpp -libboost_regex-vc7-mt-1_37_dir : - @if not exist "vc7\libboost_regex-vc7-mt-1_37\$(NULL)" mkdir vc7\libboost_regex-vc7-mt-1_37 +libboost_regex-vc7-mt-1_38_dir : + @if not exist "vc7\libboost_regex-vc7-mt-1_38\$(NULL)" mkdir vc7\libboost_regex-vc7-mt-1_38 -libboost_regex-vc7-mt-1_37_clean : - del vc7\libboost_regex-vc7-mt-1_37\*.obj - del vc7\libboost_regex-vc7-mt-1_37\*.idb - del vc7\libboost_regex-vc7-mt-1_37\*.exp - del vc7\libboost_regex-vc7-mt-1_37\*.pch +libboost_regex-vc7-mt-1_38_clean : + del vc7\libboost_regex-vc7-mt-1_38\*.obj + del vc7\libboost_regex-vc7-mt-1_38\*.idb + del vc7\libboost_regex-vc7-mt-1_38\*.exp + del vc7\libboost_regex-vc7-mt-1_38\*.pch -./vc7/libboost_regex-vc7-mt-1_37.lib : vc7/libboost_regex-vc7-mt-1_37/c_regex_traits.obj vc7/libboost_regex-vc7-mt-1_37/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-1_37/cregex.obj vc7/libboost_regex-vc7-mt-1_37/fileiter.obj vc7/libboost_regex-vc7-mt-1_37/icu.obj vc7/libboost_regex-vc7-mt-1_37/instances.obj vc7/libboost_regex-vc7-mt-1_37/posix_api.obj vc7/libboost_regex-vc7-mt-1_37/regex.obj vc7/libboost_regex-vc7-mt-1_37/regex_debug.obj vc7/libboost_regex-vc7-mt-1_37/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-1_37/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-1_37/static_mutex.obj vc7/libboost_regex-vc7-mt-1_37/usinstances.obj vc7/libboost_regex-vc7-mt-1_37/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-1_37/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-1_37/wide_posix_api.obj vc7/libboost_regex-vc7-mt-1_37/winstances.obj - link -lib /nologo /out:vc7/libboost_regex-vc7-mt-1_37.lib $(XSFLAGS) vc7/libboost_regex-vc7-mt-1_37/c_regex_traits.obj vc7/libboost_regex-vc7-mt-1_37/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-1_37/cregex.obj vc7/libboost_regex-vc7-mt-1_37/fileiter.obj vc7/libboost_regex-vc7-mt-1_37/icu.obj vc7/libboost_regex-vc7-mt-1_37/instances.obj vc7/libboost_regex-vc7-mt-1_37/posix_api.obj vc7/libboost_regex-vc7-mt-1_37/regex.obj vc7/libboost_regex-vc7-mt-1_37/regex_debug.obj vc7/libboost_regex-vc7-mt-1_37/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-1_37/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-1_37/static_mutex.obj vc7/libboost_regex-vc7-mt-1_37/usinstances.obj vc7/libboost_regex-vc7-mt-1_37/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-1_37/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-1_37/wide_posix_api.obj vc7/libboost_regex-vc7-mt-1_37/winstances.obj +./vc7/libboost_regex-vc7-mt-1_38.lib : vc7/libboost_regex-vc7-mt-1_38/c_regex_traits.obj vc7/libboost_regex-vc7-mt-1_38/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-1_38/cregex.obj vc7/libboost_regex-vc7-mt-1_38/fileiter.obj vc7/libboost_regex-vc7-mt-1_38/icu.obj vc7/libboost_regex-vc7-mt-1_38/instances.obj vc7/libboost_regex-vc7-mt-1_38/posix_api.obj vc7/libboost_regex-vc7-mt-1_38/regex.obj vc7/libboost_regex-vc7-mt-1_38/regex_debug.obj vc7/libboost_regex-vc7-mt-1_38/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-1_38/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-1_38/static_mutex.obj vc7/libboost_regex-vc7-mt-1_38/usinstances.obj vc7/libboost_regex-vc7-mt-1_38/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-1_38/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-1_38/wide_posix_api.obj vc7/libboost_regex-vc7-mt-1_38/winstances.obj + link -lib /nologo /out:vc7/libboost_regex-vc7-mt-1_38.lib $(XSFLAGS) vc7/libboost_regex-vc7-mt-1_38/c_regex_traits.obj vc7/libboost_regex-vc7-mt-1_38/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-1_38/cregex.obj vc7/libboost_regex-vc7-mt-1_38/fileiter.obj vc7/libboost_regex-vc7-mt-1_38/icu.obj vc7/libboost_regex-vc7-mt-1_38/instances.obj vc7/libboost_regex-vc7-mt-1_38/posix_api.obj vc7/libboost_regex-vc7-mt-1_38/regex.obj vc7/libboost_regex-vc7-mt-1_38/regex_debug.obj vc7/libboost_regex-vc7-mt-1_38/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-1_38/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-1_38/static_mutex.obj vc7/libboost_regex-vc7-mt-1_38/usinstances.obj vc7/libboost_regex-vc7-mt-1_38/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-1_38/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-1_38/wide_posix_api.obj vc7/libboost_regex-vc7-mt-1_38/winstances.obj ######################################################## # -# section for libboost_regex-vc7-mt-gd-1_37.lib +# section for libboost_regex-vc7-mt-gd-1_38.lib # ######################################################## -vc7/libboost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-gd-1_37.pdb ../src/c_regex_traits.cpp +vc7/libboost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-gd-1_38.pdb ../src/c_regex_traits.cpp -vc7/libboost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-gd-1_37.pdb ../src/cpp_regex_traits.cpp +vc7/libboost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-gd-1_38.pdb ../src/cpp_regex_traits.cpp -vc7/libboost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-gd-1_37.pdb ../src/cregex.cpp +vc7/libboost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-gd-1_38.pdb ../src/cregex.cpp -vc7/libboost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-gd-1_37.pdb ../src/fileiter.cpp +vc7/libboost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-gd-1_38.pdb ../src/fileiter.cpp -vc7/libboost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-gd-1_37.pdb ../src/icu.cpp +vc7/libboost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-gd-1_38.pdb ../src/icu.cpp -vc7/libboost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-gd-1_37.pdb ../src/instances.cpp +vc7/libboost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-gd-1_38.pdb ../src/instances.cpp -vc7/libboost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-gd-1_37.pdb ../src/posix_api.cpp +vc7/libboost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-gd-1_38.pdb ../src/posix_api.cpp -vc7/libboost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-gd-1_37.pdb ../src/regex.cpp +vc7/libboost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-gd-1_38.pdb ../src/regex.cpp -vc7/libboost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-gd-1_37.pdb ../src/regex_debug.cpp +vc7/libboost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-gd-1_38.pdb ../src/regex_debug.cpp -vc7/libboost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-gd-1_37.pdb ../src/regex_raw_buffer.cpp +vc7/libboost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-gd-1_38.pdb ../src/regex_raw_buffer.cpp -vc7/libboost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-gd-1_37.pdb ../src/regex_traits_defaults.cpp +vc7/libboost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-gd-1_38.pdb ../src/regex_traits_defaults.cpp -vc7/libboost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-gd-1_37.pdb ../src/static_mutex.cpp +vc7/libboost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-gd-1_38.pdb ../src/static_mutex.cpp -vc7/libboost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-gd-1_37.pdb ../src/usinstances.cpp +vc7/libboost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-gd-1_38.pdb ../src/usinstances.cpp -vc7/libboost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-gd-1_37.pdb ../src/w32_regex_traits.cpp +vc7/libboost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-gd-1_38.pdb ../src/w32_regex_traits.cpp -vc7/libboost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-gd-1_37.pdb ../src/wc_regex_traits.cpp +vc7/libboost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-gd-1_38.pdb ../src/wc_regex_traits.cpp -vc7/libboost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-gd-1_37.pdb ../src/wide_posix_api.cpp +vc7/libboost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-gd-1_38.pdb ../src/wide_posix_api.cpp -vc7/libboost_regex-vc7-mt-gd-1_37/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_37/ -Fdvc7/libboost_regex-vc7-mt-gd-1_37.pdb ../src/winstances.cpp +vc7/libboost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-gd-1_38.pdb ../src/winstances.cpp -libboost_regex-vc7-mt-gd-1_37_dir : - @if not exist "vc7\libboost_regex-vc7-mt-gd-1_37\$(NULL)" mkdir vc7\libboost_regex-vc7-mt-gd-1_37 +libboost_regex-vc7-mt-gd-1_38_dir : + @if not exist "vc7\libboost_regex-vc7-mt-gd-1_38\$(NULL)" mkdir vc7\libboost_regex-vc7-mt-gd-1_38 -libboost_regex-vc7-mt-gd-1_37_clean : - del vc7\libboost_regex-vc7-mt-gd-1_37\*.obj - del vc7\libboost_regex-vc7-mt-gd-1_37\*.idb - del vc7\libboost_regex-vc7-mt-gd-1_37\*.exp - del vc7\libboost_regex-vc7-mt-gd-1_37\*.pch +libboost_regex-vc7-mt-gd-1_38_clean : + del vc7\libboost_regex-vc7-mt-gd-1_38\*.obj + del vc7\libboost_regex-vc7-mt-gd-1_38\*.idb + del vc7\libboost_regex-vc7-mt-gd-1_38\*.exp + del vc7\libboost_regex-vc7-mt-gd-1_38\*.pch -./vc7/libboost_regex-vc7-mt-gd-1_37.lib : vc7/libboost_regex-vc7-mt-gd-1_37/c_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_37/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_37/cregex.obj vc7/libboost_regex-vc7-mt-gd-1_37/fileiter.obj vc7/libboost_regex-vc7-mt-gd-1_37/icu.obj vc7/libboost_regex-vc7-mt-gd-1_37/instances.obj vc7/libboost_regex-vc7-mt-gd-1_37/posix_api.obj vc7/libboost_regex-vc7-mt-gd-1_37/regex.obj vc7/libboost_regex-vc7-mt-gd-1_37/regex_debug.obj vc7/libboost_regex-vc7-mt-gd-1_37/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-gd-1_37/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-gd-1_37/static_mutex.obj vc7/libboost_regex-vc7-mt-gd-1_37/usinstances.obj vc7/libboost_regex-vc7-mt-gd-1_37/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_37/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_37/wide_posix_api.obj vc7/libboost_regex-vc7-mt-gd-1_37/winstances.obj - link -lib /nologo /out:vc7/libboost_regex-vc7-mt-gd-1_37.lib $(XSFLAGS) vc7/libboost_regex-vc7-mt-gd-1_37/c_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_37/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_37/cregex.obj vc7/libboost_regex-vc7-mt-gd-1_37/fileiter.obj vc7/libboost_regex-vc7-mt-gd-1_37/icu.obj vc7/libboost_regex-vc7-mt-gd-1_37/instances.obj vc7/libboost_regex-vc7-mt-gd-1_37/posix_api.obj vc7/libboost_regex-vc7-mt-gd-1_37/regex.obj vc7/libboost_regex-vc7-mt-gd-1_37/regex_debug.obj vc7/libboost_regex-vc7-mt-gd-1_37/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-gd-1_37/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-gd-1_37/static_mutex.obj vc7/libboost_regex-vc7-mt-gd-1_37/usinstances.obj vc7/libboost_regex-vc7-mt-gd-1_37/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_37/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_37/wide_posix_api.obj vc7/libboost_regex-vc7-mt-gd-1_37/winstances.obj +./vc7/libboost_regex-vc7-mt-gd-1_38.lib : vc7/libboost_regex-vc7-mt-gd-1_38/c_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_38/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_38/cregex.obj vc7/libboost_regex-vc7-mt-gd-1_38/fileiter.obj vc7/libboost_regex-vc7-mt-gd-1_38/icu.obj vc7/libboost_regex-vc7-mt-gd-1_38/instances.obj vc7/libboost_regex-vc7-mt-gd-1_38/posix_api.obj vc7/libboost_regex-vc7-mt-gd-1_38/regex.obj vc7/libboost_regex-vc7-mt-gd-1_38/regex_debug.obj vc7/libboost_regex-vc7-mt-gd-1_38/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-gd-1_38/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-gd-1_38/static_mutex.obj vc7/libboost_regex-vc7-mt-gd-1_38/usinstances.obj vc7/libboost_regex-vc7-mt-gd-1_38/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_38/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_38/wide_posix_api.obj vc7/libboost_regex-vc7-mt-gd-1_38/winstances.obj + link -lib /nologo /out:vc7/libboost_regex-vc7-mt-gd-1_38.lib $(XSFLAGS) vc7/libboost_regex-vc7-mt-gd-1_38/c_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_38/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_38/cregex.obj vc7/libboost_regex-vc7-mt-gd-1_38/fileiter.obj vc7/libboost_regex-vc7-mt-gd-1_38/icu.obj vc7/libboost_regex-vc7-mt-gd-1_38/instances.obj vc7/libboost_regex-vc7-mt-gd-1_38/posix_api.obj vc7/libboost_regex-vc7-mt-gd-1_38/regex.obj vc7/libboost_regex-vc7-mt-gd-1_38/regex_debug.obj vc7/libboost_regex-vc7-mt-gd-1_38/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-gd-1_38/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-gd-1_38/static_mutex.obj vc7/libboost_regex-vc7-mt-gd-1_38/usinstances.obj vc7/libboost_regex-vc7-mt-gd-1_38/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_38/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_38/wide_posix_api.obj vc7/libboost_regex-vc7-mt-gd-1_38/winstances.obj diff --git a/build/vc71-stlport.mak b/build/vc71-stlport.mak index 1116858b..0ccb2559 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_37_dir ./vc71-stlport/libboost_regex-vc71-mt-sp-1_37.lib boost_regex-vc71-mt-p-1_37_dir ./vc71-stlport/boost_regex-vc71-mt-p-1_37.lib libboost_regex-vc71-mt-p-1_37_dir ./vc71-stlport/libboost_regex-vc71-mt-p-1_37.lib boost_regex-vc71-mt-gdp-1_37_dir ./vc71-stlport/boost_regex-vc71-mt-gdp-1_37.lib libboost_regex-vc71-mt-sgdp-1_37_dir ./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37.lib libboost_regex-vc71-mt-gdp-1_37_dir ./vc71-stlport/libboost_regex-vc71-mt-gdp-1_37.lib +all : main_dir libboost_regex-vc71-mt-sp-1_38_dir ./vc71-stlport/libboost_regex-vc71-mt-sp-1_38.lib boost_regex-vc71-mt-p-1_38_dir ./vc71-stlport/boost_regex-vc71-mt-p-1_38.lib libboost_regex-vc71-mt-p-1_38_dir ./vc71-stlport/libboost_regex-vc71-mt-p-1_38.lib boost_regex-vc71-mt-gdp-1_38_dir ./vc71-stlport/boost_regex-vc71-mt-gdp-1_38.lib libboost_regex-vc71-mt-sgdp-1_38_dir ./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38.lib libboost_regex-vc71-mt-gdp-1_38_dir ./vc71-stlport/libboost_regex-vc71-mt-gdp-1_38.lib -clean : libboost_regex-vc71-mt-sp-1_37_clean boost_regex-vc71-mt-p-1_37_clean libboost_regex-vc71-mt-p-1_37_clean boost_regex-vc71-mt-gdp-1_37_clean libboost_regex-vc71-mt-sgdp-1_37_clean libboost_regex-vc71-mt-gdp-1_37_clean +clean : libboost_regex-vc71-mt-sp-1_38_clean boost_regex-vc71-mt-p-1_38_clean libboost_regex-vc71-mt-p-1_38_clean boost_regex-vc71-mt-gdp-1_38_clean libboost_regex-vc71-mt-sgdp-1_38_clean libboost_regex-vc71-mt-gdp-1_38_clean install : stlport_check all - copy vc71-stlport\libboost_regex-vc71-mt-sp-1_37.lib "$(MSVCDIR)\lib" - copy vc71-stlport\boost_regex-vc71-mt-p-1_37.lib "$(MSVCDIR)\lib" - copy vc71-stlport\boost_regex-vc71-mt-p-1_37.dll "$(MSVCDIR)\bin" - copy vc71-stlport\libboost_regex-vc71-mt-p-1_37.lib "$(MSVCDIR)\lib" - copy vc71-stlport\boost_regex-vc71-mt-gdp-1_37.lib "$(MSVCDIR)\lib" - copy vc71-stlport\boost_regex-vc71-mt-gdp-1_37.dll "$(MSVCDIR)\bin" - copy vc71-stlport\boost_regex-vc71-mt-gdp-1_37.pdb "$(MSVCDIR)\lib" - copy vc71-stlport\libboost_regex-vc71-mt-sgdp-1_37.lib "$(MSVCDIR)\lib" - copy vc71-stlport\libboost_regex-vc71-mt-sgdp-1_37.pdb "$(MSVCDIR)\lib" - copy vc71-stlport\libboost_regex-vc71-mt-gdp-1_37.lib "$(MSVCDIR)\lib" - copy vc71-stlport\libboost_regex-vc71-mt-gdp-1_37.pdb "$(MSVCDIR)\lib" + copy vc71-stlport\libboost_regex-vc71-mt-sp-1_38.lib "$(MSVCDIR)\lib" + copy vc71-stlport\boost_regex-vc71-mt-p-1_38.lib "$(MSVCDIR)\lib" + copy vc71-stlport\boost_regex-vc71-mt-p-1_38.dll "$(MSVCDIR)\bin" + copy vc71-stlport\libboost_regex-vc71-mt-p-1_38.lib "$(MSVCDIR)\lib" + copy vc71-stlport\boost_regex-vc71-mt-gdp-1_38.lib "$(MSVCDIR)\lib" + copy vc71-stlport\boost_regex-vc71-mt-gdp-1_38.dll "$(MSVCDIR)\bin" + copy vc71-stlport\boost_regex-vc71-mt-gdp-1_38.pdb "$(MSVCDIR)\lib" + copy vc71-stlport\libboost_regex-vc71-mt-sgdp-1_38.lib "$(MSVCDIR)\lib" + copy vc71-stlport\libboost_regex-vc71-mt-sgdp-1_38.pdb "$(MSVCDIR)\lib" + copy vc71-stlport\libboost_regex-vc71-mt-gdp-1_38.lib "$(MSVCDIR)\lib" + copy vc71-stlport\libboost_regex-vc71-mt-gdp-1_38.pdb "$(MSVCDIR)\lib" main_dir : @if not exist "vc71-stlport\$(NULL)" mkdir vc71-stlport @@ -88,410 +88,410 @@ stlport_check : "$(STLPORT_PATH)\stlport\string" ######################################################## # -# section for libboost_regex-vc71-mt-sp-1_37.lib +# section for libboost_regex-vc71-mt-sp-1_38.lib # ######################################################## -vc71-stlport/libboost_regex-vc71-mt-sp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_37.pdb ../src/c_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_38.pdb ../src/c_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_37.pdb ../src/cpp_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_38.pdb ../src/cpp_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_37.pdb ../src/cregex.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_38.pdb ../src/cregex.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_37.pdb ../src/fileiter.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_38.pdb ../src/fileiter.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_37.pdb ../src/icu.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_38.pdb ../src/icu.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_37.pdb ../src/instances.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_38.pdb ../src/instances.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_37.pdb ../src/posix_api.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_38.pdb ../src/posix_api.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_37.pdb ../src/regex.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_38.pdb ../src/regex.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_37.pdb ../src/regex_debug.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_38.pdb ../src/regex_debug.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_37.pdb ../src/regex_raw_buffer.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_38.pdb ../src/regex_raw_buffer.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_37.pdb ../src/regex_traits_defaults.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_38.pdb ../src/regex_traits_defaults.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_37.pdb ../src/static_mutex.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_38.pdb ../src/static_mutex.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_37.pdb ../src/usinstances.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_38.pdb ../src/usinstances.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_37.pdb ../src/w32_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_38.pdb ../src/w32_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_37.pdb ../src/wc_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_38.pdb ../src/wc_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_37.pdb ../src/wide_posix_api.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_38.pdb ../src/wide_posix_api.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_37.pdb ../src/winstances.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_38.pdb ../src/winstances.cpp -libboost_regex-vc71-mt-sp-1_37_dir : - @if not exist "vc71-stlport\libboost_regex-vc71-mt-sp-1_37\$(NULL)" mkdir vc71-stlport\libboost_regex-vc71-mt-sp-1_37 +libboost_regex-vc71-mt-sp-1_38_dir : + @if not exist "vc71-stlport\libboost_regex-vc71-mt-sp-1_38\$(NULL)" mkdir vc71-stlport\libboost_regex-vc71-mt-sp-1_38 -libboost_regex-vc71-mt-sp-1_37_clean : - del vc71-stlport\libboost_regex-vc71-mt-sp-1_37\*.obj - del vc71-stlport\libboost_regex-vc71-mt-sp-1_37\*.idb - del vc71-stlport\libboost_regex-vc71-mt-sp-1_37\*.exp - del vc71-stlport\libboost_regex-vc71-mt-sp-1_37\*.pch +libboost_regex-vc71-mt-sp-1_38_clean : + del vc71-stlport\libboost_regex-vc71-mt-sp-1_38\*.obj + del vc71-stlport\libboost_regex-vc71-mt-sp-1_38\*.idb + del vc71-stlport\libboost_regex-vc71-mt-sp-1_38\*.exp + del vc71-stlport\libboost_regex-vc71-mt-sp-1_38\*.pch -./vc71-stlport/libboost_regex-vc71-mt-sp-1_37.lib : vc71-stlport/libboost_regex-vc71-mt-sp-1_37/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/cregex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/icu.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/instances.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/regex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/winstances.obj - link -lib /nologo /out:vc71-stlport/libboost_regex-vc71-mt-sp-1_37.lib $(XSFLAGS) vc71-stlport/libboost_regex-vc71-mt-sp-1_37/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/cregex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/icu.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/instances.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/regex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_37/winstances.obj +./vc71-stlport/libboost_regex-vc71-mt-sp-1_38.lib : vc71-stlport/libboost_regex-vc71-mt-sp-1_38/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/cregex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/icu.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/instances.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/regex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/winstances.obj + link -lib /nologo /out:vc71-stlport/libboost_regex-vc71-mt-sp-1_38.lib $(XSFLAGS) vc71-stlport/libboost_regex-vc71-mt-sp-1_38/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/cregex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/icu.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/instances.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/regex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/winstances.obj ######################################################## # -# section for boost_regex-vc71-mt-p-1_37.lib +# section for boost_regex-vc71-mt-p-1_38.lib # ######################################################## -vc71-stlport/boost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_37.pdb ../src/c_regex_traits.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_38.pdb ../src/c_regex_traits.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_37.pdb ../src/cpp_regex_traits.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_38.pdb ../src/cpp_regex_traits.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_37.pdb ../src/cregex.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_38.pdb ../src/cregex.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_37.pdb ../src/fileiter.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_38.pdb ../src/fileiter.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_37.pdb ../src/icu.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_38.pdb ../src/icu.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_37.pdb ../src/instances.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_38.pdb ../src/instances.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_37.pdb ../src/posix_api.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_38.pdb ../src/posix_api.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_37.pdb ../src/regex.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_38.pdb ../src/regex.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_37.pdb ../src/regex_debug.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_38.pdb ../src/regex_debug.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_37.pdb ../src/regex_raw_buffer.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_38.pdb ../src/regex_raw_buffer.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_37.pdb ../src/regex_traits_defaults.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_38.pdb ../src/regex_traits_defaults.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_37.pdb ../src/static_mutex.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_38.pdb ../src/static_mutex.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_37.pdb ../src/usinstances.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_38.pdb ../src/usinstances.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_37.pdb ../src/w32_regex_traits.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_38.pdb ../src/w32_regex_traits.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_37.pdb ../src/wc_regex_traits.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_38.pdb ../src/wc_regex_traits.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_37.pdb ../src/wide_posix_api.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_38.pdb ../src/wide_posix_api.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_37.pdb ../src/winstances.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_38.pdb ../src/winstances.cpp -boost_regex-vc71-mt-p-1_37_dir : - @if not exist "vc71-stlport\boost_regex-vc71-mt-p-1_37\$(NULL)" mkdir vc71-stlport\boost_regex-vc71-mt-p-1_37 +boost_regex-vc71-mt-p-1_38_dir : + @if not exist "vc71-stlport\boost_regex-vc71-mt-p-1_38\$(NULL)" mkdir vc71-stlport\boost_regex-vc71-mt-p-1_38 -boost_regex-vc71-mt-p-1_37_clean : - del vc71-stlport\boost_regex-vc71-mt-p-1_37\*.obj - del vc71-stlport\boost_regex-vc71-mt-p-1_37\*.idb - del vc71-stlport\boost_regex-vc71-mt-p-1_37\*.exp - del vc71-stlport\boost_regex-vc71-mt-p-1_37\*.pch +boost_regex-vc71-mt-p-1_38_clean : + del vc71-stlport\boost_regex-vc71-mt-p-1_38\*.obj + del vc71-stlport\boost_regex-vc71-mt-p-1_38\*.idb + del vc71-stlport\boost_regex-vc71-mt-p-1_38\*.exp + del vc71-stlport\boost_regex-vc71-mt-p-1_38\*.pch -./vc71-stlport/boost_regex-vc71-mt-p-1_37.lib : vc71-stlport/boost_regex-vc71-mt-p-1_37/c_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/cpp_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/cregex.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/fileiter.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/icu.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/instances.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/posix_api.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/regex.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/regex_debug.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/regex_raw_buffer.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/regex_traits_defaults.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/static_mutex.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/usinstances.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/w32_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/wc_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/wide_posix_api.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/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_37.pdb" /debug /machine:I386 /out:"vc71-stlport/boost_regex-vc71-mt-p-1_37.dll" /implib:"vc71-stlport/boost_regex-vc71-mt-p-1_37.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc71-stlport/boost_regex-vc71-mt-p-1_37/c_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/cpp_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/cregex.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/fileiter.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/icu.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/instances.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/posix_api.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/regex.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/regex_debug.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/regex_raw_buffer.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/regex_traits_defaults.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/static_mutex.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/usinstances.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/w32_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/wc_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/wide_posix_api.obj vc71-stlport/boost_regex-vc71-mt-p-1_37/winstances.obj +./vc71-stlport/boost_regex-vc71-mt-p-1_38.lib : vc71-stlport/boost_regex-vc71-mt-p-1_38/c_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/cpp_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/cregex.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/fileiter.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/icu.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/instances.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/posix_api.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/regex.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/regex_debug.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/regex_raw_buffer.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/regex_traits_defaults.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/static_mutex.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/usinstances.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/w32_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/wc_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/wide_posix_api.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/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_38.pdb" /debug /machine:I386 /out:"vc71-stlport/boost_regex-vc71-mt-p-1_38.dll" /implib:"vc71-stlport/boost_regex-vc71-mt-p-1_38.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc71-stlport/boost_regex-vc71-mt-p-1_38/c_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/cpp_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/cregex.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/fileiter.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/icu.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/instances.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/posix_api.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/regex.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/regex_debug.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/regex_raw_buffer.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/regex_traits_defaults.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/static_mutex.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/usinstances.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/w32_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/wc_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/wide_posix_api.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/winstances.obj ######################################################## # -# section for libboost_regex-vc71-mt-p-1_37.lib +# section for libboost_regex-vc71-mt-p-1_38.lib # ######################################################## -vc71-stlport/libboost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_37.pdb ../src/c_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_38.pdb ../src/c_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_37.pdb ../src/cpp_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_38.pdb ../src/cpp_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_37.pdb ../src/cregex.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_38.pdb ../src/cregex.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_37.pdb ../src/fileiter.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_38.pdb ../src/fileiter.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_37.pdb ../src/icu.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_38.pdb ../src/icu.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_37.pdb ../src/instances.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_38.pdb ../src/instances.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_37.pdb ../src/posix_api.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_38.pdb ../src/posix_api.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_37.pdb ../src/regex.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_38.pdb ../src/regex.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_37.pdb ../src/regex_debug.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_38.pdb ../src/regex_debug.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_37.pdb ../src/regex_raw_buffer.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_38.pdb ../src/regex_raw_buffer.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_37.pdb ../src/regex_traits_defaults.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_38.pdb ../src/regex_traits_defaults.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_37.pdb ../src/static_mutex.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_38.pdb ../src/static_mutex.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_37.pdb ../src/usinstances.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_38.pdb ../src/usinstances.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_37.pdb ../src/w32_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_38.pdb ../src/w32_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_37.pdb ../src/wc_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_38.pdb ../src/wc_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_37.pdb ../src/wide_posix_api.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_38.pdb ../src/wide_posix_api.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_37.pdb ../src/winstances.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_38.pdb ../src/winstances.cpp -libboost_regex-vc71-mt-p-1_37_dir : - @if not exist "vc71-stlport\libboost_regex-vc71-mt-p-1_37\$(NULL)" mkdir vc71-stlport\libboost_regex-vc71-mt-p-1_37 +libboost_regex-vc71-mt-p-1_38_dir : + @if not exist "vc71-stlport\libboost_regex-vc71-mt-p-1_38\$(NULL)" mkdir vc71-stlport\libboost_regex-vc71-mt-p-1_38 -libboost_regex-vc71-mt-p-1_37_clean : - del vc71-stlport\libboost_regex-vc71-mt-p-1_37\*.obj - del vc71-stlport\libboost_regex-vc71-mt-p-1_37\*.idb - del vc71-stlport\libboost_regex-vc71-mt-p-1_37\*.exp - del vc71-stlport\libboost_regex-vc71-mt-p-1_37\*.pch +libboost_regex-vc71-mt-p-1_38_clean : + del vc71-stlport\libboost_regex-vc71-mt-p-1_38\*.obj + del vc71-stlport\libboost_regex-vc71-mt-p-1_38\*.idb + del vc71-stlport\libboost_regex-vc71-mt-p-1_38\*.exp + del vc71-stlport\libboost_regex-vc71-mt-p-1_38\*.pch -./vc71-stlport/libboost_regex-vc71-mt-p-1_37.lib : vc71-stlport/libboost_regex-vc71-mt-p-1_37/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/cregex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/icu.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/instances.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/regex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/winstances.obj - link -lib /nologo /out:vc71-stlport/libboost_regex-vc71-mt-p-1_37.lib $(XSFLAGS) vc71-stlport/libboost_regex-vc71-mt-p-1_37/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/cregex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/icu.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/instances.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/regex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-p-1_37/winstances.obj +./vc71-stlport/libboost_regex-vc71-mt-p-1_38.lib : vc71-stlport/libboost_regex-vc71-mt-p-1_38/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/cregex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/icu.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/instances.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/regex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/winstances.obj + link -lib /nologo /out:vc71-stlport/libboost_regex-vc71-mt-p-1_38.lib $(XSFLAGS) vc71-stlport/libboost_regex-vc71-mt-p-1_38/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/cregex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/icu.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/instances.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/regex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/winstances.obj ######################################################## # -# section for boost_regex-vc71-mt-gdp-1_37.lib +# section for boost_regex-vc71-mt-gdp-1_38.lib # ######################################################## -vc71-stlport/boost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_37.pdb ../src/c_regex_traits.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_38.pdb ../src/c_regex_traits.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_37.pdb ../src/cpp_regex_traits.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_38.pdb ../src/cpp_regex_traits.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_37.pdb ../src/cregex.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_38.pdb ../src/cregex.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_37.pdb ../src/fileiter.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_38.pdb ../src/fileiter.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_37.pdb ../src/icu.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_38.pdb ../src/icu.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_37.pdb ../src/instances.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_38.pdb ../src/instances.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_37.pdb ../src/posix_api.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_38.pdb ../src/posix_api.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_37.pdb ../src/regex.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_38.pdb ../src/regex.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_37.pdb ../src/regex_debug.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_38.pdb ../src/regex_debug.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_37.pdb ../src/regex_raw_buffer.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_38.pdb ../src/regex_raw_buffer.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_37.pdb ../src/regex_traits_defaults.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_38.pdb ../src/regex_traits_defaults.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_37.pdb ../src/static_mutex.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_38.pdb ../src/static_mutex.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_37.pdb ../src/usinstances.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_38.pdb ../src/usinstances.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_37.pdb ../src/w32_regex_traits.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_38.pdb ../src/w32_regex_traits.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_37.pdb ../src/wc_regex_traits.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_38.pdb ../src/wc_regex_traits.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_37.pdb ../src/wide_posix_api.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_38.pdb ../src/wide_posix_api.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_37.pdb ../src/winstances.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_38.pdb ../src/winstances.cpp -boost_regex-vc71-mt-gdp-1_37_dir : - @if not exist "vc71-stlport\boost_regex-vc71-mt-gdp-1_37\$(NULL)" mkdir vc71-stlport\boost_regex-vc71-mt-gdp-1_37 +boost_regex-vc71-mt-gdp-1_38_dir : + @if not exist "vc71-stlport\boost_regex-vc71-mt-gdp-1_38\$(NULL)" mkdir vc71-stlport\boost_regex-vc71-mt-gdp-1_38 -boost_regex-vc71-mt-gdp-1_37_clean : - del vc71-stlport\boost_regex-vc71-mt-gdp-1_37\*.obj - del vc71-stlport\boost_regex-vc71-mt-gdp-1_37\*.idb - del vc71-stlport\boost_regex-vc71-mt-gdp-1_37\*.exp - del vc71-stlport\boost_regex-vc71-mt-gdp-1_37\*.pch +boost_regex-vc71-mt-gdp-1_38_clean : + del vc71-stlport\boost_regex-vc71-mt-gdp-1_38\*.obj + del vc71-stlport\boost_regex-vc71-mt-gdp-1_38\*.idb + del vc71-stlport\boost_regex-vc71-mt-gdp-1_38\*.exp + del vc71-stlport\boost_regex-vc71-mt-gdp-1_38\*.pch -./vc71-stlport/boost_regex-vc71-mt-gdp-1_37.lib : vc71-stlport/boost_regex-vc71-mt-gdp-1_37/c_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/cpp_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/cregex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/fileiter.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/icu.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/instances.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/posix_api.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/regex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/regex_debug.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/regex_raw_buffer.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/regex_traits_defaults.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/static_mutex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/usinstances.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/w32_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/wc_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/wide_posix_api.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/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_37.pdb" /debug /machine:I386 /out:"vc71-stlport/boost_regex-vc71-mt-gdp-1_37.dll" /implib:"vc71-stlport/boost_regex-vc71-mt-gdp-1_37.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc71-stlport/boost_regex-vc71-mt-gdp-1_37/c_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/cpp_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/cregex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/fileiter.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/icu.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/instances.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/posix_api.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/regex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/regex_debug.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/regex_raw_buffer.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/regex_traits_defaults.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/static_mutex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/usinstances.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/w32_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/wc_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/wide_posix_api.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_37/winstances.obj +./vc71-stlport/boost_regex-vc71-mt-gdp-1_38.lib : vc71-stlport/boost_regex-vc71-mt-gdp-1_38/c_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/cpp_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/cregex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/fileiter.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/icu.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/instances.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/posix_api.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/regex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/regex_debug.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/regex_raw_buffer.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/regex_traits_defaults.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/static_mutex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/usinstances.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/w32_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/wc_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/wide_posix_api.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/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_38.pdb" /debug /machine:I386 /out:"vc71-stlport/boost_regex-vc71-mt-gdp-1_38.dll" /implib:"vc71-stlport/boost_regex-vc71-mt-gdp-1_38.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc71-stlport/boost_regex-vc71-mt-gdp-1_38/c_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/cpp_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/cregex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/fileiter.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/icu.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/instances.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/posix_api.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/regex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/regex_debug.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/regex_raw_buffer.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/regex_traits_defaults.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/static_mutex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/usinstances.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/w32_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/wc_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/wide_posix_api.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/winstances.obj ######################################################## # -# section for libboost_regex-vc71-mt-sgdp-1_37.lib +# section for libboost_regex-vc71-mt-sgdp-1_38.lib # ######################################################## -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_37.pdb ../src/c_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_38.pdb ../src/c_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_37.pdb ../src/cpp_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_38.pdb ../src/cpp_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_37.pdb ../src/cregex.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_38.pdb ../src/cregex.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_37.pdb ../src/fileiter.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_38.pdb ../src/fileiter.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_37.pdb ../src/icu.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_38.pdb ../src/icu.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_37.pdb ../src/instances.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_38.pdb ../src/instances.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_37.pdb ../src/posix_api.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_38.pdb ../src/posix_api.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_37.pdb ../src/regex.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_38.pdb ../src/regex.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_37.pdb ../src/regex_debug.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_38.pdb ../src/regex_debug.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_37.pdb ../src/regex_raw_buffer.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_38.pdb ../src/regex_raw_buffer.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_37.pdb ../src/regex_traits_defaults.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_38.pdb ../src/regex_traits_defaults.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_37.pdb ../src/static_mutex.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_38.pdb ../src/static_mutex.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_37.pdb ../src/usinstances.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_38.pdb ../src/usinstances.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_37.pdb ../src/w32_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_38.pdb ../src/w32_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_37.pdb ../src/wc_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_38.pdb ../src/wc_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_37.pdb ../src/wide_posix_api.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_38.pdb ../src/wide_posix_api.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_37.pdb ../src/winstances.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_38.pdb ../src/winstances.cpp -libboost_regex-vc71-mt-sgdp-1_37_dir : - @if not exist "vc71-stlport\libboost_regex-vc71-mt-sgdp-1_37\$(NULL)" mkdir vc71-stlport\libboost_regex-vc71-mt-sgdp-1_37 +libboost_regex-vc71-mt-sgdp-1_38_dir : + @if not exist "vc71-stlport\libboost_regex-vc71-mt-sgdp-1_38\$(NULL)" mkdir vc71-stlport\libboost_regex-vc71-mt-sgdp-1_38 -libboost_regex-vc71-mt-sgdp-1_37_clean : - del vc71-stlport\libboost_regex-vc71-mt-sgdp-1_37\*.obj - del vc71-stlport\libboost_regex-vc71-mt-sgdp-1_37\*.idb - del vc71-stlport\libboost_regex-vc71-mt-sgdp-1_37\*.exp - del vc71-stlport\libboost_regex-vc71-mt-sgdp-1_37\*.pch +libboost_regex-vc71-mt-sgdp-1_38_clean : + del vc71-stlport\libboost_regex-vc71-mt-sgdp-1_38\*.obj + del vc71-stlport\libboost_regex-vc71-mt-sgdp-1_38\*.idb + del vc71-stlport\libboost_regex-vc71-mt-sgdp-1_38\*.exp + del vc71-stlport\libboost_regex-vc71-mt-sgdp-1_38\*.pch -./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37.lib : vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/cregex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/icu.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/instances.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/regex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/winstances.obj - link -lib /nologo /out:vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37.lib $(XSFLAGS) vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/cregex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/icu.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/instances.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/regex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_37/winstances.obj +./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38.lib : vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/cregex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/icu.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/instances.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/regex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/winstances.obj + link -lib /nologo /out:vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38.lib $(XSFLAGS) vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/cregex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/icu.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/instances.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/regex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/winstances.obj ######################################################## # -# section for libboost_regex-vc71-mt-gdp-1_37.lib +# section for libboost_regex-vc71-mt-gdp-1_38.lib # ######################################################## -vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_37.pdb ../src/c_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_38.pdb ../src/c_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_37.pdb ../src/cpp_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_38.pdb ../src/cpp_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_37.pdb ../src/cregex.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_38.pdb ../src/cregex.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_37.pdb ../src/fileiter.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_38.pdb ../src/fileiter.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_37.pdb ../src/icu.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_38.pdb ../src/icu.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_37.pdb ../src/instances.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_38.pdb ../src/instances.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_37.pdb ../src/posix_api.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_38.pdb ../src/posix_api.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_37.pdb ../src/regex.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_38.pdb ../src/regex.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_37.pdb ../src/regex_debug.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_38.pdb ../src/regex_debug.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_37.pdb ../src/regex_raw_buffer.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_38.pdb ../src/regex_raw_buffer.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_37.pdb ../src/regex_traits_defaults.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_38.pdb ../src/regex_traits_defaults.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_37.pdb ../src/static_mutex.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_38.pdb ../src/static_mutex.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_37.pdb ../src/usinstances.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_38.pdb ../src/usinstances.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_37.pdb ../src/w32_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_38.pdb ../src/w32_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_37.pdb ../src/wc_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_38.pdb ../src/wc_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_37.pdb ../src/wide_posix_api.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_38.pdb ../src/wide_posix_api.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/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_37/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_37.pdb ../src/winstances.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_38.pdb ../src/winstances.cpp -libboost_regex-vc71-mt-gdp-1_37_dir : - @if not exist "vc71-stlport\libboost_regex-vc71-mt-gdp-1_37\$(NULL)" mkdir vc71-stlport\libboost_regex-vc71-mt-gdp-1_37 +libboost_regex-vc71-mt-gdp-1_38_dir : + @if not exist "vc71-stlport\libboost_regex-vc71-mt-gdp-1_38\$(NULL)" mkdir vc71-stlport\libboost_regex-vc71-mt-gdp-1_38 -libboost_regex-vc71-mt-gdp-1_37_clean : - del vc71-stlport\libboost_regex-vc71-mt-gdp-1_37\*.obj - del vc71-stlport\libboost_regex-vc71-mt-gdp-1_37\*.idb - del vc71-stlport\libboost_regex-vc71-mt-gdp-1_37\*.exp - del vc71-stlport\libboost_regex-vc71-mt-gdp-1_37\*.pch +libboost_regex-vc71-mt-gdp-1_38_clean : + del vc71-stlport\libboost_regex-vc71-mt-gdp-1_38\*.obj + del vc71-stlport\libboost_regex-vc71-mt-gdp-1_38\*.idb + del vc71-stlport\libboost_regex-vc71-mt-gdp-1_38\*.exp + del vc71-stlport\libboost_regex-vc71-mt-gdp-1_38\*.pch -./vc71-stlport/libboost_regex-vc71-mt-gdp-1_37.lib : vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/cregex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/icu.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/instances.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/regex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/winstances.obj - link -lib /nologo /out:vc71-stlport/libboost_regex-vc71-mt-gdp-1_37.lib $(XSFLAGS) vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/cregex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/icu.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/instances.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/regex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_37/winstances.obj +./vc71-stlport/libboost_regex-vc71-mt-gdp-1_38.lib : vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/cregex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/icu.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/instances.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/regex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/winstances.obj + link -lib /nologo /out:vc71-stlport/libboost_regex-vc71-mt-gdp-1_38.lib $(XSFLAGS) vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/cregex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/icu.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/instances.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/regex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/winstances.obj diff --git a/build/vc71.mak b/build/vc71.mak index d395bc05..aafc9764 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_37_dir ./vc71/libboost_regex-vc71-s-1_37.lib libboost_regex-vc71-mt-s-1_37_dir ./vc71/libboost_regex-vc71-mt-s-1_37.lib libboost_regex-vc71-sgd-1_37_dir ./vc71/libboost_regex-vc71-sgd-1_37.lib libboost_regex-vc71-mt-sgd-1_37_dir ./vc71/libboost_regex-vc71-mt-sgd-1_37.lib boost_regex-vc71-mt-gd-1_37_dir ./vc71/boost_regex-vc71-mt-gd-1_37.lib boost_regex-vc71-mt-1_37_dir ./vc71/boost_regex-vc71-mt-1_37.lib libboost_regex-vc71-mt-1_37_dir ./vc71/libboost_regex-vc71-mt-1_37.lib libboost_regex-vc71-mt-gd-1_37_dir ./vc71/libboost_regex-vc71-mt-gd-1_37.lib +all : main_dir libboost_regex-vc71-s-1_38_dir ./vc71/libboost_regex-vc71-s-1_38.lib libboost_regex-vc71-mt-s-1_38_dir ./vc71/libboost_regex-vc71-mt-s-1_38.lib libboost_regex-vc71-sgd-1_38_dir ./vc71/libboost_regex-vc71-sgd-1_38.lib libboost_regex-vc71-mt-sgd-1_38_dir ./vc71/libboost_regex-vc71-mt-sgd-1_38.lib boost_regex-vc71-mt-gd-1_38_dir ./vc71/boost_regex-vc71-mt-gd-1_38.lib boost_regex-vc71-mt-1_38_dir ./vc71/boost_regex-vc71-mt-1_38.lib libboost_regex-vc71-mt-1_38_dir ./vc71/libboost_regex-vc71-mt-1_38.lib libboost_regex-vc71-mt-gd-1_38_dir ./vc71/libboost_regex-vc71-mt-gd-1_38.lib -clean : libboost_regex-vc71-s-1_37_clean libboost_regex-vc71-mt-s-1_37_clean libboost_regex-vc71-sgd-1_37_clean libboost_regex-vc71-mt-sgd-1_37_clean boost_regex-vc71-mt-gd-1_37_clean boost_regex-vc71-mt-1_37_clean libboost_regex-vc71-mt-1_37_clean libboost_regex-vc71-mt-gd-1_37_clean +clean : libboost_regex-vc71-s-1_38_clean libboost_regex-vc71-mt-s-1_38_clean libboost_regex-vc71-sgd-1_38_clean libboost_regex-vc71-mt-sgd-1_38_clean boost_regex-vc71-mt-gd-1_38_clean boost_regex-vc71-mt-1_38_clean libboost_regex-vc71-mt-1_38_clean libboost_regex-vc71-mt-gd-1_38_clean install : all - copy vc71\libboost_regex-vc71-s-1_37.lib "$(MSVCDIR)\lib" - copy vc71\libboost_regex-vc71-mt-s-1_37.lib "$(MSVCDIR)\lib" - copy vc71\libboost_regex-vc71-sgd-1_37.lib "$(MSVCDIR)\lib" - copy vc71\libboost_regex-vc71-sgd-1_37.pdb "$(MSVCDIR)\lib" - copy vc71\libboost_regex-vc71-mt-sgd-1_37.lib "$(MSVCDIR)\lib" - copy vc71\libboost_regex-vc71-mt-sgd-1_37.pdb "$(MSVCDIR)\lib" - copy vc71\boost_regex-vc71-mt-gd-1_37.lib "$(MSVCDIR)\lib" - copy vc71\boost_regex-vc71-mt-gd-1_37.dll "$(MSVCDIR)\bin" - copy vc71\boost_regex-vc71-mt-gd-1_37.pdb "$(MSVCDIR)\lib" - copy vc71\boost_regex-vc71-mt-1_37.lib "$(MSVCDIR)\lib" - copy vc71\boost_regex-vc71-mt-1_37.dll "$(MSVCDIR)\bin" - copy vc71\libboost_regex-vc71-mt-1_37.lib "$(MSVCDIR)\lib" - copy vc71\libboost_regex-vc71-mt-gd-1_37.lib "$(MSVCDIR)\lib" - copy vc71\libboost_regex-vc71-mt-gd-1_37.pdb "$(MSVCDIR)\lib" + copy vc71\libboost_regex-vc71-s-1_38.lib "$(MSVCDIR)\lib" + copy vc71\libboost_regex-vc71-mt-s-1_38.lib "$(MSVCDIR)\lib" + copy vc71\libboost_regex-vc71-sgd-1_38.lib "$(MSVCDIR)\lib" + copy vc71\libboost_regex-vc71-sgd-1_38.pdb "$(MSVCDIR)\lib" + copy vc71\libboost_regex-vc71-mt-sgd-1_38.lib "$(MSVCDIR)\lib" + copy vc71\libboost_regex-vc71-mt-sgd-1_38.pdb "$(MSVCDIR)\lib" + copy vc71\boost_regex-vc71-mt-gd-1_38.lib "$(MSVCDIR)\lib" + copy vc71\boost_regex-vc71-mt-gd-1_38.dll "$(MSVCDIR)\bin" + copy vc71\boost_regex-vc71-mt-gd-1_38.pdb "$(MSVCDIR)\lib" + copy vc71\boost_regex-vc71-mt-1_38.lib "$(MSVCDIR)\lib" + copy vc71\boost_regex-vc71-mt-1_38.dll "$(MSVCDIR)\bin" + copy vc71\libboost_regex-vc71-mt-1_38.lib "$(MSVCDIR)\lib" + copy vc71\libboost_regex-vc71-mt-gd-1_38.lib "$(MSVCDIR)\lib" + copy vc71\libboost_regex-vc71-mt-gd-1_38.pdb "$(MSVCDIR)\lib" main_dir : @if not exist "vc71\$(NULL)" mkdir vc71 @@ -88,546 +88,546 @@ main_dir : ######################################################## # -# section for libboost_regex-vc71-s-1_37.lib +# section for libboost_regex-vc71-s-1_38.lib # ######################################################## -vc71/libboost_regex-vc71-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-s-1_37.pdb ../src/c_regex_traits.cpp +vc71/libboost_regex-vc71-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-s-1_38.pdb ../src/c_regex_traits.cpp -vc71/libboost_regex-vc71-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-s-1_37.pdb ../src/cpp_regex_traits.cpp +vc71/libboost_regex-vc71-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-s-1_38.pdb ../src/cpp_regex_traits.cpp -vc71/libboost_regex-vc71-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-s-1_37.pdb ../src/cregex.cpp +vc71/libboost_regex-vc71-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-s-1_38.pdb ../src/cregex.cpp -vc71/libboost_regex-vc71-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-s-1_37.pdb ../src/fileiter.cpp +vc71/libboost_regex-vc71-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-s-1_38.pdb ../src/fileiter.cpp -vc71/libboost_regex-vc71-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-s-1_37.pdb ../src/icu.cpp +vc71/libboost_regex-vc71-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-s-1_38.pdb ../src/icu.cpp -vc71/libboost_regex-vc71-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-s-1_37.pdb ../src/instances.cpp +vc71/libboost_regex-vc71-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-s-1_38.pdb ../src/instances.cpp -vc71/libboost_regex-vc71-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-s-1_37.pdb ../src/posix_api.cpp +vc71/libboost_regex-vc71-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-s-1_38.pdb ../src/posix_api.cpp -vc71/libboost_regex-vc71-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-s-1_37.pdb ../src/regex.cpp +vc71/libboost_regex-vc71-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-s-1_38.pdb ../src/regex.cpp -vc71/libboost_regex-vc71-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-s-1_37.pdb ../src/regex_debug.cpp +vc71/libboost_regex-vc71-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-s-1_38.pdb ../src/regex_debug.cpp -vc71/libboost_regex-vc71-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-s-1_37.pdb ../src/regex_raw_buffer.cpp +vc71/libboost_regex-vc71-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-s-1_38.pdb ../src/regex_raw_buffer.cpp -vc71/libboost_regex-vc71-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-s-1_37.pdb ../src/regex_traits_defaults.cpp +vc71/libboost_regex-vc71-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-s-1_38.pdb ../src/regex_traits_defaults.cpp -vc71/libboost_regex-vc71-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-s-1_37.pdb ../src/static_mutex.cpp +vc71/libboost_regex-vc71-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-s-1_38.pdb ../src/static_mutex.cpp -vc71/libboost_regex-vc71-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-s-1_37.pdb ../src/usinstances.cpp +vc71/libboost_regex-vc71-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-s-1_38.pdb ../src/usinstances.cpp -vc71/libboost_regex-vc71-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-s-1_37.pdb ../src/w32_regex_traits.cpp +vc71/libboost_regex-vc71-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-s-1_38.pdb ../src/w32_regex_traits.cpp -vc71/libboost_regex-vc71-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-s-1_37.pdb ../src/wc_regex_traits.cpp +vc71/libboost_regex-vc71-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-s-1_38.pdb ../src/wc_regex_traits.cpp -vc71/libboost_regex-vc71-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-s-1_37.pdb ../src/wide_posix_api.cpp +vc71/libboost_regex-vc71-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-s-1_38.pdb ../src/wide_posix_api.cpp -vc71/libboost_regex-vc71-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-s-1_37.pdb ../src/winstances.cpp +vc71/libboost_regex-vc71-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-s-1_38.pdb ../src/winstances.cpp -libboost_regex-vc71-s-1_37_dir : - @if not exist "vc71\libboost_regex-vc71-s-1_37\$(NULL)" mkdir vc71\libboost_regex-vc71-s-1_37 +libboost_regex-vc71-s-1_38_dir : + @if not exist "vc71\libboost_regex-vc71-s-1_38\$(NULL)" mkdir vc71\libboost_regex-vc71-s-1_38 -libboost_regex-vc71-s-1_37_clean : - del vc71\libboost_regex-vc71-s-1_37\*.obj - del vc71\libboost_regex-vc71-s-1_37\*.idb - del vc71\libboost_regex-vc71-s-1_37\*.exp - del vc71\libboost_regex-vc71-s-1_37\*.pch +libboost_regex-vc71-s-1_38_clean : + del vc71\libboost_regex-vc71-s-1_38\*.obj + del vc71\libboost_regex-vc71-s-1_38\*.idb + del vc71\libboost_regex-vc71-s-1_38\*.exp + del vc71\libboost_regex-vc71-s-1_38\*.pch -./vc71/libboost_regex-vc71-s-1_37.lib : vc71/libboost_regex-vc71-s-1_37/c_regex_traits.obj vc71/libboost_regex-vc71-s-1_37/cpp_regex_traits.obj vc71/libboost_regex-vc71-s-1_37/cregex.obj vc71/libboost_regex-vc71-s-1_37/fileiter.obj vc71/libboost_regex-vc71-s-1_37/icu.obj vc71/libboost_regex-vc71-s-1_37/instances.obj vc71/libboost_regex-vc71-s-1_37/posix_api.obj vc71/libboost_regex-vc71-s-1_37/regex.obj vc71/libboost_regex-vc71-s-1_37/regex_debug.obj vc71/libboost_regex-vc71-s-1_37/regex_raw_buffer.obj vc71/libboost_regex-vc71-s-1_37/regex_traits_defaults.obj vc71/libboost_regex-vc71-s-1_37/static_mutex.obj vc71/libboost_regex-vc71-s-1_37/usinstances.obj vc71/libboost_regex-vc71-s-1_37/w32_regex_traits.obj vc71/libboost_regex-vc71-s-1_37/wc_regex_traits.obj vc71/libboost_regex-vc71-s-1_37/wide_posix_api.obj vc71/libboost_regex-vc71-s-1_37/winstances.obj - link -lib /nologo /out:vc71/libboost_regex-vc71-s-1_37.lib $(XSFLAGS) vc71/libboost_regex-vc71-s-1_37/c_regex_traits.obj vc71/libboost_regex-vc71-s-1_37/cpp_regex_traits.obj vc71/libboost_regex-vc71-s-1_37/cregex.obj vc71/libboost_regex-vc71-s-1_37/fileiter.obj vc71/libboost_regex-vc71-s-1_37/icu.obj vc71/libboost_regex-vc71-s-1_37/instances.obj vc71/libboost_regex-vc71-s-1_37/posix_api.obj vc71/libboost_regex-vc71-s-1_37/regex.obj vc71/libboost_regex-vc71-s-1_37/regex_debug.obj vc71/libboost_regex-vc71-s-1_37/regex_raw_buffer.obj vc71/libboost_regex-vc71-s-1_37/regex_traits_defaults.obj vc71/libboost_regex-vc71-s-1_37/static_mutex.obj vc71/libboost_regex-vc71-s-1_37/usinstances.obj vc71/libboost_regex-vc71-s-1_37/w32_regex_traits.obj vc71/libboost_regex-vc71-s-1_37/wc_regex_traits.obj vc71/libboost_regex-vc71-s-1_37/wide_posix_api.obj vc71/libboost_regex-vc71-s-1_37/winstances.obj +./vc71/libboost_regex-vc71-s-1_38.lib : vc71/libboost_regex-vc71-s-1_38/c_regex_traits.obj vc71/libboost_regex-vc71-s-1_38/cpp_regex_traits.obj vc71/libboost_regex-vc71-s-1_38/cregex.obj vc71/libboost_regex-vc71-s-1_38/fileiter.obj vc71/libboost_regex-vc71-s-1_38/icu.obj vc71/libboost_regex-vc71-s-1_38/instances.obj vc71/libboost_regex-vc71-s-1_38/posix_api.obj vc71/libboost_regex-vc71-s-1_38/regex.obj vc71/libboost_regex-vc71-s-1_38/regex_debug.obj vc71/libboost_regex-vc71-s-1_38/regex_raw_buffer.obj vc71/libboost_regex-vc71-s-1_38/regex_traits_defaults.obj vc71/libboost_regex-vc71-s-1_38/static_mutex.obj vc71/libboost_regex-vc71-s-1_38/usinstances.obj vc71/libboost_regex-vc71-s-1_38/w32_regex_traits.obj vc71/libboost_regex-vc71-s-1_38/wc_regex_traits.obj vc71/libboost_regex-vc71-s-1_38/wide_posix_api.obj vc71/libboost_regex-vc71-s-1_38/winstances.obj + link -lib /nologo /out:vc71/libboost_regex-vc71-s-1_38.lib $(XSFLAGS) vc71/libboost_regex-vc71-s-1_38/c_regex_traits.obj vc71/libboost_regex-vc71-s-1_38/cpp_regex_traits.obj vc71/libboost_regex-vc71-s-1_38/cregex.obj vc71/libboost_regex-vc71-s-1_38/fileiter.obj vc71/libboost_regex-vc71-s-1_38/icu.obj vc71/libboost_regex-vc71-s-1_38/instances.obj vc71/libboost_regex-vc71-s-1_38/posix_api.obj vc71/libboost_regex-vc71-s-1_38/regex.obj vc71/libboost_regex-vc71-s-1_38/regex_debug.obj vc71/libboost_regex-vc71-s-1_38/regex_raw_buffer.obj vc71/libboost_regex-vc71-s-1_38/regex_traits_defaults.obj vc71/libboost_regex-vc71-s-1_38/static_mutex.obj vc71/libboost_regex-vc71-s-1_38/usinstances.obj vc71/libboost_regex-vc71-s-1_38/w32_regex_traits.obj vc71/libboost_regex-vc71-s-1_38/wc_regex_traits.obj vc71/libboost_regex-vc71-s-1_38/wide_posix_api.obj vc71/libboost_regex-vc71-s-1_38/winstances.obj ######################################################## # -# section for libboost_regex-vc71-mt-s-1_37.lib +# section for libboost_regex-vc71-mt-s-1_38.lib # ######################################################## -vc71/libboost_regex-vc71-mt-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-s-1_37.pdb ../src/c_regex_traits.cpp +vc71/libboost_regex-vc71-mt-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-s-1_38.pdb ../src/c_regex_traits.cpp -vc71/libboost_regex-vc71-mt-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-s-1_37.pdb ../src/cpp_regex_traits.cpp +vc71/libboost_regex-vc71-mt-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-s-1_38.pdb ../src/cpp_regex_traits.cpp -vc71/libboost_regex-vc71-mt-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-s-1_37.pdb ../src/cregex.cpp +vc71/libboost_regex-vc71-mt-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-s-1_38.pdb ../src/cregex.cpp -vc71/libboost_regex-vc71-mt-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-s-1_37.pdb ../src/fileiter.cpp +vc71/libboost_regex-vc71-mt-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-s-1_38.pdb ../src/fileiter.cpp -vc71/libboost_regex-vc71-mt-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-s-1_37.pdb ../src/icu.cpp +vc71/libboost_regex-vc71-mt-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-s-1_38.pdb ../src/icu.cpp -vc71/libboost_regex-vc71-mt-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-s-1_37.pdb ../src/instances.cpp +vc71/libboost_regex-vc71-mt-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-s-1_38.pdb ../src/instances.cpp -vc71/libboost_regex-vc71-mt-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-s-1_37.pdb ../src/posix_api.cpp +vc71/libboost_regex-vc71-mt-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-s-1_38.pdb ../src/posix_api.cpp -vc71/libboost_regex-vc71-mt-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-s-1_37.pdb ../src/regex.cpp +vc71/libboost_regex-vc71-mt-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-s-1_38.pdb ../src/regex.cpp -vc71/libboost_regex-vc71-mt-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-s-1_37.pdb ../src/regex_debug.cpp +vc71/libboost_regex-vc71-mt-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-s-1_38.pdb ../src/regex_debug.cpp -vc71/libboost_regex-vc71-mt-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-s-1_37.pdb ../src/regex_raw_buffer.cpp +vc71/libboost_regex-vc71-mt-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-s-1_38.pdb ../src/regex_raw_buffer.cpp -vc71/libboost_regex-vc71-mt-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-s-1_37.pdb ../src/regex_traits_defaults.cpp +vc71/libboost_regex-vc71-mt-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-s-1_38.pdb ../src/regex_traits_defaults.cpp -vc71/libboost_regex-vc71-mt-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-s-1_37.pdb ../src/static_mutex.cpp +vc71/libboost_regex-vc71-mt-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-s-1_38.pdb ../src/static_mutex.cpp -vc71/libboost_regex-vc71-mt-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-s-1_37.pdb ../src/usinstances.cpp +vc71/libboost_regex-vc71-mt-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-s-1_38.pdb ../src/usinstances.cpp -vc71/libboost_regex-vc71-mt-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-s-1_37.pdb ../src/w32_regex_traits.cpp +vc71/libboost_regex-vc71-mt-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-s-1_38.pdb ../src/w32_regex_traits.cpp -vc71/libboost_regex-vc71-mt-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-s-1_37.pdb ../src/wc_regex_traits.cpp +vc71/libboost_regex-vc71-mt-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-s-1_38.pdb ../src/wc_regex_traits.cpp -vc71/libboost_regex-vc71-mt-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-s-1_37.pdb ../src/wide_posix_api.cpp +vc71/libboost_regex-vc71-mt-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-s-1_38.pdb ../src/wide_posix_api.cpp -vc71/libboost_regex-vc71-mt-s-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-s-1_37.pdb ../src/winstances.cpp +vc71/libboost_regex-vc71-mt-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-s-1_38.pdb ../src/winstances.cpp -libboost_regex-vc71-mt-s-1_37_dir : - @if not exist "vc71\libboost_regex-vc71-mt-s-1_37\$(NULL)" mkdir vc71\libboost_regex-vc71-mt-s-1_37 +libboost_regex-vc71-mt-s-1_38_dir : + @if not exist "vc71\libboost_regex-vc71-mt-s-1_38\$(NULL)" mkdir vc71\libboost_regex-vc71-mt-s-1_38 -libboost_regex-vc71-mt-s-1_37_clean : - del vc71\libboost_regex-vc71-mt-s-1_37\*.obj - del vc71\libboost_regex-vc71-mt-s-1_37\*.idb - del vc71\libboost_regex-vc71-mt-s-1_37\*.exp - del vc71\libboost_regex-vc71-mt-s-1_37\*.pch +libboost_regex-vc71-mt-s-1_38_clean : + del vc71\libboost_regex-vc71-mt-s-1_38\*.obj + del vc71\libboost_regex-vc71-mt-s-1_38\*.idb + del vc71\libboost_regex-vc71-mt-s-1_38\*.exp + del vc71\libboost_regex-vc71-mt-s-1_38\*.pch -./vc71/libboost_regex-vc71-mt-s-1_37.lib : vc71/libboost_regex-vc71-mt-s-1_37/c_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_37/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_37/cregex.obj vc71/libboost_regex-vc71-mt-s-1_37/fileiter.obj vc71/libboost_regex-vc71-mt-s-1_37/icu.obj vc71/libboost_regex-vc71-mt-s-1_37/instances.obj vc71/libboost_regex-vc71-mt-s-1_37/posix_api.obj vc71/libboost_regex-vc71-mt-s-1_37/regex.obj vc71/libboost_regex-vc71-mt-s-1_37/regex_debug.obj vc71/libboost_regex-vc71-mt-s-1_37/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-s-1_37/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-s-1_37/static_mutex.obj vc71/libboost_regex-vc71-mt-s-1_37/usinstances.obj vc71/libboost_regex-vc71-mt-s-1_37/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_37/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_37/wide_posix_api.obj vc71/libboost_regex-vc71-mt-s-1_37/winstances.obj - link -lib /nologo /out:vc71/libboost_regex-vc71-mt-s-1_37.lib $(XSFLAGS) vc71/libboost_regex-vc71-mt-s-1_37/c_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_37/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_37/cregex.obj vc71/libboost_regex-vc71-mt-s-1_37/fileiter.obj vc71/libboost_regex-vc71-mt-s-1_37/icu.obj vc71/libboost_regex-vc71-mt-s-1_37/instances.obj vc71/libboost_regex-vc71-mt-s-1_37/posix_api.obj vc71/libboost_regex-vc71-mt-s-1_37/regex.obj vc71/libboost_regex-vc71-mt-s-1_37/regex_debug.obj vc71/libboost_regex-vc71-mt-s-1_37/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-s-1_37/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-s-1_37/static_mutex.obj vc71/libboost_regex-vc71-mt-s-1_37/usinstances.obj vc71/libboost_regex-vc71-mt-s-1_37/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_37/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_37/wide_posix_api.obj vc71/libboost_regex-vc71-mt-s-1_37/winstances.obj +./vc71/libboost_regex-vc71-mt-s-1_38.lib : vc71/libboost_regex-vc71-mt-s-1_38/c_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_38/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_38/cregex.obj vc71/libboost_regex-vc71-mt-s-1_38/fileiter.obj vc71/libboost_regex-vc71-mt-s-1_38/icu.obj vc71/libboost_regex-vc71-mt-s-1_38/instances.obj vc71/libboost_regex-vc71-mt-s-1_38/posix_api.obj vc71/libboost_regex-vc71-mt-s-1_38/regex.obj vc71/libboost_regex-vc71-mt-s-1_38/regex_debug.obj vc71/libboost_regex-vc71-mt-s-1_38/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-s-1_38/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-s-1_38/static_mutex.obj vc71/libboost_regex-vc71-mt-s-1_38/usinstances.obj vc71/libboost_regex-vc71-mt-s-1_38/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_38/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_38/wide_posix_api.obj vc71/libboost_regex-vc71-mt-s-1_38/winstances.obj + link -lib /nologo /out:vc71/libboost_regex-vc71-mt-s-1_38.lib $(XSFLAGS) vc71/libboost_regex-vc71-mt-s-1_38/c_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_38/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_38/cregex.obj vc71/libboost_regex-vc71-mt-s-1_38/fileiter.obj vc71/libboost_regex-vc71-mt-s-1_38/icu.obj vc71/libboost_regex-vc71-mt-s-1_38/instances.obj vc71/libboost_regex-vc71-mt-s-1_38/posix_api.obj vc71/libboost_regex-vc71-mt-s-1_38/regex.obj vc71/libboost_regex-vc71-mt-s-1_38/regex_debug.obj vc71/libboost_regex-vc71-mt-s-1_38/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-s-1_38/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-s-1_38/static_mutex.obj vc71/libboost_regex-vc71-mt-s-1_38/usinstances.obj vc71/libboost_regex-vc71-mt-s-1_38/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_38/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_38/wide_posix_api.obj vc71/libboost_regex-vc71-mt-s-1_38/winstances.obj ######################################################## # -# section for libboost_regex-vc71-sgd-1_37.lib +# section for libboost_regex-vc71-sgd-1_38.lib # ######################################################## -vc71/libboost_regex-vc71-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-sgd-1_37.pdb ../src/c_regex_traits.cpp +vc71/libboost_regex-vc71-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-sgd-1_38.pdb ../src/c_regex_traits.cpp -vc71/libboost_regex-vc71-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-sgd-1_37.pdb ../src/cpp_regex_traits.cpp +vc71/libboost_regex-vc71-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-sgd-1_38.pdb ../src/cpp_regex_traits.cpp -vc71/libboost_regex-vc71-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-sgd-1_37.pdb ../src/cregex.cpp +vc71/libboost_regex-vc71-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-sgd-1_38.pdb ../src/cregex.cpp -vc71/libboost_regex-vc71-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-sgd-1_37.pdb ../src/fileiter.cpp +vc71/libboost_regex-vc71-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-sgd-1_38.pdb ../src/fileiter.cpp -vc71/libboost_regex-vc71-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-sgd-1_37.pdb ../src/icu.cpp +vc71/libboost_regex-vc71-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-sgd-1_38.pdb ../src/icu.cpp -vc71/libboost_regex-vc71-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-sgd-1_37.pdb ../src/instances.cpp +vc71/libboost_regex-vc71-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-sgd-1_38.pdb ../src/instances.cpp -vc71/libboost_regex-vc71-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-sgd-1_37.pdb ../src/posix_api.cpp +vc71/libboost_regex-vc71-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-sgd-1_38.pdb ../src/posix_api.cpp -vc71/libboost_regex-vc71-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-sgd-1_37.pdb ../src/regex.cpp +vc71/libboost_regex-vc71-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-sgd-1_38.pdb ../src/regex.cpp -vc71/libboost_regex-vc71-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-sgd-1_37.pdb ../src/regex_debug.cpp +vc71/libboost_regex-vc71-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-sgd-1_38.pdb ../src/regex_debug.cpp -vc71/libboost_regex-vc71-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-sgd-1_37.pdb ../src/regex_raw_buffer.cpp +vc71/libboost_regex-vc71-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-sgd-1_38.pdb ../src/regex_raw_buffer.cpp -vc71/libboost_regex-vc71-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-sgd-1_37.pdb ../src/regex_traits_defaults.cpp +vc71/libboost_regex-vc71-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-sgd-1_38.pdb ../src/regex_traits_defaults.cpp -vc71/libboost_regex-vc71-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-sgd-1_37.pdb ../src/static_mutex.cpp +vc71/libboost_regex-vc71-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-sgd-1_38.pdb ../src/static_mutex.cpp -vc71/libboost_regex-vc71-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-sgd-1_37.pdb ../src/usinstances.cpp +vc71/libboost_regex-vc71-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-sgd-1_38.pdb ../src/usinstances.cpp -vc71/libboost_regex-vc71-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-sgd-1_37.pdb ../src/w32_regex_traits.cpp +vc71/libboost_regex-vc71-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-sgd-1_38.pdb ../src/w32_regex_traits.cpp -vc71/libboost_regex-vc71-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-sgd-1_37.pdb ../src/wc_regex_traits.cpp +vc71/libboost_regex-vc71-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-sgd-1_38.pdb ../src/wc_regex_traits.cpp -vc71/libboost_regex-vc71-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-sgd-1_37.pdb ../src/wide_posix_api.cpp +vc71/libboost_regex-vc71-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-sgd-1_38.pdb ../src/wide_posix_api.cpp -vc71/libboost_regex-vc71-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-sgd-1_37.pdb ../src/winstances.cpp +vc71/libboost_regex-vc71-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-sgd-1_38.pdb ../src/winstances.cpp -libboost_regex-vc71-sgd-1_37_dir : - @if not exist "vc71\libboost_regex-vc71-sgd-1_37\$(NULL)" mkdir vc71\libboost_regex-vc71-sgd-1_37 +libboost_regex-vc71-sgd-1_38_dir : + @if not exist "vc71\libboost_regex-vc71-sgd-1_38\$(NULL)" mkdir vc71\libboost_regex-vc71-sgd-1_38 -libboost_regex-vc71-sgd-1_37_clean : - del vc71\libboost_regex-vc71-sgd-1_37\*.obj - del vc71\libboost_regex-vc71-sgd-1_37\*.idb - del vc71\libboost_regex-vc71-sgd-1_37\*.exp - del vc71\libboost_regex-vc71-sgd-1_37\*.pch +libboost_regex-vc71-sgd-1_38_clean : + del vc71\libboost_regex-vc71-sgd-1_38\*.obj + del vc71\libboost_regex-vc71-sgd-1_38\*.idb + del vc71\libboost_regex-vc71-sgd-1_38\*.exp + del vc71\libboost_regex-vc71-sgd-1_38\*.pch -./vc71/libboost_regex-vc71-sgd-1_37.lib : vc71/libboost_regex-vc71-sgd-1_37/c_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_37/cpp_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_37/cregex.obj vc71/libboost_regex-vc71-sgd-1_37/fileiter.obj vc71/libboost_regex-vc71-sgd-1_37/icu.obj vc71/libboost_regex-vc71-sgd-1_37/instances.obj vc71/libboost_regex-vc71-sgd-1_37/posix_api.obj vc71/libboost_regex-vc71-sgd-1_37/regex.obj vc71/libboost_regex-vc71-sgd-1_37/regex_debug.obj vc71/libboost_regex-vc71-sgd-1_37/regex_raw_buffer.obj vc71/libboost_regex-vc71-sgd-1_37/regex_traits_defaults.obj vc71/libboost_regex-vc71-sgd-1_37/static_mutex.obj vc71/libboost_regex-vc71-sgd-1_37/usinstances.obj vc71/libboost_regex-vc71-sgd-1_37/w32_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_37/wc_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_37/wide_posix_api.obj vc71/libboost_regex-vc71-sgd-1_37/winstances.obj - link -lib /nologo /out:vc71/libboost_regex-vc71-sgd-1_37.lib $(XSFLAGS) vc71/libboost_regex-vc71-sgd-1_37/c_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_37/cpp_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_37/cregex.obj vc71/libboost_regex-vc71-sgd-1_37/fileiter.obj vc71/libboost_regex-vc71-sgd-1_37/icu.obj vc71/libboost_regex-vc71-sgd-1_37/instances.obj vc71/libboost_regex-vc71-sgd-1_37/posix_api.obj vc71/libboost_regex-vc71-sgd-1_37/regex.obj vc71/libboost_regex-vc71-sgd-1_37/regex_debug.obj vc71/libboost_regex-vc71-sgd-1_37/regex_raw_buffer.obj vc71/libboost_regex-vc71-sgd-1_37/regex_traits_defaults.obj vc71/libboost_regex-vc71-sgd-1_37/static_mutex.obj vc71/libboost_regex-vc71-sgd-1_37/usinstances.obj vc71/libboost_regex-vc71-sgd-1_37/w32_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_37/wc_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_37/wide_posix_api.obj vc71/libboost_regex-vc71-sgd-1_37/winstances.obj +./vc71/libboost_regex-vc71-sgd-1_38.lib : vc71/libboost_regex-vc71-sgd-1_38/c_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_38/cpp_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_38/cregex.obj vc71/libboost_regex-vc71-sgd-1_38/fileiter.obj vc71/libboost_regex-vc71-sgd-1_38/icu.obj vc71/libboost_regex-vc71-sgd-1_38/instances.obj vc71/libboost_regex-vc71-sgd-1_38/posix_api.obj vc71/libboost_regex-vc71-sgd-1_38/regex.obj vc71/libboost_regex-vc71-sgd-1_38/regex_debug.obj vc71/libboost_regex-vc71-sgd-1_38/regex_raw_buffer.obj vc71/libboost_regex-vc71-sgd-1_38/regex_traits_defaults.obj vc71/libboost_regex-vc71-sgd-1_38/static_mutex.obj vc71/libboost_regex-vc71-sgd-1_38/usinstances.obj vc71/libboost_regex-vc71-sgd-1_38/w32_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_38/wc_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_38/wide_posix_api.obj vc71/libboost_regex-vc71-sgd-1_38/winstances.obj + link -lib /nologo /out:vc71/libboost_regex-vc71-sgd-1_38.lib $(XSFLAGS) vc71/libboost_regex-vc71-sgd-1_38/c_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_38/cpp_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_38/cregex.obj vc71/libboost_regex-vc71-sgd-1_38/fileiter.obj vc71/libboost_regex-vc71-sgd-1_38/icu.obj vc71/libboost_regex-vc71-sgd-1_38/instances.obj vc71/libboost_regex-vc71-sgd-1_38/posix_api.obj vc71/libboost_regex-vc71-sgd-1_38/regex.obj vc71/libboost_regex-vc71-sgd-1_38/regex_debug.obj vc71/libboost_regex-vc71-sgd-1_38/regex_raw_buffer.obj vc71/libboost_regex-vc71-sgd-1_38/regex_traits_defaults.obj vc71/libboost_regex-vc71-sgd-1_38/static_mutex.obj vc71/libboost_regex-vc71-sgd-1_38/usinstances.obj vc71/libboost_regex-vc71-sgd-1_38/w32_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_38/wc_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_38/wide_posix_api.obj vc71/libboost_regex-vc71-sgd-1_38/winstances.obj ######################################################## # -# section for libboost_regex-vc71-mt-sgd-1_37.lib +# section for libboost_regex-vc71-mt-sgd-1_38.lib # ######################################################## -vc71/libboost_regex-vc71-mt-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_37.pdb ../src/c_regex_traits.cpp +vc71/libboost_regex-vc71-mt-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_38.pdb ../src/c_regex_traits.cpp -vc71/libboost_regex-vc71-mt-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_37.pdb ../src/cpp_regex_traits.cpp +vc71/libboost_regex-vc71-mt-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_38.pdb ../src/cpp_regex_traits.cpp -vc71/libboost_regex-vc71-mt-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_37.pdb ../src/cregex.cpp +vc71/libboost_regex-vc71-mt-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_38.pdb ../src/cregex.cpp -vc71/libboost_regex-vc71-mt-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_37.pdb ../src/fileiter.cpp +vc71/libboost_regex-vc71-mt-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_38.pdb ../src/fileiter.cpp -vc71/libboost_regex-vc71-mt-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_37.pdb ../src/icu.cpp +vc71/libboost_regex-vc71-mt-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_38.pdb ../src/icu.cpp -vc71/libboost_regex-vc71-mt-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_37.pdb ../src/instances.cpp +vc71/libboost_regex-vc71-mt-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_38.pdb ../src/instances.cpp -vc71/libboost_regex-vc71-mt-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_37.pdb ../src/posix_api.cpp +vc71/libboost_regex-vc71-mt-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_38.pdb ../src/posix_api.cpp -vc71/libboost_regex-vc71-mt-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_37.pdb ../src/regex.cpp +vc71/libboost_regex-vc71-mt-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_38.pdb ../src/regex.cpp -vc71/libboost_regex-vc71-mt-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_37.pdb ../src/regex_debug.cpp +vc71/libboost_regex-vc71-mt-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_38.pdb ../src/regex_debug.cpp -vc71/libboost_regex-vc71-mt-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_37.pdb ../src/regex_raw_buffer.cpp +vc71/libboost_regex-vc71-mt-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_38.pdb ../src/regex_raw_buffer.cpp -vc71/libboost_regex-vc71-mt-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_37.pdb ../src/regex_traits_defaults.cpp +vc71/libboost_regex-vc71-mt-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_38.pdb ../src/regex_traits_defaults.cpp -vc71/libboost_regex-vc71-mt-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_37.pdb ../src/static_mutex.cpp +vc71/libboost_regex-vc71-mt-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_38.pdb ../src/static_mutex.cpp -vc71/libboost_regex-vc71-mt-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_37.pdb ../src/usinstances.cpp +vc71/libboost_regex-vc71-mt-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_38.pdb ../src/usinstances.cpp -vc71/libboost_regex-vc71-mt-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_37.pdb ../src/w32_regex_traits.cpp +vc71/libboost_regex-vc71-mt-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_38.pdb ../src/w32_regex_traits.cpp -vc71/libboost_regex-vc71-mt-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_37.pdb ../src/wc_regex_traits.cpp +vc71/libboost_regex-vc71-mt-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_38.pdb ../src/wc_regex_traits.cpp -vc71/libboost_regex-vc71-mt-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_37.pdb ../src/wide_posix_api.cpp +vc71/libboost_regex-vc71-mt-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_38.pdb ../src/wide_posix_api.cpp -vc71/libboost_regex-vc71-mt-sgd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_37.pdb ../src/winstances.cpp +vc71/libboost_regex-vc71-mt-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_38.pdb ../src/winstances.cpp -libboost_regex-vc71-mt-sgd-1_37_dir : - @if not exist "vc71\libboost_regex-vc71-mt-sgd-1_37\$(NULL)" mkdir vc71\libboost_regex-vc71-mt-sgd-1_37 +libboost_regex-vc71-mt-sgd-1_38_dir : + @if not exist "vc71\libboost_regex-vc71-mt-sgd-1_38\$(NULL)" mkdir vc71\libboost_regex-vc71-mt-sgd-1_38 -libboost_regex-vc71-mt-sgd-1_37_clean : - del vc71\libboost_regex-vc71-mt-sgd-1_37\*.obj - del vc71\libboost_regex-vc71-mt-sgd-1_37\*.idb - del vc71\libboost_regex-vc71-mt-sgd-1_37\*.exp - del vc71\libboost_regex-vc71-mt-sgd-1_37\*.pch +libboost_regex-vc71-mt-sgd-1_38_clean : + del vc71\libboost_regex-vc71-mt-sgd-1_38\*.obj + del vc71\libboost_regex-vc71-mt-sgd-1_38\*.idb + del vc71\libboost_regex-vc71-mt-sgd-1_38\*.exp + del vc71\libboost_regex-vc71-mt-sgd-1_38\*.pch -./vc71/libboost_regex-vc71-mt-sgd-1_37.lib : vc71/libboost_regex-vc71-mt-sgd-1_37/c_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_37/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_37/cregex.obj vc71/libboost_regex-vc71-mt-sgd-1_37/fileiter.obj vc71/libboost_regex-vc71-mt-sgd-1_37/icu.obj vc71/libboost_regex-vc71-mt-sgd-1_37/instances.obj vc71/libboost_regex-vc71-mt-sgd-1_37/posix_api.obj vc71/libboost_regex-vc71-mt-sgd-1_37/regex.obj vc71/libboost_regex-vc71-mt-sgd-1_37/regex_debug.obj vc71/libboost_regex-vc71-mt-sgd-1_37/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-sgd-1_37/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-sgd-1_37/static_mutex.obj vc71/libboost_regex-vc71-mt-sgd-1_37/usinstances.obj vc71/libboost_regex-vc71-mt-sgd-1_37/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_37/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_37/wide_posix_api.obj vc71/libboost_regex-vc71-mt-sgd-1_37/winstances.obj - link -lib /nologo /out:vc71/libboost_regex-vc71-mt-sgd-1_37.lib $(XSFLAGS) vc71/libboost_regex-vc71-mt-sgd-1_37/c_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_37/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_37/cregex.obj vc71/libboost_regex-vc71-mt-sgd-1_37/fileiter.obj vc71/libboost_regex-vc71-mt-sgd-1_37/icu.obj vc71/libboost_regex-vc71-mt-sgd-1_37/instances.obj vc71/libboost_regex-vc71-mt-sgd-1_37/posix_api.obj vc71/libboost_regex-vc71-mt-sgd-1_37/regex.obj vc71/libboost_regex-vc71-mt-sgd-1_37/regex_debug.obj vc71/libboost_regex-vc71-mt-sgd-1_37/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-sgd-1_37/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-sgd-1_37/static_mutex.obj vc71/libboost_regex-vc71-mt-sgd-1_37/usinstances.obj vc71/libboost_regex-vc71-mt-sgd-1_37/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_37/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_37/wide_posix_api.obj vc71/libboost_regex-vc71-mt-sgd-1_37/winstances.obj +./vc71/libboost_regex-vc71-mt-sgd-1_38.lib : vc71/libboost_regex-vc71-mt-sgd-1_38/c_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_38/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_38/cregex.obj vc71/libboost_regex-vc71-mt-sgd-1_38/fileiter.obj vc71/libboost_regex-vc71-mt-sgd-1_38/icu.obj vc71/libboost_regex-vc71-mt-sgd-1_38/instances.obj vc71/libboost_regex-vc71-mt-sgd-1_38/posix_api.obj vc71/libboost_regex-vc71-mt-sgd-1_38/regex.obj vc71/libboost_regex-vc71-mt-sgd-1_38/regex_debug.obj vc71/libboost_regex-vc71-mt-sgd-1_38/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-sgd-1_38/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-sgd-1_38/static_mutex.obj vc71/libboost_regex-vc71-mt-sgd-1_38/usinstances.obj vc71/libboost_regex-vc71-mt-sgd-1_38/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_38/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_38/wide_posix_api.obj vc71/libboost_regex-vc71-mt-sgd-1_38/winstances.obj + link -lib /nologo /out:vc71/libboost_regex-vc71-mt-sgd-1_38.lib $(XSFLAGS) vc71/libboost_regex-vc71-mt-sgd-1_38/c_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_38/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_38/cregex.obj vc71/libboost_regex-vc71-mt-sgd-1_38/fileiter.obj vc71/libboost_regex-vc71-mt-sgd-1_38/icu.obj vc71/libboost_regex-vc71-mt-sgd-1_38/instances.obj vc71/libboost_regex-vc71-mt-sgd-1_38/posix_api.obj vc71/libboost_regex-vc71-mt-sgd-1_38/regex.obj vc71/libboost_regex-vc71-mt-sgd-1_38/regex_debug.obj vc71/libboost_regex-vc71-mt-sgd-1_38/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-sgd-1_38/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-sgd-1_38/static_mutex.obj vc71/libboost_regex-vc71-mt-sgd-1_38/usinstances.obj vc71/libboost_regex-vc71-mt-sgd-1_38/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_38/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_38/wide_posix_api.obj vc71/libboost_regex-vc71-mt-sgd-1_38/winstances.obj ######################################################## # -# section for boost_regex-vc71-mt-gd-1_37.lib +# section for boost_regex-vc71-mt-gd-1_38.lib # ######################################################## -vc71/boost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-gd-1_37.pdb ../src/c_regex_traits.cpp +vc71/boost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-gd-1_38.pdb ../src/c_regex_traits.cpp -vc71/boost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-gd-1_37.pdb ../src/cpp_regex_traits.cpp +vc71/boost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-gd-1_38.pdb ../src/cpp_regex_traits.cpp -vc71/boost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-gd-1_37.pdb ../src/cregex.cpp +vc71/boost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-gd-1_38.pdb ../src/cregex.cpp -vc71/boost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-gd-1_37.pdb ../src/fileiter.cpp +vc71/boost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-gd-1_38.pdb ../src/fileiter.cpp -vc71/boost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-gd-1_37.pdb ../src/icu.cpp +vc71/boost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-gd-1_38.pdb ../src/icu.cpp -vc71/boost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-gd-1_37.pdb ../src/instances.cpp +vc71/boost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-gd-1_38.pdb ../src/instances.cpp -vc71/boost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-gd-1_37.pdb ../src/posix_api.cpp +vc71/boost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-gd-1_38.pdb ../src/posix_api.cpp -vc71/boost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-gd-1_37.pdb ../src/regex.cpp +vc71/boost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-gd-1_38.pdb ../src/regex.cpp -vc71/boost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-gd-1_37.pdb ../src/regex_debug.cpp +vc71/boost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-gd-1_38.pdb ../src/regex_debug.cpp -vc71/boost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-gd-1_37.pdb ../src/regex_raw_buffer.cpp +vc71/boost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-gd-1_38.pdb ../src/regex_raw_buffer.cpp -vc71/boost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-gd-1_37.pdb ../src/regex_traits_defaults.cpp +vc71/boost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-gd-1_38.pdb ../src/regex_traits_defaults.cpp -vc71/boost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-gd-1_37.pdb ../src/static_mutex.cpp +vc71/boost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-gd-1_38.pdb ../src/static_mutex.cpp -vc71/boost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-gd-1_37.pdb ../src/usinstances.cpp +vc71/boost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-gd-1_38.pdb ../src/usinstances.cpp -vc71/boost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-gd-1_37.pdb ../src/w32_regex_traits.cpp +vc71/boost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-gd-1_38.pdb ../src/w32_regex_traits.cpp -vc71/boost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-gd-1_37.pdb ../src/wc_regex_traits.cpp +vc71/boost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-gd-1_38.pdb ../src/wc_regex_traits.cpp -vc71/boost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-gd-1_37.pdb ../src/wide_posix_api.cpp +vc71/boost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-gd-1_38.pdb ../src/wide_posix_api.cpp -vc71/boost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-gd-1_37.pdb ../src/winstances.cpp +vc71/boost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-gd-1_38.pdb ../src/winstances.cpp -boost_regex-vc71-mt-gd-1_37_dir : - @if not exist "vc71\boost_regex-vc71-mt-gd-1_37\$(NULL)" mkdir vc71\boost_regex-vc71-mt-gd-1_37 +boost_regex-vc71-mt-gd-1_38_dir : + @if not exist "vc71\boost_regex-vc71-mt-gd-1_38\$(NULL)" mkdir vc71\boost_regex-vc71-mt-gd-1_38 -boost_regex-vc71-mt-gd-1_37_clean : - del vc71\boost_regex-vc71-mt-gd-1_37\*.obj - del vc71\boost_regex-vc71-mt-gd-1_37\*.idb - del vc71\boost_regex-vc71-mt-gd-1_37\*.exp - del vc71\boost_regex-vc71-mt-gd-1_37\*.pch +boost_regex-vc71-mt-gd-1_38_clean : + del vc71\boost_regex-vc71-mt-gd-1_38\*.obj + del vc71\boost_regex-vc71-mt-gd-1_38\*.idb + del vc71\boost_regex-vc71-mt-gd-1_38\*.exp + del vc71\boost_regex-vc71-mt-gd-1_38\*.pch -./vc71/boost_regex-vc71-mt-gd-1_37.lib : vc71/boost_regex-vc71-mt-gd-1_37/c_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_37/cpp_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_37/cregex.obj vc71/boost_regex-vc71-mt-gd-1_37/fileiter.obj vc71/boost_regex-vc71-mt-gd-1_37/icu.obj vc71/boost_regex-vc71-mt-gd-1_37/instances.obj vc71/boost_regex-vc71-mt-gd-1_37/posix_api.obj vc71/boost_regex-vc71-mt-gd-1_37/regex.obj vc71/boost_regex-vc71-mt-gd-1_37/regex_debug.obj vc71/boost_regex-vc71-mt-gd-1_37/regex_raw_buffer.obj vc71/boost_regex-vc71-mt-gd-1_37/regex_traits_defaults.obj vc71/boost_regex-vc71-mt-gd-1_37/static_mutex.obj vc71/boost_regex-vc71-mt-gd-1_37/usinstances.obj vc71/boost_regex-vc71-mt-gd-1_37/w32_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_37/wc_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_37/wide_posix_api.obj vc71/boost_regex-vc71-mt-gd-1_37/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_37.pdb" /debug /machine:I386 /out:"vc71/boost_regex-vc71-mt-gd-1_37.dll" /implib:"vc71/boost_regex-vc71-mt-gd-1_37.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc71/boost_regex-vc71-mt-gd-1_37/c_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_37/cpp_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_37/cregex.obj vc71/boost_regex-vc71-mt-gd-1_37/fileiter.obj vc71/boost_regex-vc71-mt-gd-1_37/icu.obj vc71/boost_regex-vc71-mt-gd-1_37/instances.obj vc71/boost_regex-vc71-mt-gd-1_37/posix_api.obj vc71/boost_regex-vc71-mt-gd-1_37/regex.obj vc71/boost_regex-vc71-mt-gd-1_37/regex_debug.obj vc71/boost_regex-vc71-mt-gd-1_37/regex_raw_buffer.obj vc71/boost_regex-vc71-mt-gd-1_37/regex_traits_defaults.obj vc71/boost_regex-vc71-mt-gd-1_37/static_mutex.obj vc71/boost_regex-vc71-mt-gd-1_37/usinstances.obj vc71/boost_regex-vc71-mt-gd-1_37/w32_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_37/wc_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_37/wide_posix_api.obj vc71/boost_regex-vc71-mt-gd-1_37/winstances.obj +./vc71/boost_regex-vc71-mt-gd-1_38.lib : vc71/boost_regex-vc71-mt-gd-1_38/c_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_38/cpp_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_38/cregex.obj vc71/boost_regex-vc71-mt-gd-1_38/fileiter.obj vc71/boost_regex-vc71-mt-gd-1_38/icu.obj vc71/boost_regex-vc71-mt-gd-1_38/instances.obj vc71/boost_regex-vc71-mt-gd-1_38/posix_api.obj vc71/boost_regex-vc71-mt-gd-1_38/regex.obj vc71/boost_regex-vc71-mt-gd-1_38/regex_debug.obj vc71/boost_regex-vc71-mt-gd-1_38/regex_raw_buffer.obj vc71/boost_regex-vc71-mt-gd-1_38/regex_traits_defaults.obj vc71/boost_regex-vc71-mt-gd-1_38/static_mutex.obj vc71/boost_regex-vc71-mt-gd-1_38/usinstances.obj vc71/boost_regex-vc71-mt-gd-1_38/w32_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_38/wc_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_38/wide_posix_api.obj vc71/boost_regex-vc71-mt-gd-1_38/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_38.pdb" /debug /machine:I386 /out:"vc71/boost_regex-vc71-mt-gd-1_38.dll" /implib:"vc71/boost_regex-vc71-mt-gd-1_38.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc71/boost_regex-vc71-mt-gd-1_38/c_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_38/cpp_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_38/cregex.obj vc71/boost_regex-vc71-mt-gd-1_38/fileiter.obj vc71/boost_regex-vc71-mt-gd-1_38/icu.obj vc71/boost_regex-vc71-mt-gd-1_38/instances.obj vc71/boost_regex-vc71-mt-gd-1_38/posix_api.obj vc71/boost_regex-vc71-mt-gd-1_38/regex.obj vc71/boost_regex-vc71-mt-gd-1_38/regex_debug.obj vc71/boost_regex-vc71-mt-gd-1_38/regex_raw_buffer.obj vc71/boost_regex-vc71-mt-gd-1_38/regex_traits_defaults.obj vc71/boost_regex-vc71-mt-gd-1_38/static_mutex.obj vc71/boost_regex-vc71-mt-gd-1_38/usinstances.obj vc71/boost_regex-vc71-mt-gd-1_38/w32_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_38/wc_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_38/wide_posix_api.obj vc71/boost_regex-vc71-mt-gd-1_38/winstances.obj ######################################################## # -# section for boost_regex-vc71-mt-1_37.lib +# section for boost_regex-vc71-mt-1_38.lib # ######################################################## -vc71/boost_regex-vc71-mt-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-1_37.pdb ../src/c_regex_traits.cpp +vc71/boost_regex-vc71-mt-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-1_38.pdb ../src/c_regex_traits.cpp -vc71/boost_regex-vc71-mt-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-1_37.pdb ../src/cpp_regex_traits.cpp +vc71/boost_regex-vc71-mt-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-1_38.pdb ../src/cpp_regex_traits.cpp -vc71/boost_regex-vc71-mt-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-1_37.pdb ../src/cregex.cpp +vc71/boost_regex-vc71-mt-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-1_38.pdb ../src/cregex.cpp -vc71/boost_regex-vc71-mt-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-1_37.pdb ../src/fileiter.cpp +vc71/boost_regex-vc71-mt-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-1_38.pdb ../src/fileiter.cpp -vc71/boost_regex-vc71-mt-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-1_37.pdb ../src/icu.cpp +vc71/boost_regex-vc71-mt-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-1_38.pdb ../src/icu.cpp -vc71/boost_regex-vc71-mt-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-1_37.pdb ../src/instances.cpp +vc71/boost_regex-vc71-mt-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-1_38.pdb ../src/instances.cpp -vc71/boost_regex-vc71-mt-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-1_37.pdb ../src/posix_api.cpp +vc71/boost_regex-vc71-mt-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-1_38.pdb ../src/posix_api.cpp -vc71/boost_regex-vc71-mt-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-1_37.pdb ../src/regex.cpp +vc71/boost_regex-vc71-mt-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-1_38.pdb ../src/regex.cpp -vc71/boost_regex-vc71-mt-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-1_37.pdb ../src/regex_debug.cpp +vc71/boost_regex-vc71-mt-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-1_38.pdb ../src/regex_debug.cpp -vc71/boost_regex-vc71-mt-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-1_37.pdb ../src/regex_raw_buffer.cpp +vc71/boost_regex-vc71-mt-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-1_38.pdb ../src/regex_raw_buffer.cpp -vc71/boost_regex-vc71-mt-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-1_37.pdb ../src/regex_traits_defaults.cpp +vc71/boost_regex-vc71-mt-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-1_38.pdb ../src/regex_traits_defaults.cpp -vc71/boost_regex-vc71-mt-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-1_37.pdb ../src/static_mutex.cpp +vc71/boost_regex-vc71-mt-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-1_38.pdb ../src/static_mutex.cpp -vc71/boost_regex-vc71-mt-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-1_37.pdb ../src/usinstances.cpp +vc71/boost_regex-vc71-mt-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-1_38.pdb ../src/usinstances.cpp -vc71/boost_regex-vc71-mt-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-1_37.pdb ../src/w32_regex_traits.cpp +vc71/boost_regex-vc71-mt-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-1_38.pdb ../src/w32_regex_traits.cpp -vc71/boost_regex-vc71-mt-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-1_37.pdb ../src/wc_regex_traits.cpp +vc71/boost_regex-vc71-mt-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-1_38.pdb ../src/wc_regex_traits.cpp -vc71/boost_regex-vc71-mt-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-1_37.pdb ../src/wide_posix_api.cpp +vc71/boost_regex-vc71-mt-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-1_38.pdb ../src/wide_posix_api.cpp -vc71/boost_regex-vc71-mt-1_37/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_37/ -Fdvc71/boost_regex-vc71-mt-1_37.pdb ../src/winstances.cpp +vc71/boost_regex-vc71-mt-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-1_38.pdb ../src/winstances.cpp -boost_regex-vc71-mt-1_37_dir : - @if not exist "vc71\boost_regex-vc71-mt-1_37\$(NULL)" mkdir vc71\boost_regex-vc71-mt-1_37 +boost_regex-vc71-mt-1_38_dir : + @if not exist "vc71\boost_regex-vc71-mt-1_38\$(NULL)" mkdir vc71\boost_regex-vc71-mt-1_38 -boost_regex-vc71-mt-1_37_clean : - del vc71\boost_regex-vc71-mt-1_37\*.obj - del vc71\boost_regex-vc71-mt-1_37\*.idb - del vc71\boost_regex-vc71-mt-1_37\*.exp - del vc71\boost_regex-vc71-mt-1_37\*.pch +boost_regex-vc71-mt-1_38_clean : + del vc71\boost_regex-vc71-mt-1_38\*.obj + del vc71\boost_regex-vc71-mt-1_38\*.idb + del vc71\boost_regex-vc71-mt-1_38\*.exp + del vc71\boost_regex-vc71-mt-1_38\*.pch -./vc71/boost_regex-vc71-mt-1_37.lib : vc71/boost_regex-vc71-mt-1_37/c_regex_traits.obj vc71/boost_regex-vc71-mt-1_37/cpp_regex_traits.obj vc71/boost_regex-vc71-mt-1_37/cregex.obj vc71/boost_regex-vc71-mt-1_37/fileiter.obj vc71/boost_regex-vc71-mt-1_37/icu.obj vc71/boost_regex-vc71-mt-1_37/instances.obj vc71/boost_regex-vc71-mt-1_37/posix_api.obj vc71/boost_regex-vc71-mt-1_37/regex.obj vc71/boost_regex-vc71-mt-1_37/regex_debug.obj vc71/boost_regex-vc71-mt-1_37/regex_raw_buffer.obj vc71/boost_regex-vc71-mt-1_37/regex_traits_defaults.obj vc71/boost_regex-vc71-mt-1_37/static_mutex.obj vc71/boost_regex-vc71-mt-1_37/usinstances.obj vc71/boost_regex-vc71-mt-1_37/w32_regex_traits.obj vc71/boost_regex-vc71-mt-1_37/wc_regex_traits.obj vc71/boost_regex-vc71-mt-1_37/wide_posix_api.obj vc71/boost_regex-vc71-mt-1_37/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_37.pdb" /debug /machine:I386 /out:"vc71/boost_regex-vc71-mt-1_37.dll" /implib:"vc71/boost_regex-vc71-mt-1_37.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc71/boost_regex-vc71-mt-1_37/c_regex_traits.obj vc71/boost_regex-vc71-mt-1_37/cpp_regex_traits.obj vc71/boost_regex-vc71-mt-1_37/cregex.obj vc71/boost_regex-vc71-mt-1_37/fileiter.obj vc71/boost_regex-vc71-mt-1_37/icu.obj vc71/boost_regex-vc71-mt-1_37/instances.obj vc71/boost_regex-vc71-mt-1_37/posix_api.obj vc71/boost_regex-vc71-mt-1_37/regex.obj vc71/boost_regex-vc71-mt-1_37/regex_debug.obj vc71/boost_regex-vc71-mt-1_37/regex_raw_buffer.obj vc71/boost_regex-vc71-mt-1_37/regex_traits_defaults.obj vc71/boost_regex-vc71-mt-1_37/static_mutex.obj vc71/boost_regex-vc71-mt-1_37/usinstances.obj vc71/boost_regex-vc71-mt-1_37/w32_regex_traits.obj vc71/boost_regex-vc71-mt-1_37/wc_regex_traits.obj vc71/boost_regex-vc71-mt-1_37/wide_posix_api.obj vc71/boost_regex-vc71-mt-1_37/winstances.obj +./vc71/boost_regex-vc71-mt-1_38.lib : vc71/boost_regex-vc71-mt-1_38/c_regex_traits.obj vc71/boost_regex-vc71-mt-1_38/cpp_regex_traits.obj vc71/boost_regex-vc71-mt-1_38/cregex.obj vc71/boost_regex-vc71-mt-1_38/fileiter.obj vc71/boost_regex-vc71-mt-1_38/icu.obj vc71/boost_regex-vc71-mt-1_38/instances.obj vc71/boost_regex-vc71-mt-1_38/posix_api.obj vc71/boost_regex-vc71-mt-1_38/regex.obj vc71/boost_regex-vc71-mt-1_38/regex_debug.obj vc71/boost_regex-vc71-mt-1_38/regex_raw_buffer.obj vc71/boost_regex-vc71-mt-1_38/regex_traits_defaults.obj vc71/boost_regex-vc71-mt-1_38/static_mutex.obj vc71/boost_regex-vc71-mt-1_38/usinstances.obj vc71/boost_regex-vc71-mt-1_38/w32_regex_traits.obj vc71/boost_regex-vc71-mt-1_38/wc_regex_traits.obj vc71/boost_regex-vc71-mt-1_38/wide_posix_api.obj vc71/boost_regex-vc71-mt-1_38/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_38.pdb" /debug /machine:I386 /out:"vc71/boost_regex-vc71-mt-1_38.dll" /implib:"vc71/boost_regex-vc71-mt-1_38.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc71/boost_regex-vc71-mt-1_38/c_regex_traits.obj vc71/boost_regex-vc71-mt-1_38/cpp_regex_traits.obj vc71/boost_regex-vc71-mt-1_38/cregex.obj vc71/boost_regex-vc71-mt-1_38/fileiter.obj vc71/boost_regex-vc71-mt-1_38/icu.obj vc71/boost_regex-vc71-mt-1_38/instances.obj vc71/boost_regex-vc71-mt-1_38/posix_api.obj vc71/boost_regex-vc71-mt-1_38/regex.obj vc71/boost_regex-vc71-mt-1_38/regex_debug.obj vc71/boost_regex-vc71-mt-1_38/regex_raw_buffer.obj vc71/boost_regex-vc71-mt-1_38/regex_traits_defaults.obj vc71/boost_regex-vc71-mt-1_38/static_mutex.obj vc71/boost_regex-vc71-mt-1_38/usinstances.obj vc71/boost_regex-vc71-mt-1_38/w32_regex_traits.obj vc71/boost_regex-vc71-mt-1_38/wc_regex_traits.obj vc71/boost_regex-vc71-mt-1_38/wide_posix_api.obj vc71/boost_regex-vc71-mt-1_38/winstances.obj ######################################################## # -# section for libboost_regex-vc71-mt-1_37.lib +# section for libboost_regex-vc71-mt-1_38.lib # ######################################################## -vc71/libboost_regex-vc71-mt-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-1_37.pdb ../src/c_regex_traits.cpp +vc71/libboost_regex-vc71-mt-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-1_38.pdb ../src/c_regex_traits.cpp -vc71/libboost_regex-vc71-mt-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-1_37.pdb ../src/cpp_regex_traits.cpp +vc71/libboost_regex-vc71-mt-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-1_38.pdb ../src/cpp_regex_traits.cpp -vc71/libboost_regex-vc71-mt-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-1_37.pdb ../src/cregex.cpp +vc71/libboost_regex-vc71-mt-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-1_38.pdb ../src/cregex.cpp -vc71/libboost_regex-vc71-mt-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-1_37.pdb ../src/fileiter.cpp +vc71/libboost_regex-vc71-mt-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-1_38.pdb ../src/fileiter.cpp -vc71/libboost_regex-vc71-mt-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-1_37.pdb ../src/icu.cpp +vc71/libboost_regex-vc71-mt-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-1_38.pdb ../src/icu.cpp -vc71/libboost_regex-vc71-mt-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-1_37.pdb ../src/instances.cpp +vc71/libboost_regex-vc71-mt-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-1_38.pdb ../src/instances.cpp -vc71/libboost_regex-vc71-mt-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-1_37.pdb ../src/posix_api.cpp +vc71/libboost_regex-vc71-mt-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-1_38.pdb ../src/posix_api.cpp -vc71/libboost_regex-vc71-mt-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-1_37.pdb ../src/regex.cpp +vc71/libboost_regex-vc71-mt-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-1_38.pdb ../src/regex.cpp -vc71/libboost_regex-vc71-mt-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-1_37.pdb ../src/regex_debug.cpp +vc71/libboost_regex-vc71-mt-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-1_38.pdb ../src/regex_debug.cpp -vc71/libboost_regex-vc71-mt-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-1_37.pdb ../src/regex_raw_buffer.cpp +vc71/libboost_regex-vc71-mt-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-1_38.pdb ../src/regex_raw_buffer.cpp -vc71/libboost_regex-vc71-mt-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-1_37.pdb ../src/regex_traits_defaults.cpp +vc71/libboost_regex-vc71-mt-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-1_38.pdb ../src/regex_traits_defaults.cpp -vc71/libboost_regex-vc71-mt-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-1_37.pdb ../src/static_mutex.cpp +vc71/libboost_regex-vc71-mt-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-1_38.pdb ../src/static_mutex.cpp -vc71/libboost_regex-vc71-mt-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-1_37.pdb ../src/usinstances.cpp +vc71/libboost_regex-vc71-mt-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-1_38.pdb ../src/usinstances.cpp -vc71/libboost_regex-vc71-mt-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-1_37.pdb ../src/w32_regex_traits.cpp +vc71/libboost_regex-vc71-mt-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-1_38.pdb ../src/w32_regex_traits.cpp -vc71/libboost_regex-vc71-mt-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-1_37.pdb ../src/wc_regex_traits.cpp +vc71/libboost_regex-vc71-mt-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-1_38.pdb ../src/wc_regex_traits.cpp -vc71/libboost_regex-vc71-mt-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-1_37.pdb ../src/wide_posix_api.cpp +vc71/libboost_regex-vc71-mt-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-1_38.pdb ../src/wide_posix_api.cpp -vc71/libboost_regex-vc71-mt-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-1_37.pdb ../src/winstances.cpp +vc71/libboost_regex-vc71-mt-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-1_38.pdb ../src/winstances.cpp -libboost_regex-vc71-mt-1_37_dir : - @if not exist "vc71\libboost_regex-vc71-mt-1_37\$(NULL)" mkdir vc71\libboost_regex-vc71-mt-1_37 +libboost_regex-vc71-mt-1_38_dir : + @if not exist "vc71\libboost_regex-vc71-mt-1_38\$(NULL)" mkdir vc71\libboost_regex-vc71-mt-1_38 -libboost_regex-vc71-mt-1_37_clean : - del vc71\libboost_regex-vc71-mt-1_37\*.obj - del vc71\libboost_regex-vc71-mt-1_37\*.idb - del vc71\libboost_regex-vc71-mt-1_37\*.exp - del vc71\libboost_regex-vc71-mt-1_37\*.pch +libboost_regex-vc71-mt-1_38_clean : + del vc71\libboost_regex-vc71-mt-1_38\*.obj + del vc71\libboost_regex-vc71-mt-1_38\*.idb + del vc71\libboost_regex-vc71-mt-1_38\*.exp + del vc71\libboost_regex-vc71-mt-1_38\*.pch -./vc71/libboost_regex-vc71-mt-1_37.lib : vc71/libboost_regex-vc71-mt-1_37/c_regex_traits.obj vc71/libboost_regex-vc71-mt-1_37/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-1_37/cregex.obj vc71/libboost_regex-vc71-mt-1_37/fileiter.obj vc71/libboost_regex-vc71-mt-1_37/icu.obj vc71/libboost_regex-vc71-mt-1_37/instances.obj vc71/libboost_regex-vc71-mt-1_37/posix_api.obj vc71/libboost_regex-vc71-mt-1_37/regex.obj vc71/libboost_regex-vc71-mt-1_37/regex_debug.obj vc71/libboost_regex-vc71-mt-1_37/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-1_37/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-1_37/static_mutex.obj vc71/libboost_regex-vc71-mt-1_37/usinstances.obj vc71/libboost_regex-vc71-mt-1_37/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-1_37/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-1_37/wide_posix_api.obj vc71/libboost_regex-vc71-mt-1_37/winstances.obj - link -lib /nologo /out:vc71/libboost_regex-vc71-mt-1_37.lib $(XSFLAGS) vc71/libboost_regex-vc71-mt-1_37/c_regex_traits.obj vc71/libboost_regex-vc71-mt-1_37/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-1_37/cregex.obj vc71/libboost_regex-vc71-mt-1_37/fileiter.obj vc71/libboost_regex-vc71-mt-1_37/icu.obj vc71/libboost_regex-vc71-mt-1_37/instances.obj vc71/libboost_regex-vc71-mt-1_37/posix_api.obj vc71/libboost_regex-vc71-mt-1_37/regex.obj vc71/libboost_regex-vc71-mt-1_37/regex_debug.obj vc71/libboost_regex-vc71-mt-1_37/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-1_37/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-1_37/static_mutex.obj vc71/libboost_regex-vc71-mt-1_37/usinstances.obj vc71/libboost_regex-vc71-mt-1_37/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-1_37/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-1_37/wide_posix_api.obj vc71/libboost_regex-vc71-mt-1_37/winstances.obj +./vc71/libboost_regex-vc71-mt-1_38.lib : vc71/libboost_regex-vc71-mt-1_38/c_regex_traits.obj vc71/libboost_regex-vc71-mt-1_38/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-1_38/cregex.obj vc71/libboost_regex-vc71-mt-1_38/fileiter.obj vc71/libboost_regex-vc71-mt-1_38/icu.obj vc71/libboost_regex-vc71-mt-1_38/instances.obj vc71/libboost_regex-vc71-mt-1_38/posix_api.obj vc71/libboost_regex-vc71-mt-1_38/regex.obj vc71/libboost_regex-vc71-mt-1_38/regex_debug.obj vc71/libboost_regex-vc71-mt-1_38/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-1_38/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-1_38/static_mutex.obj vc71/libboost_regex-vc71-mt-1_38/usinstances.obj vc71/libboost_regex-vc71-mt-1_38/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-1_38/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-1_38/wide_posix_api.obj vc71/libboost_regex-vc71-mt-1_38/winstances.obj + link -lib /nologo /out:vc71/libboost_regex-vc71-mt-1_38.lib $(XSFLAGS) vc71/libboost_regex-vc71-mt-1_38/c_regex_traits.obj vc71/libboost_regex-vc71-mt-1_38/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-1_38/cregex.obj vc71/libboost_regex-vc71-mt-1_38/fileiter.obj vc71/libboost_regex-vc71-mt-1_38/icu.obj vc71/libboost_regex-vc71-mt-1_38/instances.obj vc71/libboost_regex-vc71-mt-1_38/posix_api.obj vc71/libboost_regex-vc71-mt-1_38/regex.obj vc71/libboost_regex-vc71-mt-1_38/regex_debug.obj vc71/libboost_regex-vc71-mt-1_38/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-1_38/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-1_38/static_mutex.obj vc71/libboost_regex-vc71-mt-1_38/usinstances.obj vc71/libboost_regex-vc71-mt-1_38/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-1_38/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-1_38/wide_posix_api.obj vc71/libboost_regex-vc71-mt-1_38/winstances.obj ######################################################## # -# section for libboost_regex-vc71-mt-gd-1_37.lib +# section for libboost_regex-vc71-mt-gd-1_38.lib # ######################################################## -vc71/libboost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-gd-1_37.pdb ../src/c_regex_traits.cpp +vc71/libboost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-gd-1_38.pdb ../src/c_regex_traits.cpp -vc71/libboost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-gd-1_37.pdb ../src/cpp_regex_traits.cpp +vc71/libboost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-gd-1_38.pdb ../src/cpp_regex_traits.cpp -vc71/libboost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-gd-1_37.pdb ../src/cregex.cpp +vc71/libboost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-gd-1_38.pdb ../src/cregex.cpp -vc71/libboost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-gd-1_37.pdb ../src/fileiter.cpp +vc71/libboost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-gd-1_38.pdb ../src/fileiter.cpp -vc71/libboost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-gd-1_37.pdb ../src/icu.cpp +vc71/libboost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-gd-1_38.pdb ../src/icu.cpp -vc71/libboost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-gd-1_37.pdb ../src/instances.cpp +vc71/libboost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-gd-1_38.pdb ../src/instances.cpp -vc71/libboost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-gd-1_37.pdb ../src/posix_api.cpp +vc71/libboost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-gd-1_38.pdb ../src/posix_api.cpp -vc71/libboost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-gd-1_37.pdb ../src/regex.cpp +vc71/libboost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-gd-1_38.pdb ../src/regex.cpp -vc71/libboost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-gd-1_37.pdb ../src/regex_debug.cpp +vc71/libboost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-gd-1_38.pdb ../src/regex_debug.cpp -vc71/libboost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-gd-1_37.pdb ../src/regex_raw_buffer.cpp +vc71/libboost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-gd-1_38.pdb ../src/regex_raw_buffer.cpp -vc71/libboost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-gd-1_37.pdb ../src/regex_traits_defaults.cpp +vc71/libboost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-gd-1_38.pdb ../src/regex_traits_defaults.cpp -vc71/libboost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-gd-1_37.pdb ../src/static_mutex.cpp +vc71/libboost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-gd-1_38.pdb ../src/static_mutex.cpp -vc71/libboost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-gd-1_37.pdb ../src/usinstances.cpp +vc71/libboost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-gd-1_38.pdb ../src/usinstances.cpp -vc71/libboost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-gd-1_37.pdb ../src/w32_regex_traits.cpp +vc71/libboost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-gd-1_38.pdb ../src/w32_regex_traits.cpp -vc71/libboost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-gd-1_37.pdb ../src/wc_regex_traits.cpp +vc71/libboost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-gd-1_38.pdb ../src/wc_regex_traits.cpp -vc71/libboost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-gd-1_37.pdb ../src/wide_posix_api.cpp +vc71/libboost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-gd-1_38.pdb ../src/wide_posix_api.cpp -vc71/libboost_regex-vc71-mt-gd-1_37/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_37/ -Fdvc71/libboost_regex-vc71-mt-gd-1_37.pdb ../src/winstances.cpp +vc71/libboost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-gd-1_38.pdb ../src/winstances.cpp -libboost_regex-vc71-mt-gd-1_37_dir : - @if not exist "vc71\libboost_regex-vc71-mt-gd-1_37\$(NULL)" mkdir vc71\libboost_regex-vc71-mt-gd-1_37 +libboost_regex-vc71-mt-gd-1_38_dir : + @if not exist "vc71\libboost_regex-vc71-mt-gd-1_38\$(NULL)" mkdir vc71\libboost_regex-vc71-mt-gd-1_38 -libboost_regex-vc71-mt-gd-1_37_clean : - del vc71\libboost_regex-vc71-mt-gd-1_37\*.obj - del vc71\libboost_regex-vc71-mt-gd-1_37\*.idb - del vc71\libboost_regex-vc71-mt-gd-1_37\*.exp - del vc71\libboost_regex-vc71-mt-gd-1_37\*.pch +libboost_regex-vc71-mt-gd-1_38_clean : + del vc71\libboost_regex-vc71-mt-gd-1_38\*.obj + del vc71\libboost_regex-vc71-mt-gd-1_38\*.idb + del vc71\libboost_regex-vc71-mt-gd-1_38\*.exp + del vc71\libboost_regex-vc71-mt-gd-1_38\*.pch -./vc71/libboost_regex-vc71-mt-gd-1_37.lib : vc71/libboost_regex-vc71-mt-gd-1_37/c_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_37/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_37/cregex.obj vc71/libboost_regex-vc71-mt-gd-1_37/fileiter.obj vc71/libboost_regex-vc71-mt-gd-1_37/icu.obj vc71/libboost_regex-vc71-mt-gd-1_37/instances.obj vc71/libboost_regex-vc71-mt-gd-1_37/posix_api.obj vc71/libboost_regex-vc71-mt-gd-1_37/regex.obj vc71/libboost_regex-vc71-mt-gd-1_37/regex_debug.obj vc71/libboost_regex-vc71-mt-gd-1_37/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-gd-1_37/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-gd-1_37/static_mutex.obj vc71/libboost_regex-vc71-mt-gd-1_37/usinstances.obj vc71/libboost_regex-vc71-mt-gd-1_37/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_37/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_37/wide_posix_api.obj vc71/libboost_regex-vc71-mt-gd-1_37/winstances.obj - link -lib /nologo /out:vc71/libboost_regex-vc71-mt-gd-1_37.lib $(XSFLAGS) vc71/libboost_regex-vc71-mt-gd-1_37/c_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_37/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_37/cregex.obj vc71/libboost_regex-vc71-mt-gd-1_37/fileiter.obj vc71/libboost_regex-vc71-mt-gd-1_37/icu.obj vc71/libboost_regex-vc71-mt-gd-1_37/instances.obj vc71/libboost_regex-vc71-mt-gd-1_37/posix_api.obj vc71/libboost_regex-vc71-mt-gd-1_37/regex.obj vc71/libboost_regex-vc71-mt-gd-1_37/regex_debug.obj vc71/libboost_regex-vc71-mt-gd-1_37/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-gd-1_37/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-gd-1_37/static_mutex.obj vc71/libboost_regex-vc71-mt-gd-1_37/usinstances.obj vc71/libboost_regex-vc71-mt-gd-1_37/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_37/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_37/wide_posix_api.obj vc71/libboost_regex-vc71-mt-gd-1_37/winstances.obj +./vc71/libboost_regex-vc71-mt-gd-1_38.lib : vc71/libboost_regex-vc71-mt-gd-1_38/c_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_38/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_38/cregex.obj vc71/libboost_regex-vc71-mt-gd-1_38/fileiter.obj vc71/libboost_regex-vc71-mt-gd-1_38/icu.obj vc71/libboost_regex-vc71-mt-gd-1_38/instances.obj vc71/libboost_regex-vc71-mt-gd-1_38/posix_api.obj vc71/libboost_regex-vc71-mt-gd-1_38/regex.obj vc71/libboost_regex-vc71-mt-gd-1_38/regex_debug.obj vc71/libboost_regex-vc71-mt-gd-1_38/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-gd-1_38/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-gd-1_38/static_mutex.obj vc71/libboost_regex-vc71-mt-gd-1_38/usinstances.obj vc71/libboost_regex-vc71-mt-gd-1_38/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_38/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_38/wide_posix_api.obj vc71/libboost_regex-vc71-mt-gd-1_38/winstances.obj + link -lib /nologo /out:vc71/libboost_regex-vc71-mt-gd-1_38.lib $(XSFLAGS) vc71/libboost_regex-vc71-mt-gd-1_38/c_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_38/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_38/cregex.obj vc71/libboost_regex-vc71-mt-gd-1_38/fileiter.obj vc71/libboost_regex-vc71-mt-gd-1_38/icu.obj vc71/libboost_regex-vc71-mt-gd-1_38/instances.obj vc71/libboost_regex-vc71-mt-gd-1_38/posix_api.obj vc71/libboost_regex-vc71-mt-gd-1_38/regex.obj vc71/libboost_regex-vc71-mt-gd-1_38/regex_debug.obj vc71/libboost_regex-vc71-mt-gd-1_38/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-gd-1_38/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-gd-1_38/static_mutex.obj vc71/libboost_regex-vc71-mt-gd-1_38/usinstances.obj vc71/libboost_regex-vc71-mt-gd-1_38/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_38/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_38/wide_posix_api.obj vc71/libboost_regex-vc71-mt-gd-1_38/winstances.obj diff --git a/build/vc8.mak b/build/vc8.mak index f56b856f..e35a62ec 100644 --- a/build/vc8.mak +++ b/build/vc8.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-vc80-mt-s-1_37_dir ./vc80/libboost_regex-vc80-mt-s-1_37.lib libboost_regex-vc80-mt-sgd-1_37_dir ./vc80/libboost_regex-vc80-mt-sgd-1_37.lib boost_regex-vc80-mt-gd-1_37_dir ./vc80/boost_regex-vc80-mt-gd-1_37.lib boost_regex-vc80-mt-1_37_dir ./vc80/boost_regex-vc80-mt-1_37.lib libboost_regex-vc80-mt-1_37_dir ./vc80/libboost_regex-vc80-mt-1_37.lib libboost_regex-vc80-mt-gd-1_37_dir ./vc80/libboost_regex-vc80-mt-gd-1_37.lib +all : main_dir libboost_regex-vc80-mt-s-1_38_dir ./vc80/libboost_regex-vc80-mt-s-1_38.lib libboost_regex-vc80-mt-sgd-1_38_dir ./vc80/libboost_regex-vc80-mt-sgd-1_38.lib boost_regex-vc80-mt-gd-1_38_dir ./vc80/boost_regex-vc80-mt-gd-1_38.lib boost_regex-vc80-mt-1_38_dir ./vc80/boost_regex-vc80-mt-1_38.lib libboost_regex-vc80-mt-1_38_dir ./vc80/libboost_regex-vc80-mt-1_38.lib libboost_regex-vc80-mt-gd-1_38_dir ./vc80/libboost_regex-vc80-mt-gd-1_38.lib -clean : libboost_regex-vc80-mt-s-1_37_clean libboost_regex-vc80-mt-sgd-1_37_clean boost_regex-vc80-mt-gd-1_37_clean boost_regex-vc80-mt-1_37_clean libboost_regex-vc80-mt-1_37_clean libboost_regex-vc80-mt-gd-1_37_clean +clean : libboost_regex-vc80-mt-s-1_38_clean libboost_regex-vc80-mt-sgd-1_38_clean boost_regex-vc80-mt-gd-1_38_clean boost_regex-vc80-mt-1_38_clean libboost_regex-vc80-mt-1_38_clean libboost_regex-vc80-mt-gd-1_38_clean install : all - copy vc80\libboost_regex-vc80-mt-s-1_37.lib "$(MSVCDIR)\lib" - copy vc80\libboost_regex-vc80-mt-sgd-1_37.lib "$(MSVCDIR)\lib" - copy vc80\boost_regex-vc80-mt-gd-1_37.lib "$(MSVCDIR)\lib" - copy vc80\boost_regex-vc80-mt-gd-1_37.dll "$(MSVCDIR)\bin" - copy vc80\boost_regex-vc80-mt-1_37.lib "$(MSVCDIR)\lib" - copy vc80\boost_regex-vc80-mt-1_37.dll "$(MSVCDIR)\bin" - copy vc80\libboost_regex-vc80-mt-1_37.lib "$(MSVCDIR)\lib" - copy vc80\libboost_regex-vc80-mt-gd-1_37.lib "$(MSVCDIR)\lib" - copy vc80\libboost_regex-vc80-mt-gd-1_37.pdb "$(MSVCDIR)\lib" + copy vc80\libboost_regex-vc80-mt-s-1_38.lib "$(MSVCDIR)\lib" + copy vc80\libboost_regex-vc80-mt-sgd-1_38.lib "$(MSVCDIR)\lib" + copy vc80\boost_regex-vc80-mt-gd-1_38.lib "$(MSVCDIR)\lib" + copy vc80\boost_regex-vc80-mt-gd-1_38.dll "$(MSVCDIR)\bin" + copy vc80\boost_regex-vc80-mt-1_38.lib "$(MSVCDIR)\lib" + copy vc80\boost_regex-vc80-mt-1_38.dll "$(MSVCDIR)\bin" + copy vc80\libboost_regex-vc80-mt-1_38.lib "$(MSVCDIR)\lib" + copy vc80\libboost_regex-vc80-mt-gd-1_38.lib "$(MSVCDIR)\lib" + copy vc80\libboost_regex-vc80-mt-gd-1_38.pdb "$(MSVCDIR)\lib" main_dir : @if not exist "vc80\$(NULL)" mkdir vc80 @@ -83,410 +83,410 @@ main_dir : ######################################################## # -# section for libboost_regex-vc80-mt-s-1_37.lib +# section for libboost_regex-vc80-mt-s-1_38.lib # ######################################################## -vc80/libboost_regex-vc80-mt-s-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-s-1_37.pdb ../src/c_regex_traits.cpp +vc80/libboost_regex-vc80-mt-s-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-s-1_38.pdb ../src/c_regex_traits.cpp -vc80/libboost_regex-vc80-mt-s-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-s-1_37.pdb ../src/cpp_regex_traits.cpp +vc80/libboost_regex-vc80-mt-s-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-s-1_38.pdb ../src/cpp_regex_traits.cpp -vc80/libboost_regex-vc80-mt-s-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-s-1_37.pdb ../src/cregex.cpp +vc80/libboost_regex-vc80-mt-s-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-s-1_38.pdb ../src/cregex.cpp -vc80/libboost_regex-vc80-mt-s-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-s-1_37.pdb ../src/fileiter.cpp +vc80/libboost_regex-vc80-mt-s-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-s-1_38.pdb ../src/fileiter.cpp -vc80/libboost_regex-vc80-mt-s-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-s-1_37.pdb ../src/icu.cpp +vc80/libboost_regex-vc80-mt-s-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-s-1_38.pdb ../src/icu.cpp -vc80/libboost_regex-vc80-mt-s-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-s-1_37.pdb ../src/instances.cpp +vc80/libboost_regex-vc80-mt-s-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-s-1_38.pdb ../src/instances.cpp -vc80/libboost_regex-vc80-mt-s-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-s-1_37.pdb ../src/posix_api.cpp +vc80/libboost_regex-vc80-mt-s-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-s-1_38.pdb ../src/posix_api.cpp -vc80/libboost_regex-vc80-mt-s-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-s-1_37.pdb ../src/regex.cpp +vc80/libboost_regex-vc80-mt-s-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-s-1_38.pdb ../src/regex.cpp -vc80/libboost_regex-vc80-mt-s-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-s-1_37.pdb ../src/regex_debug.cpp +vc80/libboost_regex-vc80-mt-s-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-s-1_38.pdb ../src/regex_debug.cpp -vc80/libboost_regex-vc80-mt-s-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-s-1_37.pdb ../src/regex_raw_buffer.cpp +vc80/libboost_regex-vc80-mt-s-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-s-1_38.pdb ../src/regex_raw_buffer.cpp -vc80/libboost_regex-vc80-mt-s-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-s-1_37.pdb ../src/regex_traits_defaults.cpp +vc80/libboost_regex-vc80-mt-s-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-s-1_38.pdb ../src/regex_traits_defaults.cpp -vc80/libboost_regex-vc80-mt-s-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-s-1_37.pdb ../src/static_mutex.cpp +vc80/libboost_regex-vc80-mt-s-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-s-1_38.pdb ../src/static_mutex.cpp -vc80/libboost_regex-vc80-mt-s-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-s-1_37.pdb ../src/usinstances.cpp +vc80/libboost_regex-vc80-mt-s-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-s-1_38.pdb ../src/usinstances.cpp -vc80/libboost_regex-vc80-mt-s-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-s-1_37.pdb ../src/w32_regex_traits.cpp +vc80/libboost_regex-vc80-mt-s-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-s-1_38.pdb ../src/w32_regex_traits.cpp -vc80/libboost_regex-vc80-mt-s-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-s-1_37.pdb ../src/wc_regex_traits.cpp +vc80/libboost_regex-vc80-mt-s-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-s-1_38.pdb ../src/wc_regex_traits.cpp -vc80/libboost_regex-vc80-mt-s-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-s-1_37.pdb ../src/wide_posix_api.cpp +vc80/libboost_regex-vc80-mt-s-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-s-1_38.pdb ../src/wide_posix_api.cpp -vc80/libboost_regex-vc80-mt-s-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-s-1_37.pdb ../src/winstances.cpp +vc80/libboost_regex-vc80-mt-s-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-s-1_38.pdb ../src/winstances.cpp -libboost_regex-vc80-mt-s-1_37_dir : - @if not exist "vc80\libboost_regex-vc80-mt-s-1_37\$(NULL)" mkdir vc80\libboost_regex-vc80-mt-s-1_37 +libboost_regex-vc80-mt-s-1_38_dir : + @if not exist "vc80\libboost_regex-vc80-mt-s-1_38\$(NULL)" mkdir vc80\libboost_regex-vc80-mt-s-1_38 -libboost_regex-vc80-mt-s-1_37_clean : - del vc80\libboost_regex-vc80-mt-s-1_37\*.obj - del vc80\libboost_regex-vc80-mt-s-1_37\*.idb - del vc80\libboost_regex-vc80-mt-s-1_37\*.exp - del vc80\libboost_regex-vc80-mt-s-1_37\*.pch +libboost_regex-vc80-mt-s-1_38_clean : + del vc80\libboost_regex-vc80-mt-s-1_38\*.obj + del vc80\libboost_regex-vc80-mt-s-1_38\*.idb + del vc80\libboost_regex-vc80-mt-s-1_38\*.exp + del vc80\libboost_regex-vc80-mt-s-1_38\*.pch -./vc80/libboost_regex-vc80-mt-s-1_37.lib : vc80/libboost_regex-vc80-mt-s-1_37/c_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_37/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_37/cregex.obj vc80/libboost_regex-vc80-mt-s-1_37/fileiter.obj vc80/libboost_regex-vc80-mt-s-1_37/icu.obj vc80/libboost_regex-vc80-mt-s-1_37/instances.obj vc80/libboost_regex-vc80-mt-s-1_37/posix_api.obj vc80/libboost_regex-vc80-mt-s-1_37/regex.obj vc80/libboost_regex-vc80-mt-s-1_37/regex_debug.obj vc80/libboost_regex-vc80-mt-s-1_37/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-s-1_37/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-s-1_37/static_mutex.obj vc80/libboost_regex-vc80-mt-s-1_37/usinstances.obj vc80/libboost_regex-vc80-mt-s-1_37/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_37/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_37/wide_posix_api.obj vc80/libboost_regex-vc80-mt-s-1_37/winstances.obj - link -lib /nologo /out:vc80/libboost_regex-vc80-mt-s-1_37.lib $(XSFLAGS) vc80/libboost_regex-vc80-mt-s-1_37/c_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_37/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_37/cregex.obj vc80/libboost_regex-vc80-mt-s-1_37/fileiter.obj vc80/libboost_regex-vc80-mt-s-1_37/icu.obj vc80/libboost_regex-vc80-mt-s-1_37/instances.obj vc80/libboost_regex-vc80-mt-s-1_37/posix_api.obj vc80/libboost_regex-vc80-mt-s-1_37/regex.obj vc80/libboost_regex-vc80-mt-s-1_37/regex_debug.obj vc80/libboost_regex-vc80-mt-s-1_37/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-s-1_37/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-s-1_37/static_mutex.obj vc80/libboost_regex-vc80-mt-s-1_37/usinstances.obj vc80/libboost_regex-vc80-mt-s-1_37/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_37/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_37/wide_posix_api.obj vc80/libboost_regex-vc80-mt-s-1_37/winstances.obj +./vc80/libboost_regex-vc80-mt-s-1_38.lib : vc80/libboost_regex-vc80-mt-s-1_38/c_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_38/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_38/cregex.obj vc80/libboost_regex-vc80-mt-s-1_38/fileiter.obj vc80/libboost_regex-vc80-mt-s-1_38/icu.obj vc80/libboost_regex-vc80-mt-s-1_38/instances.obj vc80/libboost_regex-vc80-mt-s-1_38/posix_api.obj vc80/libboost_regex-vc80-mt-s-1_38/regex.obj vc80/libboost_regex-vc80-mt-s-1_38/regex_debug.obj vc80/libboost_regex-vc80-mt-s-1_38/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-s-1_38/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-s-1_38/static_mutex.obj vc80/libboost_regex-vc80-mt-s-1_38/usinstances.obj vc80/libboost_regex-vc80-mt-s-1_38/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_38/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_38/wide_posix_api.obj vc80/libboost_regex-vc80-mt-s-1_38/winstances.obj + link -lib /nologo /out:vc80/libboost_regex-vc80-mt-s-1_38.lib $(XSFLAGS) vc80/libboost_regex-vc80-mt-s-1_38/c_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_38/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_38/cregex.obj vc80/libboost_regex-vc80-mt-s-1_38/fileiter.obj vc80/libboost_regex-vc80-mt-s-1_38/icu.obj vc80/libboost_regex-vc80-mt-s-1_38/instances.obj vc80/libboost_regex-vc80-mt-s-1_38/posix_api.obj vc80/libboost_regex-vc80-mt-s-1_38/regex.obj vc80/libboost_regex-vc80-mt-s-1_38/regex_debug.obj vc80/libboost_regex-vc80-mt-s-1_38/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-s-1_38/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-s-1_38/static_mutex.obj vc80/libboost_regex-vc80-mt-s-1_38/usinstances.obj vc80/libboost_regex-vc80-mt-s-1_38/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_38/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_38/wide_posix_api.obj vc80/libboost_regex-vc80-mt-s-1_38/winstances.obj ######################################################## # -# section for libboost_regex-vc80-mt-sgd-1_37.lib +# section for libboost_regex-vc80-mt-sgd-1_38.lib # ######################################################## -vc80/libboost_regex-vc80-mt-sgd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_37.pdb ../src/c_regex_traits.cpp +vc80/libboost_regex-vc80-mt-sgd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_38.pdb ../src/c_regex_traits.cpp -vc80/libboost_regex-vc80-mt-sgd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_37.pdb ../src/cpp_regex_traits.cpp +vc80/libboost_regex-vc80-mt-sgd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_38.pdb ../src/cpp_regex_traits.cpp -vc80/libboost_regex-vc80-mt-sgd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_37.pdb ../src/cregex.cpp +vc80/libboost_regex-vc80-mt-sgd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_38.pdb ../src/cregex.cpp -vc80/libboost_regex-vc80-mt-sgd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_37.pdb ../src/fileiter.cpp +vc80/libboost_regex-vc80-mt-sgd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_38.pdb ../src/fileiter.cpp -vc80/libboost_regex-vc80-mt-sgd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_37.pdb ../src/icu.cpp +vc80/libboost_regex-vc80-mt-sgd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_38.pdb ../src/icu.cpp -vc80/libboost_regex-vc80-mt-sgd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_37.pdb ../src/instances.cpp +vc80/libboost_regex-vc80-mt-sgd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_38.pdb ../src/instances.cpp -vc80/libboost_regex-vc80-mt-sgd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_37.pdb ../src/posix_api.cpp +vc80/libboost_regex-vc80-mt-sgd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_38.pdb ../src/posix_api.cpp -vc80/libboost_regex-vc80-mt-sgd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_37.pdb ../src/regex.cpp +vc80/libboost_regex-vc80-mt-sgd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_38.pdb ../src/regex.cpp -vc80/libboost_regex-vc80-mt-sgd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_37.pdb ../src/regex_debug.cpp +vc80/libboost_regex-vc80-mt-sgd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_38.pdb ../src/regex_debug.cpp -vc80/libboost_regex-vc80-mt-sgd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_37.pdb ../src/regex_raw_buffer.cpp +vc80/libboost_regex-vc80-mt-sgd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_38.pdb ../src/regex_raw_buffer.cpp -vc80/libboost_regex-vc80-mt-sgd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_37.pdb ../src/regex_traits_defaults.cpp +vc80/libboost_regex-vc80-mt-sgd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_38.pdb ../src/regex_traits_defaults.cpp -vc80/libboost_regex-vc80-mt-sgd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_37.pdb ../src/static_mutex.cpp +vc80/libboost_regex-vc80-mt-sgd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_38.pdb ../src/static_mutex.cpp -vc80/libboost_regex-vc80-mt-sgd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_37.pdb ../src/usinstances.cpp +vc80/libboost_regex-vc80-mt-sgd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_38.pdb ../src/usinstances.cpp -vc80/libboost_regex-vc80-mt-sgd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_37.pdb ../src/w32_regex_traits.cpp +vc80/libboost_regex-vc80-mt-sgd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_38.pdb ../src/w32_regex_traits.cpp -vc80/libboost_regex-vc80-mt-sgd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_37.pdb ../src/wc_regex_traits.cpp +vc80/libboost_regex-vc80-mt-sgd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_38.pdb ../src/wc_regex_traits.cpp -vc80/libboost_regex-vc80-mt-sgd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_37.pdb ../src/wide_posix_api.cpp +vc80/libboost_regex-vc80-mt-sgd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_38.pdb ../src/wide_posix_api.cpp -vc80/libboost_regex-vc80-mt-sgd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_37.pdb ../src/winstances.cpp +vc80/libboost_regex-vc80-mt-sgd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_38.pdb ../src/winstances.cpp -libboost_regex-vc80-mt-sgd-1_37_dir : - @if not exist "vc80\libboost_regex-vc80-mt-sgd-1_37\$(NULL)" mkdir vc80\libboost_regex-vc80-mt-sgd-1_37 +libboost_regex-vc80-mt-sgd-1_38_dir : + @if not exist "vc80\libboost_regex-vc80-mt-sgd-1_38\$(NULL)" mkdir vc80\libboost_regex-vc80-mt-sgd-1_38 -libboost_regex-vc80-mt-sgd-1_37_clean : - del vc80\libboost_regex-vc80-mt-sgd-1_37\*.obj - del vc80\libboost_regex-vc80-mt-sgd-1_37\*.idb - del vc80\libboost_regex-vc80-mt-sgd-1_37\*.exp - del vc80\libboost_regex-vc80-mt-sgd-1_37\*.pch +libboost_regex-vc80-mt-sgd-1_38_clean : + del vc80\libboost_regex-vc80-mt-sgd-1_38\*.obj + del vc80\libboost_regex-vc80-mt-sgd-1_38\*.idb + del vc80\libboost_regex-vc80-mt-sgd-1_38\*.exp + del vc80\libboost_regex-vc80-mt-sgd-1_38\*.pch -./vc80/libboost_regex-vc80-mt-sgd-1_37.lib : vc80/libboost_regex-vc80-mt-sgd-1_37/c_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_37/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_37/cregex.obj vc80/libboost_regex-vc80-mt-sgd-1_37/fileiter.obj vc80/libboost_regex-vc80-mt-sgd-1_37/icu.obj vc80/libboost_regex-vc80-mt-sgd-1_37/instances.obj vc80/libboost_regex-vc80-mt-sgd-1_37/posix_api.obj vc80/libboost_regex-vc80-mt-sgd-1_37/regex.obj vc80/libboost_regex-vc80-mt-sgd-1_37/regex_debug.obj vc80/libboost_regex-vc80-mt-sgd-1_37/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-sgd-1_37/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-sgd-1_37/static_mutex.obj vc80/libboost_regex-vc80-mt-sgd-1_37/usinstances.obj vc80/libboost_regex-vc80-mt-sgd-1_37/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_37/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_37/wide_posix_api.obj vc80/libboost_regex-vc80-mt-sgd-1_37/winstances.obj - link -lib /nologo /out:vc80/libboost_regex-vc80-mt-sgd-1_37.lib $(XSFLAGS) vc80/libboost_regex-vc80-mt-sgd-1_37/c_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_37/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_37/cregex.obj vc80/libboost_regex-vc80-mt-sgd-1_37/fileiter.obj vc80/libboost_regex-vc80-mt-sgd-1_37/icu.obj vc80/libboost_regex-vc80-mt-sgd-1_37/instances.obj vc80/libboost_regex-vc80-mt-sgd-1_37/posix_api.obj vc80/libboost_regex-vc80-mt-sgd-1_37/regex.obj vc80/libboost_regex-vc80-mt-sgd-1_37/regex_debug.obj vc80/libboost_regex-vc80-mt-sgd-1_37/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-sgd-1_37/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-sgd-1_37/static_mutex.obj vc80/libboost_regex-vc80-mt-sgd-1_37/usinstances.obj vc80/libboost_regex-vc80-mt-sgd-1_37/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_37/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_37/wide_posix_api.obj vc80/libboost_regex-vc80-mt-sgd-1_37/winstances.obj +./vc80/libboost_regex-vc80-mt-sgd-1_38.lib : vc80/libboost_regex-vc80-mt-sgd-1_38/c_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_38/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_38/cregex.obj vc80/libboost_regex-vc80-mt-sgd-1_38/fileiter.obj vc80/libboost_regex-vc80-mt-sgd-1_38/icu.obj vc80/libboost_regex-vc80-mt-sgd-1_38/instances.obj vc80/libboost_regex-vc80-mt-sgd-1_38/posix_api.obj vc80/libboost_regex-vc80-mt-sgd-1_38/regex.obj vc80/libboost_regex-vc80-mt-sgd-1_38/regex_debug.obj vc80/libboost_regex-vc80-mt-sgd-1_38/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-sgd-1_38/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-sgd-1_38/static_mutex.obj vc80/libboost_regex-vc80-mt-sgd-1_38/usinstances.obj vc80/libboost_regex-vc80-mt-sgd-1_38/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_38/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_38/wide_posix_api.obj vc80/libboost_regex-vc80-mt-sgd-1_38/winstances.obj + link -lib /nologo /out:vc80/libboost_regex-vc80-mt-sgd-1_38.lib $(XSFLAGS) vc80/libboost_regex-vc80-mt-sgd-1_38/c_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_38/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_38/cregex.obj vc80/libboost_regex-vc80-mt-sgd-1_38/fileiter.obj vc80/libboost_regex-vc80-mt-sgd-1_38/icu.obj vc80/libboost_regex-vc80-mt-sgd-1_38/instances.obj vc80/libboost_regex-vc80-mt-sgd-1_38/posix_api.obj vc80/libboost_regex-vc80-mt-sgd-1_38/regex.obj vc80/libboost_regex-vc80-mt-sgd-1_38/regex_debug.obj vc80/libboost_regex-vc80-mt-sgd-1_38/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-sgd-1_38/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-sgd-1_38/static_mutex.obj vc80/libboost_regex-vc80-mt-sgd-1_38/usinstances.obj vc80/libboost_regex-vc80-mt-sgd-1_38/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_38/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_38/wide_posix_api.obj vc80/libboost_regex-vc80-mt-sgd-1_38/winstances.obj ######################################################## # -# section for boost_regex-vc80-mt-gd-1_37.lib +# section for boost_regex-vc80-mt-gd-1_38.lib # ######################################################## -vc80/boost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-gd-1_37.pdb ../src/c_regex_traits.cpp +vc80/boost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-gd-1_38.pdb ../src/c_regex_traits.cpp -vc80/boost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-gd-1_37.pdb ../src/cpp_regex_traits.cpp +vc80/boost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-gd-1_38.pdb ../src/cpp_regex_traits.cpp -vc80/boost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-gd-1_37.pdb ../src/cregex.cpp +vc80/boost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-gd-1_38.pdb ../src/cregex.cpp -vc80/boost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-gd-1_37.pdb ../src/fileiter.cpp +vc80/boost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-gd-1_38.pdb ../src/fileiter.cpp -vc80/boost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-gd-1_37.pdb ../src/icu.cpp +vc80/boost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-gd-1_38.pdb ../src/icu.cpp -vc80/boost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-gd-1_37.pdb ../src/instances.cpp +vc80/boost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-gd-1_38.pdb ../src/instances.cpp -vc80/boost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-gd-1_37.pdb ../src/posix_api.cpp +vc80/boost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-gd-1_38.pdb ../src/posix_api.cpp -vc80/boost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-gd-1_37.pdb ../src/regex.cpp +vc80/boost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-gd-1_38.pdb ../src/regex.cpp -vc80/boost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-gd-1_37.pdb ../src/regex_debug.cpp +vc80/boost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-gd-1_38.pdb ../src/regex_debug.cpp -vc80/boost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-gd-1_37.pdb ../src/regex_raw_buffer.cpp +vc80/boost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-gd-1_38.pdb ../src/regex_raw_buffer.cpp -vc80/boost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-gd-1_37.pdb ../src/regex_traits_defaults.cpp +vc80/boost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-gd-1_38.pdb ../src/regex_traits_defaults.cpp -vc80/boost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-gd-1_37.pdb ../src/static_mutex.cpp +vc80/boost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-gd-1_38.pdb ../src/static_mutex.cpp -vc80/boost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-gd-1_37.pdb ../src/usinstances.cpp +vc80/boost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-gd-1_38.pdb ../src/usinstances.cpp -vc80/boost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-gd-1_37.pdb ../src/w32_regex_traits.cpp +vc80/boost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-gd-1_38.pdb ../src/w32_regex_traits.cpp -vc80/boost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-gd-1_37.pdb ../src/wc_regex_traits.cpp +vc80/boost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-gd-1_38.pdb ../src/wc_regex_traits.cpp -vc80/boost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-gd-1_37.pdb ../src/wide_posix_api.cpp +vc80/boost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-gd-1_38.pdb ../src/wide_posix_api.cpp -vc80/boost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-gd-1_37.pdb ../src/winstances.cpp +vc80/boost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-gd-1_38.pdb ../src/winstances.cpp -boost_regex-vc80-mt-gd-1_37_dir : - @if not exist "vc80\boost_regex-vc80-mt-gd-1_37\$(NULL)" mkdir vc80\boost_regex-vc80-mt-gd-1_37 +boost_regex-vc80-mt-gd-1_38_dir : + @if not exist "vc80\boost_regex-vc80-mt-gd-1_38\$(NULL)" mkdir vc80\boost_regex-vc80-mt-gd-1_38 -boost_regex-vc80-mt-gd-1_37_clean : - del vc80\boost_regex-vc80-mt-gd-1_37\*.obj - del vc80\boost_regex-vc80-mt-gd-1_37\*.idb - del vc80\boost_regex-vc80-mt-gd-1_37\*.exp - del vc80\boost_regex-vc80-mt-gd-1_37\*.pch +boost_regex-vc80-mt-gd-1_38_clean : + del vc80\boost_regex-vc80-mt-gd-1_38\*.obj + del vc80\boost_regex-vc80-mt-gd-1_38\*.idb + del vc80\boost_regex-vc80-mt-gd-1_38\*.exp + del vc80\boost_regex-vc80-mt-gd-1_38\*.pch -./vc80/boost_regex-vc80-mt-gd-1_37.lib : vc80/boost_regex-vc80-mt-gd-1_37/c_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_37/cpp_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_37/cregex.obj vc80/boost_regex-vc80-mt-gd-1_37/fileiter.obj vc80/boost_regex-vc80-mt-gd-1_37/icu.obj vc80/boost_regex-vc80-mt-gd-1_37/instances.obj vc80/boost_regex-vc80-mt-gd-1_37/posix_api.obj vc80/boost_regex-vc80-mt-gd-1_37/regex.obj vc80/boost_regex-vc80-mt-gd-1_37/regex_debug.obj vc80/boost_regex-vc80-mt-gd-1_37/regex_raw_buffer.obj vc80/boost_regex-vc80-mt-gd-1_37/regex_traits_defaults.obj vc80/boost_regex-vc80-mt-gd-1_37/static_mutex.obj vc80/boost_regex-vc80-mt-gd-1_37/usinstances.obj vc80/boost_regex-vc80-mt-gd-1_37/w32_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_37/wc_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_37/wide_posix_api.obj vc80/boost_regex-vc80-mt-gd-1_37/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_37.pdb" /debug /machine:I386 /out:"vc80/boost_regex-vc80-mt-gd-1_37.dll" /implib:"vc80/boost_regex-vc80-mt-gd-1_37.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc80/boost_regex-vc80-mt-gd-1_37/c_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_37/cpp_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_37/cregex.obj vc80/boost_regex-vc80-mt-gd-1_37/fileiter.obj vc80/boost_regex-vc80-mt-gd-1_37/icu.obj vc80/boost_regex-vc80-mt-gd-1_37/instances.obj vc80/boost_regex-vc80-mt-gd-1_37/posix_api.obj vc80/boost_regex-vc80-mt-gd-1_37/regex.obj vc80/boost_regex-vc80-mt-gd-1_37/regex_debug.obj vc80/boost_regex-vc80-mt-gd-1_37/regex_raw_buffer.obj vc80/boost_regex-vc80-mt-gd-1_37/regex_traits_defaults.obj vc80/boost_regex-vc80-mt-gd-1_37/static_mutex.obj vc80/boost_regex-vc80-mt-gd-1_37/usinstances.obj vc80/boost_regex-vc80-mt-gd-1_37/w32_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_37/wc_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_37/wide_posix_api.obj vc80/boost_regex-vc80-mt-gd-1_37/winstances.obj +./vc80/boost_regex-vc80-mt-gd-1_38.lib : vc80/boost_regex-vc80-mt-gd-1_38/c_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_38/cpp_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_38/cregex.obj vc80/boost_regex-vc80-mt-gd-1_38/fileiter.obj vc80/boost_regex-vc80-mt-gd-1_38/icu.obj vc80/boost_regex-vc80-mt-gd-1_38/instances.obj vc80/boost_regex-vc80-mt-gd-1_38/posix_api.obj vc80/boost_regex-vc80-mt-gd-1_38/regex.obj vc80/boost_regex-vc80-mt-gd-1_38/regex_debug.obj vc80/boost_regex-vc80-mt-gd-1_38/regex_raw_buffer.obj vc80/boost_regex-vc80-mt-gd-1_38/regex_traits_defaults.obj vc80/boost_regex-vc80-mt-gd-1_38/static_mutex.obj vc80/boost_regex-vc80-mt-gd-1_38/usinstances.obj vc80/boost_regex-vc80-mt-gd-1_38/w32_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_38/wc_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_38/wide_posix_api.obj vc80/boost_regex-vc80-mt-gd-1_38/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_38.pdb" /debug /machine:I386 /out:"vc80/boost_regex-vc80-mt-gd-1_38.dll" /implib:"vc80/boost_regex-vc80-mt-gd-1_38.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc80/boost_regex-vc80-mt-gd-1_38/c_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_38/cpp_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_38/cregex.obj vc80/boost_regex-vc80-mt-gd-1_38/fileiter.obj vc80/boost_regex-vc80-mt-gd-1_38/icu.obj vc80/boost_regex-vc80-mt-gd-1_38/instances.obj vc80/boost_regex-vc80-mt-gd-1_38/posix_api.obj vc80/boost_regex-vc80-mt-gd-1_38/regex.obj vc80/boost_regex-vc80-mt-gd-1_38/regex_debug.obj vc80/boost_regex-vc80-mt-gd-1_38/regex_raw_buffer.obj vc80/boost_regex-vc80-mt-gd-1_38/regex_traits_defaults.obj vc80/boost_regex-vc80-mt-gd-1_38/static_mutex.obj vc80/boost_regex-vc80-mt-gd-1_38/usinstances.obj vc80/boost_regex-vc80-mt-gd-1_38/w32_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_38/wc_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_38/wide_posix_api.obj vc80/boost_regex-vc80-mt-gd-1_38/winstances.obj ######################################################## # -# section for boost_regex-vc80-mt-1_37.lib +# section for boost_regex-vc80-mt-1_38.lib # ######################################################## -vc80/boost_regex-vc80-mt-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-1_37.pdb ../src/c_regex_traits.cpp +vc80/boost_regex-vc80-mt-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-1_38.pdb ../src/c_regex_traits.cpp -vc80/boost_regex-vc80-mt-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-1_37.pdb ../src/cpp_regex_traits.cpp +vc80/boost_regex-vc80-mt-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-1_38.pdb ../src/cpp_regex_traits.cpp -vc80/boost_regex-vc80-mt-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-1_37.pdb ../src/cregex.cpp +vc80/boost_regex-vc80-mt-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-1_38.pdb ../src/cregex.cpp -vc80/boost_regex-vc80-mt-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-1_37.pdb ../src/fileiter.cpp +vc80/boost_regex-vc80-mt-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-1_38.pdb ../src/fileiter.cpp -vc80/boost_regex-vc80-mt-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-1_37.pdb ../src/icu.cpp +vc80/boost_regex-vc80-mt-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-1_38.pdb ../src/icu.cpp -vc80/boost_regex-vc80-mt-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-1_37.pdb ../src/instances.cpp +vc80/boost_regex-vc80-mt-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-1_38.pdb ../src/instances.cpp -vc80/boost_regex-vc80-mt-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-1_37.pdb ../src/posix_api.cpp +vc80/boost_regex-vc80-mt-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-1_38.pdb ../src/posix_api.cpp -vc80/boost_regex-vc80-mt-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-1_37.pdb ../src/regex.cpp +vc80/boost_regex-vc80-mt-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-1_38.pdb ../src/regex.cpp -vc80/boost_regex-vc80-mt-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-1_37.pdb ../src/regex_debug.cpp +vc80/boost_regex-vc80-mt-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-1_38.pdb ../src/regex_debug.cpp -vc80/boost_regex-vc80-mt-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-1_37.pdb ../src/regex_raw_buffer.cpp +vc80/boost_regex-vc80-mt-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-1_38.pdb ../src/regex_raw_buffer.cpp -vc80/boost_regex-vc80-mt-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-1_37.pdb ../src/regex_traits_defaults.cpp +vc80/boost_regex-vc80-mt-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-1_38.pdb ../src/regex_traits_defaults.cpp -vc80/boost_regex-vc80-mt-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-1_37.pdb ../src/static_mutex.cpp +vc80/boost_regex-vc80-mt-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-1_38.pdb ../src/static_mutex.cpp -vc80/boost_regex-vc80-mt-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-1_37.pdb ../src/usinstances.cpp +vc80/boost_regex-vc80-mt-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-1_38.pdb ../src/usinstances.cpp -vc80/boost_regex-vc80-mt-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-1_37.pdb ../src/w32_regex_traits.cpp +vc80/boost_regex-vc80-mt-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-1_38.pdb ../src/w32_regex_traits.cpp -vc80/boost_regex-vc80-mt-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-1_37.pdb ../src/wc_regex_traits.cpp +vc80/boost_regex-vc80-mt-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-1_38.pdb ../src/wc_regex_traits.cpp -vc80/boost_regex-vc80-mt-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-1_37.pdb ../src/wide_posix_api.cpp +vc80/boost_regex-vc80-mt-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-1_38.pdb ../src/wide_posix_api.cpp -vc80/boost_regex-vc80-mt-1_37/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_37/ -Fdvc80/boost_regex-vc80-mt-1_37.pdb ../src/winstances.cpp +vc80/boost_regex-vc80-mt-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-1_38.pdb ../src/winstances.cpp -boost_regex-vc80-mt-1_37_dir : - @if not exist "vc80\boost_regex-vc80-mt-1_37\$(NULL)" mkdir vc80\boost_regex-vc80-mt-1_37 +boost_regex-vc80-mt-1_38_dir : + @if not exist "vc80\boost_regex-vc80-mt-1_38\$(NULL)" mkdir vc80\boost_regex-vc80-mt-1_38 -boost_regex-vc80-mt-1_37_clean : - del vc80\boost_regex-vc80-mt-1_37\*.obj - del vc80\boost_regex-vc80-mt-1_37\*.idb - del vc80\boost_regex-vc80-mt-1_37\*.exp - del vc80\boost_regex-vc80-mt-1_37\*.pch +boost_regex-vc80-mt-1_38_clean : + del vc80\boost_regex-vc80-mt-1_38\*.obj + del vc80\boost_regex-vc80-mt-1_38\*.idb + del vc80\boost_regex-vc80-mt-1_38\*.exp + del vc80\boost_regex-vc80-mt-1_38\*.pch -./vc80/boost_regex-vc80-mt-1_37.lib : vc80/boost_regex-vc80-mt-1_37/c_regex_traits.obj vc80/boost_regex-vc80-mt-1_37/cpp_regex_traits.obj vc80/boost_regex-vc80-mt-1_37/cregex.obj vc80/boost_regex-vc80-mt-1_37/fileiter.obj vc80/boost_regex-vc80-mt-1_37/icu.obj vc80/boost_regex-vc80-mt-1_37/instances.obj vc80/boost_regex-vc80-mt-1_37/posix_api.obj vc80/boost_regex-vc80-mt-1_37/regex.obj vc80/boost_regex-vc80-mt-1_37/regex_debug.obj vc80/boost_regex-vc80-mt-1_37/regex_raw_buffer.obj vc80/boost_regex-vc80-mt-1_37/regex_traits_defaults.obj vc80/boost_regex-vc80-mt-1_37/static_mutex.obj vc80/boost_regex-vc80-mt-1_37/usinstances.obj vc80/boost_regex-vc80-mt-1_37/w32_regex_traits.obj vc80/boost_regex-vc80-mt-1_37/wc_regex_traits.obj vc80/boost_regex-vc80-mt-1_37/wide_posix_api.obj vc80/boost_regex-vc80-mt-1_37/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_37.pdb" /debug /machine:I386 /out:"vc80/boost_regex-vc80-mt-1_37.dll" /implib:"vc80/boost_regex-vc80-mt-1_37.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc80/boost_regex-vc80-mt-1_37/c_regex_traits.obj vc80/boost_regex-vc80-mt-1_37/cpp_regex_traits.obj vc80/boost_regex-vc80-mt-1_37/cregex.obj vc80/boost_regex-vc80-mt-1_37/fileiter.obj vc80/boost_regex-vc80-mt-1_37/icu.obj vc80/boost_regex-vc80-mt-1_37/instances.obj vc80/boost_regex-vc80-mt-1_37/posix_api.obj vc80/boost_regex-vc80-mt-1_37/regex.obj vc80/boost_regex-vc80-mt-1_37/regex_debug.obj vc80/boost_regex-vc80-mt-1_37/regex_raw_buffer.obj vc80/boost_regex-vc80-mt-1_37/regex_traits_defaults.obj vc80/boost_regex-vc80-mt-1_37/static_mutex.obj vc80/boost_regex-vc80-mt-1_37/usinstances.obj vc80/boost_regex-vc80-mt-1_37/w32_regex_traits.obj vc80/boost_regex-vc80-mt-1_37/wc_regex_traits.obj vc80/boost_regex-vc80-mt-1_37/wide_posix_api.obj vc80/boost_regex-vc80-mt-1_37/winstances.obj +./vc80/boost_regex-vc80-mt-1_38.lib : vc80/boost_regex-vc80-mt-1_38/c_regex_traits.obj vc80/boost_regex-vc80-mt-1_38/cpp_regex_traits.obj vc80/boost_regex-vc80-mt-1_38/cregex.obj vc80/boost_regex-vc80-mt-1_38/fileiter.obj vc80/boost_regex-vc80-mt-1_38/icu.obj vc80/boost_regex-vc80-mt-1_38/instances.obj vc80/boost_regex-vc80-mt-1_38/posix_api.obj vc80/boost_regex-vc80-mt-1_38/regex.obj vc80/boost_regex-vc80-mt-1_38/regex_debug.obj vc80/boost_regex-vc80-mt-1_38/regex_raw_buffer.obj vc80/boost_regex-vc80-mt-1_38/regex_traits_defaults.obj vc80/boost_regex-vc80-mt-1_38/static_mutex.obj vc80/boost_regex-vc80-mt-1_38/usinstances.obj vc80/boost_regex-vc80-mt-1_38/w32_regex_traits.obj vc80/boost_regex-vc80-mt-1_38/wc_regex_traits.obj vc80/boost_regex-vc80-mt-1_38/wide_posix_api.obj vc80/boost_regex-vc80-mt-1_38/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_38.pdb" /debug /machine:I386 /out:"vc80/boost_regex-vc80-mt-1_38.dll" /implib:"vc80/boost_regex-vc80-mt-1_38.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc80/boost_regex-vc80-mt-1_38/c_regex_traits.obj vc80/boost_regex-vc80-mt-1_38/cpp_regex_traits.obj vc80/boost_regex-vc80-mt-1_38/cregex.obj vc80/boost_regex-vc80-mt-1_38/fileiter.obj vc80/boost_regex-vc80-mt-1_38/icu.obj vc80/boost_regex-vc80-mt-1_38/instances.obj vc80/boost_regex-vc80-mt-1_38/posix_api.obj vc80/boost_regex-vc80-mt-1_38/regex.obj vc80/boost_regex-vc80-mt-1_38/regex_debug.obj vc80/boost_regex-vc80-mt-1_38/regex_raw_buffer.obj vc80/boost_regex-vc80-mt-1_38/regex_traits_defaults.obj vc80/boost_regex-vc80-mt-1_38/static_mutex.obj vc80/boost_regex-vc80-mt-1_38/usinstances.obj vc80/boost_regex-vc80-mt-1_38/w32_regex_traits.obj vc80/boost_regex-vc80-mt-1_38/wc_regex_traits.obj vc80/boost_regex-vc80-mt-1_38/wide_posix_api.obj vc80/boost_regex-vc80-mt-1_38/winstances.obj ######################################################## # -# section for libboost_regex-vc80-mt-1_37.lib +# section for libboost_regex-vc80-mt-1_38.lib # ######################################################## -vc80/libboost_regex-vc80-mt-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-1_37.pdb ../src/c_regex_traits.cpp +vc80/libboost_regex-vc80-mt-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-1_38.pdb ../src/c_regex_traits.cpp -vc80/libboost_regex-vc80-mt-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-1_37.pdb ../src/cpp_regex_traits.cpp +vc80/libboost_regex-vc80-mt-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-1_38.pdb ../src/cpp_regex_traits.cpp -vc80/libboost_regex-vc80-mt-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-1_37.pdb ../src/cregex.cpp +vc80/libboost_regex-vc80-mt-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-1_38.pdb ../src/cregex.cpp -vc80/libboost_regex-vc80-mt-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-1_37.pdb ../src/fileiter.cpp +vc80/libboost_regex-vc80-mt-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-1_38.pdb ../src/fileiter.cpp -vc80/libboost_regex-vc80-mt-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-1_37.pdb ../src/icu.cpp +vc80/libboost_regex-vc80-mt-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-1_38.pdb ../src/icu.cpp -vc80/libboost_regex-vc80-mt-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-1_37.pdb ../src/instances.cpp +vc80/libboost_regex-vc80-mt-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-1_38.pdb ../src/instances.cpp -vc80/libboost_regex-vc80-mt-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-1_37.pdb ../src/posix_api.cpp +vc80/libboost_regex-vc80-mt-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-1_38.pdb ../src/posix_api.cpp -vc80/libboost_regex-vc80-mt-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-1_37.pdb ../src/regex.cpp +vc80/libboost_regex-vc80-mt-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-1_38.pdb ../src/regex.cpp -vc80/libboost_regex-vc80-mt-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-1_37.pdb ../src/regex_debug.cpp +vc80/libboost_regex-vc80-mt-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-1_38.pdb ../src/regex_debug.cpp -vc80/libboost_regex-vc80-mt-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-1_37.pdb ../src/regex_raw_buffer.cpp +vc80/libboost_regex-vc80-mt-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-1_38.pdb ../src/regex_raw_buffer.cpp -vc80/libboost_regex-vc80-mt-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-1_37.pdb ../src/regex_traits_defaults.cpp +vc80/libboost_regex-vc80-mt-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-1_38.pdb ../src/regex_traits_defaults.cpp -vc80/libboost_regex-vc80-mt-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-1_37.pdb ../src/static_mutex.cpp +vc80/libboost_regex-vc80-mt-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-1_38.pdb ../src/static_mutex.cpp -vc80/libboost_regex-vc80-mt-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-1_37.pdb ../src/usinstances.cpp +vc80/libboost_regex-vc80-mt-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-1_38.pdb ../src/usinstances.cpp -vc80/libboost_regex-vc80-mt-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-1_37.pdb ../src/w32_regex_traits.cpp +vc80/libboost_regex-vc80-mt-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-1_38.pdb ../src/w32_regex_traits.cpp -vc80/libboost_regex-vc80-mt-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-1_37.pdb ../src/wc_regex_traits.cpp +vc80/libboost_regex-vc80-mt-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-1_38.pdb ../src/wc_regex_traits.cpp -vc80/libboost_regex-vc80-mt-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-1_37.pdb ../src/wide_posix_api.cpp +vc80/libboost_regex-vc80-mt-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-1_38.pdb ../src/wide_posix_api.cpp -vc80/libboost_regex-vc80-mt-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-1_37.pdb ../src/winstances.cpp +vc80/libboost_regex-vc80-mt-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-1_38.pdb ../src/winstances.cpp -libboost_regex-vc80-mt-1_37_dir : - @if not exist "vc80\libboost_regex-vc80-mt-1_37\$(NULL)" mkdir vc80\libboost_regex-vc80-mt-1_37 +libboost_regex-vc80-mt-1_38_dir : + @if not exist "vc80\libboost_regex-vc80-mt-1_38\$(NULL)" mkdir vc80\libboost_regex-vc80-mt-1_38 -libboost_regex-vc80-mt-1_37_clean : - del vc80\libboost_regex-vc80-mt-1_37\*.obj - del vc80\libboost_regex-vc80-mt-1_37\*.idb - del vc80\libboost_regex-vc80-mt-1_37\*.exp - del vc80\libboost_regex-vc80-mt-1_37\*.pch +libboost_regex-vc80-mt-1_38_clean : + del vc80\libboost_regex-vc80-mt-1_38\*.obj + del vc80\libboost_regex-vc80-mt-1_38\*.idb + del vc80\libboost_regex-vc80-mt-1_38\*.exp + del vc80\libboost_regex-vc80-mt-1_38\*.pch -./vc80/libboost_regex-vc80-mt-1_37.lib : vc80/libboost_regex-vc80-mt-1_37/c_regex_traits.obj vc80/libboost_regex-vc80-mt-1_37/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-1_37/cregex.obj vc80/libboost_regex-vc80-mt-1_37/fileiter.obj vc80/libboost_regex-vc80-mt-1_37/icu.obj vc80/libboost_regex-vc80-mt-1_37/instances.obj vc80/libboost_regex-vc80-mt-1_37/posix_api.obj vc80/libboost_regex-vc80-mt-1_37/regex.obj vc80/libboost_regex-vc80-mt-1_37/regex_debug.obj vc80/libboost_regex-vc80-mt-1_37/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-1_37/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-1_37/static_mutex.obj vc80/libboost_regex-vc80-mt-1_37/usinstances.obj vc80/libboost_regex-vc80-mt-1_37/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-1_37/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-1_37/wide_posix_api.obj vc80/libboost_regex-vc80-mt-1_37/winstances.obj - link -lib /nologo /out:vc80/libboost_regex-vc80-mt-1_37.lib $(XSFLAGS) vc80/libboost_regex-vc80-mt-1_37/c_regex_traits.obj vc80/libboost_regex-vc80-mt-1_37/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-1_37/cregex.obj vc80/libboost_regex-vc80-mt-1_37/fileiter.obj vc80/libboost_regex-vc80-mt-1_37/icu.obj vc80/libboost_regex-vc80-mt-1_37/instances.obj vc80/libboost_regex-vc80-mt-1_37/posix_api.obj vc80/libboost_regex-vc80-mt-1_37/regex.obj vc80/libboost_regex-vc80-mt-1_37/regex_debug.obj vc80/libboost_regex-vc80-mt-1_37/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-1_37/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-1_37/static_mutex.obj vc80/libboost_regex-vc80-mt-1_37/usinstances.obj vc80/libboost_regex-vc80-mt-1_37/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-1_37/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-1_37/wide_posix_api.obj vc80/libboost_regex-vc80-mt-1_37/winstances.obj +./vc80/libboost_regex-vc80-mt-1_38.lib : vc80/libboost_regex-vc80-mt-1_38/c_regex_traits.obj vc80/libboost_regex-vc80-mt-1_38/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-1_38/cregex.obj vc80/libboost_regex-vc80-mt-1_38/fileiter.obj vc80/libboost_regex-vc80-mt-1_38/icu.obj vc80/libboost_regex-vc80-mt-1_38/instances.obj vc80/libboost_regex-vc80-mt-1_38/posix_api.obj vc80/libboost_regex-vc80-mt-1_38/regex.obj vc80/libboost_regex-vc80-mt-1_38/regex_debug.obj vc80/libboost_regex-vc80-mt-1_38/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-1_38/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-1_38/static_mutex.obj vc80/libboost_regex-vc80-mt-1_38/usinstances.obj vc80/libboost_regex-vc80-mt-1_38/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-1_38/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-1_38/wide_posix_api.obj vc80/libboost_regex-vc80-mt-1_38/winstances.obj + link -lib /nologo /out:vc80/libboost_regex-vc80-mt-1_38.lib $(XSFLAGS) vc80/libboost_regex-vc80-mt-1_38/c_regex_traits.obj vc80/libboost_regex-vc80-mt-1_38/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-1_38/cregex.obj vc80/libboost_regex-vc80-mt-1_38/fileiter.obj vc80/libboost_regex-vc80-mt-1_38/icu.obj vc80/libboost_regex-vc80-mt-1_38/instances.obj vc80/libboost_regex-vc80-mt-1_38/posix_api.obj vc80/libboost_regex-vc80-mt-1_38/regex.obj vc80/libboost_regex-vc80-mt-1_38/regex_debug.obj vc80/libboost_regex-vc80-mt-1_38/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-1_38/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-1_38/static_mutex.obj vc80/libboost_regex-vc80-mt-1_38/usinstances.obj vc80/libboost_regex-vc80-mt-1_38/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-1_38/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-1_38/wide_posix_api.obj vc80/libboost_regex-vc80-mt-1_38/winstances.obj ######################################################## # -# section for libboost_regex-vc80-mt-gd-1_37.lib +# section for libboost_regex-vc80-mt-gd-1_38.lib # ######################################################## -vc80/libboost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-gd-1_37.pdb ../src/c_regex_traits.cpp +vc80/libboost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-gd-1_38.pdb ../src/c_regex_traits.cpp -vc80/libboost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-gd-1_37.pdb ../src/cpp_regex_traits.cpp +vc80/libboost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-gd-1_38.pdb ../src/cpp_regex_traits.cpp -vc80/libboost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-gd-1_37.pdb ../src/cregex.cpp +vc80/libboost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-gd-1_38.pdb ../src/cregex.cpp -vc80/libboost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-gd-1_37.pdb ../src/fileiter.cpp +vc80/libboost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-gd-1_38.pdb ../src/fileiter.cpp -vc80/libboost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-gd-1_37.pdb ../src/icu.cpp +vc80/libboost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-gd-1_38.pdb ../src/icu.cpp -vc80/libboost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-gd-1_37.pdb ../src/instances.cpp +vc80/libboost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-gd-1_38.pdb ../src/instances.cpp -vc80/libboost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-gd-1_37.pdb ../src/posix_api.cpp +vc80/libboost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-gd-1_38.pdb ../src/posix_api.cpp -vc80/libboost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-gd-1_37.pdb ../src/regex.cpp +vc80/libboost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-gd-1_38.pdb ../src/regex.cpp -vc80/libboost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-gd-1_37.pdb ../src/regex_debug.cpp +vc80/libboost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-gd-1_38.pdb ../src/regex_debug.cpp -vc80/libboost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-gd-1_37.pdb ../src/regex_raw_buffer.cpp +vc80/libboost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-gd-1_38.pdb ../src/regex_raw_buffer.cpp -vc80/libboost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-gd-1_37.pdb ../src/regex_traits_defaults.cpp +vc80/libboost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-gd-1_38.pdb ../src/regex_traits_defaults.cpp -vc80/libboost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-gd-1_37.pdb ../src/static_mutex.cpp +vc80/libboost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-gd-1_38.pdb ../src/static_mutex.cpp -vc80/libboost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-gd-1_37.pdb ../src/usinstances.cpp +vc80/libboost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-gd-1_38.pdb ../src/usinstances.cpp -vc80/libboost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-gd-1_37.pdb ../src/w32_regex_traits.cpp +vc80/libboost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-gd-1_38.pdb ../src/w32_regex_traits.cpp -vc80/libboost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-gd-1_37.pdb ../src/wc_regex_traits.cpp +vc80/libboost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-gd-1_38.pdb ../src/wc_regex_traits.cpp -vc80/libboost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-gd-1_37.pdb ../src/wide_posix_api.cpp +vc80/libboost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-gd-1_38.pdb ../src/wide_posix_api.cpp -vc80/libboost_regex-vc80-mt-gd-1_37/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_37/ -Fdvc80/libboost_regex-vc80-mt-gd-1_37.pdb ../src/winstances.cpp +vc80/libboost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-gd-1_38.pdb ../src/winstances.cpp -libboost_regex-vc80-mt-gd-1_37_dir : - @if not exist "vc80\libboost_regex-vc80-mt-gd-1_37\$(NULL)" mkdir vc80\libboost_regex-vc80-mt-gd-1_37 +libboost_regex-vc80-mt-gd-1_38_dir : + @if not exist "vc80\libboost_regex-vc80-mt-gd-1_38\$(NULL)" mkdir vc80\libboost_regex-vc80-mt-gd-1_38 -libboost_regex-vc80-mt-gd-1_37_clean : - del vc80\libboost_regex-vc80-mt-gd-1_37\*.obj - del vc80\libboost_regex-vc80-mt-gd-1_37\*.idb - del vc80\libboost_regex-vc80-mt-gd-1_37\*.exp - del vc80\libboost_regex-vc80-mt-gd-1_37\*.pch +libboost_regex-vc80-mt-gd-1_38_clean : + del vc80\libboost_regex-vc80-mt-gd-1_38\*.obj + del vc80\libboost_regex-vc80-mt-gd-1_38\*.idb + del vc80\libboost_regex-vc80-mt-gd-1_38\*.exp + del vc80\libboost_regex-vc80-mt-gd-1_38\*.pch -./vc80/libboost_regex-vc80-mt-gd-1_37.lib : vc80/libboost_regex-vc80-mt-gd-1_37/c_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_37/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_37/cregex.obj vc80/libboost_regex-vc80-mt-gd-1_37/fileiter.obj vc80/libboost_regex-vc80-mt-gd-1_37/icu.obj vc80/libboost_regex-vc80-mt-gd-1_37/instances.obj vc80/libboost_regex-vc80-mt-gd-1_37/posix_api.obj vc80/libboost_regex-vc80-mt-gd-1_37/regex.obj vc80/libboost_regex-vc80-mt-gd-1_37/regex_debug.obj vc80/libboost_regex-vc80-mt-gd-1_37/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-gd-1_37/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-gd-1_37/static_mutex.obj vc80/libboost_regex-vc80-mt-gd-1_37/usinstances.obj vc80/libboost_regex-vc80-mt-gd-1_37/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_37/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_37/wide_posix_api.obj vc80/libboost_regex-vc80-mt-gd-1_37/winstances.obj - link -lib /nologo /out:vc80/libboost_regex-vc80-mt-gd-1_37.lib $(XSFLAGS) vc80/libboost_regex-vc80-mt-gd-1_37/c_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_37/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_37/cregex.obj vc80/libboost_regex-vc80-mt-gd-1_37/fileiter.obj vc80/libboost_regex-vc80-mt-gd-1_37/icu.obj vc80/libboost_regex-vc80-mt-gd-1_37/instances.obj vc80/libboost_regex-vc80-mt-gd-1_37/posix_api.obj vc80/libboost_regex-vc80-mt-gd-1_37/regex.obj vc80/libboost_regex-vc80-mt-gd-1_37/regex_debug.obj vc80/libboost_regex-vc80-mt-gd-1_37/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-gd-1_37/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-gd-1_37/static_mutex.obj vc80/libboost_regex-vc80-mt-gd-1_37/usinstances.obj vc80/libboost_regex-vc80-mt-gd-1_37/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_37/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_37/wide_posix_api.obj vc80/libboost_regex-vc80-mt-gd-1_37/winstances.obj +./vc80/libboost_regex-vc80-mt-gd-1_38.lib : vc80/libboost_regex-vc80-mt-gd-1_38/c_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_38/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_38/cregex.obj vc80/libboost_regex-vc80-mt-gd-1_38/fileiter.obj vc80/libboost_regex-vc80-mt-gd-1_38/icu.obj vc80/libboost_regex-vc80-mt-gd-1_38/instances.obj vc80/libboost_regex-vc80-mt-gd-1_38/posix_api.obj vc80/libboost_regex-vc80-mt-gd-1_38/regex.obj vc80/libboost_regex-vc80-mt-gd-1_38/regex_debug.obj vc80/libboost_regex-vc80-mt-gd-1_38/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-gd-1_38/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-gd-1_38/static_mutex.obj vc80/libboost_regex-vc80-mt-gd-1_38/usinstances.obj vc80/libboost_regex-vc80-mt-gd-1_38/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_38/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_38/wide_posix_api.obj vc80/libboost_regex-vc80-mt-gd-1_38/winstances.obj + link -lib /nologo /out:vc80/libboost_regex-vc80-mt-gd-1_38.lib $(XSFLAGS) vc80/libboost_regex-vc80-mt-gd-1_38/c_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_38/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_38/cregex.obj vc80/libboost_regex-vc80-mt-gd-1_38/fileiter.obj vc80/libboost_regex-vc80-mt-gd-1_38/icu.obj vc80/libboost_regex-vc80-mt-gd-1_38/instances.obj vc80/libboost_regex-vc80-mt-gd-1_38/posix_api.obj vc80/libboost_regex-vc80-mt-gd-1_38/regex.obj vc80/libboost_regex-vc80-mt-gd-1_38/regex_debug.obj vc80/libboost_regex-vc80-mt-gd-1_38/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-gd-1_38/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-gd-1_38/static_mutex.obj vc80/libboost_regex-vc80-mt-gd-1_38/usinstances.obj vc80/libboost_regex-vc80-mt-gd-1_38/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_38/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_38/wide_posix_api.obj vc80/libboost_regex-vc80-mt-gd-1_38/winstances.obj diff --git a/build/vc9.mak b/build/vc9.mak index b7bc83be..8d682e0b 100644 --- a/build/vc9.mak +++ b/build/vc9.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-vc90-s-1_37_dir ./vc90/libboost_regex-vc90-s-1_37.lib libboost_regex-vc90-mt-s-1_37_dir ./vc90/libboost_regex-vc90-mt-s-1_37.lib libboost_regex-vc90-sgd-1_37_dir ./vc90/libboost_regex-vc90-sgd-1_37.lib libboost_regex-vc90-mt-sgd-1_37_dir ./vc90/libboost_regex-vc90-mt-sgd-1_37.lib boost_regex-vc90-mt-gd-1_37_dir ./vc90/boost_regex-vc90-mt-gd-1_37.lib boost_regex-vc90-mt-1_37_dir ./vc90/boost_regex-vc90-mt-1_37.lib libboost_regex-vc90-mt-1_37_dir ./vc90/libboost_regex-vc90-mt-1_37.lib libboost_regex-vc90-mt-gd-1_37_dir ./vc90/libboost_regex-vc90-mt-gd-1_37.lib +all : main_dir libboost_regex-vc90-s-1_38_dir ./vc90/libboost_regex-vc90-s-1_38.lib libboost_regex-vc90-mt-s-1_38_dir ./vc90/libboost_regex-vc90-mt-s-1_38.lib libboost_regex-vc90-sgd-1_38_dir ./vc90/libboost_regex-vc90-sgd-1_38.lib libboost_regex-vc90-mt-sgd-1_38_dir ./vc90/libboost_regex-vc90-mt-sgd-1_38.lib boost_regex-vc90-mt-gd-1_38_dir ./vc90/boost_regex-vc90-mt-gd-1_38.lib boost_regex-vc90-mt-1_38_dir ./vc90/boost_regex-vc90-mt-1_38.lib libboost_regex-vc90-mt-1_38_dir ./vc90/libboost_regex-vc90-mt-1_38.lib libboost_regex-vc90-mt-gd-1_38_dir ./vc90/libboost_regex-vc90-mt-gd-1_38.lib -clean : libboost_regex-vc90-s-1_37_clean libboost_regex-vc90-mt-s-1_37_clean libboost_regex-vc90-sgd-1_37_clean libboost_regex-vc90-mt-sgd-1_37_clean boost_regex-vc90-mt-gd-1_37_clean boost_regex-vc90-mt-1_37_clean libboost_regex-vc90-mt-1_37_clean libboost_regex-vc90-mt-gd-1_37_clean +clean : libboost_regex-vc90-s-1_38_clean libboost_regex-vc90-mt-s-1_38_clean libboost_regex-vc90-sgd-1_38_clean libboost_regex-vc90-mt-sgd-1_38_clean boost_regex-vc90-mt-gd-1_38_clean boost_regex-vc90-mt-1_38_clean libboost_regex-vc90-mt-1_38_clean libboost_regex-vc90-mt-gd-1_38_clean install : all - copy vc90\libboost_regex-vc90-s-1_37.lib "$(MSVCDIR)\lib" - copy vc90\libboost_regex-vc90-mt-s-1_37.lib "$(MSVCDIR)\lib" - copy vc90\libboost_regex-vc90-sgd-1_37.lib "$(MSVCDIR)\lib" - copy vc90\libboost_regex-vc90-sgd-1_37.pdb "$(MSVCDIR)\lib" - copy vc90\libboost_regex-vc90-mt-sgd-1_37.lib "$(MSVCDIR)\lib" - copy vc90\libboost_regex-vc90-mt-sgd-1_37.pdb "$(MSVCDIR)\lib" - copy vc90\boost_regex-vc90-mt-gd-1_37.lib "$(MSVCDIR)\lib" - copy vc90\boost_regex-vc90-mt-gd-1_37.dll "$(MSVCDIR)\bin" - copy vc90\boost_regex-vc90-mt-gd-1_37.pdb "$(MSVCDIR)\lib" - copy vc90\boost_regex-vc90-mt-1_37.lib "$(MSVCDIR)\lib" - copy vc90\boost_regex-vc90-mt-1_37.dll "$(MSVCDIR)\bin" - copy vc90\libboost_regex-vc90-mt-1_37.lib "$(MSVCDIR)\lib" - copy vc90\libboost_regex-vc90-mt-gd-1_37.lib "$(MSVCDIR)\lib" - copy vc90\libboost_regex-vc90-mt-gd-1_37.pdb "$(MSVCDIR)\lib" + copy vc90\libboost_regex-vc90-s-1_38.lib "$(MSVCDIR)\lib" + copy vc90\libboost_regex-vc90-mt-s-1_38.lib "$(MSVCDIR)\lib" + copy vc90\libboost_regex-vc90-sgd-1_38.lib "$(MSVCDIR)\lib" + copy vc90\libboost_regex-vc90-sgd-1_38.pdb "$(MSVCDIR)\lib" + copy vc90\libboost_regex-vc90-mt-sgd-1_38.lib "$(MSVCDIR)\lib" + copy vc90\libboost_regex-vc90-mt-sgd-1_38.pdb "$(MSVCDIR)\lib" + copy vc90\boost_regex-vc90-mt-gd-1_38.lib "$(MSVCDIR)\lib" + copy vc90\boost_regex-vc90-mt-gd-1_38.dll "$(MSVCDIR)\bin" + copy vc90\boost_regex-vc90-mt-gd-1_38.pdb "$(MSVCDIR)\lib" + copy vc90\boost_regex-vc90-mt-1_38.lib "$(MSVCDIR)\lib" + copy vc90\boost_regex-vc90-mt-1_38.dll "$(MSVCDIR)\bin" + copy vc90\libboost_regex-vc90-mt-1_38.lib "$(MSVCDIR)\lib" + copy vc90\libboost_regex-vc90-mt-gd-1_38.lib "$(MSVCDIR)\lib" + copy vc90\libboost_regex-vc90-mt-gd-1_38.pdb "$(MSVCDIR)\lib" main_dir : @if not exist "vc90\$(NULL)" mkdir vc90 @@ -88,546 +88,546 @@ main_dir : ######################################################## # -# section for libboost_regex-vc90-s-1_37.lib +# section for libboost_regex-vc90-s-1_38.lib # ######################################################## -vc90/libboost_regex-vc90-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-s-1_37.pdb ../src/c_regex_traits.cpp +vc90/libboost_regex-vc90-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-s-1_38.pdb ../src/c_regex_traits.cpp -vc90/libboost_regex-vc90-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-s-1_37.pdb ../src/cpp_regex_traits.cpp +vc90/libboost_regex-vc90-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-s-1_38.pdb ../src/cpp_regex_traits.cpp -vc90/libboost_regex-vc90-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-s-1_37.pdb ../src/cregex.cpp +vc90/libboost_regex-vc90-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-s-1_38.pdb ../src/cregex.cpp -vc90/libboost_regex-vc90-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-s-1_37.pdb ../src/fileiter.cpp +vc90/libboost_regex-vc90-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-s-1_38.pdb ../src/fileiter.cpp -vc90/libboost_regex-vc90-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-s-1_37.pdb ../src/icu.cpp +vc90/libboost_regex-vc90-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-s-1_38.pdb ../src/icu.cpp -vc90/libboost_regex-vc90-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-s-1_37.pdb ../src/instances.cpp +vc90/libboost_regex-vc90-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-s-1_38.pdb ../src/instances.cpp -vc90/libboost_regex-vc90-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-s-1_37.pdb ../src/posix_api.cpp +vc90/libboost_regex-vc90-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-s-1_38.pdb ../src/posix_api.cpp -vc90/libboost_regex-vc90-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-s-1_37.pdb ../src/regex.cpp +vc90/libboost_regex-vc90-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-s-1_38.pdb ../src/regex.cpp -vc90/libboost_regex-vc90-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-s-1_37.pdb ../src/regex_debug.cpp +vc90/libboost_regex-vc90-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-s-1_38.pdb ../src/regex_debug.cpp -vc90/libboost_regex-vc90-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-s-1_37.pdb ../src/regex_raw_buffer.cpp +vc90/libboost_regex-vc90-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-s-1_38.pdb ../src/regex_raw_buffer.cpp -vc90/libboost_regex-vc90-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-s-1_37.pdb ../src/regex_traits_defaults.cpp +vc90/libboost_regex-vc90-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-s-1_38.pdb ../src/regex_traits_defaults.cpp -vc90/libboost_regex-vc90-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-s-1_37.pdb ../src/static_mutex.cpp +vc90/libboost_regex-vc90-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-s-1_38.pdb ../src/static_mutex.cpp -vc90/libboost_regex-vc90-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-s-1_37.pdb ../src/usinstances.cpp +vc90/libboost_regex-vc90-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-s-1_38.pdb ../src/usinstances.cpp -vc90/libboost_regex-vc90-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-s-1_37.pdb ../src/w32_regex_traits.cpp +vc90/libboost_regex-vc90-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-s-1_38.pdb ../src/w32_regex_traits.cpp -vc90/libboost_regex-vc90-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-s-1_37.pdb ../src/wc_regex_traits.cpp +vc90/libboost_regex-vc90-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-s-1_38.pdb ../src/wc_regex_traits.cpp -vc90/libboost_regex-vc90-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-s-1_37.pdb ../src/wide_posix_api.cpp +vc90/libboost_regex-vc90-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-s-1_38.pdb ../src/wide_posix_api.cpp -vc90/libboost_regex-vc90-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-s-1_37.pdb ../src/winstances.cpp +vc90/libboost_regex-vc90-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-s-1_38.pdb ../src/winstances.cpp -libboost_regex-vc90-s-1_37_dir : - @if not exist "vc90\libboost_regex-vc90-s-1_37\$(NULL)" mkdir vc90\libboost_regex-vc90-s-1_37 +libboost_regex-vc90-s-1_38_dir : + @if not exist "vc90\libboost_regex-vc90-s-1_38\$(NULL)" mkdir vc90\libboost_regex-vc90-s-1_38 -libboost_regex-vc90-s-1_37_clean : - del vc90\libboost_regex-vc90-s-1_37\*.obj - del vc90\libboost_regex-vc90-s-1_37\*.idb - del vc90\libboost_regex-vc90-s-1_37\*.exp - del vc90\libboost_regex-vc90-s-1_37\*.pch +libboost_regex-vc90-s-1_38_clean : + del vc90\libboost_regex-vc90-s-1_38\*.obj + del vc90\libboost_regex-vc90-s-1_38\*.idb + del vc90\libboost_regex-vc90-s-1_38\*.exp + del vc90\libboost_regex-vc90-s-1_38\*.pch -./vc90/libboost_regex-vc90-s-1_37.lib : vc90/libboost_regex-vc90-s-1_37/c_regex_traits.obj vc90/libboost_regex-vc90-s-1_37/cpp_regex_traits.obj vc90/libboost_regex-vc90-s-1_37/cregex.obj vc90/libboost_regex-vc90-s-1_37/fileiter.obj vc90/libboost_regex-vc90-s-1_37/icu.obj vc90/libboost_regex-vc90-s-1_37/instances.obj vc90/libboost_regex-vc90-s-1_37/posix_api.obj vc90/libboost_regex-vc90-s-1_37/regex.obj vc90/libboost_regex-vc90-s-1_37/regex_debug.obj vc90/libboost_regex-vc90-s-1_37/regex_raw_buffer.obj vc90/libboost_regex-vc90-s-1_37/regex_traits_defaults.obj vc90/libboost_regex-vc90-s-1_37/static_mutex.obj vc90/libboost_regex-vc90-s-1_37/usinstances.obj vc90/libboost_regex-vc90-s-1_37/w32_regex_traits.obj vc90/libboost_regex-vc90-s-1_37/wc_regex_traits.obj vc90/libboost_regex-vc90-s-1_37/wide_posix_api.obj vc90/libboost_regex-vc90-s-1_37/winstances.obj - link -lib /nologo /out:vc90/libboost_regex-vc90-s-1_37.lib $(XSFLAGS) vc90/libboost_regex-vc90-s-1_37/c_regex_traits.obj vc90/libboost_regex-vc90-s-1_37/cpp_regex_traits.obj vc90/libboost_regex-vc90-s-1_37/cregex.obj vc90/libboost_regex-vc90-s-1_37/fileiter.obj vc90/libboost_regex-vc90-s-1_37/icu.obj vc90/libboost_regex-vc90-s-1_37/instances.obj vc90/libboost_regex-vc90-s-1_37/posix_api.obj vc90/libboost_regex-vc90-s-1_37/regex.obj vc90/libboost_regex-vc90-s-1_37/regex_debug.obj vc90/libboost_regex-vc90-s-1_37/regex_raw_buffer.obj vc90/libboost_regex-vc90-s-1_37/regex_traits_defaults.obj vc90/libboost_regex-vc90-s-1_37/static_mutex.obj vc90/libboost_regex-vc90-s-1_37/usinstances.obj vc90/libboost_regex-vc90-s-1_37/w32_regex_traits.obj vc90/libboost_regex-vc90-s-1_37/wc_regex_traits.obj vc90/libboost_regex-vc90-s-1_37/wide_posix_api.obj vc90/libboost_regex-vc90-s-1_37/winstances.obj +./vc90/libboost_regex-vc90-s-1_38.lib : vc90/libboost_regex-vc90-s-1_38/c_regex_traits.obj vc90/libboost_regex-vc90-s-1_38/cpp_regex_traits.obj vc90/libboost_regex-vc90-s-1_38/cregex.obj vc90/libboost_regex-vc90-s-1_38/fileiter.obj vc90/libboost_regex-vc90-s-1_38/icu.obj vc90/libboost_regex-vc90-s-1_38/instances.obj vc90/libboost_regex-vc90-s-1_38/posix_api.obj vc90/libboost_regex-vc90-s-1_38/regex.obj vc90/libboost_regex-vc90-s-1_38/regex_debug.obj vc90/libboost_regex-vc90-s-1_38/regex_raw_buffer.obj vc90/libboost_regex-vc90-s-1_38/regex_traits_defaults.obj vc90/libboost_regex-vc90-s-1_38/static_mutex.obj vc90/libboost_regex-vc90-s-1_38/usinstances.obj vc90/libboost_regex-vc90-s-1_38/w32_regex_traits.obj vc90/libboost_regex-vc90-s-1_38/wc_regex_traits.obj vc90/libboost_regex-vc90-s-1_38/wide_posix_api.obj vc90/libboost_regex-vc90-s-1_38/winstances.obj + link -lib /nologo /out:vc90/libboost_regex-vc90-s-1_38.lib $(XSFLAGS) vc90/libboost_regex-vc90-s-1_38/c_regex_traits.obj vc90/libboost_regex-vc90-s-1_38/cpp_regex_traits.obj vc90/libboost_regex-vc90-s-1_38/cregex.obj vc90/libboost_regex-vc90-s-1_38/fileiter.obj vc90/libboost_regex-vc90-s-1_38/icu.obj vc90/libboost_regex-vc90-s-1_38/instances.obj vc90/libboost_regex-vc90-s-1_38/posix_api.obj vc90/libboost_regex-vc90-s-1_38/regex.obj vc90/libboost_regex-vc90-s-1_38/regex_debug.obj vc90/libboost_regex-vc90-s-1_38/regex_raw_buffer.obj vc90/libboost_regex-vc90-s-1_38/regex_traits_defaults.obj vc90/libboost_regex-vc90-s-1_38/static_mutex.obj vc90/libboost_regex-vc90-s-1_38/usinstances.obj vc90/libboost_regex-vc90-s-1_38/w32_regex_traits.obj vc90/libboost_regex-vc90-s-1_38/wc_regex_traits.obj vc90/libboost_regex-vc90-s-1_38/wide_posix_api.obj vc90/libboost_regex-vc90-s-1_38/winstances.obj ######################################################## # -# section for libboost_regex-vc90-mt-s-1_37.lib +# section for libboost_regex-vc90-mt-s-1_38.lib # ######################################################## -vc90/libboost_regex-vc90-mt-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-s-1_37.pdb ../src/c_regex_traits.cpp +vc90/libboost_regex-vc90-mt-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-s-1_38.pdb ../src/c_regex_traits.cpp -vc90/libboost_regex-vc90-mt-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-s-1_37.pdb ../src/cpp_regex_traits.cpp +vc90/libboost_regex-vc90-mt-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-s-1_38.pdb ../src/cpp_regex_traits.cpp -vc90/libboost_regex-vc90-mt-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-s-1_37.pdb ../src/cregex.cpp +vc90/libboost_regex-vc90-mt-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-s-1_38.pdb ../src/cregex.cpp -vc90/libboost_regex-vc90-mt-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-s-1_37.pdb ../src/fileiter.cpp +vc90/libboost_regex-vc90-mt-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-s-1_38.pdb ../src/fileiter.cpp -vc90/libboost_regex-vc90-mt-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-s-1_37.pdb ../src/icu.cpp +vc90/libboost_regex-vc90-mt-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-s-1_38.pdb ../src/icu.cpp -vc90/libboost_regex-vc90-mt-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-s-1_37.pdb ../src/instances.cpp +vc90/libboost_regex-vc90-mt-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-s-1_38.pdb ../src/instances.cpp -vc90/libboost_regex-vc90-mt-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-s-1_37.pdb ../src/posix_api.cpp +vc90/libboost_regex-vc90-mt-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-s-1_38.pdb ../src/posix_api.cpp -vc90/libboost_regex-vc90-mt-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-s-1_37.pdb ../src/regex.cpp +vc90/libboost_regex-vc90-mt-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-s-1_38.pdb ../src/regex.cpp -vc90/libboost_regex-vc90-mt-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-s-1_37.pdb ../src/regex_debug.cpp +vc90/libboost_regex-vc90-mt-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-s-1_38.pdb ../src/regex_debug.cpp -vc90/libboost_regex-vc90-mt-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-s-1_37.pdb ../src/regex_raw_buffer.cpp +vc90/libboost_regex-vc90-mt-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-s-1_38.pdb ../src/regex_raw_buffer.cpp -vc90/libboost_regex-vc90-mt-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-s-1_37.pdb ../src/regex_traits_defaults.cpp +vc90/libboost_regex-vc90-mt-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-s-1_38.pdb ../src/regex_traits_defaults.cpp -vc90/libboost_regex-vc90-mt-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-s-1_37.pdb ../src/static_mutex.cpp +vc90/libboost_regex-vc90-mt-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-s-1_38.pdb ../src/static_mutex.cpp -vc90/libboost_regex-vc90-mt-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-s-1_37.pdb ../src/usinstances.cpp +vc90/libboost_regex-vc90-mt-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-s-1_38.pdb ../src/usinstances.cpp -vc90/libboost_regex-vc90-mt-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-s-1_37.pdb ../src/w32_regex_traits.cpp +vc90/libboost_regex-vc90-mt-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-s-1_38.pdb ../src/w32_regex_traits.cpp -vc90/libboost_regex-vc90-mt-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-s-1_37.pdb ../src/wc_regex_traits.cpp +vc90/libboost_regex-vc90-mt-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-s-1_38.pdb ../src/wc_regex_traits.cpp -vc90/libboost_regex-vc90-mt-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-s-1_37.pdb ../src/wide_posix_api.cpp +vc90/libboost_regex-vc90-mt-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-s-1_38.pdb ../src/wide_posix_api.cpp -vc90/libboost_regex-vc90-mt-s-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-s-1_37.pdb ../src/winstances.cpp +vc90/libboost_regex-vc90-mt-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-s-1_38.pdb ../src/winstances.cpp -libboost_regex-vc90-mt-s-1_37_dir : - @if not exist "vc90\libboost_regex-vc90-mt-s-1_37\$(NULL)" mkdir vc90\libboost_regex-vc90-mt-s-1_37 +libboost_regex-vc90-mt-s-1_38_dir : + @if not exist "vc90\libboost_regex-vc90-mt-s-1_38\$(NULL)" mkdir vc90\libboost_regex-vc90-mt-s-1_38 -libboost_regex-vc90-mt-s-1_37_clean : - del vc90\libboost_regex-vc90-mt-s-1_37\*.obj - del vc90\libboost_regex-vc90-mt-s-1_37\*.idb - del vc90\libboost_regex-vc90-mt-s-1_37\*.exp - del vc90\libboost_regex-vc90-mt-s-1_37\*.pch +libboost_regex-vc90-mt-s-1_38_clean : + del vc90\libboost_regex-vc90-mt-s-1_38\*.obj + del vc90\libboost_regex-vc90-mt-s-1_38\*.idb + del vc90\libboost_regex-vc90-mt-s-1_38\*.exp + del vc90\libboost_regex-vc90-mt-s-1_38\*.pch -./vc90/libboost_regex-vc90-mt-s-1_37.lib : vc90/libboost_regex-vc90-mt-s-1_37/c_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_37/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_37/cregex.obj vc90/libboost_regex-vc90-mt-s-1_37/fileiter.obj vc90/libboost_regex-vc90-mt-s-1_37/icu.obj vc90/libboost_regex-vc90-mt-s-1_37/instances.obj vc90/libboost_regex-vc90-mt-s-1_37/posix_api.obj vc90/libboost_regex-vc90-mt-s-1_37/regex.obj vc90/libboost_regex-vc90-mt-s-1_37/regex_debug.obj vc90/libboost_regex-vc90-mt-s-1_37/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-s-1_37/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-s-1_37/static_mutex.obj vc90/libboost_regex-vc90-mt-s-1_37/usinstances.obj vc90/libboost_regex-vc90-mt-s-1_37/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_37/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_37/wide_posix_api.obj vc90/libboost_regex-vc90-mt-s-1_37/winstances.obj - link -lib /nologo /out:vc90/libboost_regex-vc90-mt-s-1_37.lib $(XSFLAGS) vc90/libboost_regex-vc90-mt-s-1_37/c_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_37/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_37/cregex.obj vc90/libboost_regex-vc90-mt-s-1_37/fileiter.obj vc90/libboost_regex-vc90-mt-s-1_37/icu.obj vc90/libboost_regex-vc90-mt-s-1_37/instances.obj vc90/libboost_regex-vc90-mt-s-1_37/posix_api.obj vc90/libboost_regex-vc90-mt-s-1_37/regex.obj vc90/libboost_regex-vc90-mt-s-1_37/regex_debug.obj vc90/libboost_regex-vc90-mt-s-1_37/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-s-1_37/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-s-1_37/static_mutex.obj vc90/libboost_regex-vc90-mt-s-1_37/usinstances.obj vc90/libboost_regex-vc90-mt-s-1_37/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_37/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_37/wide_posix_api.obj vc90/libboost_regex-vc90-mt-s-1_37/winstances.obj +./vc90/libboost_regex-vc90-mt-s-1_38.lib : vc90/libboost_regex-vc90-mt-s-1_38/c_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_38/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_38/cregex.obj vc90/libboost_regex-vc90-mt-s-1_38/fileiter.obj vc90/libboost_regex-vc90-mt-s-1_38/icu.obj vc90/libboost_regex-vc90-mt-s-1_38/instances.obj vc90/libboost_regex-vc90-mt-s-1_38/posix_api.obj vc90/libboost_regex-vc90-mt-s-1_38/regex.obj vc90/libboost_regex-vc90-mt-s-1_38/regex_debug.obj vc90/libboost_regex-vc90-mt-s-1_38/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-s-1_38/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-s-1_38/static_mutex.obj vc90/libboost_regex-vc90-mt-s-1_38/usinstances.obj vc90/libboost_regex-vc90-mt-s-1_38/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_38/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_38/wide_posix_api.obj vc90/libboost_regex-vc90-mt-s-1_38/winstances.obj + link -lib /nologo /out:vc90/libboost_regex-vc90-mt-s-1_38.lib $(XSFLAGS) vc90/libboost_regex-vc90-mt-s-1_38/c_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_38/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_38/cregex.obj vc90/libboost_regex-vc90-mt-s-1_38/fileiter.obj vc90/libboost_regex-vc90-mt-s-1_38/icu.obj vc90/libboost_regex-vc90-mt-s-1_38/instances.obj vc90/libboost_regex-vc90-mt-s-1_38/posix_api.obj vc90/libboost_regex-vc90-mt-s-1_38/regex.obj vc90/libboost_regex-vc90-mt-s-1_38/regex_debug.obj vc90/libboost_regex-vc90-mt-s-1_38/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-s-1_38/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-s-1_38/static_mutex.obj vc90/libboost_regex-vc90-mt-s-1_38/usinstances.obj vc90/libboost_regex-vc90-mt-s-1_38/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_38/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_38/wide_posix_api.obj vc90/libboost_regex-vc90-mt-s-1_38/winstances.obj ######################################################## # -# section for libboost_regex-vc90-sgd-1_37.lib +# section for libboost_regex-vc90-sgd-1_38.lib # ######################################################## -vc90/libboost_regex-vc90-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-sgd-1_37.pdb ../src/c_regex_traits.cpp +vc90/libboost_regex-vc90-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-sgd-1_38.pdb ../src/c_regex_traits.cpp -vc90/libboost_regex-vc90-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-sgd-1_37.pdb ../src/cpp_regex_traits.cpp +vc90/libboost_regex-vc90-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-sgd-1_38.pdb ../src/cpp_regex_traits.cpp -vc90/libboost_regex-vc90-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-sgd-1_37.pdb ../src/cregex.cpp +vc90/libboost_regex-vc90-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-sgd-1_38.pdb ../src/cregex.cpp -vc90/libboost_regex-vc90-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-sgd-1_37.pdb ../src/fileiter.cpp +vc90/libboost_regex-vc90-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-sgd-1_38.pdb ../src/fileiter.cpp -vc90/libboost_regex-vc90-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-sgd-1_37.pdb ../src/icu.cpp +vc90/libboost_regex-vc90-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-sgd-1_38.pdb ../src/icu.cpp -vc90/libboost_regex-vc90-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-sgd-1_37.pdb ../src/instances.cpp +vc90/libboost_regex-vc90-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-sgd-1_38.pdb ../src/instances.cpp -vc90/libboost_regex-vc90-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-sgd-1_37.pdb ../src/posix_api.cpp +vc90/libboost_regex-vc90-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-sgd-1_38.pdb ../src/posix_api.cpp -vc90/libboost_regex-vc90-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-sgd-1_37.pdb ../src/regex.cpp +vc90/libboost_regex-vc90-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-sgd-1_38.pdb ../src/regex.cpp -vc90/libboost_regex-vc90-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-sgd-1_37.pdb ../src/regex_debug.cpp +vc90/libboost_regex-vc90-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-sgd-1_38.pdb ../src/regex_debug.cpp -vc90/libboost_regex-vc90-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-sgd-1_37.pdb ../src/regex_raw_buffer.cpp +vc90/libboost_regex-vc90-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-sgd-1_38.pdb ../src/regex_raw_buffer.cpp -vc90/libboost_regex-vc90-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-sgd-1_37.pdb ../src/regex_traits_defaults.cpp +vc90/libboost_regex-vc90-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-sgd-1_38.pdb ../src/regex_traits_defaults.cpp -vc90/libboost_regex-vc90-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-sgd-1_37.pdb ../src/static_mutex.cpp +vc90/libboost_regex-vc90-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-sgd-1_38.pdb ../src/static_mutex.cpp -vc90/libboost_regex-vc90-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-sgd-1_37.pdb ../src/usinstances.cpp +vc90/libboost_regex-vc90-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-sgd-1_38.pdb ../src/usinstances.cpp -vc90/libboost_regex-vc90-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-sgd-1_37.pdb ../src/w32_regex_traits.cpp +vc90/libboost_regex-vc90-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-sgd-1_38.pdb ../src/w32_regex_traits.cpp -vc90/libboost_regex-vc90-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-sgd-1_37.pdb ../src/wc_regex_traits.cpp +vc90/libboost_regex-vc90-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-sgd-1_38.pdb ../src/wc_regex_traits.cpp -vc90/libboost_regex-vc90-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-sgd-1_37.pdb ../src/wide_posix_api.cpp +vc90/libboost_regex-vc90-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-sgd-1_38.pdb ../src/wide_posix_api.cpp -vc90/libboost_regex-vc90-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-sgd-1_37.pdb ../src/winstances.cpp +vc90/libboost_regex-vc90-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-sgd-1_38.pdb ../src/winstances.cpp -libboost_regex-vc90-sgd-1_37_dir : - @if not exist "vc90\libboost_regex-vc90-sgd-1_37\$(NULL)" mkdir vc90\libboost_regex-vc90-sgd-1_37 +libboost_regex-vc90-sgd-1_38_dir : + @if not exist "vc90\libboost_regex-vc90-sgd-1_38\$(NULL)" mkdir vc90\libboost_regex-vc90-sgd-1_38 -libboost_regex-vc90-sgd-1_37_clean : - del vc90\libboost_regex-vc90-sgd-1_37\*.obj - del vc90\libboost_regex-vc90-sgd-1_37\*.idb - del vc90\libboost_regex-vc90-sgd-1_37\*.exp - del vc90\libboost_regex-vc90-sgd-1_37\*.pch +libboost_regex-vc90-sgd-1_38_clean : + del vc90\libboost_regex-vc90-sgd-1_38\*.obj + del vc90\libboost_regex-vc90-sgd-1_38\*.idb + del vc90\libboost_regex-vc90-sgd-1_38\*.exp + del vc90\libboost_regex-vc90-sgd-1_38\*.pch -./vc90/libboost_regex-vc90-sgd-1_37.lib : vc90/libboost_regex-vc90-sgd-1_37/c_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_37/cpp_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_37/cregex.obj vc90/libboost_regex-vc90-sgd-1_37/fileiter.obj vc90/libboost_regex-vc90-sgd-1_37/icu.obj vc90/libboost_regex-vc90-sgd-1_37/instances.obj vc90/libboost_regex-vc90-sgd-1_37/posix_api.obj vc90/libboost_regex-vc90-sgd-1_37/regex.obj vc90/libboost_regex-vc90-sgd-1_37/regex_debug.obj vc90/libboost_regex-vc90-sgd-1_37/regex_raw_buffer.obj vc90/libboost_regex-vc90-sgd-1_37/regex_traits_defaults.obj vc90/libboost_regex-vc90-sgd-1_37/static_mutex.obj vc90/libboost_regex-vc90-sgd-1_37/usinstances.obj vc90/libboost_regex-vc90-sgd-1_37/w32_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_37/wc_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_37/wide_posix_api.obj vc90/libboost_regex-vc90-sgd-1_37/winstances.obj - link -lib /nologo /out:vc90/libboost_regex-vc90-sgd-1_37.lib $(XSFLAGS) vc90/libboost_regex-vc90-sgd-1_37/c_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_37/cpp_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_37/cregex.obj vc90/libboost_regex-vc90-sgd-1_37/fileiter.obj vc90/libboost_regex-vc90-sgd-1_37/icu.obj vc90/libboost_regex-vc90-sgd-1_37/instances.obj vc90/libboost_regex-vc90-sgd-1_37/posix_api.obj vc90/libboost_regex-vc90-sgd-1_37/regex.obj vc90/libboost_regex-vc90-sgd-1_37/regex_debug.obj vc90/libboost_regex-vc90-sgd-1_37/regex_raw_buffer.obj vc90/libboost_regex-vc90-sgd-1_37/regex_traits_defaults.obj vc90/libboost_regex-vc90-sgd-1_37/static_mutex.obj vc90/libboost_regex-vc90-sgd-1_37/usinstances.obj vc90/libboost_regex-vc90-sgd-1_37/w32_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_37/wc_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_37/wide_posix_api.obj vc90/libboost_regex-vc90-sgd-1_37/winstances.obj +./vc90/libboost_regex-vc90-sgd-1_38.lib : vc90/libboost_regex-vc90-sgd-1_38/c_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_38/cpp_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_38/cregex.obj vc90/libboost_regex-vc90-sgd-1_38/fileiter.obj vc90/libboost_regex-vc90-sgd-1_38/icu.obj vc90/libboost_regex-vc90-sgd-1_38/instances.obj vc90/libboost_regex-vc90-sgd-1_38/posix_api.obj vc90/libboost_regex-vc90-sgd-1_38/regex.obj vc90/libboost_regex-vc90-sgd-1_38/regex_debug.obj vc90/libboost_regex-vc90-sgd-1_38/regex_raw_buffer.obj vc90/libboost_regex-vc90-sgd-1_38/regex_traits_defaults.obj vc90/libboost_regex-vc90-sgd-1_38/static_mutex.obj vc90/libboost_regex-vc90-sgd-1_38/usinstances.obj vc90/libboost_regex-vc90-sgd-1_38/w32_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_38/wc_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_38/wide_posix_api.obj vc90/libboost_regex-vc90-sgd-1_38/winstances.obj + link -lib /nologo /out:vc90/libboost_regex-vc90-sgd-1_38.lib $(XSFLAGS) vc90/libboost_regex-vc90-sgd-1_38/c_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_38/cpp_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_38/cregex.obj vc90/libboost_regex-vc90-sgd-1_38/fileiter.obj vc90/libboost_regex-vc90-sgd-1_38/icu.obj vc90/libboost_regex-vc90-sgd-1_38/instances.obj vc90/libboost_regex-vc90-sgd-1_38/posix_api.obj vc90/libboost_regex-vc90-sgd-1_38/regex.obj vc90/libboost_regex-vc90-sgd-1_38/regex_debug.obj vc90/libboost_regex-vc90-sgd-1_38/regex_raw_buffer.obj vc90/libboost_regex-vc90-sgd-1_38/regex_traits_defaults.obj vc90/libboost_regex-vc90-sgd-1_38/static_mutex.obj vc90/libboost_regex-vc90-sgd-1_38/usinstances.obj vc90/libboost_regex-vc90-sgd-1_38/w32_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_38/wc_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_38/wide_posix_api.obj vc90/libboost_regex-vc90-sgd-1_38/winstances.obj ######################################################## # -# section for libboost_regex-vc90-mt-sgd-1_37.lib +# section for libboost_regex-vc90-mt-sgd-1_38.lib # ######################################################## -vc90/libboost_regex-vc90-mt-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_37.pdb ../src/c_regex_traits.cpp +vc90/libboost_regex-vc90-mt-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_38.pdb ../src/c_regex_traits.cpp -vc90/libboost_regex-vc90-mt-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_37.pdb ../src/cpp_regex_traits.cpp +vc90/libboost_regex-vc90-mt-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_38.pdb ../src/cpp_regex_traits.cpp -vc90/libboost_regex-vc90-mt-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_37.pdb ../src/cregex.cpp +vc90/libboost_regex-vc90-mt-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_38.pdb ../src/cregex.cpp -vc90/libboost_regex-vc90-mt-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_37.pdb ../src/fileiter.cpp +vc90/libboost_regex-vc90-mt-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_38.pdb ../src/fileiter.cpp -vc90/libboost_regex-vc90-mt-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_37.pdb ../src/icu.cpp +vc90/libboost_regex-vc90-mt-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_38.pdb ../src/icu.cpp -vc90/libboost_regex-vc90-mt-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_37.pdb ../src/instances.cpp +vc90/libboost_regex-vc90-mt-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_38.pdb ../src/instances.cpp -vc90/libboost_regex-vc90-mt-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_37.pdb ../src/posix_api.cpp +vc90/libboost_regex-vc90-mt-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_38.pdb ../src/posix_api.cpp -vc90/libboost_regex-vc90-mt-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_37.pdb ../src/regex.cpp +vc90/libboost_regex-vc90-mt-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_38.pdb ../src/regex.cpp -vc90/libboost_regex-vc90-mt-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_37.pdb ../src/regex_debug.cpp +vc90/libboost_regex-vc90-mt-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_38.pdb ../src/regex_debug.cpp -vc90/libboost_regex-vc90-mt-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_37.pdb ../src/regex_raw_buffer.cpp +vc90/libboost_regex-vc90-mt-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_38.pdb ../src/regex_raw_buffer.cpp -vc90/libboost_regex-vc90-mt-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_37.pdb ../src/regex_traits_defaults.cpp +vc90/libboost_regex-vc90-mt-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_38.pdb ../src/regex_traits_defaults.cpp -vc90/libboost_regex-vc90-mt-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_37.pdb ../src/static_mutex.cpp +vc90/libboost_regex-vc90-mt-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_38.pdb ../src/static_mutex.cpp -vc90/libboost_regex-vc90-mt-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_37.pdb ../src/usinstances.cpp +vc90/libboost_regex-vc90-mt-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_38.pdb ../src/usinstances.cpp -vc90/libboost_regex-vc90-mt-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_37.pdb ../src/w32_regex_traits.cpp +vc90/libboost_regex-vc90-mt-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_38.pdb ../src/w32_regex_traits.cpp -vc90/libboost_regex-vc90-mt-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_37.pdb ../src/wc_regex_traits.cpp +vc90/libboost_regex-vc90-mt-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_38.pdb ../src/wc_regex_traits.cpp -vc90/libboost_regex-vc90-mt-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_37.pdb ../src/wide_posix_api.cpp +vc90/libboost_regex-vc90-mt-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_38.pdb ../src/wide_posix_api.cpp -vc90/libboost_regex-vc90-mt-sgd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_37.pdb ../src/winstances.cpp +vc90/libboost_regex-vc90-mt-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_38.pdb ../src/winstances.cpp -libboost_regex-vc90-mt-sgd-1_37_dir : - @if not exist "vc90\libboost_regex-vc90-mt-sgd-1_37\$(NULL)" mkdir vc90\libboost_regex-vc90-mt-sgd-1_37 +libboost_regex-vc90-mt-sgd-1_38_dir : + @if not exist "vc90\libboost_regex-vc90-mt-sgd-1_38\$(NULL)" mkdir vc90\libboost_regex-vc90-mt-sgd-1_38 -libboost_regex-vc90-mt-sgd-1_37_clean : - del vc90\libboost_regex-vc90-mt-sgd-1_37\*.obj - del vc90\libboost_regex-vc90-mt-sgd-1_37\*.idb - del vc90\libboost_regex-vc90-mt-sgd-1_37\*.exp - del vc90\libboost_regex-vc90-mt-sgd-1_37\*.pch +libboost_regex-vc90-mt-sgd-1_38_clean : + del vc90\libboost_regex-vc90-mt-sgd-1_38\*.obj + del vc90\libboost_regex-vc90-mt-sgd-1_38\*.idb + del vc90\libboost_regex-vc90-mt-sgd-1_38\*.exp + del vc90\libboost_regex-vc90-mt-sgd-1_38\*.pch -./vc90/libboost_regex-vc90-mt-sgd-1_37.lib : vc90/libboost_regex-vc90-mt-sgd-1_37/c_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_37/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_37/cregex.obj vc90/libboost_regex-vc90-mt-sgd-1_37/fileiter.obj vc90/libboost_regex-vc90-mt-sgd-1_37/icu.obj vc90/libboost_regex-vc90-mt-sgd-1_37/instances.obj vc90/libboost_regex-vc90-mt-sgd-1_37/posix_api.obj vc90/libboost_regex-vc90-mt-sgd-1_37/regex.obj vc90/libboost_regex-vc90-mt-sgd-1_37/regex_debug.obj vc90/libboost_regex-vc90-mt-sgd-1_37/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-sgd-1_37/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-sgd-1_37/static_mutex.obj vc90/libboost_regex-vc90-mt-sgd-1_37/usinstances.obj vc90/libboost_regex-vc90-mt-sgd-1_37/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_37/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_37/wide_posix_api.obj vc90/libboost_regex-vc90-mt-sgd-1_37/winstances.obj - link -lib /nologo /out:vc90/libboost_regex-vc90-mt-sgd-1_37.lib $(XSFLAGS) vc90/libboost_regex-vc90-mt-sgd-1_37/c_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_37/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_37/cregex.obj vc90/libboost_regex-vc90-mt-sgd-1_37/fileiter.obj vc90/libboost_regex-vc90-mt-sgd-1_37/icu.obj vc90/libboost_regex-vc90-mt-sgd-1_37/instances.obj vc90/libboost_regex-vc90-mt-sgd-1_37/posix_api.obj vc90/libboost_regex-vc90-mt-sgd-1_37/regex.obj vc90/libboost_regex-vc90-mt-sgd-1_37/regex_debug.obj vc90/libboost_regex-vc90-mt-sgd-1_37/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-sgd-1_37/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-sgd-1_37/static_mutex.obj vc90/libboost_regex-vc90-mt-sgd-1_37/usinstances.obj vc90/libboost_regex-vc90-mt-sgd-1_37/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_37/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_37/wide_posix_api.obj vc90/libboost_regex-vc90-mt-sgd-1_37/winstances.obj +./vc90/libboost_regex-vc90-mt-sgd-1_38.lib : vc90/libboost_regex-vc90-mt-sgd-1_38/c_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_38/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_38/cregex.obj vc90/libboost_regex-vc90-mt-sgd-1_38/fileiter.obj vc90/libboost_regex-vc90-mt-sgd-1_38/icu.obj vc90/libboost_regex-vc90-mt-sgd-1_38/instances.obj vc90/libboost_regex-vc90-mt-sgd-1_38/posix_api.obj vc90/libboost_regex-vc90-mt-sgd-1_38/regex.obj vc90/libboost_regex-vc90-mt-sgd-1_38/regex_debug.obj vc90/libboost_regex-vc90-mt-sgd-1_38/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-sgd-1_38/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-sgd-1_38/static_mutex.obj vc90/libboost_regex-vc90-mt-sgd-1_38/usinstances.obj vc90/libboost_regex-vc90-mt-sgd-1_38/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_38/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_38/wide_posix_api.obj vc90/libboost_regex-vc90-mt-sgd-1_38/winstances.obj + link -lib /nologo /out:vc90/libboost_regex-vc90-mt-sgd-1_38.lib $(XSFLAGS) vc90/libboost_regex-vc90-mt-sgd-1_38/c_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_38/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_38/cregex.obj vc90/libboost_regex-vc90-mt-sgd-1_38/fileiter.obj vc90/libboost_regex-vc90-mt-sgd-1_38/icu.obj vc90/libboost_regex-vc90-mt-sgd-1_38/instances.obj vc90/libboost_regex-vc90-mt-sgd-1_38/posix_api.obj vc90/libboost_regex-vc90-mt-sgd-1_38/regex.obj vc90/libboost_regex-vc90-mt-sgd-1_38/regex_debug.obj vc90/libboost_regex-vc90-mt-sgd-1_38/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-sgd-1_38/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-sgd-1_38/static_mutex.obj vc90/libboost_regex-vc90-mt-sgd-1_38/usinstances.obj vc90/libboost_regex-vc90-mt-sgd-1_38/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_38/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_38/wide_posix_api.obj vc90/libboost_regex-vc90-mt-sgd-1_38/winstances.obj ######################################################## # -# section for boost_regex-vc90-mt-gd-1_37.lib +# section for boost_regex-vc90-mt-gd-1_38.lib # ######################################################## -vc90/boost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-gd-1_37.pdb ../src/c_regex_traits.cpp +vc90/boost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-gd-1_38.pdb ../src/c_regex_traits.cpp -vc90/boost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-gd-1_37.pdb ../src/cpp_regex_traits.cpp +vc90/boost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-gd-1_38.pdb ../src/cpp_regex_traits.cpp -vc90/boost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-gd-1_37.pdb ../src/cregex.cpp +vc90/boost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-gd-1_38.pdb ../src/cregex.cpp -vc90/boost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-gd-1_37.pdb ../src/fileiter.cpp +vc90/boost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-gd-1_38.pdb ../src/fileiter.cpp -vc90/boost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-gd-1_37.pdb ../src/icu.cpp +vc90/boost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-gd-1_38.pdb ../src/icu.cpp -vc90/boost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-gd-1_37.pdb ../src/instances.cpp +vc90/boost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-gd-1_38.pdb ../src/instances.cpp -vc90/boost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-gd-1_37.pdb ../src/posix_api.cpp +vc90/boost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-gd-1_38.pdb ../src/posix_api.cpp -vc90/boost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-gd-1_37.pdb ../src/regex.cpp +vc90/boost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-gd-1_38.pdb ../src/regex.cpp -vc90/boost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-gd-1_37.pdb ../src/regex_debug.cpp +vc90/boost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-gd-1_38.pdb ../src/regex_debug.cpp -vc90/boost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-gd-1_37.pdb ../src/regex_raw_buffer.cpp +vc90/boost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-gd-1_38.pdb ../src/regex_raw_buffer.cpp -vc90/boost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-gd-1_37.pdb ../src/regex_traits_defaults.cpp +vc90/boost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-gd-1_38.pdb ../src/regex_traits_defaults.cpp -vc90/boost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-gd-1_37.pdb ../src/static_mutex.cpp +vc90/boost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-gd-1_38.pdb ../src/static_mutex.cpp -vc90/boost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-gd-1_37.pdb ../src/usinstances.cpp +vc90/boost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-gd-1_38.pdb ../src/usinstances.cpp -vc90/boost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-gd-1_37.pdb ../src/w32_regex_traits.cpp +vc90/boost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-gd-1_38.pdb ../src/w32_regex_traits.cpp -vc90/boost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-gd-1_37.pdb ../src/wc_regex_traits.cpp +vc90/boost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-gd-1_38.pdb ../src/wc_regex_traits.cpp -vc90/boost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-gd-1_37.pdb ../src/wide_posix_api.cpp +vc90/boost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-gd-1_38.pdb ../src/wide_posix_api.cpp -vc90/boost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-gd-1_37.pdb ../src/winstances.cpp +vc90/boost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-gd-1_38.pdb ../src/winstances.cpp -boost_regex-vc90-mt-gd-1_37_dir : - @if not exist "vc90\boost_regex-vc90-mt-gd-1_37\$(NULL)" mkdir vc90\boost_regex-vc90-mt-gd-1_37 +boost_regex-vc90-mt-gd-1_38_dir : + @if not exist "vc90\boost_regex-vc90-mt-gd-1_38\$(NULL)" mkdir vc90\boost_regex-vc90-mt-gd-1_38 -boost_regex-vc90-mt-gd-1_37_clean : - del vc90\boost_regex-vc90-mt-gd-1_37\*.obj - del vc90\boost_regex-vc90-mt-gd-1_37\*.idb - del vc90\boost_regex-vc90-mt-gd-1_37\*.exp - del vc90\boost_regex-vc90-mt-gd-1_37\*.pch +boost_regex-vc90-mt-gd-1_38_clean : + del vc90\boost_regex-vc90-mt-gd-1_38\*.obj + del vc90\boost_regex-vc90-mt-gd-1_38\*.idb + del vc90\boost_regex-vc90-mt-gd-1_38\*.exp + del vc90\boost_regex-vc90-mt-gd-1_38\*.pch -./vc90/boost_regex-vc90-mt-gd-1_37.lib : vc90/boost_regex-vc90-mt-gd-1_37/c_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_37/cpp_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_37/cregex.obj vc90/boost_regex-vc90-mt-gd-1_37/fileiter.obj vc90/boost_regex-vc90-mt-gd-1_37/icu.obj vc90/boost_regex-vc90-mt-gd-1_37/instances.obj vc90/boost_regex-vc90-mt-gd-1_37/posix_api.obj vc90/boost_regex-vc90-mt-gd-1_37/regex.obj vc90/boost_regex-vc90-mt-gd-1_37/regex_debug.obj vc90/boost_regex-vc90-mt-gd-1_37/regex_raw_buffer.obj vc90/boost_regex-vc90-mt-gd-1_37/regex_traits_defaults.obj vc90/boost_regex-vc90-mt-gd-1_37/static_mutex.obj vc90/boost_regex-vc90-mt-gd-1_37/usinstances.obj vc90/boost_regex-vc90-mt-gd-1_37/w32_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_37/wc_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_37/wide_posix_api.obj vc90/boost_regex-vc90-mt-gd-1_37/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_37.pdb" /debug /machine:I386 /out:"vc90/boost_regex-vc90-mt-gd-1_37.dll" /implib:"vc90/boost_regex-vc90-mt-gd-1_37.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc90/boost_regex-vc90-mt-gd-1_37/c_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_37/cpp_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_37/cregex.obj vc90/boost_regex-vc90-mt-gd-1_37/fileiter.obj vc90/boost_regex-vc90-mt-gd-1_37/icu.obj vc90/boost_regex-vc90-mt-gd-1_37/instances.obj vc90/boost_regex-vc90-mt-gd-1_37/posix_api.obj vc90/boost_regex-vc90-mt-gd-1_37/regex.obj vc90/boost_regex-vc90-mt-gd-1_37/regex_debug.obj vc90/boost_regex-vc90-mt-gd-1_37/regex_raw_buffer.obj vc90/boost_regex-vc90-mt-gd-1_37/regex_traits_defaults.obj vc90/boost_regex-vc90-mt-gd-1_37/static_mutex.obj vc90/boost_regex-vc90-mt-gd-1_37/usinstances.obj vc90/boost_regex-vc90-mt-gd-1_37/w32_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_37/wc_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_37/wide_posix_api.obj vc90/boost_regex-vc90-mt-gd-1_37/winstances.obj +./vc90/boost_regex-vc90-mt-gd-1_38.lib : vc90/boost_regex-vc90-mt-gd-1_38/c_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_38/cpp_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_38/cregex.obj vc90/boost_regex-vc90-mt-gd-1_38/fileiter.obj vc90/boost_regex-vc90-mt-gd-1_38/icu.obj vc90/boost_regex-vc90-mt-gd-1_38/instances.obj vc90/boost_regex-vc90-mt-gd-1_38/posix_api.obj vc90/boost_regex-vc90-mt-gd-1_38/regex.obj vc90/boost_regex-vc90-mt-gd-1_38/regex_debug.obj vc90/boost_regex-vc90-mt-gd-1_38/regex_raw_buffer.obj vc90/boost_regex-vc90-mt-gd-1_38/regex_traits_defaults.obj vc90/boost_regex-vc90-mt-gd-1_38/static_mutex.obj vc90/boost_regex-vc90-mt-gd-1_38/usinstances.obj vc90/boost_regex-vc90-mt-gd-1_38/w32_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_38/wc_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_38/wide_posix_api.obj vc90/boost_regex-vc90-mt-gd-1_38/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_38.pdb" /debug /machine:I386 /out:"vc90/boost_regex-vc90-mt-gd-1_38.dll" /implib:"vc90/boost_regex-vc90-mt-gd-1_38.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc90/boost_regex-vc90-mt-gd-1_38/c_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_38/cpp_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_38/cregex.obj vc90/boost_regex-vc90-mt-gd-1_38/fileiter.obj vc90/boost_regex-vc90-mt-gd-1_38/icu.obj vc90/boost_regex-vc90-mt-gd-1_38/instances.obj vc90/boost_regex-vc90-mt-gd-1_38/posix_api.obj vc90/boost_regex-vc90-mt-gd-1_38/regex.obj vc90/boost_regex-vc90-mt-gd-1_38/regex_debug.obj vc90/boost_regex-vc90-mt-gd-1_38/regex_raw_buffer.obj vc90/boost_regex-vc90-mt-gd-1_38/regex_traits_defaults.obj vc90/boost_regex-vc90-mt-gd-1_38/static_mutex.obj vc90/boost_regex-vc90-mt-gd-1_38/usinstances.obj vc90/boost_regex-vc90-mt-gd-1_38/w32_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_38/wc_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_38/wide_posix_api.obj vc90/boost_regex-vc90-mt-gd-1_38/winstances.obj ######################################################## # -# section for boost_regex-vc90-mt-1_37.lib +# section for boost_regex-vc90-mt-1_38.lib # ######################################################## -vc90/boost_regex-vc90-mt-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-1_37.pdb ../src/c_regex_traits.cpp +vc90/boost_regex-vc90-mt-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-1_38.pdb ../src/c_regex_traits.cpp -vc90/boost_regex-vc90-mt-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-1_37.pdb ../src/cpp_regex_traits.cpp +vc90/boost_regex-vc90-mt-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-1_38.pdb ../src/cpp_regex_traits.cpp -vc90/boost_regex-vc90-mt-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-1_37.pdb ../src/cregex.cpp +vc90/boost_regex-vc90-mt-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-1_38.pdb ../src/cregex.cpp -vc90/boost_regex-vc90-mt-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-1_37.pdb ../src/fileiter.cpp +vc90/boost_regex-vc90-mt-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-1_38.pdb ../src/fileiter.cpp -vc90/boost_regex-vc90-mt-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-1_37.pdb ../src/icu.cpp +vc90/boost_regex-vc90-mt-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-1_38.pdb ../src/icu.cpp -vc90/boost_regex-vc90-mt-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-1_37.pdb ../src/instances.cpp +vc90/boost_regex-vc90-mt-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-1_38.pdb ../src/instances.cpp -vc90/boost_regex-vc90-mt-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-1_37.pdb ../src/posix_api.cpp +vc90/boost_regex-vc90-mt-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-1_38.pdb ../src/posix_api.cpp -vc90/boost_regex-vc90-mt-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-1_37.pdb ../src/regex.cpp +vc90/boost_regex-vc90-mt-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-1_38.pdb ../src/regex.cpp -vc90/boost_regex-vc90-mt-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-1_37.pdb ../src/regex_debug.cpp +vc90/boost_regex-vc90-mt-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-1_38.pdb ../src/regex_debug.cpp -vc90/boost_regex-vc90-mt-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-1_37.pdb ../src/regex_raw_buffer.cpp +vc90/boost_regex-vc90-mt-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-1_38.pdb ../src/regex_raw_buffer.cpp -vc90/boost_regex-vc90-mt-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-1_37.pdb ../src/regex_traits_defaults.cpp +vc90/boost_regex-vc90-mt-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-1_38.pdb ../src/regex_traits_defaults.cpp -vc90/boost_regex-vc90-mt-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-1_37.pdb ../src/static_mutex.cpp +vc90/boost_regex-vc90-mt-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-1_38.pdb ../src/static_mutex.cpp -vc90/boost_regex-vc90-mt-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-1_37.pdb ../src/usinstances.cpp +vc90/boost_regex-vc90-mt-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-1_38.pdb ../src/usinstances.cpp -vc90/boost_regex-vc90-mt-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-1_37.pdb ../src/w32_regex_traits.cpp +vc90/boost_regex-vc90-mt-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-1_38.pdb ../src/w32_regex_traits.cpp -vc90/boost_regex-vc90-mt-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-1_37.pdb ../src/wc_regex_traits.cpp +vc90/boost_regex-vc90-mt-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-1_38.pdb ../src/wc_regex_traits.cpp -vc90/boost_regex-vc90-mt-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-1_37.pdb ../src/wide_posix_api.cpp +vc90/boost_regex-vc90-mt-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-1_38.pdb ../src/wide_posix_api.cpp -vc90/boost_regex-vc90-mt-1_37/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_37/ -Fdvc90/boost_regex-vc90-mt-1_37.pdb ../src/winstances.cpp +vc90/boost_regex-vc90-mt-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-1_38.pdb ../src/winstances.cpp -boost_regex-vc90-mt-1_37_dir : - @if not exist "vc90\boost_regex-vc90-mt-1_37\$(NULL)" mkdir vc90\boost_regex-vc90-mt-1_37 +boost_regex-vc90-mt-1_38_dir : + @if not exist "vc90\boost_regex-vc90-mt-1_38\$(NULL)" mkdir vc90\boost_regex-vc90-mt-1_38 -boost_regex-vc90-mt-1_37_clean : - del vc90\boost_regex-vc90-mt-1_37\*.obj - del vc90\boost_regex-vc90-mt-1_37\*.idb - del vc90\boost_regex-vc90-mt-1_37\*.exp - del vc90\boost_regex-vc90-mt-1_37\*.pch +boost_regex-vc90-mt-1_38_clean : + del vc90\boost_regex-vc90-mt-1_38\*.obj + del vc90\boost_regex-vc90-mt-1_38\*.idb + del vc90\boost_regex-vc90-mt-1_38\*.exp + del vc90\boost_regex-vc90-mt-1_38\*.pch -./vc90/boost_regex-vc90-mt-1_37.lib : vc90/boost_regex-vc90-mt-1_37/c_regex_traits.obj vc90/boost_regex-vc90-mt-1_37/cpp_regex_traits.obj vc90/boost_regex-vc90-mt-1_37/cregex.obj vc90/boost_regex-vc90-mt-1_37/fileiter.obj vc90/boost_regex-vc90-mt-1_37/icu.obj vc90/boost_regex-vc90-mt-1_37/instances.obj vc90/boost_regex-vc90-mt-1_37/posix_api.obj vc90/boost_regex-vc90-mt-1_37/regex.obj vc90/boost_regex-vc90-mt-1_37/regex_debug.obj vc90/boost_regex-vc90-mt-1_37/regex_raw_buffer.obj vc90/boost_regex-vc90-mt-1_37/regex_traits_defaults.obj vc90/boost_regex-vc90-mt-1_37/static_mutex.obj vc90/boost_regex-vc90-mt-1_37/usinstances.obj vc90/boost_regex-vc90-mt-1_37/w32_regex_traits.obj vc90/boost_regex-vc90-mt-1_37/wc_regex_traits.obj vc90/boost_regex-vc90-mt-1_37/wide_posix_api.obj vc90/boost_regex-vc90-mt-1_37/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_37.pdb" /debug /machine:I386 /out:"vc90/boost_regex-vc90-mt-1_37.dll" /implib:"vc90/boost_regex-vc90-mt-1_37.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc90/boost_regex-vc90-mt-1_37/c_regex_traits.obj vc90/boost_regex-vc90-mt-1_37/cpp_regex_traits.obj vc90/boost_regex-vc90-mt-1_37/cregex.obj vc90/boost_regex-vc90-mt-1_37/fileiter.obj vc90/boost_regex-vc90-mt-1_37/icu.obj vc90/boost_regex-vc90-mt-1_37/instances.obj vc90/boost_regex-vc90-mt-1_37/posix_api.obj vc90/boost_regex-vc90-mt-1_37/regex.obj vc90/boost_regex-vc90-mt-1_37/regex_debug.obj vc90/boost_regex-vc90-mt-1_37/regex_raw_buffer.obj vc90/boost_regex-vc90-mt-1_37/regex_traits_defaults.obj vc90/boost_regex-vc90-mt-1_37/static_mutex.obj vc90/boost_regex-vc90-mt-1_37/usinstances.obj vc90/boost_regex-vc90-mt-1_37/w32_regex_traits.obj vc90/boost_regex-vc90-mt-1_37/wc_regex_traits.obj vc90/boost_regex-vc90-mt-1_37/wide_posix_api.obj vc90/boost_regex-vc90-mt-1_37/winstances.obj +./vc90/boost_regex-vc90-mt-1_38.lib : vc90/boost_regex-vc90-mt-1_38/c_regex_traits.obj vc90/boost_regex-vc90-mt-1_38/cpp_regex_traits.obj vc90/boost_regex-vc90-mt-1_38/cregex.obj vc90/boost_regex-vc90-mt-1_38/fileiter.obj vc90/boost_regex-vc90-mt-1_38/icu.obj vc90/boost_regex-vc90-mt-1_38/instances.obj vc90/boost_regex-vc90-mt-1_38/posix_api.obj vc90/boost_regex-vc90-mt-1_38/regex.obj vc90/boost_regex-vc90-mt-1_38/regex_debug.obj vc90/boost_regex-vc90-mt-1_38/regex_raw_buffer.obj vc90/boost_regex-vc90-mt-1_38/regex_traits_defaults.obj vc90/boost_regex-vc90-mt-1_38/static_mutex.obj vc90/boost_regex-vc90-mt-1_38/usinstances.obj vc90/boost_regex-vc90-mt-1_38/w32_regex_traits.obj vc90/boost_regex-vc90-mt-1_38/wc_regex_traits.obj vc90/boost_regex-vc90-mt-1_38/wide_posix_api.obj vc90/boost_regex-vc90-mt-1_38/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_38.pdb" /debug /machine:I386 /out:"vc90/boost_regex-vc90-mt-1_38.dll" /implib:"vc90/boost_regex-vc90-mt-1_38.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc90/boost_regex-vc90-mt-1_38/c_regex_traits.obj vc90/boost_regex-vc90-mt-1_38/cpp_regex_traits.obj vc90/boost_regex-vc90-mt-1_38/cregex.obj vc90/boost_regex-vc90-mt-1_38/fileiter.obj vc90/boost_regex-vc90-mt-1_38/icu.obj vc90/boost_regex-vc90-mt-1_38/instances.obj vc90/boost_regex-vc90-mt-1_38/posix_api.obj vc90/boost_regex-vc90-mt-1_38/regex.obj vc90/boost_regex-vc90-mt-1_38/regex_debug.obj vc90/boost_regex-vc90-mt-1_38/regex_raw_buffer.obj vc90/boost_regex-vc90-mt-1_38/regex_traits_defaults.obj vc90/boost_regex-vc90-mt-1_38/static_mutex.obj vc90/boost_regex-vc90-mt-1_38/usinstances.obj vc90/boost_regex-vc90-mt-1_38/w32_regex_traits.obj vc90/boost_regex-vc90-mt-1_38/wc_regex_traits.obj vc90/boost_regex-vc90-mt-1_38/wide_posix_api.obj vc90/boost_regex-vc90-mt-1_38/winstances.obj ######################################################## # -# section for libboost_regex-vc90-mt-1_37.lib +# section for libboost_regex-vc90-mt-1_38.lib # ######################################################## -vc90/libboost_regex-vc90-mt-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-1_37.pdb ../src/c_regex_traits.cpp +vc90/libboost_regex-vc90-mt-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-1_38.pdb ../src/c_regex_traits.cpp -vc90/libboost_regex-vc90-mt-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-1_37.pdb ../src/cpp_regex_traits.cpp +vc90/libboost_regex-vc90-mt-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-1_38.pdb ../src/cpp_regex_traits.cpp -vc90/libboost_regex-vc90-mt-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-1_37.pdb ../src/cregex.cpp +vc90/libboost_regex-vc90-mt-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-1_38.pdb ../src/cregex.cpp -vc90/libboost_regex-vc90-mt-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-1_37.pdb ../src/fileiter.cpp +vc90/libboost_regex-vc90-mt-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-1_38.pdb ../src/fileiter.cpp -vc90/libboost_regex-vc90-mt-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-1_37.pdb ../src/icu.cpp +vc90/libboost_regex-vc90-mt-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-1_38.pdb ../src/icu.cpp -vc90/libboost_regex-vc90-mt-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-1_37.pdb ../src/instances.cpp +vc90/libboost_regex-vc90-mt-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-1_38.pdb ../src/instances.cpp -vc90/libboost_regex-vc90-mt-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-1_37.pdb ../src/posix_api.cpp +vc90/libboost_regex-vc90-mt-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-1_38.pdb ../src/posix_api.cpp -vc90/libboost_regex-vc90-mt-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-1_37.pdb ../src/regex.cpp +vc90/libboost_regex-vc90-mt-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-1_38.pdb ../src/regex.cpp -vc90/libboost_regex-vc90-mt-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-1_37.pdb ../src/regex_debug.cpp +vc90/libboost_regex-vc90-mt-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-1_38.pdb ../src/regex_debug.cpp -vc90/libboost_regex-vc90-mt-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-1_37.pdb ../src/regex_raw_buffer.cpp +vc90/libboost_regex-vc90-mt-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-1_38.pdb ../src/regex_raw_buffer.cpp -vc90/libboost_regex-vc90-mt-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-1_37.pdb ../src/regex_traits_defaults.cpp +vc90/libboost_regex-vc90-mt-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-1_38.pdb ../src/regex_traits_defaults.cpp -vc90/libboost_regex-vc90-mt-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-1_37.pdb ../src/static_mutex.cpp +vc90/libboost_regex-vc90-mt-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-1_38.pdb ../src/static_mutex.cpp -vc90/libboost_regex-vc90-mt-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-1_37.pdb ../src/usinstances.cpp +vc90/libboost_regex-vc90-mt-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-1_38.pdb ../src/usinstances.cpp -vc90/libboost_regex-vc90-mt-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-1_37.pdb ../src/w32_regex_traits.cpp +vc90/libboost_regex-vc90-mt-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-1_38.pdb ../src/w32_regex_traits.cpp -vc90/libboost_regex-vc90-mt-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-1_37.pdb ../src/wc_regex_traits.cpp +vc90/libboost_regex-vc90-mt-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-1_38.pdb ../src/wc_regex_traits.cpp -vc90/libboost_regex-vc90-mt-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-1_37.pdb ../src/wide_posix_api.cpp +vc90/libboost_regex-vc90-mt-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-1_38.pdb ../src/wide_posix_api.cpp -vc90/libboost_regex-vc90-mt-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-1_37.pdb ../src/winstances.cpp +vc90/libboost_regex-vc90-mt-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-1_38.pdb ../src/winstances.cpp -libboost_regex-vc90-mt-1_37_dir : - @if not exist "vc90\libboost_regex-vc90-mt-1_37\$(NULL)" mkdir vc90\libboost_regex-vc90-mt-1_37 +libboost_regex-vc90-mt-1_38_dir : + @if not exist "vc90\libboost_regex-vc90-mt-1_38\$(NULL)" mkdir vc90\libboost_regex-vc90-mt-1_38 -libboost_regex-vc90-mt-1_37_clean : - del vc90\libboost_regex-vc90-mt-1_37\*.obj - del vc90\libboost_regex-vc90-mt-1_37\*.idb - del vc90\libboost_regex-vc90-mt-1_37\*.exp - del vc90\libboost_regex-vc90-mt-1_37\*.pch +libboost_regex-vc90-mt-1_38_clean : + del vc90\libboost_regex-vc90-mt-1_38\*.obj + del vc90\libboost_regex-vc90-mt-1_38\*.idb + del vc90\libboost_regex-vc90-mt-1_38\*.exp + del vc90\libboost_regex-vc90-mt-1_38\*.pch -./vc90/libboost_regex-vc90-mt-1_37.lib : vc90/libboost_regex-vc90-mt-1_37/c_regex_traits.obj vc90/libboost_regex-vc90-mt-1_37/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-1_37/cregex.obj vc90/libboost_regex-vc90-mt-1_37/fileiter.obj vc90/libboost_regex-vc90-mt-1_37/icu.obj vc90/libboost_regex-vc90-mt-1_37/instances.obj vc90/libboost_regex-vc90-mt-1_37/posix_api.obj vc90/libboost_regex-vc90-mt-1_37/regex.obj vc90/libboost_regex-vc90-mt-1_37/regex_debug.obj vc90/libboost_regex-vc90-mt-1_37/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-1_37/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-1_37/static_mutex.obj vc90/libboost_regex-vc90-mt-1_37/usinstances.obj vc90/libboost_regex-vc90-mt-1_37/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-1_37/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-1_37/wide_posix_api.obj vc90/libboost_regex-vc90-mt-1_37/winstances.obj - link -lib /nologo /out:vc90/libboost_regex-vc90-mt-1_37.lib $(XSFLAGS) vc90/libboost_regex-vc90-mt-1_37/c_regex_traits.obj vc90/libboost_regex-vc90-mt-1_37/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-1_37/cregex.obj vc90/libboost_regex-vc90-mt-1_37/fileiter.obj vc90/libboost_regex-vc90-mt-1_37/icu.obj vc90/libboost_regex-vc90-mt-1_37/instances.obj vc90/libboost_regex-vc90-mt-1_37/posix_api.obj vc90/libboost_regex-vc90-mt-1_37/regex.obj vc90/libboost_regex-vc90-mt-1_37/regex_debug.obj vc90/libboost_regex-vc90-mt-1_37/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-1_37/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-1_37/static_mutex.obj vc90/libboost_regex-vc90-mt-1_37/usinstances.obj vc90/libboost_regex-vc90-mt-1_37/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-1_37/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-1_37/wide_posix_api.obj vc90/libboost_regex-vc90-mt-1_37/winstances.obj +./vc90/libboost_regex-vc90-mt-1_38.lib : vc90/libboost_regex-vc90-mt-1_38/c_regex_traits.obj vc90/libboost_regex-vc90-mt-1_38/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-1_38/cregex.obj vc90/libboost_regex-vc90-mt-1_38/fileiter.obj vc90/libboost_regex-vc90-mt-1_38/icu.obj vc90/libboost_regex-vc90-mt-1_38/instances.obj vc90/libboost_regex-vc90-mt-1_38/posix_api.obj vc90/libboost_regex-vc90-mt-1_38/regex.obj vc90/libboost_regex-vc90-mt-1_38/regex_debug.obj vc90/libboost_regex-vc90-mt-1_38/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-1_38/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-1_38/static_mutex.obj vc90/libboost_regex-vc90-mt-1_38/usinstances.obj vc90/libboost_regex-vc90-mt-1_38/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-1_38/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-1_38/wide_posix_api.obj vc90/libboost_regex-vc90-mt-1_38/winstances.obj + link -lib /nologo /out:vc90/libboost_regex-vc90-mt-1_38.lib $(XSFLAGS) vc90/libboost_regex-vc90-mt-1_38/c_regex_traits.obj vc90/libboost_regex-vc90-mt-1_38/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-1_38/cregex.obj vc90/libboost_regex-vc90-mt-1_38/fileiter.obj vc90/libboost_regex-vc90-mt-1_38/icu.obj vc90/libboost_regex-vc90-mt-1_38/instances.obj vc90/libboost_regex-vc90-mt-1_38/posix_api.obj vc90/libboost_regex-vc90-mt-1_38/regex.obj vc90/libboost_regex-vc90-mt-1_38/regex_debug.obj vc90/libboost_regex-vc90-mt-1_38/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-1_38/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-1_38/static_mutex.obj vc90/libboost_regex-vc90-mt-1_38/usinstances.obj vc90/libboost_regex-vc90-mt-1_38/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-1_38/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-1_38/wide_posix_api.obj vc90/libboost_regex-vc90-mt-1_38/winstances.obj ######################################################## # -# section for libboost_regex-vc90-mt-gd-1_37.lib +# section for libboost_regex-vc90-mt-gd-1_38.lib # ######################################################## -vc90/libboost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-gd-1_37.pdb ../src/c_regex_traits.cpp +vc90/libboost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-gd-1_38.pdb ../src/c_regex_traits.cpp -vc90/libboost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-gd-1_37.pdb ../src/cpp_regex_traits.cpp +vc90/libboost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-gd-1_38.pdb ../src/cpp_regex_traits.cpp -vc90/libboost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-gd-1_37.pdb ../src/cregex.cpp +vc90/libboost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-gd-1_38.pdb ../src/cregex.cpp -vc90/libboost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-gd-1_37.pdb ../src/fileiter.cpp +vc90/libboost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-gd-1_38.pdb ../src/fileiter.cpp -vc90/libboost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-gd-1_37.pdb ../src/icu.cpp +vc90/libboost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-gd-1_38.pdb ../src/icu.cpp -vc90/libboost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-gd-1_37.pdb ../src/instances.cpp +vc90/libboost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-gd-1_38.pdb ../src/instances.cpp -vc90/libboost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-gd-1_37.pdb ../src/posix_api.cpp +vc90/libboost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-gd-1_38.pdb ../src/posix_api.cpp -vc90/libboost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-gd-1_37.pdb ../src/regex.cpp +vc90/libboost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-gd-1_38.pdb ../src/regex.cpp -vc90/libboost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-gd-1_37.pdb ../src/regex_debug.cpp +vc90/libboost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-gd-1_38.pdb ../src/regex_debug.cpp -vc90/libboost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-gd-1_37.pdb ../src/regex_raw_buffer.cpp +vc90/libboost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-gd-1_38.pdb ../src/regex_raw_buffer.cpp -vc90/libboost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-gd-1_37.pdb ../src/regex_traits_defaults.cpp +vc90/libboost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-gd-1_38.pdb ../src/regex_traits_defaults.cpp -vc90/libboost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-gd-1_37.pdb ../src/static_mutex.cpp +vc90/libboost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-gd-1_38.pdb ../src/static_mutex.cpp -vc90/libboost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-gd-1_37.pdb ../src/usinstances.cpp +vc90/libboost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-gd-1_38.pdb ../src/usinstances.cpp -vc90/libboost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-gd-1_37.pdb ../src/w32_regex_traits.cpp +vc90/libboost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-gd-1_38.pdb ../src/w32_regex_traits.cpp -vc90/libboost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-gd-1_37.pdb ../src/wc_regex_traits.cpp +vc90/libboost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-gd-1_38.pdb ../src/wc_regex_traits.cpp -vc90/libboost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-gd-1_37.pdb ../src/wide_posix_api.cpp +vc90/libboost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-gd-1_38.pdb ../src/wide_posix_api.cpp -vc90/libboost_regex-vc90-mt-gd-1_37/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_37/ -Fdvc90/libboost_regex-vc90-mt-gd-1_37.pdb ../src/winstances.cpp +vc90/libboost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-gd-1_38.pdb ../src/winstances.cpp -libboost_regex-vc90-mt-gd-1_37_dir : - @if not exist "vc90\libboost_regex-vc90-mt-gd-1_37\$(NULL)" mkdir vc90\libboost_regex-vc90-mt-gd-1_37 +libboost_regex-vc90-mt-gd-1_38_dir : + @if not exist "vc90\libboost_regex-vc90-mt-gd-1_38\$(NULL)" mkdir vc90\libboost_regex-vc90-mt-gd-1_38 -libboost_regex-vc90-mt-gd-1_37_clean : - del vc90\libboost_regex-vc90-mt-gd-1_37\*.obj - del vc90\libboost_regex-vc90-mt-gd-1_37\*.idb - del vc90\libboost_regex-vc90-mt-gd-1_37\*.exp - del vc90\libboost_regex-vc90-mt-gd-1_37\*.pch +libboost_regex-vc90-mt-gd-1_38_clean : + del vc90\libboost_regex-vc90-mt-gd-1_38\*.obj + del vc90\libboost_regex-vc90-mt-gd-1_38\*.idb + del vc90\libboost_regex-vc90-mt-gd-1_38\*.exp + del vc90\libboost_regex-vc90-mt-gd-1_38\*.pch -./vc90/libboost_regex-vc90-mt-gd-1_37.lib : vc90/libboost_regex-vc90-mt-gd-1_37/c_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_37/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_37/cregex.obj vc90/libboost_regex-vc90-mt-gd-1_37/fileiter.obj vc90/libboost_regex-vc90-mt-gd-1_37/icu.obj vc90/libboost_regex-vc90-mt-gd-1_37/instances.obj vc90/libboost_regex-vc90-mt-gd-1_37/posix_api.obj vc90/libboost_regex-vc90-mt-gd-1_37/regex.obj vc90/libboost_regex-vc90-mt-gd-1_37/regex_debug.obj vc90/libboost_regex-vc90-mt-gd-1_37/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-gd-1_37/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-gd-1_37/static_mutex.obj vc90/libboost_regex-vc90-mt-gd-1_37/usinstances.obj vc90/libboost_regex-vc90-mt-gd-1_37/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_37/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_37/wide_posix_api.obj vc90/libboost_regex-vc90-mt-gd-1_37/winstances.obj - link -lib /nologo /out:vc90/libboost_regex-vc90-mt-gd-1_37.lib $(XSFLAGS) vc90/libboost_regex-vc90-mt-gd-1_37/c_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_37/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_37/cregex.obj vc90/libboost_regex-vc90-mt-gd-1_37/fileiter.obj vc90/libboost_regex-vc90-mt-gd-1_37/icu.obj vc90/libboost_regex-vc90-mt-gd-1_37/instances.obj vc90/libboost_regex-vc90-mt-gd-1_37/posix_api.obj vc90/libboost_regex-vc90-mt-gd-1_37/regex.obj vc90/libboost_regex-vc90-mt-gd-1_37/regex_debug.obj vc90/libboost_regex-vc90-mt-gd-1_37/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-gd-1_37/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-gd-1_37/static_mutex.obj vc90/libboost_regex-vc90-mt-gd-1_37/usinstances.obj vc90/libboost_regex-vc90-mt-gd-1_37/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_37/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_37/wide_posix_api.obj vc90/libboost_regex-vc90-mt-gd-1_37/winstances.obj +./vc90/libboost_regex-vc90-mt-gd-1_38.lib : vc90/libboost_regex-vc90-mt-gd-1_38/c_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_38/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_38/cregex.obj vc90/libboost_regex-vc90-mt-gd-1_38/fileiter.obj vc90/libboost_regex-vc90-mt-gd-1_38/icu.obj vc90/libboost_regex-vc90-mt-gd-1_38/instances.obj vc90/libboost_regex-vc90-mt-gd-1_38/posix_api.obj vc90/libboost_regex-vc90-mt-gd-1_38/regex.obj vc90/libboost_regex-vc90-mt-gd-1_38/regex_debug.obj vc90/libboost_regex-vc90-mt-gd-1_38/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-gd-1_38/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-gd-1_38/static_mutex.obj vc90/libboost_regex-vc90-mt-gd-1_38/usinstances.obj vc90/libboost_regex-vc90-mt-gd-1_38/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_38/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_38/wide_posix_api.obj vc90/libboost_regex-vc90-mt-gd-1_38/winstances.obj + link -lib /nologo /out:vc90/libboost_regex-vc90-mt-gd-1_38.lib $(XSFLAGS) vc90/libboost_regex-vc90-mt-gd-1_38/c_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_38/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_38/cregex.obj vc90/libboost_regex-vc90-mt-gd-1_38/fileiter.obj vc90/libboost_regex-vc90-mt-gd-1_38/icu.obj vc90/libboost_regex-vc90-mt-gd-1_38/instances.obj vc90/libboost_regex-vc90-mt-gd-1_38/posix_api.obj vc90/libboost_regex-vc90-mt-gd-1_38/regex.obj vc90/libboost_regex-vc90-mt-gd-1_38/regex_debug.obj vc90/libboost_regex-vc90-mt-gd-1_38/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-gd-1_38/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-gd-1_38/static_mutex.obj vc90/libboost_regex-vc90-mt-gd-1_38/usinstances.obj vc90/libboost_regex-vc90-mt-gd-1_38/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_38/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_38/wide_posix_api.obj vc90/libboost_regex-vc90-mt-gd-1_38/winstances.obj From e85cef1120e0b527f70b284b49a7cdf1f2371ee5 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Thu, 8 Jan 2009 09:58:45 +0000 Subject: [PATCH 49/72] Fixes #2437. [SVN r50510] --- build/Jamfile.v2 | 1 + 1 file changed, 1 insertion(+) diff --git a/build/Jamfile.v2 b/build/Jamfile.v2 index d0d0536f..28c5dd17 100644 --- a/build/Jamfile.v2 +++ b/build/Jamfile.v2 @@ -185,6 +185,7 @@ if [ check-icu-config ] 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" ; if $(ICU_PATH) From 48492bb9b5d884d5c9695e9b02371361548afb78 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sun, 8 Feb 2009 16:30:45 +0000 Subject: [PATCH 50/72] Fixes #2713: change table initialisation so that it's initialised statically. [SVN r51103] --- include/boost/regex/v4/perl_matcher.hpp | 4 ++++ include/boost/regex/v4/perl_matcher_non_recursive.hpp | 6 +++++- include/boost/regex/v4/perl_matcher_recursive.hpp | 6 +++++- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/include/boost/regex/v4/perl_matcher.hpp b/include/boost/regex/v4/perl_matcher.hpp index 33afe6e9..e1ef9c2d 100644 --- a/include/boost/regex/v4/perl_matcher.hpp +++ b/include/boost/regex/v4/perl_matcher.hpp @@ -403,6 +403,10 @@ private: bool match_char_repeat(); bool match_dot_repeat_fast(); bool match_dot_repeat_slow(); + bool match_dot_repeat_dispatch() + { + return ::boost::is_random_access_iterator::value ? match_dot_repeat_fast() : match_dot_repeat_slow(); + } bool match_backstep(); bool match_assert_backref(); bool match_toggle_case(); diff --git a/include/boost/regex/v4/perl_matcher_non_recursive.hpp b/include/boost/regex/v4/perl_matcher_non_recursive.hpp index 10e03477..6cb6d3da 100644 --- a/include/boost/regex/v4/perl_matcher_non_recursive.hpp +++ b/include/boost/regex/v4/perl_matcher_non_recursive.hpp @@ -154,7 +154,11 @@ bool perl_matcher::match_all_states() &perl_matcher::match_combining, &perl_matcher::match_soft_buffer_end, &perl_matcher::match_restart_continue, - (::boost::is_random_access_iterator::value ? &perl_matcher::match_dot_repeat_fast : &perl_matcher::match_dot_repeat_slow), + // Although this next line *should* be evaluated at compile time, in practice + // some compilers (VC++) emit run-time initialisation which breaks thread + // safety, so use a dispatch function instead: + //(::boost::is_random_access_iterator::value ? &perl_matcher::match_dot_repeat_fast : &perl_matcher::match_dot_repeat_slow), + &perl_matcher::match_dot_repeat_dispatch, &perl_matcher::match_char_repeat, &perl_matcher::match_set_repeat, &perl_matcher::match_long_set_repeat, diff --git a/include/boost/regex/v4/perl_matcher_recursive.hpp b/include/boost/regex/v4/perl_matcher_recursive.hpp index 68e1aac9..75df4507 100644 --- a/include/boost/regex/v4/perl_matcher_recursive.hpp +++ b/include/boost/regex/v4/perl_matcher_recursive.hpp @@ -84,7 +84,11 @@ bool perl_matcher::match_all_states() &perl_matcher::match_combining, &perl_matcher::match_soft_buffer_end, &perl_matcher::match_restart_continue, - (::boost::is_random_access_iterator::value ? &perl_matcher::match_dot_repeat_fast : &perl_matcher::match_dot_repeat_slow), + // Although this next line *should* be evaluated at compile time, in practice + // some compilers (VC++) emit run-time initialisation which breaks thread + // safety, so use a dispatch function instead: + //(::boost::is_random_access_iterator::value ? &perl_matcher::match_dot_repeat_fast : &perl_matcher::match_dot_repeat_slow), + &perl_matcher::match_dot_repeat_dispatch, &perl_matcher::match_char_repeat, &perl_matcher::match_set_repeat, &perl_matcher::match_long_set_repeat, From 15d3eb8f5727f784f2eb8e47c155e40c88443954 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Thu, 12 Feb 2009 18:11:43 +0000 Subject: [PATCH 51/72] Workarounds to allow compilation by Sun studio without the -library=stlport4 option. [SVN r51221] --- include/boost/regex/v4/basic_regex_parser.hpp | 10 ++++++++++ include/boost/regex/v4/iterator_category.hpp | 4 ++++ 2 files changed, 14 insertions(+) diff --git a/include/boost/regex/v4/basic_regex_parser.hpp b/include/boost/regex/v4/basic_regex_parser.hpp index b8bc9963..9cc4abe8 100644 --- a/include/boost/regex/v4/basic_regex_parser.hpp +++ b/include/boost/regex/v4/basic_regex_parser.hpp @@ -375,8 +375,13 @@ bool basic_regex_parser::parse_open_paren() if(0 == (this->flags() & regbase::nosubs)) { markid = ++m_mark_count; +#ifndef BOOST_NO_STD_DISTANCE if(this->flags() & regbase::save_subexpression_location) this->m_pdata->m_subs.push_back(std::pair(std::distance(m_base, m_position) - 1, 0)); +#else + if(this->flags() & regbase::save_subexpression_location) + this->m_pdata->m_subs.push_back(std::pair((m_position - m_base) - 1, 0)); +#endif } re_brace* pb = static_cast(this->append_state(syntax_element_startmark, sizeof(re_brace))); pb->index = markid; @@ -424,8 +429,13 @@ bool basic_regex_parser::parse_open_paren() return false; } BOOST_ASSERT(this->m_traits.syntax_type(*m_position) == regex_constants::syntax_close_mark); +#ifndef BOOST_NO_STD_DISTANCE if(markid && (this->flags() & regbase::save_subexpression_location)) this->m_pdata->m_subs.at(markid - 1).second = std::distance(m_base, m_position); +#else + if(markid && (this->flags() & regbase::save_subexpression_location)) + this->m_pdata->m_subs.at(markid - 1).second = (m_position - m_base); +#endif ++m_position; // // append closing parenthesis state: diff --git a/include/boost/regex/v4/iterator_category.hpp b/include/boost/regex/v4/iterator_category.hpp index 20870a0c..9e401423 100644 --- a/include/boost/regex/v4/iterator_category.hpp +++ b/include/boost/regex/v4/iterator_category.hpp @@ -31,10 +31,14 @@ namespace detail{ template struct is_random_imp { +#ifndef BOOST_NO_STD_ITERATOR_TRAITS private: typedef typename std::iterator_traits::iterator_category cat; public: BOOST_STATIC_CONSTANT(bool, value = (::boost::is_convertible::value)); +#else + BOOST_STATIC_CONSTANT(bool, value = false); +#endif }; template From 356be46981e65b998b00c5fc0b42d7cbf6d91e95 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Tue, 17 Feb 2009 10:05:58 +0000 Subject: [PATCH 52/72] Add PDF generation options to fix external links to point to the web site. Added a few more Boostbook based libs that were missed first time around. Fixed PDF naming issues. [SVN r51284] --- doc/Jamfile.v2 | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/Jamfile.v2 b/doc/Jamfile.v2 index 5dedf523..e53a1592 100644 --- a/doc/Jamfile.v2 +++ b/doc/Jamfile.v2 @@ -52,6 +52,7 @@ boostbook standalone # better use SVG's instead: pdf:admon.graphics.extension=".svg" pdf:admon.graphics.path=$(boost-images)/ + pdf:boost.url.prefix=http://www.boost.org/doc/libs/release/libs/regex/doc/html ; From 8586e7a9cd5fb5f7b487261cba28f148a173ba58 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Tue, 24 Mar 2009 10:08:54 +0000 Subject: [PATCH 53/72] Patch for ICU on AIX. [SVN r51952] --- include/boost/regex/icu.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/boost/regex/icu.hpp b/include/boost/regex/icu.hpp index 7af1d678..2cf37e5c 100644 --- a/include/boost/regex/icu.hpp +++ b/include/boost/regex/icu.hpp @@ -311,12 +311,12 @@ inline u32regex do_make_u32regex(InputIterator i, boost::regex_constants::syntax_option_type opt, const boost::mpl::int_<4>*) { - typedef std::vector vector_type; + typedef std::vector vector_type; vector_type v; while(i != j) { - v.push_back((UCHAR32)(*i)); - ++a; + v.push_back((UChar32)(*i)); + ++i; } if(v.size()) return u32regex(&*v.begin(), v.size(), opt); From 3e62631ecb3cbbdce13a91ecaa8b3170802a6a3f Mon Sep 17 00:00:00 2001 From: David Deakins Date: Wed, 1 Apr 2009 14:56:27 +0000 Subject: [PATCH 54/72] Windows CE does not define the wcscoll function from the CRT so, for WinCE, don't try to pull wcscoll from the global namespace into the std namespace. [SVN r52106] --- include/boost/regex/config/cwchar.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/regex/config/cwchar.hpp b/include/boost/regex/config/cwchar.hpp index 1d189e6c..a55089d0 100644 --- a/include/boost/regex/config/cwchar.hpp +++ b/include/boost/regex/config/cwchar.hpp @@ -168,7 +168,7 @@ using ::wcscmp; inline int (wcscoll)(const wchar_t *p1, const wchar_t *p2) { return wcscoll(p1,p2); } #undef wcscoll -#elif defined(BOOST_NO_STDC_NAMESPACE) +#elif defined(BOOST_NO_STDC_NAMESPACE) && !defined(UNDER_CE) using ::wcscoll; #endif From 6f7f8a688617417dac61c0a6387d3474d844e88c Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Sat, 4 Apr 2009 21:20:18 +0000 Subject: [PATCH 55/72] Allow ICU_PATH path-constant in project-config to work. It is only affecting build if not ICU_PATH is set on command line. [SVN r52176] --- build/Jamfile.v2 | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/build/Jamfile.v2 b/build/Jamfile.v2 index 28c5dd17..d4d494c0 100644 --- a/build/Jamfile.v2 +++ b/build/Jamfile.v2 @@ -10,10 +10,13 @@ project boost/regex # # ICU configuration: # -local ICU_PATH = [ modules.peek : ICU_PATH ] ; +if [ modules.peek : ICU_PATH ] +{ + ICU_PATH = [ modules.peek : ICU_PATH ] ; +} + rule check-icu-config ( ) { - local ICU_PATH = [ modules.peek : ICU_PATH ] ; local HAVE_ICU = [ modules.peek : HAVE_ICU ] ; local ICU_LINK = [ modules.peek : ICU_LINK ] ; From ccf465daac234868ae96a51973dd65ab6a0ede2b Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Sat, 11 Apr 2009 14:43:43 +0000 Subject: [PATCH 56/72] Make the wording of messages consistent with other libraries. [SVN r52333] --- build/Jamfile.v2 | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/build/Jamfile.v2 b/build/Jamfile.v2 index d4d494c0..ca7f801f 100644 --- a/build/Jamfile.v2 +++ b/build/Jamfile.v2 @@ -62,8 +62,8 @@ rule check-icu-config ( ) } else { - ECHO WARNING: ICU shared common library not found in path. ; - ECHO HINT: If the regex library fails to link then try again ; + 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 ... ; @@ -94,8 +94,8 @@ rule check-icu-config ( ) } else { - ECHO WARNING: ICU shared i18n library not found in path. ; - ECHO HINT: If the regex library fails to link then try again ; + 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 ... ; @@ -130,15 +130,15 @@ rule check-icu-config ( ) 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 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 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 ... ; @@ -163,14 +163,14 @@ rule check-icu-config ( ) else { message icu_config - : "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." ; + : "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 + : warning! ICU configuration failed : " Couldn't find utypes.h in " $(ICU_PATH:J=" ")/include/unicode ; } else From 7b10b5dac5265e26a9ed126101ebf0c455104796 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Thu, 23 Apr 2009 09:51:31 +0000 Subject: [PATCH 57/72] Added possessive modifiers ++ *+ ?+ {}+. Added support for \v and \h as character classes as per Perl-5.10. [SVN r52558] --- .../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 | 16 +- .../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 | 18 +- .../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 | 166 +++++++++++++----- doc/html/boost_regex/unicode.html | 6 +- doc/html/index.html | 6 +- doc/syntax_perl.qbk | 21 +++ include/boost/regex/icu.hpp | 6 +- include/boost/regex/v4/basic_regex_parser.hpp | 29 ++- include/boost/regex/v4/cpp_regex_traits.hpp | 34 +++- .../boost/regex/v4/regex_traits_defaults.hpp | 13 +- include/boost/regex/v4/w32_regex_traits.hpp | 12 +- src/c_regex_traits.cpp | 10 +- src/icu.cpp | 8 + src/wc_regex_traits.cpp | 10 +- test/regress/main.cpp | 1 + test/regress/test.hpp | 2 +- test/regress/test_non_greedy_repeats.cpp | 2 +- test/regress/test_sets.cpp | 4 + test/regress/test_simple_repeats.cpp | 41 +++++ 96 files changed, 521 insertions(+), 286 deletions(-) diff --git a/doc/html/boost_regex/background_information.html b/doc/html/boost_regex/background_information.html index db5c0165..76048eed 100644 --- a/doc/html/boost_regex/background_information.html +++ b/doc/html/boost_regex/background_information.html @@ -3,7 +3,7 @@ Background Information - + diff --git a/doc/html/boost_regex/background_information/acknowledgements.html b/doc/html/boost_regex/background_information/acknowledgements.html index 71f5252f..68565667 100644 --- a/doc/html/boost_regex/background_information/acknowledgements.html +++ b/doc/html/boost_regex/background_information/acknowledgements.html @@ -3,7 +3,7 @@ Acknowledgements - + diff --git a/doc/html/boost_regex/background_information/examples.html b/doc/html/boost_regex/background_information/examples.html index 9f9dcc6c..99b7fbc6 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 - + @@ -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/faq.html b/doc/html/boost_regex/background_information/faq.html index 950b9eac..aded683f 100644 --- a/doc/html/boost_regex/background_information/faq.html +++ b/doc/html/boost_regex/background_information/faq.html @@ -3,7 +3,7 @@ FAQ - + diff --git a/doc/html/boost_regex/background_information/futher.html b/doc/html/boost_regex/background_information/futher.html index d058b19f..6ff56c4c 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 - + diff --git a/doc/html/boost_regex/background_information/headers.html b/doc/html/boost_regex/background_information/headers.html index e5a9a7c4..da1abfcc 100644 --- a/doc/html/boost_regex/background_information/headers.html +++ b/doc/html/boost_regex/background_information/headers.html @@ -3,7 +3,7 @@ Headers - + diff --git a/doc/html/boost_regex/background_information/history.html b/doc/html/boost_regex/background_information/history.html index b2069ec7..601b75e1 100644 --- a/doc/html/boost_regex/background_information/history.html +++ b/doc/html/boost_regex/background_information/history.html @@ -3,7 +3,7 @@ History - + @@ -26,7 +26,7 @@ History
    - + Boost 1.38
    @@ -36,7 +36,7 @@ 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. + is preserved and empty expressions are prohibited. This is issue #1081.
  • Added support for Perl style ${n} expressions in format strings (issue @@ -53,7 +53,7 @@
  • - + Boost 1.34
    @@ -76,7 +76,7 @@
    - + Boost 1.33.1
    @@ -146,7 +146,7 @@
    - + Boost 1.33.0
    @@ -201,7 +201,7 @@
    - + Boost 1.32.1
    @@ -209,7 +209,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 0e8b0694..79434fe7 100644 --- a/doc/html/boost_regex/background_information/locale.html +++ b/doc/html/boost_regex/background_information/locale.html @@ -3,7 +3,7 @@ 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 f25106fc..c3ab2735 100644 --- a/doc/html/boost_regex/background_information/performance.html +++ b/doc/html/boost_regex/background_information/performance.html @@ -3,7 +3,7 @@ Performance - + diff --git a/doc/html/boost_regex/background_information/redist.html b/doc/html/boost_regex/background_information/redist.html index 73c05a0a..6901b931 100644 --- a/doc/html/boost_regex/background_information/redist.html +++ b/doc/html/boost_regex/background_information/redist.html @@ -3,7 +3,7 @@ Redistributables - + diff --git a/doc/html/boost_regex/background_information/standards.html b/doc/html/boost_regex/background_information/standards.html index d2732b2f..b27a8940 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 - + @@ -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/background_information/thread_safety.html b/doc/html/boost_regex/background_information/thread_safety.html index eac436ac..c67aa107 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 - + diff --git a/doc/html/boost_regex/captures.html b/doc/html/boost_regex/captures.html index 7497c1c6..7ebc73c3 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 - + @@ -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 4489bc41..7b656e1a 100644 --- a/doc/html/boost_regex/configuration.html +++ b/doc/html/boost_regex/configuration.html @@ -3,7 +3,7 @@ Configuration - + diff --git a/doc/html/boost_regex/configuration/algorithm.html b/doc/html/boost_regex/configuration/algorithm.html index e68aee41..ea8e4d80 100644 --- a/doc/html/boost_regex/configuration/algorithm.html +++ b/doc/html/boost_regex/configuration/algorithm.html @@ -3,7 +3,7 @@ Algorithm Selection - + diff --git a/doc/html/boost_regex/configuration/compiler.html b/doc/html/boost_regex/configuration/compiler.html index 752d0c27..62931099 100644 --- a/doc/html/boost_regex/configuration/compiler.html +++ b/doc/html/boost_regex/configuration/compiler.html @@ -3,7 +3,7 @@ Compiler Setup - + diff --git a/doc/html/boost_regex/configuration/linkage.html b/doc/html/boost_regex/configuration/linkage.html index a7fa14b8..a6a5084d 100644 --- a/doc/html/boost_regex/configuration/linkage.html +++ b/doc/html/boost_regex/configuration/linkage.html @@ -3,7 +3,7 @@ Linkage Options - + diff --git a/doc/html/boost_regex/configuration/locale.html b/doc/html/boost_regex/configuration/locale.html index dc93af47..bfcbe924 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 - + diff --git a/doc/html/boost_regex/configuration/tuning.html b/doc/html/boost_regex/configuration/tuning.html index 5884cca5..400afa6d 100644 --- a/doc/html/boost_regex/configuration/tuning.html +++ b/doc/html/boost_regex/configuration/tuning.html @@ -3,7 +3,7 @@ Algorithm Tuning - + diff --git a/doc/html/boost_regex/format.html b/doc/html/boost_regex/format.html index bbd5faae..f046222f 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 - + diff --git a/doc/html/boost_regex/format/boost_format_syntax.html b/doc/html/boost_regex/format/boost_format_syntax.html index 63159fc3..12dd9109 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 - + @@ -32,7 +32,7 @@ '$', '\', '(', ')', '?', and ':'.

    - + Grouping

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

    - + Conditionals

    @@ -66,7 +66,7 @@ with "bar" otherwise.

    - + Placeholder Sequences
    @@ -161,7 +161,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 3764ed34..fde101e3 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 - + diff --git a/doc/html/boost_regex/format/sed_format.html b/doc/html/boost_regex/format/sed_format.html index cb806f6b..c2f310d7 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 - + diff --git a/doc/html/boost_regex/install.html b/doc/html/boost_regex/install.html index d325791c..99b298f5 100644 --- a/doc/html/boost_regex/install.html +++ b/doc/html/boost_regex/install.html @@ -3,7 +3,7 @@ Building and Installing the Library - + @@ -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/introduction_and_overview.html b/doc/html/boost_regex/introduction_and_overview.html index 4ca4583c..2ca40f79 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 - + diff --git a/doc/html/boost_regex/partial_matches.html b/doc/html/boost_regex/partial_matches.html index d47cb538..a123ecb5 100644 --- a/doc/html/boost_regex/partial_matches.html +++ b/doc/html/boost_regex/partial_matches.html @@ -3,7 +3,7 @@ Partial Matches - + diff --git a/doc/html/boost_regex/ref.html b/doc/html/boost_regex/ref.html index 3d911322..52ee39a7 100644 --- a/doc/html/boost_regex/ref.html +++ b/doc/html/boost_regex/ref.html @@ -3,7 +3,7 @@ Reference - + diff --git a/doc/html/boost_regex/ref/bad_expression.html b/doc/html/boost_regex/ref/bad_expression.html index 1cbff685..f78ef075 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 - + @@ -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 264865a5..30cb5969 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
     
    -
    +
     
     
     
    @@ -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.html b/doc/html/boost_regex/ref/concepts.html index b64d9225..1ba9307e 100644 --- a/doc/html/boost_regex/ref/concepts.html +++ b/doc/html/boost_regex/ref/concepts.html @@ -3,7 +3,7 @@ Concepts - + diff --git a/doc/html/boost_regex/ref/concepts/charT_concept.html b/doc/html/boost_regex/ref/concepts/charT_concept.html index ad3a48b6..8a8d6879 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 - + diff --git a/doc/html/boost_regex/ref/concepts/iterator_concepts.html b/doc/html/boost_regex/ref/concepts/iterator_concepts.html index ca98a141..421ea25a 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 - + diff --git a/doc/html/boost_regex/ref/concepts/traits_concept.html b/doc/html/boost_regex/ref/concepts/traits_concept.html index ef09ab1c..ad23e706 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 - + @@ -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.html b/doc/html/boost_regex/ref/deprecated_interfaces.html index caa8cd1f..784d146a 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 - + 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 a360c329..a79abdd6 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) - + 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 62293232..02829968 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) - + @@ -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 1bd7f867..ae24f41c 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) - + 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 1c34e94d..26643536 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) - + diff --git a/doc/html/boost_regex/ref/error_type.html b/doc/html/boost_regex/ref/error_type.html index d91f0e9e..baa2636a 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 - + @@ -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 50784ec1..8ee8482a 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 - + @@ -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 20f0bd3d..94438118 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 - + @@ -27,7 +27,7 @@ match_results

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

    diff --git a/doc/html/boost_regex/ref/non_std_strings.html b/doc/html/boost_regex/ref/non_std_strings.html index 5f38cc26..4681e22b 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 - + 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 2e7fdaf3..c369d563 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 - + 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 0f426829..69b659bf 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 - + 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 e636e849..ca7dd081 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 - + @@ -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 0fbd6483..be77c195 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 - + @@ -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/icu/unicode_types.html b/doc/html/boost_regex/ref/non_std_strings/icu/unicode_types.html index cefbc15f..6c64febb 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 - + 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 4592ae3d..e31a7b9c 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 - + 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 1f73a084..7bb1c915 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 - + @@ -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 b9c60c1b..9ccedc23 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 - + 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 1cae51e5..a6c18255 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 - + @@ -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/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 4279151e..487a6ed0 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 - + 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 fe00bb69..3cfa2cfc 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 - + diff --git a/doc/html/boost_regex/ref/posix.html b/doc/html/boost_regex/ref/posix.html index b60ac8c4..f9b28b98 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 - + @@ -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 80561efa..a3c9d35c 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 - + @@ -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 7e8ea6b0..72e113b4 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 - + @@ -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 1135203f..72e84c91 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 - + @@ -53,7 +53,7 @@ match_flag_type flags = match_default);

    - + Description
    template <class OutputIterator, class BidirectionalIterator, class traits, class charT>
    @@ -163,7 +163,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 35f3a630..8c10b0ec 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 - + @@ -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 0df2dcd4..14dedba1 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 - + @@ -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 0d515761..04a84d31 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 - + @@ -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 bcc5eed7..98bd6f93 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 - + @@ -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/ref/syntax_option_type.html b/doc/html/boost_regex/ref/syntax_option_type.html index 16e179c8..c5a27483 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 - + 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 df577ade..b7d7d225 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 - + 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 64163afc..f0895bc2 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 - + 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 c948c3f6..ce3d6437 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 - + 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 1ece1a8b..0b3534fb 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 - + 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 53eea33c..b7f8f77a 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 - + 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 8ca8f042..9168914b 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 - + diff --git a/doc/html/boost_regex/syntax.html b/doc/html/boost_regex/syntax.html index ff46f19b..7cc7ca4c 100644 --- a/doc/html/boost_regex/syntax.html +++ b/doc/html/boost_regex/syntax.html @@ -3,7 +3,7 @@ Regular Expression Syntax - + diff --git a/doc/html/boost_regex/syntax/basic_extended.html b/doc/html/boost_regex/syntax/basic_extended.html index fe1d4cfa..d970baf0 100644 --- a/doc/html/boost_regex/syntax/basic_extended.html +++ b/doc/html/boost_regex/syntax/basic_extended.html @@ -3,7 +3,7 @@ POSIX Extended Regular Expression Syntax - + @@ -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 87d92ff1..72f216b8 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 - + @@ -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/character_classes.html b/doc/html/boost_regex/syntax/character_classes.html index 730370e1..8611af01 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 - + 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 13e92c0d..0c689b93 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 - + 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 f662c10c..f8ddd4c3 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 - + diff --git a/doc/html/boost_regex/syntax/collating_names.html b/doc/html/boost_regex/syntax/collating_names.html index c2ff15a2..b3a8e1c2 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 - + diff --git a/doc/html/boost_regex/syntax/collating_names/digraphs.html b/doc/html/boost_regex/syntax/collating_names/digraphs.html index 661301ad..7affbae9 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 - + 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 fdadc6e9..acb51cb1 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 - + 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 99d05b20..12bdded3 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 - + diff --git a/doc/html/boost_regex/syntax/leftmost_longest_rule.html b/doc/html/boost_regex/syntax/leftmost_longest_rule.html index 951db6aa..4ea80846 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 - + diff --git a/doc/html/boost_regex/syntax/perl_syntax.html b/doc/html/boost_regex/syntax/perl_syntax.html index b4f5427f..88b5fdb0 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 - + @@ -28,7 +28,7 @@ Syntax

    - + Synopsis

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

    - + Perl Regular Expression Syntax

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

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

    @@ -75,7 +75,7 @@

    - + Anchors

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

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

    - + Non-marking grouping
    @@ -111,7 +111,7 @@ out any separate sub-expressions.

    - + Repeats

    @@ -197,7 +197,7 @@ operator to be applied to.

    - + Non greedy repeats
    @@ -227,8 +227,40 @@ Matches the previous atom between n and m times, while consuming as little input as possible.

    +
    + + Pocessive + repeats +
    +

    + By default when a repeated patten 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. +

    +

    + *+ Matches the previous atom + zero or more times, while giving nothing back. +

    +

    + ++ Matches the previous atom + one or more times, while giving nothing back. +

    +

    + ?+ Matches the previous atom + zero or one times, while giving nothing back. +

    +

    + {n,}+ Matches the previous atom n or more times, + while giving nothing back. +

    +

    + {n,m}+ + Matches the previous atom between n and m times, while giving nothing back. +

    - + Back references

    @@ -248,7 +280,7 @@

    aaabba
     
    - + Alternation

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

    - + Character sets

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

    - + Single characters

    @@ -298,7 +330,7 @@ or 'c'.

    - + Character ranges
    @@ -311,7 +343,7 @@ regular expression, then ranges are locale sensitive.

    - + Negation

    @@ -320,7 +352,7 @@ range a-c.

    - + Character classes
    @@ -330,7 +362,7 @@ character class names.

    - + Collating Elements
    @@ -354,7 +386,7 @@ character.

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

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

    - + Combinations

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

    - + Escapes

    @@ -584,7 +616,7 @@

    - + "Single character" character classes:
    @@ -676,6 +708,30 @@ + +

    + \h +

    + + +

    + Horizontal whitespace +

    + + + + +

    + \v +

    + + +

    + Vertical whitespace +

    + + +

    \D @@ -735,10 +791,34 @@

    + + +

    + \H +

    + + +

    + Not Horizontal whitespace +

    + + + + +

    + \V +

    + + +

    + Not Vertical whitespace +

    + +
    - + Character Properties
    @@ -846,7 +926,7 @@ matches any "digit" character, as does \p{digit}.

    - + Word Boundaries

    @@ -868,7 +948,7 @@ Matches only when not at a word boundary.

    - + Buffer boundaries

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

    - + Continuation Escape
    @@ -905,7 +985,7 @@ match to start where the last one ended.

    - + Quoting escape

    @@ -918,7 +998,7 @@ \*+aaa

    - + Unicode escapes

    @@ -929,7 +1009,7 @@ combining characters.

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

    - + Perl Extended Patterns
    @@ -947,7 +1027,7 @@ (?.

    - + Comments

    @@ -956,7 +1036,7 @@ are ignored.

    - + Modifiers

    @@ -971,7 +1051,7 @@ applies the specified modifiers to pattern only.

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

    - + Lookahead

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

    - + Lookbehind

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

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

    - + Conditional Expressions
    @@ -1050,7 +1130,7 @@ sub-expression has been matched).

    - + Operator precedence
    @@ -1086,7 +1166,7 @@

    - + What gets matched

    @@ -1271,7 +1351,7 @@

    - + Variations

    @@ -1280,7 +1360,7 @@ JavaScript and JScript are all synonyms for perl.

    - + Options

    @@ -1293,7 +1373,7 @@ sensitivity are to be applied.

    - + Pattern Modifiers

    @@ -1305,7 +1385,7 @@ and no_mod_s.

    - + References

    diff --git a/doc/html/boost_regex/unicode.html b/doc/html/boost_regex/unicode.html index 85678400..00b14229 100644 --- a/doc/html/boost_regex/unicode.html +++ b/doc/html/boost_regex/unicode.html @@ -3,7 +3,7 @@ Unicode and Boost.Regex - + @@ -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 9b623b67..365165f2 100644 --- a/doc/html/index.html +++ b/doc/html/index.html @@ -3,7 +3,7 @@ Boost.Regex - + @@ -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 23, 2008 at 17:35:37 GMT

    Last revised: April 23, 2009 at 09:45:24 GMT


    diff --git a/doc/syntax_perl.qbk b/doc/syntax_perl.qbk index 9a76276d..b3b4056f 100644 --- a/doc/syntax_perl.qbk +++ b/doc/syntax_perl.qbk @@ -143,6 +143,23 @@ 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] + +By default when a repeated patten 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. + +`*+` Matches the previous atom zero or more times, while giving nothing back. + +`++` Matches the previous atom one or more times, while giving nothing back. + +`?+` Matches the previous atom zero or one times, while giving nothing back. + +`{n,}+` Matches the previous atom n or more times, while giving nothing back. + +`{n,m}+` Matches the previous atom between n and m times, while giving nothing back. + [h4 Back references] An escape character followed by a digit /n/, where /n/ is in the range 1-9, @@ -296,11 +313,15 @@ The following are supported by default: [[`\s`][`[[:space:]]`]] [[`\u`][`[[:upper:]]`]] [[`\w`][`[[:word:]]`]] +[[`\h`][Horizontal whitespace]] +[[`\v`][Vertical whitespace]] [[`\D`][`[^[:digit:]]`]] [[`\L`][`[^[:lower:]]`]] [[`\S`][`[^[:space:]]`]] [[`\U`][`[^[:upper:]]`]] [[`\W`][`[^[:word:]]`]] +[[`\H`][Not Horizontal whitespace]] +[[`\V`][Not Vertical whitespace]] ] [h5 Character Properties] diff --git a/include/boost/regex/icu.hpp b/include/boost/regex/icu.hpp index 2cf37e5c..24715572 100644 --- a/include/boost/regex/icu.hpp +++ b/include/boost/regex/icu.hpp @@ -184,7 +184,9 @@ private: offset_underscore = U_CHAR_CATEGORY_COUNT+3, offset_unicode = U_CHAR_CATEGORY_COUNT+4, offset_any = U_CHAR_CATEGORY_COUNT+5, - offset_ascii = U_CHAR_CATEGORY_COUNT+6 + offset_ascii = U_CHAR_CATEGORY_COUNT+6, + offset_horizontal = U_CHAR_CATEGORY_COUNT+7, + offset_vertical = U_CHAR_CATEGORY_COUNT+8 }; // @@ -197,6 +199,8 @@ private: static const char_class_type mask_unicode; static const char_class_type mask_any; static const char_class_type mask_ascii; + static const char_class_type mask_horizontal; + static const char_class_type mask_vertical; static char_class_type lookup_icu_mask(const ::UChar32* p1, const ::UChar32* p2); diff --git a/include/boost/regex/v4/basic_regex_parser.hpp b/include/boost/regex/v4/basic_regex_parser.hpp index 9cc4abe8..065a2d80 100644 --- a/include/boost/regex/v4/basic_regex_parser.hpp +++ b/include/boost/regex/v4/basic_regex_parser.hpp @@ -610,6 +610,7 @@ bool basic_regex_parser::parse_extended_escape() // fall through: case regex_constants::escape_type_class: { +escape_type_class_jump: typedef typename traits::char_class_type mask_type; mask_type m = this->m_traits.lookup_classname(m_position, m_position+1); if(m != 0) @@ -720,6 +721,10 @@ bool basic_regex_parser::parse_extended_escape() } fail(regex_constants::error_ctype, m_position - m_base); } + case regex_constants::escape_type_control_v: + if(0 == (this->flags() & (regbase::main_option_type | regbase::no_perl_ex))) + goto escape_type_class_jump; + // fallthrough: default: this->append_literal(unescape_character()); break; @@ -747,6 +752,7 @@ template bool basic_regex_parser::parse_repeat(std::size_t low, std::size_t high) { bool greedy = true; + bool pocessive = false; std::size_t insert_point; // // when we get to here we may have a non-greedy ? mark still to come: @@ -758,12 +764,19 @@ bool basic_regex_parser::parse_repeat(std::size_t low, std::size_ ) ) { - // OK we have a perl regex, check for a '?': + // OK we have a perl or emacs regex, check for a '?': if(this->m_traits.syntax_type(*m_position) == regex_constants::syntax_question) { greedy = false; ++m_position; } + // for perl regexes only check for pocessive ++ repeats. + if((0 == (this->flags() & regbase::main_option_type)) + && (this->m_traits.syntax_type(*m_position) == regex_constants::syntax_plus)) + { + pocessive = true; + ++m_position; + } } if(0 == this->m_last_state) { @@ -832,6 +845,20 @@ bool basic_regex_parser::parse_repeat(std::size_t low, std::size_ // now fill in the alt jump for the repeat: rep = static_cast(this->getaddress(rep_off)); rep->alt.i = this->m_pdata->m_data.size() - rep_off; + // + // If the repeat is pocessive then bracket the repeat with a (?>...) + // independent sub-expression construct: + // + if(pocessive) + { + re_brace* pb = static_cast(this->insert_state(insert_point, syntax_element_startmark, sizeof(re_brace))); + pb->index = -3; + re_jump* jmp = static_cast(this->insert_state(insert_point + sizeof(re_brace), syntax_element_jump, sizeof(re_jump))); + this->m_pdata->m_data.align(); + jmp->alt.i = this->m_pdata->m_data.size() - this->getoffset(jmp); + pb = static_cast(this->append_state(syntax_element_endmark, sizeof(re_brace))); + pb->index = -3; + } return true; } diff --git a/include/boost/regex/v4/cpp_regex_traits.hpp b/include/boost/regex/v4/cpp_regex_traits.hpp index 89fe49d8..7ce3ed30 100644 --- a/include/boost/regex/v4/cpp_regex_traits.hpp +++ b/include/boost/regex/v4/cpp_regex_traits.hpp @@ -394,7 +394,9 @@ enum char_class_graph=char_class_alnum|char_class_punct, char_class_blank=1<<9, char_class_word=1<<10, - char_class_unicode=1<<11 + char_class_unicode=1<<11, + char_class_horizontal_space=1<<12, + char_class_vertical_space=1<<13 }; #endif @@ -413,6 +415,8 @@ public: BOOST_STATIC_CONSTANT(char_class_type, mask_blank = 1u << 24); BOOST_STATIC_CONSTANT(char_class_type, mask_word = 1u << 25); BOOST_STATIC_CONSTANT(char_class_type, mask_unicode = 1u << 26); + BOOST_STATIC_CONSTANT(char_class_type, mask_horizontal = 1u << 27); + BOOST_STATIC_CONSTANT(char_class_type, mask_vertical = 1u << 28); #endif typedef std::basic_string string_type; @@ -477,6 +481,10 @@ template typename cpp_regex_traits_implementation::char_class_type const cpp_regex_traits_implementation::mask_word; template typename cpp_regex_traits_implementation::char_class_type const cpp_regex_traits_implementation::mask_unicode; +template +typename cpp_regex_traits_implementation::char_class_type const cpp_regex_traits_implementation::mask_vertical; +template +typename cpp_regex_traits_implementation::char_class_type const cpp_regex_traits_implementation::mask_horizontal; #endif #endif @@ -688,18 +696,20 @@ void cpp_regex_traits_implementation::init() // Custom class names: // #ifndef BOOST_REGEX_BUGGY_CTYPE_FACET - static const char_class_type masks[14] = + static const char_class_type masks[16] = { std::ctype::alnum, std::ctype::alpha, std::ctype::cntrl, std::ctype::digit, std::ctype::graph, + cpp_regex_traits_implementation::mask_horizontal, std::ctype::lower, std::ctype::print, std::ctype::punct, std::ctype::space, std::ctype::upper, + cpp_regex_traits_implementation::mask_vertical, std::ctype::xdigit, cpp_regex_traits_implementation::mask_blank, cpp_regex_traits_implementation::mask_word, @@ -713,11 +723,13 @@ void cpp_regex_traits_implementation::init() ::boost::re_detail::char_class_cntrl, ::boost::re_detail::char_class_digit, ::boost::re_detail::char_class_graph, + ::boost::re_detail::char_class_horizontal_space, ::boost::re_detail::char_class_lower, ::boost::re_detail::char_class_print, ::boost::re_detail::char_class_punct, ::boost::re_detail::char_class_space, ::boost::re_detail::char_class_upper, + ::boost::re_detail::char_class_vertical_space, ::boost::re_detail::char_class_xdigit, ::boost::re_detail::char_class_blank, ::boost::re_detail::char_class_word, @@ -744,7 +756,7 @@ typename cpp_regex_traits_implementation::char_class_type cpp_regex_traits_implementation::lookup_classname_imp(const charT* p1, const charT* p2) const { #ifndef BOOST_REGEX_BUGGY_CTYPE_FACET - static const char_class_type masks[20] = + static const char_class_type masks[22] = { 0, std::ctype::alnum, @@ -754,6 +766,7 @@ typename cpp_regex_traits_implementation::char_class_type std::ctype::digit, std::ctype::digit, std::ctype::graph, + cpp_regex_traits_implementation::mask_horizontal, std::ctype::lower, std::ctype::lower, std::ctype::print, @@ -763,12 +776,13 @@ typename cpp_regex_traits_implementation::char_class_type std::ctype::upper, cpp_regex_traits_implementation::mask_unicode, std::ctype::upper, + cpp_regex_traits_implementation::mask_vertical, std::ctype::alnum | cpp_regex_traits_implementation::mask_word, std::ctype::alnum | cpp_regex_traits_implementation::mask_word, std::ctype::xdigit, }; #else - static const char_class_type masks[20] = + static const char_class_type masks[22] = { 0, ::boost::re_detail::char_class_alnum, @@ -778,6 +792,7 @@ typename cpp_regex_traits_implementation::char_class_type ::boost::re_detail::char_class_digit, ::boost::re_detail::char_class_digit, ::boost::re_detail::char_class_graph, + ::boost::re_detail::char_class_horizontal_space, ::boost::re_detail::char_class_lower, ::boost::re_detail::char_class_lower, ::boost::re_detail::char_class_print, @@ -787,6 +802,7 @@ typename cpp_regex_traits_implementation::char_class_type ::boost::re_detail::char_class_upper, ::boost::re_detail::char_class_unicode, ::boost::re_detail::char_class_upper, + ::boost::re_detail::char_class_vertical_space, ::boost::re_detail::char_class_alnum | ::boost::re_detail::char_class_word, ::boost::re_detail::char_class_alnum | ::boost::re_detail::char_class_word, ::boost::re_detail::char_class_xdigit, @@ -820,7 +836,9 @@ bool cpp_regex_traits_implementation::isctype(const charT c, char_class_t || ((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_word) && (c == '_')) - || ((mask & ::boost::re_detail::char_class_unicode) && ::boost::re_detail::is_extended(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'))); } #endif @@ -930,6 +948,12 @@ public: && m_pimpl->m_pctype->is(std::ctype::space, c) && !re_detail::is_separator(c)) return true; + else if((f & re_detail::cpp_regex_traits_implementation::mask_vertical) + && (::boost::re_detail::is_separator(c) || (c == '\v'))) + return true; + else if((f & re_detail::cpp_regex_traits_implementation::mask_horizontal) + && this->isctype(c, std::ctype::space) && !this->isctype(c, re_detail::cpp_regex_traits_implementation::mask_vertical)) + return true; return false; #else return m_pimpl->isctype(c, f); diff --git a/include/boost/regex/v4/regex_traits_defaults.hpp b/include/boost/regex/v4/regex_traits_defaults.hpp index 42428dd8..8f33d2c8 100644 --- a/include/boost/regex/v4/regex_traits_defaults.hpp +++ b/include/boost/regex/v4/regex_traits_defaults.hpp @@ -159,7 +159,7 @@ struct character_pointer_range template int get_default_class_id(const charT* p1, const charT* p2) { - static const charT data[72] = { + static const charT data[73] = { 'a', 'l', 'n', 'u', 'm', 'a', 'l', 'p', 'h', 'a', 'b', 'l', 'a', 'n', 'k', @@ -172,11 +172,12 @@ int get_default_class_id(const charT* p1, const charT* p2) 's', 'p', 'a', 'c', 'e', 'u', 'n', 'i', 'c', 'o', 'd', 'e', 'u', 'p', 'p', 'e', 'r', + 'v', 'w', 'o', 'r', 'd', 'x', 'd', 'i', 'g', 'i', 't', }; - static const character_pointer_range ranges[19] = + static const character_pointer_range ranges[21] = { {data+0, data+5,}, // alnum {data+5, data+10,}, // alpha @@ -185,6 +186,7 @@ int get_default_class_id(const charT* p1, const charT* p2) {data+20, data+21,}, // d {data+20, data+25,}, // digit {data+25, data+30,}, // graph + {data+29, data+30,}, // h {data+30, data+31,}, // l {data+30, data+35,}, // lower {data+35, data+40,}, // print @@ -194,9 +196,10 @@ int get_default_class_id(const charT* p1, const charT* p2) {data+57, data+58,}, // u {data+50, data+57,}, // unicode {data+57, data+62,}, // upper - {data+62, data+63,}, // w - {data+62, data+66,}, // word - {data+66, data+72,}, // xdigit + {data+62, data+63,}, // v + {data+63, data+64,}, // w + {data+63, data+67,}, // word + {data+67, data+73,}, // xdigit }; static const character_pointer_range* ranges_begin = ranges; static const character_pointer_range* ranges_end = ranges + (sizeof(ranges)/sizeof(ranges[0])); diff --git a/include/boost/regex/v4/w32_regex_traits.hpp b/include/boost/regex/v4/w32_regex_traits.hpp index 21a9694a..d5562072 100644 --- a/include/boost/regex/v4/w32_regex_traits.hpp +++ b/include/boost/regex/v4/w32_regex_traits.hpp @@ -294,6 +294,8 @@ public: typedef typename w32_regex_traits::char_class_type char_class_type; BOOST_STATIC_CONSTANT(char_class_type, mask_word = 0x0400); // must be C1_DEFINED << 1 BOOST_STATIC_CONSTANT(char_class_type, mask_unicode = 0x0800); // must be C1_DEFINED << 2 + BOOST_STATIC_CONSTANT(char_class_type, mask_horizontal = 0x1000); // must be C1_DEFINED << 3 + BOOST_STATIC_CONSTANT(char_class_type, mask_vertical = 0x2000); // must be C1_DEFINED << 4 BOOST_STATIC_CONSTANT(char_class_type, mask_base = 0x3ff); // all the masks used by the CT_CTYPE1 group typedef std::basic_string string_type; @@ -510,7 +512,7 @@ template typename w32_regex_traits_implementation::char_class_type w32_regex_traits_implementation::lookup_classname_imp(const charT* p1, const charT* p2) const { - static const char_class_type masks[20] = + static const char_class_type masks[22] = { 0, 0x0104u, // C1_ALPHA | C1_DIGIT @@ -520,6 +522,7 @@ typename w32_regex_traits_implementation::char_class_type 0x0004u, // C1_DIGIT 0x0004u, // C1_DIGIT (~(0x0020u|0x0008u|0x0040) & 0x01ffu) | 0x0400u, // not C1_CNTRL or C1_SPACE or C1_BLANK + w32_regex_traits_implementation::mask_horizontal, 0x0002u, // C1_LOWER 0x0002u, // C1_LOWER (~0x0020u & 0x01ffu) | 0x0400, // not C1_CNTRL @@ -529,6 +532,7 @@ typename w32_regex_traits_implementation::char_class_type 0x0001u, // C1_UPPER w32_regex_traits_implementation::mask_unicode, 0x0001u, // C1_UPPER + w32_regex_traits_implementation::mask_vertical, 0x0104u | w32_regex_traits_implementation::mask_word, 0x0104u | w32_regex_traits_implementation::mask_word, 0x0080u, // C1_XDIGIT @@ -628,6 +632,12 @@ public: return true; else if((f & re_detail::w32_regex_traits_implementation::mask_word) && (c == '_')) return true; + else if((f & re_detail::w32_regex_traits_implementation::mask_vertical) + && (::boost::re_detail::is_separator(c) || (c == '\v'))) + return true; + else if((f & re_detail::w32_regex_traits_implementation::mask_horizontal) + && this->isctype(c, 0x0008u) && !this->isctype(c, re_detail::w32_regex_traits_implementation::mask_vertical)) + return true; return false; } int toi(const charT*& p1, const charT* p2, int radix)const diff --git a/src/c_regex_traits.cpp b/src/c_regex_traits.cpp index da960eb0..6466bc42 100644 --- a/src/c_regex_traits.cpp +++ b/src/c_regex_traits.cpp @@ -122,7 +122,9 @@ enum char_class_graph=char_class_alnum|char_class_punct, char_class_blank=1<<9, char_class_word=1<<10, - char_class_unicode=1<<11 + char_class_unicode=1<<11, + char_class_horizontal=1<<12, + char_class_vertical=1<<13 }; c_regex_traits::char_class_type BOOST_REGEX_CALL c_regex_traits::lookup_classname(const char* p1, const char* p2) @@ -137,6 +139,7 @@ c_regex_traits::char_class_type BOOST_REGEX_CALL c_regex_traits::loo char_class_digit, char_class_digit, char_class_graph, + char_class_horizontal, char_class_lower, char_class_lower, char_class_print, @@ -146,6 +149,7 @@ c_regex_traits::char_class_type BOOST_REGEX_CALL c_regex_traits::loo char_class_upper, char_class_unicode, char_class_upper, + char_class_vertical, char_class_alnum | char_class_word, char_class_alnum | char_class_word, char_class_xdigit, @@ -176,7 +180,9 @@ bool BOOST_REGEX_CALL c_regex_traits::isctype(char c, char_class_type mask || ((mask & char_class_punct) && (std::ispunct)(static_cast(c))) || ((mask & char_class_xdigit) && (std::isxdigit)(static_cast(c))) || ((mask & char_class_blank) && (std::isspace)(static_cast(c)) && !::boost::re_detail::is_separator(c)) - || ((mask & char_class_word) && (c == '_')); + || ((mask & char_class_word) && (c == '_')) + || ((mask & char_class_vertical) && (::boost::re_detail::is_separator(c) || (c == '\v'))) + || ((mask & char_class_horizontal) && (std::isspace)(static_cast(c)) && !::boost::re_detail::is_separator(c) && (c != '\v')); } c_regex_traits::string_type BOOST_REGEX_CALL c_regex_traits::lookup_collatename(const char* p1, const char* p2) diff --git a/src/icu.cpp b/src/icu.cpp index e06c3176..a815e915 100644 --- a/src/icu.cpp +++ b/src/icu.cpp @@ -101,6 +101,8 @@ const icu_regex_traits::char_class_type icu_regex_traits::mask_underscore = icu_ const icu_regex_traits::char_class_type icu_regex_traits::mask_unicode = icu_regex_traits::char_class_type(1) << offset_unicode; const icu_regex_traits::char_class_type icu_regex_traits::mask_any = icu_regex_traits::char_class_type(1) << offset_any; const icu_regex_traits::char_class_type icu_regex_traits::mask_ascii = icu_regex_traits::char_class_type(1) << offset_ascii; +const icu_regex_traits::char_class_type icu_regex_traits::mask_horizontal = icu_regex_traits::char_class_type(1) << offset_horizontal; +const icu_regex_traits::char_class_type icu_regex_traits::mask_vertical = icu_regex_traits::char_class_type(1) << offset_vertical; icu_regex_traits::char_class_type icu_regex_traits::lookup_icu_mask(const ::UChar32* p1, const ::UChar32* p2) { @@ -370,6 +372,7 @@ icu_regex_traits::char_class_type icu_regex_traits::lookup_classname(const char_ U_GC_ND_MASK, U_GC_ND_MASK, (0x3FFFFFFFu) & ~(U_GC_CC_MASK | U_GC_CF_MASK | U_GC_CS_MASK | U_GC_CN_MASK | U_GC_Z_MASK), + mask_horizontal, U_GC_LL_MASK, U_GC_LL_MASK, ~(U_GC_C_MASK), @@ -379,6 +382,7 @@ icu_regex_traits::char_class_type icu_regex_traits::lookup_classname(const char_ U_GC_LU_MASK, mask_unicode, U_GC_LU_MASK, + mask_vertical, char_class_type(U_GC_L_MASK | U_GC_ND_MASK | U_GC_MN_MASK) | mask_underscore, char_class_type(U_GC_L_MASK | U_GC_ND_MASK | U_GC_MN_MASK) | mask_underscore, char_class_type(U_GC_ND_MASK) | mask_xdigit, @@ -487,6 +491,10 @@ bool icu_regex_traits::isctype(char_type c, char_class_type f) const return true; if(((f & mask_ascii) != 0) && (c <= 0x7F)) return true; + if(((f & mask_vertical) != 0) && (::boost::re_detail::is_separator(c) || (c == static_cast('\v')) || (m == U_GC_ZL_MASK) || (m == U_GC_ZP_MASK))) + return true; + if(((f & mask_horizontal) != 0) && !::boost::re_detail::is_separator(c) && u_isspace(c) && (c != static_cast('\v'))) + return true; return false; } diff --git a/src/wc_regex_traits.cpp b/src/wc_regex_traits.cpp index 3640f292..cff9d185 100644 --- a/src/wc_regex_traits.cpp +++ b/src/wc_regex_traits.cpp @@ -161,7 +161,9 @@ enum char_class_graph=char_class_alnum|char_class_punct, char_class_blank=1<<9, char_class_word=1<<10, - char_class_unicode=1<<11 + char_class_unicode=1<<11, + char_class_horizontal=1<<12, + char_class_vertical=1<<13 }; c_regex_traits::char_class_type BOOST_REGEX_CALL c_regex_traits::lookup_classname(const wchar_t* p1, const wchar_t* p2) @@ -176,6 +178,7 @@ c_regex_traits::char_class_type BOOST_REGEX_CALL c_regex_traits::char_class_type BOOST_REGEX_CALL c_regex_traits::isctype(wchar_t c, char_class_typ || ((mask & char_class_xdigit) && (std::iswxdigit)(c)) || ((mask & char_class_blank) && (std::iswspace)(c) && !::boost::re_detail::is_separator(c)) || ((mask & char_class_word) && (c == '_')) - || ((mask & char_class_unicode) && (c & ~static_cast(0xff))); + || ((mask & char_class_unicode) && (c & ~static_cast(0xff))) + || ((mask & char_class_vertical) && (::boost::re_detail::is_separator(c) || (c == L'\v'))) + || ((mask & char_class_horizontal) && (std::iswspace)(c) && !::boost::re_detail::is_separator(c) && (c != L'\v')); } c_regex_traits::string_type BOOST_REGEX_CALL c_regex_traits::lookup_collatename(const wchar_t* p1, const wchar_t* p2) diff --git a/test/regress/main.cpp b/test/regress/main.cpp index ffbe5efe..73692208 100644 --- a/test/regress/main.cpp +++ b/test/regress/main.cpp @@ -40,6 +40,7 @@ int error_count = 0; void run_tests() { + RUN_TESTS(test_pocessive_repeats); RUN_TESTS(basic_tests); RUN_TESTS(test_simple_repeats); RUN_TESTS(test_alt); diff --git a/test/regress/test.hpp b/test/regress/test.hpp index 046b2d56..e812aa94 100644 --- a/test/regress/test.hpp +++ b/test/regress/test.hpp @@ -258,6 +258,6 @@ void test_emacs(); void test_operators(); void test_overloads(); void test_unicode(); - +void test_pocessive_repeats(); #endif diff --git a/test/regress/test_non_greedy_repeats.cpp b/test/regress/test_non_greedy_repeats.cpp index 5cf507d2..c9935bd8 100644 --- a/test/regress/test_non_greedy_repeats.cpp +++ b/test/regress/test_non_greedy_repeats.cpp @@ -41,6 +41,6 @@ void test_non_greedy_repeats() TEST_REGEX_SEARCH("xx[/-]{0,2}?(?:[+-][0-9])??\\z", perl, "xx--", match_default, make_array(0, 4, -2, -2)); TEST_INVALID_REGEX("a{1,3}{1}", perl); TEST_INVALID_REGEX("a**", perl); - TEST_INVALID_REGEX("a++", perl); + //TEST_INVALID_REGEX("a++", perl); } diff --git a/test/regress/test_sets.cpp b/test/regress/test_sets.cpp index 61374819..3cd7a520 100644 --- a/test/regress/test_sets.cpp +++ b/test/regress/test_sets.cpp @@ -266,6 +266,10 @@ void test_sets2() TEST_REGEX_SEARCH("[\\W]+", perl, "AB_ AB", match_default, make_array(3, 6, -2, -2)); TEST_REGEX_SEARCH("[[:^word:]]+", perl, "AB_ AB", match_default, make_array(3, 6, -2, -2)); TEST_REGEX_SEARCH("\\W+", perl, "AB_ AB", match_default, make_array(3, 6, -2, -2)); + TEST_REGEX_SEARCH("\\h+", perl, "\v\f\r\n \t\n", match_default, make_array(4, 6, -2, -2)); + TEST_REGEX_SEARCH("\\V+", perl, "\v\f\r\n \t\n", match_default, make_array(4, 6, -2, -2)); + TEST_REGEX_SEARCH("\\H+", perl, " \t\v\f\r\n ", match_default, make_array(2, 6, -2, -2)); + TEST_REGEX_SEARCH("\\v+", perl, " \t\v\f\r\n ", match_default, make_array(2, 6, -2, -2)); test_sets2c(); } diff --git a/test/regress/test_simple_repeats.cpp b/test/regress/test_simple_repeats.cpp index 6811e5f9..690c71eb 100644 --- a/test/regress/test_simple_repeats.cpp +++ b/test/regress/test_simple_repeats.cpp @@ -436,3 +436,44 @@ void test_fast_repeats2() } +void test_pocessive_repeats() +{ + using namespace boost::regex_constants; + // and again for sets: + TEST_REGEX_SEARCH("^(\\w++|\\s++)*$", perl, "now is the time for all good men to come to the aid of the party", match_default, make_array(0, 64, 59, 64, -2, -2)); + TEST_REGEX_SEARCH("^(\\w++|\\s++)*$", perl, "this is not a line with only words and spaces!", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("(\\d++)(\\w)", perl, "12345a", match_default, make_array(0, 6, 0, 5, 5, 6, -2, -2)); + TEST_REGEX_SEARCH("(\\d++)(\\w)", perl, "12345+", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("(\\d++)(\\w)", perl, "12345", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("a++b", perl, "aaab", match_default, make_array(0, 4, -2, -2)); + TEST_REGEX_SEARCH("(a++b)", perl, "aaab", match_default, make_array(0, 4, 0, 4, -2, -2)); + TEST_REGEX_SEARCH("([^()]++|\\([^()]*\\))+", perl, "((abc(ade)ufh()()x", match_default, make_array(2, 18, 17, 18, -2, -2)); + TEST_REGEX_SEARCH("\\(([^()]++|\\([^()]+\\))+\\)", perl, "(abc)", match_default, make_array(0, 5, 1, 4, -2, -2)); + TEST_REGEX_SEARCH("\\(([^()]++|\\([^()]+\\))+\\)", perl, "(abc(def)xyz)", match_default, make_array(0, 13, 9, 12, -2, -2)); + TEST_REGEX_SEARCH("\\(([^()]++|\\([^()]+\\))+\\)", perl, "((()aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa", match_default, make_array(-2, -2)); + /* + TEST_REGEX_SEARCH("< (?: (?(R) \\d++ | [^<>]*+) | (?R)) * >", perl|mod_x, "<>", match_default, make_array(0, 2, -2, -2)); + TEST_REGEX_SEARCH("< (?: (?(R) \\d++ | [^<>]*+) | (?R)) * >", perl|mod_x, "", match_default, make_array(0, 6, -2, -2)); + TEST_REGEX_SEARCH("< (?: (?(R) \\d++ | [^<>]*+) | (?R)) * >", perl|mod_x, " hij>", match_default, make_array(0, 15, -2, -2)); + TEST_REGEX_SEARCH("< (?: (?(R) \\d++ | [^<>]*+) | (?R)) * >", perl|mod_x, " hij>", match_default, make_array(5, 10, -2, -2)); + TEST_REGEX_SEARCH("< (?: (?(R) \\d++ | [^<>]*+) | (?R)) * >", perl|mod_x, "def>", match_default, make_array(0, 10, -2, -2)); + TEST_REGEX_SEARCH("< (?: (?(R) \\d++ | [^<>]*+) | (?R)) * >", perl|mod_x, "", match_default, make_array(4, 6, -2, -2)); + TEST_REGEX_SEARCH("< (?: (?(R) \\d++ | [^<>]*+) | (?R)) * >", perl|mod_x, "]*+) | (?2)) * >))", perl|mod_x, "<>", match_default, make_array(0, 2, 0, 2, 0, 2, -2, -2)); + TEST_REGEX_SEARCH("((< (?: (?(R) \d++ | [^<>]*+) | (?2)) * >))", perl|mod_x, "", match_default, make_array(0, 6, 0, 6, 0, 6, -2, -2)); + TEST_REGEX_SEARCH("((< (?: (?(R) \d++ | [^<>]*+) | (?2)) * >))", perl|mod_x, " hij>", match_default, make_array(0, 15, 0, 15, 0, 15, -2, -2)); + TEST_REGEX_SEARCH("((< (?: (?(R) \d++ | [^<>]*+) | (?2)) * >))", perl|mod_x, " hij>", match_default, make_array(5, 10, 5, 10, 5, 10, -2, -2)); + TEST_REGEX_SEARCH("((< (?: (?(R) \d++ | [^<>]*+) | (?2)) * >))", perl|mod_x, "def>", match_default, make_array(0, 10, 0, 10, 0, 10, -2, -2)); + TEST_REGEX_SEARCH("((< (?: (?(R) \d++ | [^<>]*+) | (?2)) * >))", perl|mod_x, "", match_default, make_array(4, 6, 4, 6, 4, 6, -2, -2)); + TEST_REGEX_SEARCH("((< (?: (?(R) \d++ | [^<>]*+) | (?2)) * >))", perl|mod_x, " Date: Sat, 25 Apr 2009 17:32:49 +0000 Subject: [PATCH 58/72] Added support for \g \K and \R. [SVN r52592] --- .../background_information/examples.html | 6 +- .../background_information/history.html | 12 +- .../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 | 575 ++++++++++-------- doc/html/boost_regex/unicode.html | 4 +- doc/html/index.html | 4 +- doc/syntax_perl.qbk | 235 +++---- include/boost/regex/v4/basic_regex_parser.hpp | 84 ++- include/boost/regex/v4/match_results.hpp | 15 +- .../boost/regex/v4/perl_matcher_common.hpp | 2 +- .../regex/v4/perl_matcher_non_recursive.hpp | 13 +- .../boost/regex/v4/perl_matcher_recursive.hpp | 15 +- .../boost/regex/v4/regex_traits_defaults.hpp | 22 + include/boost/regex/v4/syntax_type.hpp | 5 +- src/regex_traits_defaults.cpp | 11 +- test/regress/test_backrefs.cpp | 35 ++ test/regress/test_escapes.cpp | 18 + 42 files changed, 795 insertions(+), 519 deletions(-) diff --git a/doc/html/boost_regex/background_information/examples.html b/doc/html/boost_regex/background_information/examples.html index 99b7fbc6..b5d3b485 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 601b75e1..f42f7bff 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.38
    @@ -53,7 +53,7 @@
    - + Boost 1.34
    @@ -76,7 +76,7 @@
    - + Boost 1.33.1
    @@ -146,7 +146,7 @@
    - + Boost 1.33.0
    @@ -201,7 +201,7 @@
    - + Boost 1.32.1
    @@ -209,7 +209,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 79434fe7..62284e82 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 b27a8940..437e53e0 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 7ebc73c3..c4dcc347 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 12dd9109..809f2205 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

    @@ -66,7 +66,7 @@ with "bar" otherwise.

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

    - + Escape Sequences
    diff --git a/doc/html/boost_regex/install.html b/doc/html/boost_regex/install.html index 99b298f5..05d2a54d 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 f78ef075..1d079e4f 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 30cb5969..a0c13601 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 ad23e706..fe4b0274 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 02829968..70fae8b1 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 baa2636a..7fb8bbe7 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 8ee8482a..dfbdfdc1 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 94438118..7961ad1e 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>
    @@ -142,7 +142,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 ca7dd081..f7379cd2 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 be77c195..6f432bd3 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 7bb1c915..49195299 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 a6c18255..8286c553 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 f9b28b98..44ead2e9 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 a3c9d35c..ba71a9af 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 72e113b4..5ce57f3c 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 72e84c91..f25d7aab 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 charT>
    @@ -163,7 +163,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 8c10b0ec..cefe95b9 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 14dedba1..fbd5e0e5 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 04a84d31..16ac10d0 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 98bd6f93..18629564 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 d970baf0..6f13adaa 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 72f216b8..8de6b127 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 88b5fdb0..c97738cf 100644 --- a/doc/html/boost_regex/syntax/perl_syntax.html +++ b/doc/html/boost_regex/syntax/perl_syntax.html @@ -28,15 +28,13 @@ Syntax

    - + Synopsis

    The Perl regular expression syntax is based on that used by the programming language Perl . Perl regular expressions are the default behavior in Boost.Regex - or you can pass the flag perl - to the basic_regex - constructor, for example: + or you can pass the flag perl to the basic_regex constructor, for example:

    // e1 is a case sensitive Perl regular expression: 
     // since Perl is the default option there's no need to explicitly specify the syntax used here:
    @@ -45,7 +43,7 @@
     boost::regex e2(my_expression, boost::regex::perl|boost::regex::icase);
     

    - + Perl Regular Expression Syntax

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

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

    @@ -65,17 +63,17 @@

    • The NULL character when the flag - match_not_dot_null - is passed to the matching algorithms. + 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. + match_not_dot_newline is passed to the matching + algorithms.
    - + Anchors

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

    - + Marked sub-expressions

    - A section beginning ( and ending - ) acts as a marked sub-expression. - Whatever matched the sub-expression is split out in a separate field by the - matching algorithms. Marked sub-expressions can also repeated, or referred - to by a back-reference. + A section beginning ( and ending ) + acts as a marked sub-expression. Whatever matched the sub-expression is split + out in a separate field by the matching algorithms. Marked sub-expressions + can also repeated, or referred to by a back-reference.

    - + Non-marking grouping
    @@ -105,34 +102,32 @@ A marked sub-expression is useful to lexically group part of a regular expression, but has the side-effect of spitting out an extra field in the result. As an alternative you can lexically group part of a regular expression, without - generating a marked sub-expression by using (?: - and ) , for example (?:ab)+ - will repeat ab without splitting - out any separate sub-expressions. + generating a marked sub-expression by using (?: and ) + , for example (?:ab)+ will repeat ab + without splitting out any separate sub-expressions.

    - + Repeats

    Any atom (a single character, a marked sub-expression, or a character class) - can be repeated with the *, - +, ?, - and {} operators. + can be repeated with the *, +, ?, + and {} operators.

    - The * operator will match the - preceding atom zero or more times, for example the expression a*b - will match any of the following: + The * operator will match the preceding atom zero or more + times, for example the expression a*b will match any of + the following:

    b
     ab
     aaaaaaaab
     

    - The + operator will match the - preceding atom one or more times, for example the expression a+b - will match any of the following: + The + operator will match the preceding atom one or more + times, for example the expression a+b will match any of + the following:

    ab
     aaaaaaaab
    @@ -143,9 +138,8 @@
     
    b
     

    - The ? operator will match the - preceding atom zero or one times, for example the expression ca?b will match - any of the following: + The ? operator will match the preceding atom zero or one + times, for example the expression ca?b will match any of the following:

    cb
     cab
    @@ -159,16 +153,13 @@
             An atom can also be repeated with a bounded repeat:
           

    - a{n} Matches - 'a' repeated exactly n times. + a{n} Matches 'a' repeated exactly n times.

    - a{n,} Matches - 'a' repeated n or more times. + a{n,} Matches 'a' repeated n or more times.

    - a{n, m} Matches 'a' repeated between n and m times - inclusive. + a{n, m} Matches 'a' repeated between n and m times inclusive.

    For example: @@ -193,11 +184,11 @@

    a(*)
     

    - Will raise an error, as there is nothing for the * - operator to be applied to. + Will raise an error, as there is nothing for the * operator + to be applied to.

    - + Non greedy repeats
    @@ -207,28 +198,27 @@ that will consume as little input as possible while still producing a match.

    - *? Matches the previous atom - zero or more times, while consuming as little input as possible. + *? Matches the previous atom zero or more times, while + consuming as little input as possible.

    - +? Matches the previous atom - one or more times, while consuming as little input as possible. + +? Matches the previous atom one or more times, while + consuming as little input as possible.

    - ?? Matches the previous atom - zero or one times, while consuming as little input as possible. + ?? Matches the previous atom zero or one times, while + consuming as little input as possible.

    - {n,}? Matches the previous atom n or more times, + {n,}? Matches the previous atom n or more times, while + consuming as little input as possible. +

    +

    + {n,m}? Matches the previous atom between n and m times, while consuming as little input as possible.

    -

    - {n,m}? - Matches the previous atom between n and m times, while consuming as little - input as possible. -

    - + Pocessive repeats
    @@ -240,27 +230,27 @@ match.

    - *+ Matches the previous atom - zero or more times, while giving nothing back. + *+ Matches the previous atom zero or more times, while + giving nothing back.

    - ++ Matches the previous atom - one or more times, while giving nothing back. + ++ Matches the previous atom one or more times, while + giving nothing back.

    - ?+ Matches the previous atom - zero or one times, while giving nothing back. + ?+ Matches the previous atom zero or one times, while + giving nothing back.

    - {n,}+ Matches the previous atom n or more times, + {n,}+ Matches the previous atom n or more times, while + giving nothing back. +

    +

    + {n,m}+ Matches the previous atom between n and m times, while giving nothing back.

    -

    - {n,m}+ - Matches the previous atom between n and m times, while giving nothing back. -

    - + Back references

    @@ -279,99 +269,170 @@

    aaabba
     
    +

    + You can also use the \g escape for the same function, for example: +

    +
    ++++ + + + + + + + + + + + + + + + + + + + + + + +
    +

    + Escape +

    +
    +

    + Meaning +

    +
    +

    + \g1 +

    +
    +

    + Match whatever matched sub-expression 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} +

    +
    +

    + \g-1 +

    +
    +

    + Match whatever matched the last opened sub-expression +

    +
    +

    + \g{-2} +

    +
    +

    + Match whatever matched the last but one opened sub-expression +

    +
    - + Alternation

    - The | operator will match either - of its arguments, so for example: abc|def will - match either "abc" or "def". + The | operator will match either of its arguments, so + for example: abc|def will match either "abc" + or "def".

    - Parenthesis can be used to group alternations, for example: ab(d|ef) + Parenthesis can be used to group alternations, for example: ab(d|ef) will match either of "abd" or "abef".

    Empty alternatives are not allowed (these are almost always a mistake), but - if you really want an empty alternative use (?:) - as a placeholder, for example: + if you really want an empty alternative use (?:) as a + placeholder, for example:

    - |abc - is not a valid expression, but + |abc is not a valid expression, but

    - (?:)|abc - is and is equivalent, also the expression: + (?:)|abc is and is equivalent, also the expression:

    - (?:abc)?? has exactly the same effect. + (?:abc)?? has exactly the same effect.

    - + Character sets

    - A character set is a bracket-expression starting with [ - and ending with ], it defines - a set of characters, and matches any single character that is a member of - that set. + A character set is a bracket-expression starting with [ + and ending with ], it defines a set of characters, and + matches any single character that is a member of that set.

    A bracket expression may contain any combination of the following:

    - + Single characters

    - For example [abc], will match any of the characters 'a', 'b', - or 'c'. + For example [abc], will match any of the characters 'a', + 'b', or 'c'.

    - + Character ranges

    - For example [a-c] - will match any single character in the range 'a' to 'c'. By default, for - Perl regular expressions, a character x is within the range y to z, if the - code point of the character lies within the codepoints of the endpoints of - the range. Alternatively, if you set the collate flag when constructing the - regular expression, then ranges are locale sensitive. + For example [a-c] will match any single character in the + range 'a' to 'c'. By default, for Perl regular expressions, a character x + is within the range y to z, if the code point of the character lies within + the codepoints of the endpoints of the range. Alternatively, if you set the + collate + flag when constructing the regular expression, then ranges are locale + sensitive.

    - + Negation

    If the bracket-expression begins with the ^ character, then it matches the - complement of the characters it contains, for example [^a-c] matches any character that is not in the - range a-c. + complement of the characters it contains, for example [^a-c] + matches any character that is not in the range a-c.

    - + Character classes

    - An expression of the form [[:name:]] - matches the named character class "name", for example [[:lower:]] matches any lower case character. See - character class names. + An expression of the form [[:name:]] matches the named + character class "name", for example [[:lower:]] + matches any lower case character. See character + class names.

    - + Collating Elements

    - An expression of the form [[.col.] matches - the collating element col. A collating element is any - single character, or any sequence of characters that collates as a single - unit. Collating elements may also be used as the end point of a range, for - example: [[.ae.]-c] + An expression of the form [[.col.]] matches the collating + element col. A collating element is any single character, + or any sequence of characters that collates as a single unit. Collating elements + may also be used as the end point of a range, for example: [[.ae.]-c] matches the character sequence "ae", plus any single character in the range "ae"-c, assuming that "ae" is treated as a single collating element in the current locale. @@ -382,28 +443,27 @@

    [[.NUL.]]
     

    - matches a \0 - character. + matches a \0 character.

    - + Equivalence classes

    - An expression of the form [[=col=]], - matches any character or collating element whose primary sort key is the - same as that for collating element col, as with collating - 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 + An expression of the form [[=col=]], matches any character + or collating element whose primary sort key is the same as that for collating + element col, as with collating 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 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
    @@ -415,15 +475,15 @@ is not a "word" character.

    - + Combinations

    All of the above can be combined in one character set declaration, for example: - [[:digit:]a-c[.NUL.]]. + [[:digit:]a-c[.NUL.]].

    - + Escapes

    @@ -453,105 +513,103 @@

    - \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

    @@ -564,7 +622,7 @@

    - \xdd + \xdd

    @@ -577,7 +635,7 @@

    - \x{dddd} + \x{dddd}

    @@ -590,7 +648,7 @@

    - \0ddd + \0ddd

    @@ -603,20 +661,21 @@

    - \N{name} + \N{name}

    Matches the single character which has the symbolic - name name. For example \N{newline} matches the single character \n. + name name. For example \N{newline} + matches the single character \n.

    - + "Single character" character classes:
    @@ -818,7 +877,7 @@
    - + Character Properties
    @@ -922,33 +981,30 @@

    - For example \pd - matches any "digit" character, as does \p{digit}. + For example \pd matches any "digit" character, + as does \p{digit}.

    - + Word Boundaries

    The following escape sequences match the boundaries of words:

    - \< 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 - Matches a word boundary (the start or end of a word). + \b Matches a word boundary (the start or end of a word).

    - \B - Matches only when not at a word boundary. + \B Matches only when not at a word boundary.

    - + Buffer boundaries

    @@ -970,46 +1026,69 @@

    \Z Matches an optional sequence of newlines at the end of a buffer: equivalent - to the regular expression \n*\z + to the regular expression \n*\z

    - + Continuation Escape

    - The sequence \G - matches only at the end of the last match found, or at the start of the text - being matched if no previous match was found. This escape useful if you're - iterating over the matches contained within a text, and you want each subsequence - match to start where the last one ended. + The sequence \G matches only at the end of the last match + found, or at the start of the text being matched if no previous match was + found. This escape useful if you're iterating over the matches contained + within a text, and you want each subsequence match to start where the last + one ended.

    - + Quoting escape

    - The escape sequence \Q - begins a "quoted sequence": all the subsequent characters are treated - as literals, until either the end of the regular expression or \E is found. - For example the expression: \Q\*+\Ea+ would match either of: + The escape sequence \Q begins a "quoted sequence": + all the subsequent characters are treated as literals, until either the end + of the regular expression or \E is found. For example the expression: \Q\*+\Ea+ + would match either of:

    \*+a
     \*+aaa
     
    - + Unicode escapes

    - \C - Matches a single code point: in Boost regex this has exactly the same effect - as a "." operator. \X Matches a combining character sequence: - that is any non-combining character followed by a sequence of zero or more - combining characters. + \C Matches a single code point: in Boost regex this has + exactly the same effect as a "." operator. \X + Matches a combining character sequence: that is any non-combining character + followed by a sequence of zero or more combining characters. +

    +
    + + Matching + Line Endings +
    +

    + The escape sequence \R matches any line ending character + sequence, specifically it is identical to the expression (?>\x0D\x0A?|[\x0A-\x0C\x85\x{2028}\x{2029}]). +

    +
    + + Keeping + back some text +
    +

    + \K Resets the start location of $0 to the current text + position: in other words everything to the left of \K is "kept back" + and does not form part of the regular expression match. $` is updated accordingly. +

    +

    + For example foo\Kbar matched against the text "foobar" + would return the match "bar" for $0 and "foo" for $`. + This can be used to simulate variable width lookbehind assertions.

    - + Any other escape
    @@ -1018,57 +1097,54 @@ \@ matches a literal '@'.

    - + Perl Extended Patterns

    Perl-specific extensions to the regular expression syntax all start with - (?. + (?.

    - + Comments

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

    - + Modifiers

    - (?imsx-imsx ... ) alters - which of the perl modifiers are in effect within the pattern, changes take - effect from the point that the block is first seen and extend to any enclosing - ). Letters before a '-' turn - that perl modifier on, letters afterward, turn it off. + (?imsx-imsx ... ) alters which of the perl modifiers are + in effect within the pattern, changes take effect from the point that the + block is first seen and extend to any enclosing ). Letters + before a '-' turn that perl modifier on, letters afterward, turn it off.

    - (?imsx-imsx:pattern) - applies the specified modifiers to pattern only. + (?imsx-imsx:pattern) applies the specified modifiers to + pattern only.

    - + Non-marking groups

    - (?:pattern) lexically groups pattern, without generating + (?:pattern) lexically groups pattern, without generating an additional sub-expression.

    - + Lookahead

    - (?=pattern) consumes zero characters, only if pattern + (?=pattern) consumes zero characters, only if pattern matches.

    - (?!pattern) consumes zero characters, only if pattern + (?!pattern) consumes zero characters, only if pattern does not match.

    @@ -1083,26 +1159,26 @@ could be used to validate the password.

    - + Lookbehind

    - (?<=pattern) consumes zero characters, only if pattern + (?<=pattern) consumes zero characters, only if pattern could be matched against the characters preceding the current position (pattern must be of fixed length).

    - (?<!pattern) consumes zero characters, only if pattern + (?<!pattern) consumes zero characters, only if pattern could not be matched against the characters preceding the current position (pattern must be of fixed length).

    - + Independent sub-expressions

    - (?>pattern) pattern is matched + (?>pattern) pattern is matched independently of the surrounding patterns, the expression will never backtrack into pattern. Independent sub-expressions are typically used to improve performance; only the best possible match for pattern will @@ -1110,19 +1186,18 @@ no match is found at all.

    - + Conditional Expressions

    - (?(condition)yes-pattern|no-pattern) attempts to match yes-pattern - if the condition is true, otherwise attempts to match - no-pattern. + (?(condition)yes-pattern|no-pattern) attempts to match + yes-pattern if the condition is + true, otherwise attempts to match no-pattern.

    - (?(condition)yes-pattern) - attempts to match yes-pattern if the condition - is true, otherwise fails. + (?(condition)yes-pattern) attempts to match yes-pattern + if the condition is true, otherwise fails.

    condition may be either a forward lookahead assert, @@ -1130,7 +1205,7 @@ sub-expression has been matched).

    - + Operator precedence
    @@ -1143,17 +1218,16 @@ [::] [..]
  • - Escaped characters \ + Escaped characters \
  • Character set (bracket expression) []
  • - Grouping () + Grouping ()
  • - Single-character-ERE duplication * - + ? {m,n} + Single-character-ERE duplication * + ? {m,n}
  • Concatenation @@ -1166,7 +1240,7 @@
  • - + What gets matched

    @@ -1203,7 +1277,7 @@

    - AtomA AtomB + AtomA AtomB

    @@ -1216,8 +1290,7 @@

    - Expression1 | - Expression2 + Expression1 | Expression2

    @@ -1230,7 +1303,7 @@

    - S{N} + S{N}

    @@ -1242,7 +1315,7 @@

    - S{N,M} + S{N,M}

    @@ -1254,7 +1327,7 @@

    - S{N,M}? + S{N,M}?

    @@ -1266,41 +1339,33 @@

    - 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)

    @@ -1312,7 +1377,7 @@

    - (?=S), (?<=S) + (?=S), (?<=S)

    @@ -1325,7 +1390,7 @@

    - (?!S), (?<!S) + (?!S), (?<!S)

    @@ -1337,8 +1402,7 @@

    - (?(condition)yes-pattern - | no-pattern) + (?(condition)yes-pattern | no-pattern)

    @@ -1351,41 +1415,40 @@

    - + Variations

    The options - normal, ECMAScript, - JavaScript and JScript are all synonyms for perl. + normal, ECMAScript, JavaScript + and JScript are all synonyms for perl.

    - + Options

    There are a variety - of flags that may be combined with the perl - option when constructing the regular expression, in particular note that - the newline_alt option alters - the syntax, while the collate, - nosubs and icase options modify how the case and locale - sensitivity are to be applied. + of flags that may be combined with the perl option + when constructing the regular expression, in particular note that the newline_alt + option alters the syntax, while the collate, nosubs + and icase options modify how the case and locale sensitivity + are to be applied.

    - + Pattern Modifiers

    - The perl smix modifiers can - either be applied using a (?smix-smix) prefix to the regular expression, or with + The perl smix modifiers can either be applied using a + (?smix-smix) prefix to the regular expression, or with one of the regex-compile - time flags no_mod_m, mod_x, mod_s, - and no_mod_s. + time flags no_mod_m, mod_x, mod_s, + and no_mod_s.

    - + References

    diff --git a/doc/html/boost_regex/unicode.html b/doc/html/boost_regex/unicode.html index 00b14229..a21286ca 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 365165f2..6945b093 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: April 23, 2009 at 09:45:24 GMT

    Last revised: April 25, 2009 at 17:20:04 GMT


    diff --git a/doc/syntax_perl.qbk b/doc/syntax_perl.qbk index b3b4056f..a67bc771 100644 --- a/doc/syntax_perl.qbk +++ b/doc/syntax_perl.qbk @@ -12,7 +12,7 @@ The Perl regular expression syntax is based on that used by the programming language Perl . Perl regular expressions are the -default behavior in Boost.Regex or you can pass the flag `perl` to the +default behavior in Boost.Regex or you can pass the flag =perl= to the [basic_regex] constructor, for example: // e1 is a case sensitive Perl regular expression: @@ -34,9 +34,9 @@ The single character '.' when used outside of a character set will match any single character except: * The NULL character when the [link boost_regex.ref.match_flag_type flag - `match_not_dot_null`] is passed to the matching algorithms. + =match_not_dot_null=] is passed to the matching algorithms. * The newline character when the [link boost_regex.ref.match_flag_type - flag `match_not_dot_newline`] is passed to + flag =match_not_dot_newline=] is passed to the matching algorithms. [h4 Anchors] @@ -47,7 +47,7 @@ A '$' character shall match the end of a line. [h4 Marked sub-expressions] -A section beginning `(` and ending `)` acts as a marked sub-expression. +A section beginning =(= and ending =)= acts as a marked sub-expression. Whatever matched the sub-expression is split out in a separate field by the matching algorithms. Marked sub-expressions can also repeated, or referred to by a back-reference. @@ -58,23 +58,23 @@ A marked sub-expression is useful to lexically group part of a regular expression, but has the side-effect of spitting out an extra field in the result. As an alternative you can lexically group part of a regular expression, without generating a marked sub-expression by using -`(?:` and `)` , for example `(?:ab)+` will repeat `ab` without splitting +=(?:= and =)= , for example =(?:ab)+= will repeat =ab= without splitting out any separate sub-expressions. [h4 Repeats] Any atom (a single character, a marked sub-expression, or a character class) -can be repeated with the `*`, `+`, `?`, and `{}` operators. +can be repeated with the =*=, =+=, =?=, and ={}= operators. -The `*` operator will match the preceding atom zero or more times, -for example the expression `a*b` will match any of the following: +The =*= operator will match the preceding atom zero or more times, +for example the expression =a*b= will match any of the following: b ab aaaaaaaab -The `+` operator will match the preceding atom one or more times, for -example the expression `a+b` will match any of the following: +The =+= operator will match the preceding atom one or more times, for +example the expression =a+b= will match any of the following: ab aaaaaaaab @@ -83,7 +83,7 @@ But will not match: b -The `?` operator will match the preceding atom zero or one times, for +The =?= operator will match the preceding atom zero or one times, for example the expression ca?b will match any of the following: cb @@ -95,11 +95,11 @@ But will not match: An atom can also be repeated with a bounded repeat: -`a{n}` Matches 'a' repeated exactly n times. +=a{n}= Matches 'a' repeated exactly n times. -`a{n,}` Matches 'a' repeated n or more times. +=a{n,}= Matches 'a' repeated n or more times. -`a{n, m}` Matches 'a' repeated between n and m times inclusive. +=a{n, m}= Matches 'a' repeated between n and m times inclusive. For example: @@ -120,7 +120,7 @@ be repeated, for example: a(*) -Will raise an error, as there is nothing for the `*` operator to be applied to. +Will raise an error, as there is nothing for the =*= operator to be applied to. [h4 Non greedy repeats] @@ -128,19 +128,19 @@ The normal repeat operators are "greedy", that is to say they will consume as much input as possible. There are non-greedy versions available that will consume as little input as possible while still producing a match. -`*?` Matches the previous atom zero or more times, while consuming as little +=*?= Matches the previous atom zero or more times, while consuming as little input as possible. -`+?` Matches the previous atom one or more times, while consuming as +=+?= Matches the previous atom one or more times, while consuming as little input as possible. -`??` Matches the previous atom zero or one times, while consuming +=??= Matches the previous atom zero or one times, while consuming as little input as possible. -`{n,}?` Matches the previous atom n or more times, while consuming as +={n,}?= Matches the previous atom n or more times, while consuming as little input as possible. -`{n,m}?` Matches the previous atom between n and m times, while +={n,m}?= Matches the previous atom between n and m times, while consuming as little input as possible. [h4 Pocessive repeats] @@ -150,15 +150,15 @@ a match is found. However, this behaviour can sometime be undesireable so there also "pocessive" 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. +=*+= Matches the previous atom zero or more times, while giving nothing back. -`++` Matches the previous atom one or more times, while giving nothing back. +=++= Matches the previous atom one or more times, while giving nothing back. -`?+` Matches the previous atom zero or one times, while giving nothing back. +=?+= Matches the previous atom zero or one times, while giving nothing back. -`{n,}+` Matches the previous atom n or more times, while giving nothing back. +={n,}+= Matches the previous atom n or more times, while giving nothing back. -`{n,m}+` Matches the previous atom between n and m times, while giving nothing back. +={n,m}+= Matches the previous atom between n and m times, while giving nothing back. [h4 Back references] @@ -175,27 +175,38 @@ Will match the string: But not the string: aaabba + +You can also use the \g escape for the same function, for example: + +[table +[[Escape][Meaning]] +[[=\g1=][Match whatever matched sub-expression 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}=]] +[[=\g-1=][Match whatever matched the last opened sub-expression]] +[[=\g{-2}=][Match whatever matched the last but one opened sub-expression]] +] [h4 Alternation] -The `|` operator will match either of its arguments, so for example: -`abc|def` will match either "abc" or "def". +The =|= operator will match either of its arguments, so for example: +=abc|def= will match either "abc" or "def". -Parenthesis can be used to group alternations, for example: `ab(d|ef)` +Parenthesis can be used to group alternations, for example: =ab(d|ef)= will match either of "abd" or "abef". Empty alternatives are not allowed (these are almost always a mistake), but -if you really want an empty alternative use `(?:)` as a placeholder, for example: +if you really want an empty alternative use =(?:)= as a placeholder, for example: -`|abc` is not a valid expression, but +=|abc= is not a valid expression, but -`(?:)|abc` is and is equivalent, also the expression: +=(?:)|abc= is and is equivalent, also the expression: -`(?:abc)??` has exactly the same effect. +=(?:abc)??= has exactly the same effect. [h4 Character sets] -A character set is a bracket-expression starting with `[` and ending with `]`, +A character set is a bracket-expression starting with =[= and ending with =]=, it defines a set of characters, and matches any single character that is a member of that set. @@ -203,35 +214,35 @@ A bracket expression may contain any combination of the following: [h5 Single characters] -For example `[abc]`, will match any of the characters 'a', 'b', or 'c'. +For example =[abc]=, will match any of the characters 'a', 'b', or 'c'. [h5 Character ranges] -For example `[a-c]` will match any single character in the range 'a' to 'c'. +For example =[a-c]= will match any single character in the range 'a' to 'c'. By default, for Perl regular expressions, a character x is within the range y to z, if the code point of the character lies within the codepoints of the endpoints of the range. Alternatively, if you set the -[link boost_regex.ref.syntax_option_type.syntax_option_type_perl `collate` flag] +[link boost_regex.ref.syntax_option_type.syntax_option_type_perl =collate= flag] when constructing the regular expression, then ranges are locale sensitive. [h5 Negation] If the bracket-expression begins with the ^ character, then it matches the -complement of the characters it contains, for example `[^a-c]` matches -any character that is not in the range `a-c`. +complement of the characters it contains, for example =[^a-c]= matches +any character that is not in the range =a-c=. [h5 Character classes] -An expression of the form `[[:name:]]` matches the named character class -"name", for example `[[:lower:]]` matches any lower case character. +An expression of the form [^\[\[:name:\]\]] matches the named character class +"name", for example [^\[\[:lower:\]\]] matches any lower case character. See [link boost_regex.syntax.character_classes character class names]. [h5 Collating Elements] -An expression of the form `[[.col.]` matches the collating element /col/. +An expression of the form [^\[\[.col.\]\]] matches the collating element /col/. A collating element is any single character, or any sequence of characters that collates as a single unit. Collating elements may also be used -as the end point of a range, for example: `[[.ae.]-c]` matches the +as the end point of a range, for example: [^\[\[.ae.\]-c\]] matches the character sequence "ae", plus any single character in the range "ae"-c, assuming that "ae" is treated as a single collating element in the current locale. @@ -240,11 +251,11 @@ As an extension, a collating element may also be specified via it's [[.NUL.]] -matches a `\0` character. +matches a =\0= character. [h5 Equivalence classes] -An expression of the form `[[=col=]]`, matches any character or collating element +An expression of the form [^\[\[\=col\=\]\]], matches any character or collating element whose primary sort key is the same as that for collating element /col/, as with collating elements the name /col/ may be a [link boost_regex.syntax.collating_names symbolic name]. A primary sort key is @@ -267,7 +278,7 @@ that is either a "digit", /or/ is /not/ a "word" character. [h5 Combinations] All of the above can be combined in one character set declaration, for example: -`[[:digit:]a-c[.NUL.]]`. +[^\[\[:digit:\]a-c\[.NUL.\]\]]. [h4 Escapes] @@ -277,24 +288,24 @@ The following escape sequences are all synonyms for single characters: [table [[Escape][Character]] -[[`\a`][`\a`]] -[[`\e`][`0x1B`]] -[[`\f`][`\f`]] -[[`\n`][`\n`]] -[[`\r`][`\r`]] -[[`\t`][`\t`]] -[[`\v `][`\v`]] -[[`\b`][`\b` (but only inside a character class declaration).]] -[[`\cX`][An ASCII escape sequence - the character whose code point is X % 32]] -[[`\xdd`][A hexadecimal escape sequence - matches the single character whose +[[=\a=][=\a=]] +[[=\e=][=0x1B=]] +[[=\f=][=\f=]] +[[=\n=][=\n=]] +[[=\r=][=\r=]] +[[=\t=][=\t=]] +[[=\v=][=\v=]] +[[=\b=][=\b= (but only inside a character class declaration).]] +[[=\cX=][An ASCII escape sequence - the character whose code point is X % 32]] +[[=\xdd=][A hexadecimal escape sequence - matches the single character whose code point is 0xdd.]] -[[`\x{dddd}`][A hexadecimal escape sequence - matches the single character whose +[[=\x{dddd}=][A hexadecimal escape sequence - matches the single character whose code point is 0xdddd.]] -[[`\0ddd`][An octal escape sequence - matches the single character whose +[[=\0ddd=][An octal escape sequence - matches the single character whose code point is 0ddd.]] -[[`\N{name}`][Matches the single character which has the +[[=\N{name}=][Matches the single character which has the [link boost_regex.syntax.collating_names symbolic name] /name/. - For example `\N{newline}` matches the single character \\n.]] + For example =\N{newline}= matches the single character \\n.]] ] [h5 "Single character" character classes:] @@ -337,19 +348,19 @@ to the [link boost_regex.syntax.character_classes names used in character classe [[`\P{Name}`][Matches any character that does not have the property Name.][`[^[:Name:]]`]] ] -For example `\pd` matches any "digit" character, as does `\p{digit}`. +For example =\pd= matches any "digit" character, as does =\p{digit}=. [h5 Word Boundaries] The following escape sequences match the boundaries of words: -`\<` 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` Matches a word boundary (the start or end of a word). +=\b= Matches a word boundary (the start or end of a word). -`\B` Matches only when not at a word boundary. +=\B= Matches only when not at a word boundary. [h5 Buffer boundaries] @@ -366,30 +377,44 @@ context is the whole of the input text that is being matched against \\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` +equivalent to the regular expression =\n*\z= [h5 Continuation Escape] -The sequence `\G` matches only at the end of the last match found, or at +The sequence =\G= matches only at the end of the last match found, or at the start of the text being matched if no previous match was found. This escape useful if you're iterating over the matches contained within a text, and you want each subsequence match to start where the last one ended. [h5 Quoting escape] -The escape sequence `\Q` begins a "quoted sequence": all the subsequent characters +The escape sequence =\Q= begins a "quoted sequence": all the subsequent characters are treated as literals, until either the end of the regular expression or \\E -is found. For example the expression: `\Q\*+\Ea+` would match either of: +is found. For example the expression: =\Q\*+\Ea+= would match either of: \*+a \*+aaa [h5 Unicode escapes] -`\C` Matches a single code point: in Boost regex this has exactly the +=\C= Matches a single code point: in Boost regex this has exactly the same effect as a "." operator. -`\X` Matches a combining character sequence: that is any non-combining +=\X= Matches a combining character sequence: that is any non-combining character followed by a sequence of zero or more combining characters. + +[h5 Matching Line Endings] + +The escape sequence =\R= matches any line ending character sequence, specifically it is identical to +the expression [^(?>\x0D\x0A?|\[\x0A-\x0C\x85\x{2028}\x{2029}\])]. + +[h5 Keeping back some text] + +=\K= Resets the start location of $0 to the current text position: in other words everything to the +left of \K is "kept back" and does not form part of the regular expression match. $` is updated +accordingly. + +For example =foo\Kbar= matched against the text "foobar" would return the match "bar" for $0 and "foo" +for $`. This can be used to simulate variable width lookbehind assertions. [h5 Any other escape] @@ -398,31 +423,31 @@ Any other escape sequence matches the character that is escaped, for example [h4 Perl Extended Patterns] -Perl-specific extensions to the regular expression syntax all start with `(?`. +Perl-specific extensions to the regular expression syntax all start with =(?=. [h5 Comments] -`(?# ... )` is treated as a comment, it's contents are ignored. +=(?# ... )= is treated as a comment, it's contents are ignored. [h5 Modifiers] -`(?imsx-imsx ... )` alters which of the perl modifiers are in effect within +=(?imsx-imsx ... )= alters which of the perl modifiers are in effect within the pattern, changes take effect from the point that the block is first seen -and extend to any enclosing `)`. Letters before a '-' turn that perl +and extend to any enclosing =)=. Letters before a '-' turn that perl modifier on, letters afterward, turn it off. -`(?imsx-imsx:pattern)` applies the specified modifiers to pattern only. +=(?imsx-imsx:pattern)= applies the specified modifiers to pattern only. [h5 Non-marking groups] -`(?:pattern)` lexically groups pattern, without generating an additional +=(?:pattern)= lexically groups pattern, without generating an additional sub-expression. [h5 Lookahead] -`(?=pattern)` consumes zero characters, only if pattern matches. +[^(?=pattern)] consumes zero characters, only if pattern matches. -`(?!pattern)` consumes zero characters, only if pattern does not match. +=(?!pattern)= consumes zero characters, only if pattern does not match. Lookahead is typically used to create the logical AND of two regular expressions, for example if a password must contain a lower case letter, @@ -435,17 +460,17 @@ could be used to validate the password. [h5 Lookbehind] -`(?<=pattern)` consumes zero characters, only if pattern could be matched +[^(?<=pattern)] consumes zero characters, only if pattern could be matched against the characters preceding the current position (pattern must be of fixed length). -`(?pattern)` /pattern/ is matched independently of the surrounding patterns, +=(?>pattern)= /pattern/ is matched independently of the surrounding patterns, the expression will never backtrack into /pattern/. Independent sub-expressions are typically used to improve performance; only the best possible match for pattern will be considered, if this doesn't allow the expression as a @@ -453,10 +478,10 @@ whole to match then no match is found at all. [h5 Conditional Expressions] -`(?(condition)yes-pattern|no-pattern)` attempts to match /yes-pattern/ if +=(?(condition)yes-pattern|no-pattern)= attempts to match /yes-pattern/ if the /condition/ is true, otherwise attempts to match /no-pattern/. -`(?(condition)yes-pattern)` attempts to match /yes-pattern/ if the /condition/ +=(?(condition)yes-pattern)= attempts to match /yes-pattern/ if the /condition/ is true, otherwise fails. /condition/ may be either a forward lookahead assert, or the index of @@ -468,10 +493,10 @@ has been matched). The order of precedence for of operators is as follows: # Collation-related bracket symbols `[==] [::] [..]` -# Escaped characters `\` +# Escaped characters =\= # Character set (bracket expression) `[]` -# Grouping `()` -# Single-character-ERE duplication `* + ? {m,n}` +# Grouping =()= +# Single-character-ERE duplication =* + ? {m,n}= # Concatenation # Anchoring ^$ # Alternation | @@ -490,42 +515,42 @@ with individual elements matched as follows; [table [[Construct][What gets matched]] -[[`AtomA AtomB`][Locates the best match for /AtomA/ that has a following match for /AtomB/.]] -[[`Expression1 | Expression2`][If /Expresion1/ can be matched then returns that match, +[[=AtomA AtomB=][Locates the best match for /AtomA/ that has a following match for /AtomB/.]] +[[=Expression1 | Expression2=][If /Expresion1/ can be matched then returns that match, otherwise attempts to match /Expression2/.]] -[[`S{N}`][Matches /S/ repeated exactly N times.]] -[[`S{N,M}`][Matches S repeated between N and M times, and as many times as possible.]] -[[`S{N,M}?`][Matches S repeated between N and M times, and as few times as possible.]] -[[`S?, S*, S+`][The same as `S{0,1}`, `S{0,UINT_MAX}`, `S{1,UINT_MAX}` respectively.]] -[[`S??, S*?, S+?`][The same as `S{0,1}?`, `S{0,UINT_MAX}?`, `S{1,UINT_MAX}?` respectively.]] -[[`(?>S)`][Matches the best match for /S/, and only that.]] -[[`(?=S), (?<=S)`][Matches only the best match for /S/ (this is only +[[=S{N}=][Matches /S/ repeated exactly N times.]] +[[=S{N,M}=][Matches S repeated between N and M times, and as many times as possible.]] +[[=S{N,M}?=][Matches S repeated between N and M times, and as few times as possible.]] +[[=S?, S*, S+=][The same as =S{0,1}=, =S{0,UINT_MAX}=, =S{1,UINT_MAX}= respectively.]] +[[=S??, S*?, S+?=][The same as =S{0,1}?=, =S{0,UINT_MAX}?=, =S{1,UINT_MAX}?= respectively.]] +[[=(?>S)=][Matches the best match for /S/, and only that.]] +[[[^(?=S), (?<=S)]][Matches only the best match for /S/ (this is only visible if there are capturing parenthesis within /S/).]] -[[`(?!S), (?flags() & (regbase::main_option_type | regbase::no_perl_ex))) + { + re_brace* pb = static_cast(this->append_state(syntax_element_startmark, sizeof(re_brace))); + pb->index = -5; + this->m_pdata->m_data.align(); + ++m_position; + return true; + } + goto escape_type_class_jump; + case regex_constants::escape_type_line_ending: + if(0 == (this->flags() & (regbase::main_option_type | regbase::no_perl_ex))) + { + const charT* e = get_escape_R_string(); + const charT* old_position = m_position; + const charT* old_end = m_end; + const charT* old_base = m_base; + m_position = e; + m_base = e; + m_end = e + traits::length(e); + bool r = parse_all(); + m_position = ++old_position; + m_end = old_end; + m_base = old_base; + return r; + } + goto escape_type_class_jump; + case regex_constants::escape_type_extended_backref: + if(0 == (this->flags() & (regbase::main_option_type | regbase::no_perl_ex))) + { + bool have_brace = false; + bool negative = false; + if(++m_position == m_end) + { + fail(regex_constants::error_escape, m_position - m_base); + return false; + } + // maybe have \g{ddd} + if(this->m_traits.syntax_type(*m_position) == regex_constants::syntax_open_brace) + { + if(++m_position == m_end) + { + fail(regex_constants::error_escape, m_position - m_base); + return false; + } + have_brace = true; + } + negative = (*m_position == static_cast('-')); + if((negative) && (++m_position == m_end)) + { + fail(regex_constants::error_escape, m_position - m_base); + return false; + } + const charT* pc = m_position; + int i = this->m_traits.toi(pc, m_end, 10); + if(negative) + i = 1 + m_mark_count - i; + if((i > 0) && (this->m_backrefs & (1u << (i-1)))) + { + m_position = pc; + re_brace* pb = static_cast(this->append_state(syntax_element_backref, sizeof(re_brace))); + pb->index = i; + } + else + { + fail(regex_constants::error_backref, m_position - m_end); + return false; + } + m_position = pc; + if(have_brace) + { + 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); + return false; + } + ++m_position; + } + return true; + } + goto escape_type_class_jump; case regex_constants::escape_type_control_v: if(0 == (this->flags() & (regbase::main_option_type | regbase::no_perl_ex))) goto escape_type_class_jump; @@ -1499,7 +1581,7 @@ charT basic_regex_parser::unescape_character() int i = this->m_traits.toi(m_position, m_end, 16); if((m_position == m_end) || (i < 0) - || ((std::numeric_limits::is_specialized) && (charT(i) > (std::numeric_limits::max)())) + || ((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); diff --git a/include/boost/regex/v4/match_results.hpp b/include/boost/regex/v4/match_results.hpp index acf509fa..5642508b 100644 --- a/include/boost/regex/v4/match_results.hpp +++ b/include/boost/regex/v4/match_results.hpp @@ -230,13 +230,13 @@ public: m_null.matched = false; } - void BOOST_REGEX_CALL set_second(BidiIterator i, size_type pos, bool m = true) + void BOOST_REGEX_CALL set_second(BidiIterator i, size_type pos, bool m = true, bool escape_k = false) { pos += 2; BOOST_ASSERT(m_subs.size() > pos); m_subs[pos].second = i; m_subs[pos].matched = m; - if(pos == 2) + if((pos == 2) && !escape_k) { m_subs[0].first = i; m_subs[0].matched = (m_subs[0].first != m_subs[0].second); @@ -284,11 +284,18 @@ public: m_subs[n].matched = false; } } - void BOOST_REGEX_CALL set_first(BidiIterator i, size_type pos) + void BOOST_REGEX_CALL set_first(BidiIterator i, size_type pos, bool escape_k = false) { BOOST_ASSERT(pos+2 < m_subs.size()); - if(pos) + if(pos || escape_k) + { m_subs[pos+2].first = i; + if(escape_k) + { + m_subs[1].second = i; + m_subs[1].matched = (m_subs[1].first != m_subs[1].second); + } + } else set_first(i); } diff --git a/include/boost/regex/v4/perl_matcher_common.hpp b/include/boost/regex/v4/perl_matcher_common.hpp index 399caa3b..1be1af6f 100644 --- a/include/boost/regex/v4/perl_matcher_common.hpp +++ b/include/boost/regex/v4/perl_matcher_common.hpp @@ -205,7 +205,7 @@ bool perl_matcher::match_imp() verify_options(re.flags(), m_match_flags); if(0 == match_prefix()) return false; - return m_result[0].second == last; + return (m_result[0].second == last) && (m_result[0].first == base); #if defined(BOOST_REGEX_NON_RECURSIVE) && !defined(BOOST_NO_EXCEPTIONS) } diff --git a/include/boost/regex/v4/perl_matcher_non_recursive.hpp b/include/boost/regex/v4/perl_matcher_non_recursive.hpp index 6cb6d3da..572e32a6 100644 --- a/include/boost/regex/v4/perl_matcher_non_recursive.hpp +++ b/include/boost/regex/v4/perl_matcher_non_recursive.hpp @@ -213,7 +213,7 @@ void perl_matcher::extend_stack() template inline void perl_matcher::push_matched_paren(int index, const sub_match& sub) { - BOOST_ASSERT(index); + //BOOST_ASSERT(index); saved_matched_paren* pmp = static_cast*>(m_backup_state); --pmp; if(pmp < m_stack_base) @@ -404,6 +404,13 @@ bool perl_matcher::match_startmark() break; } } + case -5: + { + push_matched_paren(0, (*m_presult)[0]); + m_presult->set_first(position, 0, true); + pstate = pstate->next.p; + break; + } default: { BOOST_ASSERT(index > 0); @@ -911,8 +918,8 @@ bool perl_matcher::unwind_paren(bool have_match // restore previous values if no match was found: if(have_match == false) { - m_presult->set_first(pmp->sub.first, pmp->index); - m_presult->set_second(pmp->sub.second, pmp->index, pmp->sub.matched); + m_presult->set_first(pmp->sub.first, pmp->index, pmp->index == 0); + m_presult->set_second(pmp->sub.second, pmp->index, pmp->sub.matched, pmp->index == 0); } #ifdef BOOST_REGEX_MATCH_EXTRA // diff --git a/include/boost/regex/v4/perl_matcher_recursive.hpp b/include/boost/regex/v4/perl_matcher_recursive.hpp index 75df4507..bc0fe958 100644 --- a/include/boost/regex/v4/perl_matcher_recursive.hpp +++ b/include/boost/regex/v4/perl_matcher_recursive.hpp @@ -51,8 +51,8 @@ public: template void restore(match_results& w) { - w.set_first(sub.first, index); - w.set_second(sub.second, index, sub.matched); + w.set_first(sub.first, index, index == 0); + w.set_second(sub.second, index, sub.matched, index == 0); } const sub_match& get() { return sub; } }; @@ -209,6 +209,17 @@ bool perl_matcher::match_startmark() break; } } + case -5: + { + // Reset start of $0, since we have a \K escape + backup_subex sub(*m_presult, 0); + m_presult->set_first(position, 0, true); + pstate = pstate->next.p; + r = match_all_states(); + if(r == false) + sub.restore(*m_presult); + break; + } default: { BOOST_ASSERT(index > 0); diff --git a/include/boost/regex/v4/regex_traits_defaults.hpp b/include/boost/regex/v4/regex_traits_defaults.hpp index 8f33d2c8..c213889c 100644 --- a/include/boost/regex/v4/regex_traits_defaults.hpp +++ b/include/boost/regex/v4/regex_traits_defaults.hpp @@ -317,6 +317,28 @@ int global_toi(const charT*& p1, const charT* p2, int radix, const traits& t) return result; } +template +inline const charT* get_escape_R_string() +{ +#ifdef BOOST_MSVC +# pragma warning(push) +# pragma warning(disable:4309) +#endif + static const charT e1[] = { '(', '?', '>', '\x0D', '\x0A', '?', + '|', '[', '\x0A', '\x0B', '\x0C', '\x85', '\\', 'x', '{', '2', '0', '2', '8', '}', + '\\', 'x', '{', '2', '0', '2', '9', '}', ']', ')' }; + static const charT e2[] = { '(', '?', '>', '\x0D', '\x0A', '?', + '|', '[', '\x0A', '\x0B', '\x0C', '\x85', ']', ')' }; + + charT c = static_cast(0x2029u); + bool b = (static_cast(c) == 0x2029u); + + return (b ? e1 : e2); +#ifdef BOOST_MSVC +# pragma warning(pop) +#endif +} + } // re_detail } // boost diff --git a/include/boost/regex/v4/syntax_type.hpp b/include/boost/regex/v4/syntax_type.hpp index 92c00d4c..3efdf0b0 100644 --- a/include/boost/regex/v4/syntax_type.hpp +++ b/include/boost/regex/v4/syntax_type.hpp @@ -92,8 +92,11 @@ static const escape_syntax_type escape_type_G = 52; / static const escape_syntax_type escape_type_property = 54; // for \p static const escape_syntax_type escape_type_not_property = 55; // for \P static const escape_syntax_type escape_type_named_char = 56; // for \N +static const escape_syntax_type escape_type_extended_backref = 57; // for \g +static const escape_syntax_type escape_type_reset_start_mark = 58; // for \K +static const escape_syntax_type escape_type_line_ending = 59; // for \R -static const escape_syntax_type syntax_max = 57; +static const escape_syntax_type syntax_max = 60; } } diff --git a/src/regex_traits_defaults.cpp b/src/regex_traits_defaults.cpp index 8f76c09e..96ea0b3d 100644 --- a/src/regex_traits_defaults.cpp +++ b/src/regex_traits_defaults.cpp @@ -100,6 +100,9 @@ BOOST_REGEX_DECL const char* BOOST_REGEX_CALL get_default_syntax(regex_constants "p", "P", "N", + "g", + "K", + "R", }; return ((n >= (sizeof(messages) / sizeof(messages[1]))) ? "" : messages[n]); @@ -375,14 +378,14 @@ BOOST_REGEX_DECL regex_constants::escape_syntax_type BOOST_REGEX_CALL get_defaul regex_constants::escape_type_not_class, /*H*/ regex_constants::escape_type_not_class, /*I*/ regex_constants::escape_type_not_class, /*J*/ - regex_constants::escape_type_not_class, /*K*/ + regex_constants::escape_type_reset_start_mark, /*K*/ regex_constants::escape_type_not_class, /*L*/ regex_constants::escape_type_not_class, /*M*/ regex_constants::escape_type_named_char, /*N*/ regex_constants::escape_type_not_class, /*O*/ regex_constants::escape_type_not_property, /*P*/ regex_constants::escape_type_Q, /*Q*/ - regex_constants::escape_type_not_class, /*R*/ + regex_constants::escape_type_line_ending, /*R*/ regex_constants::escape_type_not_class, /*S*/ regex_constants::escape_type_not_class, /*T*/ regex_constants::escape_type_not_class, /*U*/ @@ -403,11 +406,11 @@ BOOST_REGEX_DECL regex_constants::escape_syntax_type BOOST_REGEX_CALL get_defaul regex_constants::escape_type_class, /*d*/ regex_constants::escape_type_e, /*e*/ regex_constants::escape_type_control_f, /*f*/ - regex_constants::escape_type_class, /*g*/ + regex_constants::escape_type_extended_backref, /*g*/ regex_constants::escape_type_class, /*h*/ regex_constants::escape_type_class, /*i*/ regex_constants::escape_type_class, /*j*/ - regex_constants::escape_type_class, /*k*/ + regex_constants::escape_type_extended_backref, /*k*/ regex_constants::escape_type_class, /*l*/ regex_constants::escape_type_class, /*m*/ regex_constants::escape_type_control_n, /*n*/ diff --git a/test/regress/test_backrefs.cpp b/test/regress/test_backrefs.cpp index 3702b486..e5c254ff 100644 --- a/test/regress/test_backrefs.cpp +++ b/test/regress/test_backrefs.cpp @@ -55,5 +55,40 @@ void test_backrefs() TEST_REGEX_SEARCH("\\(a\\)\\1bc*[ce]d", basic, "aabcccd", match_default, make_array(0, 7, 0, 1, -2, -2)); TEST_REGEX_SEARCH("^\\(a\\)\\1b\\(c\\)*cd$", basic, "aabcccd", match_default, make_array(0, 7, 0, 1, 4, 5, -2, -2)); TEST_REGEX_SEARCH("\\(ab*\\)[ab]*\\1", basic, "ababaaa", match_default, make_array(0, 7, 0, 1, -2, -2)); + // + // Now test the \g version: + // + TEST_INVALID_REGEX("a(b)\\g2c", perl); + TEST_INVALID_REGEX("a(b\\g1)c", perl); + TEST_INVALID_REGEX("a(b\\g0)c", perl); + TEST_REGEX_SEARCH("a(b*)c\\g1d", perl, "abbcbbd", match_default, make_array(0, 7, 1, 3, -2, -2)); + TEST_REGEX_SEARCH("a(b*)c\\g1d", perl, "abbcbd", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("a(b*)c\\g1d", perl, "abbcbbbd", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("^(.)\\g1", perl, "abc", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("a([bc])\\g1d", perl, "abcdabbd", match_default, make_array(4, 8, 5, 6, -2, -2)); + TEST_INVALID_REGEX("a(b)\\g{2}c", perl); + TEST_INVALID_REGEX("a(b\\g{1})c", perl); + TEST_INVALID_REGEX("a(b\\g{0})c", perl); + TEST_REGEX_SEARCH("a(b*)c\\g{1}d", perl, "abbcbbd", match_default, make_array(0, 7, 1, 3, -2, -2)); + TEST_REGEX_SEARCH("a(b*)c\\g{1}d", perl, "abbcbd", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("a(b*)c\\g{1}d", perl, "abbcbbbd", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("^(.)\\g{1}", perl, "abc", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("a([bc])\\g{1}d", perl, "abcdabbd", match_default, make_array(4, 8, 5, 6, -2, -2)); + // And again but with negative indexes: + TEST_INVALID_REGEX("a(b)\\g-2c", perl); + TEST_INVALID_REGEX("a(b\\g-1)c", perl); + TEST_INVALID_REGEX("a(b\\g-0)c", perl); + TEST_REGEX_SEARCH("a(b*)c\\g-1d", perl, "abbcbbd", match_default, make_array(0, 7, 1, 3, -2, -2)); + TEST_REGEX_SEARCH("a(b*)c\\g-1d", perl, "abbcbd", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("a(b*)c\\g-1d", perl, "abbcbbbd", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("^(.)\\g1", perl, "abc", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("a([bc])\\g1d", perl, "abcdabbd", match_default, make_array(4, 8, 5, 6, -2, -2)); + TEST_INVALID_REGEX("a(b)\\g{-2}c", perl); + TEST_INVALID_REGEX("a(b\\g{-1})c", perl); + TEST_REGEX_SEARCH("a(b*)c\\g{-1}d", perl, "abbcbbd", match_default, make_array(0, 7, 1, 3, -2, -2)); + TEST_REGEX_SEARCH("a(b*)c\\g{-1}d", perl, "abbcbd", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("a(b*)c\\g{-1}d", perl, "abbcbbbd", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("^(.)\\g{-1}", perl, "abc", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("a([bc])\\g{-1}d", perl, "abcdabbd", match_default, make_array(4, 8, 5, 6, -2, -2)); } diff --git a/test/regress/test_escapes.cpp b/test/regress/test_escapes.cpp index ba78c454..21d4262f 100644 --- a/test/regress/test_escapes.cpp +++ b/test/regress/test_escapes.cpp @@ -144,5 +144,23 @@ void test_assertion_escapes() TEST_REGEX_SEARCH("a\\Gbc", perl, "abc", match_default, make_array(-2, -2)); TEST_REGEX_SEARCH("a\\Aab", perl, "abc", match_default, make_array(-2, -2)); TEST_REGEX_SEARCH("abc(?:\\Z|$)", perl, "abc\n\n", match_default, make_array(0, 3, -2, -2)); + + // Buffer reset \K: + TEST_REGEX_SEARCH("(foo)\\Kbar", perl, "foobar", match_default, make_array(3, 6, 0, 3, -2, -2)); + TEST_REGEX_SEARCH("(foo)(\\Kbar|baz)", perl, "foobar", match_default, make_array(3, 6, 0, 3, 3, 6, -2, -2)); + TEST_REGEX_SEARCH("(foo)(\\Kbar|baz)", perl, "foobaz", match_default, make_array(0, 6, 0, 3, 3, 6, -2, -2)); + TEST_REGEX_SEARCH("(foo\\Kbar)baz", perl, "foobarbaz", match_default, make_array(3, 9, 0, 6, -2, -2)); + + // Line ending \R: + TEST_REGEX_SEARCH("\\R", perl, "foo\nbar", match_default, make_array(3, 4, -2, -2)); + TEST_REGEX_SEARCH("\\R", perl, "foo\rbar", match_default, make_array(3, 4, -2, -2)); + TEST_REGEX_SEARCH("\\R", perl, "foo\r\nbar", match_default, make_array(3, 5, -2, -2)); + // see if \u works: + const wchar_t* w = "\u2028"; + if(*w == 0x2028u) + { + TEST_REGEX_SEARCH_W(L"\\R", perl, L"foo\u2028bar", match_default, make_array(3, 4, -2, -2)); + TEST_REGEX_SEARCH_W(L"\\R", perl, L"foo\u2029bar", match_default, make_array(3, 4, -2, -2)); + } } From 55d979060c47a833672f7735ffba3c5f55cc3973 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Thu, 7 May 2009 09:46:51 +0000 Subject: [PATCH 59/72] Add support for named sub-expressions. [SVN r52823] --- doc/format_perl_syntax.qbk | 13 +- .../background_information/examples.html | 6 +- .../background_information/history.html | 12 +- .../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/format/perl_format.html | 133 +++++++++++++++ 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 | 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 | 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 | 129 +++++++++------ doc/html/boost_regex/unicode.html | 4 +- doc/html/index.html | 4 +- doc/match_result.qbk | 95 ++++++++++- doc/syntax_perl.qbk | 19 +++ include/boost/regex/concepts.hpp | 36 +++++ include/boost/regex/v4/basic_regex.hpp | 119 +++++++++++++- include/boost/regex/v4/basic_regex_parser.hpp | 68 +++++++- include/boost/regex/v4/match_results.hpp | 149 ++++++++++++++++- .../boost/regex/v4/perl_matcher_common.hpp | 2 + include/boost/regex/v4/regex_format.hpp | 151 +++++++++++++++++- .../boost/regex/v4/regex_traits_defaults.hpp | 4 +- src/regex_traits_defaults.cpp | 2 +- test/Jamfile.v2 | 4 + .../named_subexpressions_test.cpp | 109 +++++++++++++ test/regress/test_backrefs.cpp | 13 ++ test/regress/test_deprecated.cpp | 4 +- test/regress/test_escapes.cpp | 2 +- test/regress/test_replace.cpp | 48 ++++++ 49 files changed, 1287 insertions(+), 206 deletions(-) create mode 100644 test/named_subexpressions/named_subexpressions_test.cpp diff --git a/doc/format_perl_syntax.qbk b/doc/format_perl_syntax.qbk index cfd57500..63cdbab2 100644 --- a/doc/format_perl_syntax.qbk +++ b/doc/format_perl_syntax.qbk @@ -17,13 +17,24 @@ should be sent to output as follows: [table [[Placeholder][Meaning]] [[$&][Outputs what matched the whole expression.]] -[[$`][Outputs the text between the end of the last match found (or the +[[$MATCH][As $&]] +[[${^MATCH}][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.]] +[[$PREMATCH][As $\`]] +[[${^PREMATCH}][As $\`]] [[$'][Outputs all the text following the end of the current match.]] +[[$POSTMATCH][As $']] +[[${^POSTMATCH}][As $']] +[[$+][Outputs what matched the last marked sub-expression in the regular expression.]] +[[$LAST_PAREN_MATCH][As $+]] +[[$LAST_SUBMATCH_RESULT][Outputs what matched the last sub-expression to be actually matched.]] +[[$^N][As $LAST_SUBMATCH_RESULT]] [[$$][Outputs a literal '$']] [[$n][Outputs what matched the n'th sub-expression.]] [[${n}][Outputs what matched the n'th sub-expression.]] +[[$+{NAME}][Outputs whatever matched the sub-expression named "NAME".]] ] Any $-placeholder sequence not listed above, results in '$' being treated diff --git a/doc/html/boost_regex/background_information/examples.html b/doc/html/boost_regex/background_information/examples.html index b5d3b485..d551f231 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 f42f7bff..52f8efe2 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.38
    @@ -53,7 +53,7 @@
    - + Boost 1.34
    @@ -76,7 +76,7 @@
    - + Boost 1.33.1
    @@ -146,7 +146,7 @@
    - + Boost 1.33.0
    @@ -201,7 +201,7 @@
    - + Boost 1.32.1
    @@ -209,7 +209,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 62284e82..8d9e50d7 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 437e53e0..a711f234 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 c4dcc347..de155209 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 809f2205..73b7d8ae 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

    @@ -66,7 +66,7 @@ with "bar" otherwise.

    - + Placeholder Sequences
    @@ -161,7 +161,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 fde101e3..616dd3fb 100644 --- a/doc/html/boost_regex/format/perl_format.html +++ b/doc/html/boost_regex/format/perl_format.html @@ -65,6 +65,30 @@ + +

    + $MATCH +

    + + +

    + As $& +

    + + + + +

    + ${^MATCH} +

    + + +

    + As $& +

    + + +

    $` @@ -79,6 +103,30 @@ + +

    + $PREMATCH +

    + + +

    + As $` +

    + + + + +

    + ${^PREMATCH} +

    + + +

    + As $` +

    + + +

    $' @@ -91,6 +139,79 @@ + +

    + $POSTMATCH +

    + + +

    + As $' +

    + + + + +

    + ${^POSTMATCH} +

    + + +

    + As $' +

    + + + + +

    + $+ +

    + + +

    + Outputs what matched the last marked sub-expression in the regular + expression. +

    + + + + +

    + $LAST_PAREN_MATCH +

    + + +

    + As $+ +

    + + + + +

    + $LAST_SUBMATCH_RESULT +

    + + +

    + Outputs what matched the last sub-expression to be actually matched. +

    + + + + +

    + $^N +

    + + +

    + As $LAST_SUBMATCH_RESULT +

    + + +

    $$ @@ -126,6 +247,18 @@

    + + +

    + $+{NAME} +

    + + +

    + Outputs whatever matched the sub-expression named "NAME". +

    + +

    diff --git a/doc/html/boost_regex/install.html b/doc/html/boost_regex/install.html index 05d2a54d..b8aeb72e 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 1d079e4f..e81b591d 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 a0c13601..6b6340eb 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 fe4b0274..224279f6 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 70fae8b1..d613605c 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 7fb8bbe7..4c8d7a3f 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 dfbdfdc1..d515cb48 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 7961ad1e..7b674765 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>
    @@ -98,9 +98,33 @@
        bool empty() const;
        // element access:
        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;
    +   template <class charT, class Traits, class A>
    +   difference_type length(const std::basic_string<charT, Traits, A>& sub) 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;
    +   template <class charT, class Traits, class A>
    +   difference_type position(const std::basic_string<charT, Traits, A>& sub) 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;
    +   template <class charT>
    +   string_type str(const charT* sub)const;
    +   template <class charT, class Traits, class A>
    +   string_type str(const std::basic_string<charT, Traits, A>& sub)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;
    +   template <class charT>
    +   const_reference operator[](const charT* n) const;
    +   template <class charT, class Traits, class A>
    +   const_reference operator[](const std::basic_string<charT, Traits, A>& n) const;
     
        const_reference prefix() const;
     
    @@ -142,7 +166,7 @@
              match_results<BidirectionalIterator, Allocator>& m2);
     
    - + Description

    @@ -375,14 +399,39 @@

    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;
    +template <class charT, class Traits, class A>
    +difference_type length(const std::basic_string<charT, Traits, A>&)const;
     

    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. +

    +

    + 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: in this case the characters will be widened to the underlying + character type of the original regular expression. A compiler error will + occur if the argument passes a wider character type than the underlying sequence. + These overloads allow a normal narrow character C string literal to be used + 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(const char_type* sub)const;
    +template <class charT>
    +difference_type position(const charT* sub)const;
    +template <class charT, class Traits, class A>
    +difference_type position(const std::basic_string<charT, Traits, A>&)const;
     

    Effects: Returns the starting location of @@ -391,17 +440,61 @@ 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. +

    +

    + 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: in this case the characters will be widened to the underlying + character type of the original regular expression. A compiler error will + occur if the argument passes a wider character type than the underlying sequence. + These overloads allow a normal narrow character C string literal to be used + 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(const char_type* sub)const;
    +template <class Traits, class A>
    +string_type str(const std::basic_string<char_type, Traits, A>& sub)const;
    +template <class charT>
    +string_type str(const charT* sub)const;
    +template <class charT, class Traits, class A>
    +string_type str(const std::basic_string<charT, Traits, A>& sub)const;
     

    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. In the event that there is no such + named sub-expression then returns an empty string. +

    +

    + 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: in this case the characters will be widened to the underlying + character type of the original regular expression. A compiler error will + occur if the argument passes a wider character type than the underlying sequence. + These overloads allow a normal narrow character C string literal to be used + 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[](const char_type* n) const;
    +template <class Traits, class A>
    +const_reference operator[](const std::basic_string<char_type, Traits, A>& n) const;
    +template <class charT>
    +const_reference operator[](const charT* n) const;
    +template <class charT, class Traits, class A>
    +const_reference operator[](const std::basic_string<charT, Traits, A>& n) const;
     

    Effects: Returns a reference to the sub_match @@ -413,6 +506,22 @@ then returns a sub_match object whose matched member is false.

    +

    + The overloads that accept a string, return a reference to the sub_match object representing the + character sequence that matched the named sub-expression n. + In the event that there is no such named sub-expression then returns a sub_match + object whose matched member is false. +

    +

    + 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: in this case the characters will be widened to the underlying + character type of the original regular expression. A compiler error will + occur if the argument passes a wider character type than the underlying sequence. + These overloads allow a normal narrow character C string literal to be used + 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;
    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 f7379cd2..732889c4 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 6f432bd3..6c781423 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 49195299..11f9d1ea 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 8286c553..6f3d7ddf 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 44ead2e9..b173b48e 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 ba71a9af..17494ce8 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 5ce57f3c..9c4413f1 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 f25d7aab..5019aeac 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 charT>
    @@ -163,7 +163,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 cefe95b9..bcf9ce4f 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 fbd5e0e5..58683e16 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 16ac10d0..62cded54 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 18629564..db25820f 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 6f13adaa..389a5933 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 8de6b127..6a6f32d9 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 c97738cf..add2ff1c 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

    @@ -340,10 +340,27 @@

    + + +

    + \g{one} +

    + + +

    + Match whatever matched the sub-expression named "one" +

    + + +

    + Finally the \k escape can be used to refer to named subexpressions, for example + \k<two> will match whatever matched the subexpression + named "two". +

    - + Alternation

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

    - + Character sets

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

    - + Single characters

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

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

    - + Negation

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

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

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

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

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

    - + Combinations

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

    - + Escapes

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

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

    - + Word Boundaries

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

    - + Buffer boundaries

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

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

    - + Quoting escape

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

    - + Unicode escapes

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

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

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

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

    - + Perl Extended Patterns
    @@ -1105,15 +1122,37 @@ Perl-specific extensions to the regular expression syntax all start with (?.

    +
    + + Named + Subexpressions +
    +

    + You can create a named subexpression using: +

    +
    (?<NAME>expression)
    +
    +

    + Which can be then be refered to by the name NAME. Alternatively + you can delimit the name using 'NAME' as in: +

    +
    (?'NAME'expression)
    +
    +

    + These named subexpressions can be refered to in a backreference using either + \g{NAME} or \k<NAME> and can + also be refered to by name in a Perl + 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

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

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

    - + Lookahead

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

    - + Lookbehind

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

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

    - + Conditional Expressions
    @@ -1205,7 +1244,7 @@ sub-expression has been matched).

    - + Operator precedence
    @@ -1240,7 +1279,7 @@

    - + What gets matched

    @@ -1415,7 +1454,7 @@

    - + Variations

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

    - + Options

    @@ -1436,7 +1475,7 @@ are to be applied.

    - + Pattern Modifiers

    @@ -1448,7 +1487,7 @@ and no_mod_s.

    - + References

    diff --git a/doc/html/boost_regex/unicode.html b/doc/html/boost_regex/unicode.html index a21286ca..b3ceab35 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 6945b093..af141e1e 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: April 25, 2009 at 17:20:04 GMT

    Last revised: May 06, 2009 at 16:25:16 GMT


    diff --git a/doc/match_result.qbk b/doc/match_result.qbk index eb3861fd..8e1ae788 100644 --- a/doc/match_result.qbk +++ b/doc/match_result.qbk @@ -71,9 +71,33 @@ Class template `match_results` is most commonly used as one of the typedefs bool ``[link boost_regex.match_results.empty empty]``() const; // element access: difference_type ``[link boost_regex.match_results.length length]``(int sub = 0) const; + difference_type ``[link boost_regex.match_results.length length]``(const char_type* sub) const; + template + difference_type ``[link boost_regex.match_results.length length]``(const charT* sub) const; + template + difference_type ``[link boost_regex.match_results.length length]``(const std::basic_string& sub) const; difference_type ``[link boost_regex.match_results.position position]``(unsigned int sub = 0) const; + difference_type ``[link boost_regex.match_results.position position]``(const char_type* sub) const; + template + difference_type ``[link boost_regex.match_results.position position]``(const charT* sub) const; + template + difference_type ``[link boost_regex.match_results.position position]``(const std::basic_string& sub) const; string_type ``[link boost_regex.match_results.str str]``(int sub = 0) const; + string_type ``[link boost_regex.match_results.str str]``(const char_type* sub)const; + template + string_type ``[link boost_regex.match_results.str str]``(const std::basic_string& sub)const; + template + string_type ``[link boost_regex.match_results.str str]``(const charT* sub)const; + template + string_type ``[link boost_regex.match_results.str str]``(const std::basic_string& sub)const; const_reference ``[link boost_regex.match_results.subscript operator\[\]]``(int n) const; + const_reference ``[link boost_regex.match_results.subscript operator\[\]]``(const char_type* n) const; + template + const_reference ``[link boost_regex.match_results.subscript operator\[\]]``(const std::basic_string& n) const; + template + const_reference ``[link boost_regex.match_results.subscript operator\[\]]``(const charT* n) const; + template + const_reference ``[link boost_regex.match_results.subscript operator\[\]]``(const std::basic_string& n) const; const_reference ``[link boost_regex.match_results.prefix prefix]``() const; @@ -190,30 +214,86 @@ stored in *this. [#boost_regex.match_results.length] difference_type length(int sub = 0)const; + difference_type length(const char_type* sub)const; + template + difference_type length(const charT* sub)const; + template + difference_type length(const std::basic_string&)const; [*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. + +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: +in this case the characters will be widened to the underlying character type of the original regular expression. +A compiler error will occur if the argument passes a wider character type than the underlying sequence. +These overloads allow a normal narrow character C string literal to be used 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. [#boost_regex.match_results.position] difference_type position(unsigned int sub = 0)const; + difference_type position(const char_type* sub)const; + template + difference_type position(const charT* sub)const; + template + difference_type position(const std::basic_string&)const; [*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. + +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: +in this case the characters will be widened to the underlying character type of the original regular expression. +A compiler error will occur if the argument passes a wider character type than the underlying sequence. +These overloads allow a normal narrow character C string literal to be used 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. + [#boost_regex.match_results.str] string_type str(int sub = 0)const; + string_type str(const char_type* sub)const; + template + string_type str(const std::basic_string& sub)const; + template + string_type str(const charT* sub)const; + template + string_type str(const std::basic_string& sub)const; [*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/. +In the event that there is no such named sub-expression then returns an empty string. + +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: +in this case the characters will be widened to the underlying character type of the original regular expression. +A compiler error will occur if the argument passes a wider character type than the underlying sequence. +These overloads allow a normal narrow character C string literal to be used 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. + [#boost_regex.match_results.subscript] - const_reference operator[](int n) const; + const_reference operator[](int n) const; + const_reference operator[](const char_type* n) const; + template + const_reference operator[](const std::basic_string& n) const; + template + const_reference operator[](const charT* n) const; + template + const_reference operator[](const std::basic_string& n) const; [*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 @@ -222,6 +302,19 @@ matched the whole regular expression. If /n/ is out of range, or if /n/ is an unmatched sub-expression, then returns a [sub_match] object whose matched member is false. +The overloads that accept a string, return a reference to the [sub_match] +object representing the character sequence that matched the named sub-expression /n/. +In the event that there is no such named sub-expression then returns a [sub_match] object whose matched +member is false. + +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: +in this case the characters will be widened to the underlying character type of the original regular expression. +A compiler error will occur if the argument passes a wider character type than the underlying sequence. +These overloads allow a normal narrow character C string literal to be used 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. + [#boost_regex.match_results.prefix] diff --git a/doc/syntax_perl.qbk b/doc/syntax_perl.qbk index a67bc771..ff14c703 100644 --- a/doc/syntax_perl.qbk +++ b/doc/syntax_perl.qbk @@ -185,8 +185,12 @@ You can also use the \g escape for the same function, for example: parsing of the expression in cases like =\g{1}2= or for indexes higher than 9 as in =\g{1234}=]] [[=\g-1=][Match whatever matched the last opened sub-expression]] [[=\g{-2}=][Match whatever matched the last but one opened sub-expression]] +[[=\g{one}=][Match whatever matched the sub-expression named "one"]] ] +Finally the \k escape can be used to refer to named subexpressions, for example [^\k] will match +whatever matched the subexpression named "two". + [h4 Alternation] The =|= operator will match either of its arguments, so for example: @@ -425,6 +429,21 @@ Any other escape sequence matches the character that is escaped, for example Perl-specific extensions to the regular expression syntax all start with =(?=. +[h5 Named Subexpressions] + +You can create a named subexpression using: + + (?expression) + +Which can be then be refered to by the name /NAME/. Alternatively you can delimit the name +using 'NAME' as in: + + (?'NAME'expression) + +These named subexpressions can be refered to in a backreference using either [^\g{NAME}] or [^\k] +and can also be refered to by name in a [perl_format] format string for search and replace operations, or in the +[match_results] member functions. + [h5 Comments] =(?# ... )= is treated as a comment, it's contents are ignored. diff --git a/include/boost/regex/concepts.hpp b/include/boost/regex/concepts.hpp index 0a22aebd..98fd5941 100644 --- a/include/boost/regex/concepts.hpp +++ b/include/boost/regex/concepts.hpp @@ -844,6 +844,42 @@ struct BoostRegexConcept m_string = m_char + m_sub; ignore_unused_variable_warning(m_string); + // Named sub-expressions: + m_sub = m_cresults[&m_char]; + ignore_unused_variable_warning(m_sub); + m_sub = m_cresults[m_string]; + ignore_unused_variable_warning(m_sub); + m_sub = m_cresults[""]; + ignore_unused_variable_warning(m_sub); + m_sub = m_cresults[std::string("")]; + ignore_unused_variable_warning(m_sub); + m_string = m_cresults.str(&m_char); + ignore_unused_variable_warning(m_string); + m_string = m_cresults.str(m_string); + ignore_unused_variable_warning(m_string); + m_string = m_cresults.str(""); + ignore_unused_variable_warning(m_string); + m_string = m_cresults.str(std::string("")); + ignore_unused_variable_warning(m_string); + + typename match_results_type::difference_type diff; + diff = m_cresults.length(&m_char); + ignore_unused_variable_warning(diff); + diff = m_cresults.length(m_string); + ignore_unused_variable_warning(diff); + diff = m_cresults.length(""); + ignore_unused_variable_warning(diff); + diff = m_cresults.length(std::string("")); + ignore_unused_variable_warning(diff); + diff = m_cresults.position(&m_char); + ignore_unused_variable_warning(diff); + diff = m_cresults.position(m_string); + ignore_unused_variable_warning(diff); + diff = m_cresults.position(""); + ignore_unused_variable_warning(diff); + diff = m_cresults.position(std::string("")); + ignore_unused_variable_warning(diff); + #ifndef BOOST_NO_STD_LOCALE m_stream << m_sub; m_stream << m_cresults; diff --git a/include/boost/regex/v4/basic_regex.hpp b/include/boost/regex/v4/basic_regex.hpp index cb9ff3c5..aed79528 100644 --- a/include/boost/regex/v4/basic_regex.hpp +++ b/include/boost/regex/v4/basic_regex.hpp @@ -19,6 +19,8 @@ #ifndef BOOST_REGEX_V4_BASIC_REGEX_HPP #define BOOST_REGEX_V4_BASIC_REGEX_HPP +#include + #ifdef BOOST_MSVC #pragma warning(push) #pragma warning(disable: 4103) @@ -44,12 +46,123 @@ namespace re_detail{ template class basic_regex_parser; +template +void bubble_down_one(I first, I last) +{ + if(first != last) + { + I next = last - 1; + while((next != first) && !(*(next-1) < *next)) + { + (next-1)->swap(*next); + --next; + } + } +} + +// +// Class named_subexpressions +// Contains information about named subexpressions within the regex. +// +template +class named_subexpressions_base +{ +public: + virtual int get_id(const charT* i, const charT* j) = 0; +}; + +template +class named_subexpressions : public named_subexpressions_base +{ + struct name + { + name(const charT* i, const charT* j, int idx) + : n(i, j), index(idx) {} + std::vector n; + int index; + bool operator < (const name& other)const + { + return std::lexicographical_compare(n.begin(), n.end(), other.n.begin(), other.n.end()); + } + bool operator == (const name& other)const + { + return n == other.n; + } + void swap(name& other) + { + n.swap(other.n); + std::swap(index, other.index); + } + }; +public: + named_subexpressions(){} + void set_name(const charT* i, const charT* j, int index) + { + m_sub_names.push_back(name(i, j, index)); + bubble_down_one(m_sub_names.begin(), m_sub_names.end()); + } + int get_id(const charT* i, const charT* j) + { + name t(i, j, 0); + typename std::vector::const_iterator pos = lower_bound(m_sub_names.begin(), m_sub_names.end(), t); + if((pos != m_sub_names.end()) && (*pos == t)) + { + return pos->index; + } + return -1; + } +private: + std::vector m_sub_names; +}; + +template +class named_subexpressions_converter : public named_subexpressions_base +{ + boost::shared_ptr > m_converter; +public: + named_subexpressions_converter(boost::shared_ptr > s) + : m_converter(s) {} + virtual int get_id(const charT* i, const charT* j) + { + if(i == j) + return -1; + std::vector v; + while(i != j) + { + v.push_back(*i); + ++i; + } + return m_converter->get_id(&v[0], &v[0] + v.size()); + } +}; + +template +inline boost::shared_ptr > convert_to_named_subs_imp( + boost::shared_ptr > s, + boost::integral_constant const&) +{ + return s; +} +template +inline boost::shared_ptr > convert_to_named_subs_imp( + boost::shared_ptr > s, + boost::integral_constant const&) +{ + return boost::shared_ptr >(new named_subexpressions_converter(s)); +} +template +inline boost::shared_ptr > convert_to_named_subs( + boost::shared_ptr > s) +{ + typedef typename boost::is_same::type tag_type; + return convert_to_named_subs_imp(s, tag_type()); +} // // class regex_data: // represents the data we wish to expose to the matching algorithms. // template -struct regex_data +struct regex_data : public named_subexpressions { typedef regex_constants::syntax_option_type flag_type; typedef std::size_t size_type; @@ -520,6 +633,10 @@ public: BOOST_ASSERT(0 != m_pimpl.get()); return m_pimpl->get_data(); } + boost::shared_ptr > get_named_subs()const + { + return m_pimpl; + } private: shared_ptr > m_pimpl; diff --git a/include/boost/regex/v4/basic_regex_parser.hpp b/include/boost/regex/v4/basic_regex_parser.hpp index 6431d16e..09777d20 100644 --- a/include/boost/regex/v4/basic_regex_parser.hpp +++ b/include/boost/regex/v4/basic_regex_parser.hpp @@ -777,6 +777,15 @@ escape_type_class_jump: } const charT* pc = m_position; int i = this->m_traits.toi(pc, m_end, 10); + if(i < 0) + { + // Check for a named capture: + const charT* base = m_position; + while((m_position != m_end) && (this->m_traits.syntax_type(*m_position) != regex_constants::syntax_close_brace)) + ++m_position; + i = this->m_pdata->get_id(base, m_position); + pc = m_position; + } if(negative) i = 1 + m_mark_count - i; if((i > 0) && (this->m_backrefs & (1u << (i-1)))) @@ -1784,6 +1793,7 @@ bool basic_regex_parser::parse_perl_extension() regex_constants::syntax_option_type old_flags = this->flags(); bool old_case_change = m_has_case_change; m_has_case_change = false; + charT name_delim; // // select the actual extension used: // @@ -1825,8 +1835,10 @@ bool basic_regex_parser::parse_perl_extension() pb->index = markid = -1; else { - fail(regex_constants::error_badrepeat, m_position - m_base); - return false; + // Probably a named capture which also starts (?< : + name_delim = '>'; + --m_position; + goto named_capture_jump; } ++m_position; jump_offset = this->getoffset(this->append_state(syntax_element_jump, sizeof(re_jump))); @@ -1903,7 +1915,7 @@ bool basic_regex_parser::parse_perl_extension() 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); + fail(regex_constants::error_paren, m_position - m_base); return false; } m_position -= 2; @@ -1914,6 +1926,40 @@ bool basic_regex_parser::parse_perl_extension() case regex_constants::syntax_close_mark: fail(regex_constants::error_badrepeat, m_position - m_base); return false; + case regex_constants::escape_type_end_buffer: + { + name_delim = *m_position; +named_capture_jump: + markid = 0; + if(0 == (this->flags() & regbase::nosubs)) + { + markid = ++m_mark_count; + #ifndef BOOST_NO_STD_DISTANCE + if(this->flags() & regbase::save_subexpression_location) + this->m_pdata->m_subs.push_back(std::pair(std::distance(m_base, m_position) - 2, 0)); + #else + if(this->flags() & regbase::save_subexpression_location) + this->m_pdata->m_subs.push_back(std::pair((m_position - m_base) - 2, 0)); + #endif + } + pb->index = markid; + const charT* base = ++m_position; + if(m_position == m_end) + { + fail(regex_constants::error_paren, 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); + return false; + } + this->m_pdata->set_name(base, m_position, markid); + ++m_position; + break; + } default: // // lets assume that we have a (?imsx) group and try and parse it: @@ -2043,6 +2089,22 @@ bool basic_regex_parser::parse_perl_extension() // and the case change data: // m_has_case_change = old_case_change; + + if(markid > 0) + { +#ifndef BOOST_NO_STD_DISTANCE + if(this->flags() & regbase::save_subexpression_location) + this->m_pdata->m_subs.at(markid - 1).second = std::distance(m_base, m_position) - 1; +#else + if(this->flags() & regbase::save_subexpression_location) + this->m_pdata->m_subs.at(markid - 1).second = (m_position - m_base) - 1; +#endif + // + // allow backrefs to this mark: + // + if((markid > 0) && (markid < (int)(sizeof(unsigned) * CHAR_BIT))) + this->m_backrefs |= 1u << (markid - 1); + } return true; } diff --git a/include/boost/regex/v4/match_results.hpp b/include/boost/regex/v4/match_results.hpp index 5642508b..09dd31f0 100644 --- a/include/boost/regex/v4/match_results.hpp +++ b/include/boost/regex/v4/match_results.hpp @@ -36,6 +36,13 @@ namespace boost{ #pragma warning(disable : 4251 4231 4660) #endif +namespace re_detail{ + +template +class named_subexpressions; + +} + template class match_results { @@ -62,13 +69,14 @@ public: typedef typename re_detail::regex_iterator_traits< BidiIterator>::value_type char_type; typedef std::basic_string string_type; + typedef re_detail::named_subexpressions_base named_sub_type; // construct/copy/destroy: explicit match_results(const Allocator& a = Allocator()) #ifndef BOOST_NO_STD_ALLOCATOR - : m_subs(a), m_base() {} + : m_subs(a), m_base(), m_last_closed_paren(0) {} #else - : m_subs(), m_base() { (void)a; } + : m_subs(), m_base(), m_last_closed_paren(0) { (void)a; } #endif match_results(const match_results& m) : m_subs(m.m_subs), m_base(m.m_base) {} @@ -95,6 +103,24 @@ public: return m_subs[sub].length(); return 0; } + difference_type length(const char_type* sub) const + { + const char_type* end = sub; + while(*end) ++end; + return length(named_subexpression_index(sub, end)); + } + template + difference_type length(const charT* sub) const + { + const charT* end = sub; + while(*end) ++end; + return length(named_subexpression_index(sub, end)); + } + template + difference_type length(const std::basic_string& sub) const + { + return length(sub.c_str()); + } difference_type position(size_type sub = 0) const { sub += 2; @@ -108,6 +134,24 @@ public: } return ~static_cast(0); } + difference_type position(const char_type* sub) const + { + const char_type* end = sub; + while(*end) ++end; + return position(named_subexpression_index(sub, end)); + } + template + difference_type position(const charT* sub) const + { + const charT* end = sub; + while(*end) ++end; + return position(named_subexpression_index(sub, end)); + } + template + difference_type position(const std::basic_string& sub) const + { + return position(sub.c_str()); + } string_type str(int sub = 0) const { sub += 2; @@ -122,6 +166,25 @@ public: } return result; } + string_type str(const char_type* sub) const + { + return (*this)[sub].str(); + } + template + string_type str(const std::basic_string& sub) const + { + return (*this)[sub].str(); + } + template + string_type str(const charT* sub) const + { + return (*this)[sub].str(); + } + template + string_type str(const std::basic_string& sub) const + { + return (*this)[sub].str(); + } const_reference operator[](int sub) const { sub += 2; @@ -131,6 +194,75 @@ public: } return m_null; } + // + // Named sub-expressions: + // + const_reference named_subexpression(const char_type* i, const char_type* j) const + { + int index = m_named_subs->get_id(i, j); + return index > 0 ? (*this)[index] : m_null; + } + template + const_reference named_subexpression(const charT* i, const charT* j) const + { + BOOST_STATIC_ASSERT(sizeof(charT) <= sizeof(char_type)); + if(i == j) + return m_null; + std::vector s; + while(i != j) + s.insert(s.end(), *i++); + return named_subexpression(&*s.begin(), &*s.begin() + s.size()); + } + int named_subexpression_index(const char_type* i, const char_type* j) const + { + int index = m_named_subs->get_id(i, j); + return index > 0 ? index : -20; + } + template + int named_subexpression_index(const charT* i, const charT* j) const + { + BOOST_STATIC_ASSERT(sizeof(charT) <= sizeof(char_type)); + if(i == j) + return -20; + std::vector s; + while(i != j) + s.insert(s.end(), *i++); + return named_subexpression_index(&*s.begin(), &*s.begin() + s.size()); + } + template + const_reference operator[](const std::basic_string& s) const + { + return named_subexpression(s.c_str(), s.c_str() + s.size()); + } + const_reference operator[](const char_type* p) const + { + const char_type* e = p; + while(*e) ++e; + return named_subexpression(p, e); + } + + template + const_reference operator[](const charT* p) const + { + BOOST_STATIC_ASSERT(sizeof(charT) <= sizeof(char_type)); + if(*p == 0) + return m_null; + std::vector s; + while(*p) + s.insert(s.end(), *p++); + return named_subexpression(&*s.begin(), &*s.begin() + s.size()); + } + template + const_reference operator[](const std::basic_string& ns) const + { + BOOST_STATIC_ASSERT(sizeof(charT) <= sizeof(char_type)); + if(ns.empty()) + return m_null; + std::vector s; + for(unsigned i = 0; i < ns.size(); ++i) + s.insert(s.end(), ns[i]); + return named_subexpression(&*s.begin(), &*s.begin() + s.size()); + } const_reference prefix() const { @@ -186,6 +318,10 @@ public: ::boost::re_detail::regex_format_imp(i, *this, fmt.data(), fmt.data() + fmt.size(), 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]; + } allocator_type get_allocator() const { @@ -232,6 +368,8 @@ 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; pos += 2; BOOST_ASSERT(m_subs.size() > pos); m_subs[pos].second = i; @@ -261,6 +399,7 @@ public: m_subs.insert(m_subs.end(), n+2-len, v); } m_subs[1].first = i; + m_last_closed_paren = 0; } void BOOST_REGEX_CALL set_base(BidiIterator pos) { @@ -301,11 +440,17 @@ public: } void BOOST_REGEX_CALL maybe_assign(const match_results& m); + void BOOST_REGEX_CALL set_named_subs(boost::shared_ptr subs) + { + m_named_subs = subs; + } 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; }; template diff --git a/include/boost/regex/v4/perl_matcher_common.hpp b/include/boost/regex/v4/perl_matcher_common.hpp index 1be1af6f..09b0a9bb 100644 --- a/include/boost/regex/v4/perl_matcher_common.hpp +++ b/include/boost/regex/v4/perl_matcher_common.hpp @@ -200,6 +200,7 @@ bool perl_matcher::match_imp() m_match_flags |= regex_constants::match_all; m_presult->set_size((m_match_flags & match_nosubs) ? 1 : re.mark_count(), search_base, last); m_presult->set_base(base); + m_presult->set_named_subs(re_detail::convert_to_named_subs::char_type>(this->re.get_named_subs())); if(m_match_flags & match_posix) m_result = *m_presult; verify_options(re.flags(), m_match_flags); @@ -261,6 +262,7 @@ bool perl_matcher::find_imp() pstate = re.get_first_state(); m_presult->set_size((m_match_flags & match_nosubs) ? 1 : re.mark_count(), base, last); m_presult->set_base(base); + m_presult->set_named_subs(re_detail::convert_to_named_subs::char_type>(this->re.get_named_subs())); m_match_flags |= regex_constants::match_init; } else diff --git a/include/boost/regex/v4/regex_format.hpp b/include/boost/regex/v4/regex_format.hpp index d114c2ed..fcfd9dc3 100644 --- a/include/boost/regex/v4/regex_format.hpp +++ b/include/boost/regex/v4/regex_format.hpp @@ -107,6 +107,7 @@ private: void format_escape(); void format_conditional(); 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. @@ -250,6 +251,25 @@ void basic_regex_formatter::format_perl() case '$': put(*m_position++); break; + case '+': + if((++m_position != m_end) && (*m_position == '{')) + { + const char_type* 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)); + ++m_position; + break; + } + else + { + m_position = --base; + } + } + put((this->m_results)[this->m_results.size() > 1 ? this->m_results.size() - 1 : 1]); + break; case '{': have_brace = true; ++m_position; @@ -258,14 +278,18 @@ void basic_regex_formatter::format_perl() // see if we have a number: { std::ptrdiff_t len = ::boost::re_detail::distance(m_position, m_end); - len = (std::min)(static_cast(2), len); + //len = (std::min)(static_cast(2), len); int v = m_traits.toi(m_position, m_position + len, 10); if((v < 0) || (have_brace && ((m_position == m_end) || (*m_position != '}')))) { - // leave the $ as is, and carry on: - m_position = --save_position; - put(*m_position); - ++m_position; + // Look for a Perl-5.10 verb: + if(!handle_perl_verb(have_brace)) + { + // leave the $ as is, and carry on: + m_position = --save_position; + put(*m_position); + ++m_position; + } break; } // otherwise output sub v: @@ -276,6 +300,123 @@ void basic_regex_formatter::format_perl() } } +template +bool basic_regex_formatter::handle_perl_verb(bool have_brace) +{ + // + // We may have a capitalised string containing a Perl action: + // + static const char_type MATCH[] = { 'M', 'A', 'T', 'C', 'H' }; + static const char_type PREMATCH[] = { 'P', 'R', 'E', 'M', 'A', 'T', 'C', 'H' }; + static const char_type POSTMATCH[] = { 'P', 'O', 'S', 'T', 'M', 'A', 'T', 'C', 'H' }; + static const char_type LAST_PAREN_MATCH[] = { 'L', 'A', 'S', 'T', '_', 'P', 'A', 'R', 'E', 'N', '_', 'M', 'A', 'T', 'C', 'H' }; + 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(have_brace && (*m_position == '^')) + ++m_position; + + int max_len = m_end - m_position; + + if((max_len >= 5) && std::equal(m_position, m_position + 5, MATCH)) + { + m_position += 5; + if(have_brace) + { + if(*m_position == '}') + ++m_position; + else + { + m_position -= 5; + return false; + } + } + put(this->m_results[0]); + return true; + } + if((max_len >= 8) && std::equal(m_position, m_position + 8, PREMATCH)) + { + m_position += 8; + if(have_brace) + { + if(*m_position == '}') + ++m_position; + else + { + m_position -= 8; + return false; + } + } + put(this->m_results.prefix()); + return true; + } + if((max_len >= 9) && std::equal(m_position, m_position + 9, POSTMATCH)) + { + m_position += 9; + if(have_brace) + { + if(*m_position == '}') + ++m_position; + else + { + m_position -= 9; + return false; + } + } + put(this->m_results.suffix()); + return true; + } + if((max_len >= 16) && std::equal(m_position, m_position + 16, LAST_PAREN_MATCH)) + { + m_position += 16; + if(have_brace) + { + if(*m_position == '}') + ++m_position; + else + { + m_position -= 16; + return false; + } + } + put((this->m_results)[this->m_results.size() > 1 ? this->m_results.size() - 1 : 1]); + return true; + } + if((max_len >= 20) && std::equal(m_position, m_position + 20, LAST_SUBMATCH_RESULT)) + { + m_position += 20; + if(have_brace) + { + if(*m_position == '}') + ++m_position; + else + { + m_position -= 20; + return false; + } + } + put(this->m_results.get_last_closed_paren()); + return true; + } + if((max_len >= 2) && std::equal(m_position, m_position + 2, LAST_SUBMATCH_RESULT_ALT)) + { + m_position += 2; + if(have_brace) + { + if(*m_position == '}') + ++m_position; + else + { + m_position -= 2; + return false; + } + } + put(this->m_results.get_last_closed_paren()); + return true; + } + return false; +} + template void basic_regex_formatter::format_escape() { diff --git a/include/boost/regex/v4/regex_traits_defaults.hpp b/include/boost/regex/v4/regex_traits_defaults.hpp index c213889c..55529c5e 100644 --- a/include/boost/regex/v4/regex_traits_defaults.hpp +++ b/include/boost/regex/v4/regex_traits_defaults.hpp @@ -326,9 +326,9 @@ inline const charT* get_escape_R_string() #endif static const charT e1[] = { '(', '?', '>', '\x0D', '\x0A', '?', '|', '[', '\x0A', '\x0B', '\x0C', '\x85', '\\', 'x', '{', '2', '0', '2', '8', '}', - '\\', 'x', '{', '2', '0', '2', '9', '}', ']', ')' }; + '\\', 'x', '{', '2', '0', '2', '9', '}', ']', ')', '\0' }; static const charT e2[] = { '(', '?', '>', '\x0D', '\x0A', '?', - '|', '[', '\x0A', '\x0B', '\x0C', '\x85', ']', ')' }; + '|', '[', '\x0A', '\x0B', '\x0C', '\x85', ']', ')', '\0' }; charT c = static_cast(0x2029u); bool b = (static_cast(c) == 0x2029u); diff --git a/src/regex_traits_defaults.cpp b/src/regex_traits_defaults.cpp index 96ea0b3d..c9596a3d 100644 --- a/src/regex_traits_defaults.cpp +++ b/src/regex_traits_defaults.cpp @@ -537,7 +537,7 @@ BOOST_REGEX_DECL regex_constants::syntax_type BOOST_REGEX_CALL get_default_synta regex_constants::syntax_dollar, /*$*/ regex_constants::syntax_char, /*%*/ regex_constants::syntax_char, /*&*/ - regex_constants::syntax_char, /*'*/ + regex_constants::escape_type_end_buffer, /*'*/ regex_constants::syntax_open_mark, /*(*/ regex_constants::syntax_close_mark, /*)*/ regex_constants::syntax_star, /***/ diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index 4d1a2967..40847731 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -87,6 +87,10 @@ test-suite regex ../build//boost_regex ] + [ run named_subexpressions/named_subexpressions_test.cpp + ../build//boost_regex + ] + [ run unicode/unicode_iterator_test.cpp ../build//boost_regex ] [ run static_mutex/static_mutex_test.cpp ../../thread/build//boost_thread ../build//boost_regex diff --git a/test/named_subexpressions/named_subexpressions_test.cpp b/test/named_subexpressions/named_subexpressions_test.cpp new file mode 100644 index 00000000..41011415 --- /dev/null +++ b/test/named_subexpressions/named_subexpressions_test.cpp @@ -0,0 +1,109 @@ +/* + * + * Copyright (c) 2009 + * 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 + + +template +void test_named_subexpressions(charT) +{ + // + // Really this is just a test that the overloaded access functions work correctly: + // + static const charT e[] = + { + '(', '?', '\'', 'o', 'n', 'e', '\'', 'a', '+', ')', '(', '?', '<', 't', 'w', 'o', '>', 'b', '+', ')', '\0' + }; + static const charT t[] = + { + 'm', 'm', 'a', 'a', 'a', 'b', 'b', 'n', 'n', '\0' + }; + static const charT one[] = + { + 'o', 'n', 'e', '\0' + }; + static const charT two[] = + { + 't', 'w', 'o', '\0' + }; + static const std::basic_string s_one(one); + static const std::basic_string s_two(two); + static const charT result1[] = { 'a', 'a', 'a', '\0' }; + static const charT result2[] = { 'b', 'b', '\0' }; + static const std::basic_string s_result1(result1); + static const std::basic_string s_result2(result2); + + static const char* c_one = "one"; + static const char* c_two = "two"; + static const std::string cs_one(c_one); + static const std::string cs_two(c_two); + + boost::basic_regex expression(e); + boost::match_results what; + if(regex_search(t, what, expression)) + { + BOOST_CHECK(what.length(1) == 3); + BOOST_CHECK(what.length(one) == 3); + BOOST_CHECK(what.length(s_one) == 3); + BOOST_CHECK(what.length(c_one) == 3); + BOOST_CHECK(what.length(cs_one) == 3); + BOOST_CHECK(what.position(1) == 2); + BOOST_CHECK(what.position(one) == 2); + BOOST_CHECK(what.position(s_one) == 2); + BOOST_CHECK(what.position(c_one) == 2); + BOOST_CHECK(what.position(cs_one) == 2); + BOOST_CHECK(what.str(1) == s_result1); + BOOST_CHECK(what.str(one) == s_result1); + BOOST_CHECK(what.str(s_one) == s_result1); + BOOST_CHECK(what.str(c_one) == s_result1); + BOOST_CHECK(what.str(cs_one) == s_result1); + BOOST_CHECK(what[1] == s_result1); + BOOST_CHECK(what[one] == s_result1); + BOOST_CHECK(what[s_one] == s_result1); + BOOST_CHECK(what[c_one] == s_result1); + BOOST_CHECK(what[cs_one] == s_result1); + + BOOST_CHECK(what.length(2) == 2); + BOOST_CHECK(what.length(two) == 2); + BOOST_CHECK(what.length(s_two) == 2); + BOOST_CHECK(what.length(c_two) == 2); + BOOST_CHECK(what.length(cs_two) == 2); + BOOST_CHECK(what.position(2) == 5); + BOOST_CHECK(what.position(two) == 5); + BOOST_CHECK(what.position(s_two) == 5); + BOOST_CHECK(what.position(c_two) == 5); + BOOST_CHECK(what.position(cs_two) == 5); + BOOST_CHECK(what.str(2) == s_result2); + BOOST_CHECK(what.str(two) == s_result2); + BOOST_CHECK(what.str(s_two) == s_result2); + BOOST_CHECK(what.str(c_two) == s_result2); + BOOST_CHECK(what.str(cs_two) == s_result2); + BOOST_CHECK(what[2] == s_result2); + BOOST_CHECK(what[two] == s_result2); + BOOST_CHECK(what[s_two] == s_result2); + BOOST_CHECK(what[c_two] == s_result2); + BOOST_CHECK(what[cs_two] == s_result2); + } + else + { + BOOST_ERROR("Expected match not found"); + } +} + +int test_main( int , char* [] ) +{ + test_named_subexpressions(char(0)); + test_named_subexpressions(wchar_t(0)); + return 0; +} + +#include diff --git a/test/regress/test_backrefs.cpp b/test/regress/test_backrefs.cpp index e5c254ff..58f4dedb 100644 --- a/test/regress/test_backrefs.cpp +++ b/test/regress/test_backrefs.cpp @@ -90,5 +90,18 @@ void test_backrefs() TEST_REGEX_SEARCH("a(b*)c\\g{-1}d", perl, "abbcbbbd", match_default, make_array(-2, -2)); TEST_REGEX_SEARCH("^(.)\\g{-1}", perl, "abc", match_default, make_array(-2, -2)); TEST_REGEX_SEARCH("a([bc])\\g{-1}d", perl, "abcdabbd", match_default, make_array(4, 8, 5, 6, -2, -2)); + + // And again but with named subexpressions: + TEST_REGEX_SEARCH("a(?(?(?(?b*))))c\\g{foo}d", perl, "abbcbbd", match_default, make_array(0, 7, 1, 3, 1, 3, 1, 3, 1, 3, -2, -2)); + TEST_REGEX_SEARCH("a(?(?(?(?b*))))c\\g{foo}d", perl, "abbcbd", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("a(?(?(?(?b*))))c\\g{foo}d", perl, "abbcbbbd", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("^(?.)\\g{foo}", perl, "abc", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("a(?[bc])\\g{foo}d", perl, "abcdabbd", match_default, make_array(4, 8, 5, 6, -2, -2)); + + TEST_REGEX_SEARCH("a(?'foo'(?'bar'(?'bb'(?'aa'b*))))c\\g{foo}d", perl, "abbcbbd", match_default, make_array(0, 7, 1, 3, 1, 3, 1, 3, 1, 3, -2, -2)); + TEST_REGEX_SEARCH("a(?'foo'(?'bar'(?'bb'(?'aa'b*))))c\\g{foo}d", perl, "abbcbd", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("a(?'foo'(?'bar'(?'bb'(?'aa'b*))))c\\g{foo}d", perl, "abbcbbbd", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("^(?'foo'.)\\g{foo}", perl, "abc", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("a(?'foo'[bc])\\g{foo}d", perl, "abcdabbd", match_default, make_array(4, 8, 5, 6, -2, -2)); } diff --git a/test/regress/test_deprecated.cpp b/test/regress/test_deprecated.cpp index af50ec76..84eefb9f 100644 --- a/test/regress/test_deprecated.cpp +++ b/test/regress/test_deprecated.cpp @@ -107,7 +107,7 @@ void test_deprecated(const char&, const test_regex_search_tag&) int i = 0; while(results[2*i] != -2) { - if(max_subs > i) + if((int)max_subs > i) { if(results[2*i] != matches[i].rm_so) { @@ -231,7 +231,7 @@ void test_deprecated(const wchar_t&, const test_regex_search_tag&) int i = 0; while(results[2*i] != -2) { - if(max_subs > i) + if((int)max_subs > i) { if(results[2*i] != matches[i].rm_so) { diff --git a/test/regress/test_escapes.cpp b/test/regress/test_escapes.cpp index 21d4262f..d2dbbe43 100644 --- a/test/regress/test_escapes.cpp +++ b/test/regress/test_escapes.cpp @@ -156,7 +156,7 @@ void test_assertion_escapes() TEST_REGEX_SEARCH("\\R", perl, "foo\rbar", match_default, make_array(3, 4, -2, -2)); TEST_REGEX_SEARCH("\\R", perl, "foo\r\nbar", match_default, make_array(3, 5, -2, -2)); // see if \u works: - const wchar_t* w = "\u2028"; + const wchar_t* w = L"\u2028"; if(*w == 0x2028u) { TEST_REGEX_SEARCH_W(L"\\R", perl, L"foo\u2028bar", match_default, make_array(3, 4, -2, -2)); diff --git a/test/regress/test_replace.cpp b/test/regress/test_replace.cpp index e2acf380..caf2c2e3 100644 --- a/test/regress/test_replace.cpp +++ b/test/regress/test_replace.cpp @@ -126,5 +126,53 @@ void test_replace() TEST_REGEX_REPLACE("(a+)", perl, "...aaa,,,", match_default, "/${10}/", "...//,,,"); TEST_REGEX_REPLACE("((((((((((a+))))))))))", perl, "...aaa,,,", match_default, "/${10}/", ".../aaa/,,,"); TEST_REGEX_REPLACE("(a+)", perl, "...aaa,,,", match_default, "/${1}0/", ".../aaa0/,,,"); + + // New Perl style operators: + TEST_REGEX_REPLACE("a+", perl, "...aaa,,,", match_default|format_no_copy, "$MATCH", "aaa"); + TEST_REGEX_REPLACE("a+", perl, "...aaa,,,", match_default|format_no_copy, "${MATCH}", "aaa"); + TEST_REGEX_REPLACE("a+", perl, "...aaa,,,", match_default|format_no_copy, "${^MATCH}", "aaa"); + TEST_REGEX_REPLACE("a+", perl, "...aaa,,,", match_default|format_no_copy, "$MATC", "$MATC"); + TEST_REGEX_REPLACE("a+", perl, "...aaa,,,", match_default|format_no_copy, "${MATCH", "${MATCH"); + + TEST_REGEX_REPLACE("a+", perl, "...aaa,,,", match_default|format_no_copy, "$PREMATCH", "..."); + TEST_REGEX_REPLACE("a+", perl, "...aaa,,,", match_default|format_no_copy, "${PREMATCH}", "..."); + TEST_REGEX_REPLACE("a+", perl, "...aaa,,,", match_default|format_no_copy, "${^PREMATCH}", "..."); + TEST_REGEX_REPLACE("a+", perl, "...aaa,,,", match_default|format_no_copy, "$PREMATC", "$PREMATC"); + TEST_REGEX_REPLACE("a+", perl, "...aaa,,,", match_default|format_no_copy, "${PREMATCH", "${PREMATCH"); + + TEST_REGEX_REPLACE("a+", perl, "...aaa,,,", match_default|format_no_copy, "$POSTMATCH", ",,,"); + TEST_REGEX_REPLACE("a+", perl, "...aaa,,,", match_default|format_no_copy, "${POSTMATCH}", ",,,"); + TEST_REGEX_REPLACE("a+", perl, "...aaa,,,", match_default|format_no_copy, "${^POSTMATCH}", ",,,"); + TEST_REGEX_REPLACE("a+", perl, "...aaa,,,", match_default|format_no_copy, "$POSTMATC", "$POSTMATC"); + TEST_REGEX_REPLACE("a+", perl, "...aaa,,,", match_default|format_no_copy, "${POSTMATCH", "${POSTMATCH"); + + TEST_REGEX_REPLACE("a+", perl, "...aaa,,,", match_default|format_no_copy, "$LAST_PAREN_MATCH", ""); + TEST_REGEX_REPLACE("a+", perl, "...aaa,,,", match_default|format_no_copy, "$LAST_PAREN_MATC", "$LAST_PAREN_MATC"); + TEST_REGEX_REPLACE("(a+)", perl, "...aaa,,,", match_default|format_no_copy, "$LAST_PAREN_MATCH", "aaa"); + TEST_REGEX_REPLACE("(a+)(b+)", perl, "...aaabb,,,", match_default|format_no_copy, "$LAST_PAREN_MATCH", "bb"); + + TEST_REGEX_REPLACE("a+", perl, "...aaa,,,", match_default|format_no_copy, "$+", ""); + TEST_REGEX_REPLACE("a+", perl, "...aaa,,,", match_default|format_no_copy, "$+foo", "foo"); + TEST_REGEX_REPLACE("(a+)", perl, "...aaa,,,", match_default|format_no_copy, "$+", "aaa"); + TEST_REGEX_REPLACE("(a+)(b+)", perl, "...aaabb,,,", match_default|format_no_copy, "$+foo", "bbfoo"); + TEST_REGEX_REPLACE("(a+)(b+)", perl, "...aaabb,,,", match_default|format_no_copy, "$+{", "bb{"); + TEST_REGEX_REPLACE("(a+)(b+)", perl, "...aaabb,,,", match_default|format_no_copy, "$+{foo", "bb{foo"); + + TEST_REGEX_REPLACE("a+", perl, "...aaa,,,", match_default|format_no_copy, "$LAST_SUBMATCH_RESULT", ""); + TEST_REGEX_REPLACE("a+", perl, "...aaa,,,", match_default|format_no_copy, "$LAST_SUBMATCH_RESUL", "$LAST_SUBMATCH_RESUL"); + TEST_REGEX_REPLACE("(a+)", perl, "...aaa,,,", match_default|format_no_copy, "$LAST_SUBMATCH_RESULT", "aaa"); + TEST_REGEX_REPLACE("(a+)(b+)", perl, "...aaabb,,,", match_default|format_no_copy, "$LAST_SUBMATCH_RESULT", "bb"); + TEST_REGEX_REPLACE("(a+)|(b+)", perl, "...aaa,,,", match_default|format_no_copy, "$LAST_SUBMATCH_RESULT", "aaa"); + + TEST_REGEX_REPLACE("a+", perl, "...aaa,,,", match_default|format_no_copy, "$^N", ""); + TEST_REGEX_REPLACE("(a+)", perl, "...aaa,,,", match_default|format_no_copy, "$^N", "aaa"); + TEST_REGEX_REPLACE("(a+)(b+)", perl, "...aaabb,,,", match_default|format_no_copy, "$^N", "bb"); + TEST_REGEX_REPLACE("(a+)|(b+)", perl, "...aaa,,,", match_default|format_no_copy, "$^N", "aaa"); + + TEST_REGEX_REPLACE("(?a+)(?b+)", perl, " ...aabb,,", match_default|format_no_copy, "$&", "aabb"); + TEST_REGEX_REPLACE("(?a+)(?b+)", perl, " ...aabb,,", match_default|format_no_copy, "$1", "aa"); + TEST_REGEX_REPLACE("(?a+)(?b+)", perl, " ...aabb,,", match_default|format_no_copy, "$2", "bb"); + TEST_REGEX_REPLACE("(?a+)(?b+)", perl, " ...aabb,,", match_default|format_no_copy, "d$+{one}c", "daac"); + TEST_REGEX_REPLACE("(?a+)(?b+)", perl, " ...aabb,,", match_default|format_no_copy, "c$+{two}d", "cbbd"); } From f310162a85f5af507fd97f342b52b5be8bde9a5c Mon Sep 17 00:00:00 2001 From: "Troy D. Straszheim" Date: Sat, 9 May 2009 22:57:30 +0000 Subject: [PATCH 60/72] Merge cmake files release -> trunk. [SVN r52866] --- module.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module.cmake b/module.cmake index 161eea0e..3c9c0ae1 100644 --- a/module.cmake +++ b/module.cmake @@ -1 +1 @@ -boost_module(regex DEPENDS date_time) \ No newline at end of file +boost_module(regex DEPENDS date_time thread) \ No newline at end of file From 9d18ba115109cf16a49dafe6717abe923045943f Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sun, 10 May 2009 09:14:46 +0000 Subject: [PATCH 61/72] Add support for named and/or subexpressions with indexes > 99 in conditional format expressions. [SVN r52873] --- doc/format_boost_syntax.qbk | 27 ++- .../background_information/examples.html | 6 +- .../background_information/history.html | 12 +- .../background_information/locale.html | 8 +- .../background_information/standards.html | 10 +- doc/html/boost_regex/captures.html | 6 +- .../format/boost_format_syntax.html | 166 +++++++++++++++++- 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 | 92 +++++----- doc/html/boost_regex/unicode.html | 4 +- doc/html/index.html | 4 +- include/boost/regex/v4/regex_format.hpp | 32 +++- test/regress/test_replace.cpp | 10 ++ 34 files changed, 409 insertions(+), 194 deletions(-) diff --git a/doc/format_boost_syntax.qbk b/doc/format_boost_syntax.qbk index cba57dd8..c3871041 100644 --- a/doc/format_boost_syntax.qbk +++ b/doc/format_boost_syntax.qbk @@ -33,6 +33,15 @@ order to prevent ambiguities. For example, the format string "(?1foo:bar)" will replace each match found with "foo" if the sub-expression $1 was matched, and with "bar" otherwise. +For sub-expressions with an index greater than 9, or for access to named sub-expressions use: + +?{INDEX}true-expression:false-expression + +or + +?{NAME}true-expression:false-expression + + [h4 Placeholder Sequences] Placeholder sequences specify that some part of what matched the regular expression @@ -41,12 +50,24 @@ should be sent to output as follows: [table [[Placeholder][Meaning]] [[$&][Outputs what matched the whole expression.]] -[[$`][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.]] +[[$MATCH][As $&]] +[[${^MATCH}][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.]] +[[$PREMATCH][As $\`]] +[[${^PREMATCH}][As $\`]] [[$'][Outputs all the text following the end of the current match.]] +[[$POSTMATCH][As $']] +[[${^POSTMATCH}][As $']] +[[$+][Outputs what matched the last marked sub-expression in the regular expression.]] +[[$LAST_PAREN_MATCH][As $+]] +[[$LAST_SUBMATCH_RESULT][Outputs what matched the last sub-expression to be actually matched.]] +[[$^N][As $LAST_SUBMATCH_RESULT]] [[$$][Outputs a literal '$']] [[$n][Outputs what matched the n'th sub-expression.]] +[[${n}][Outputs what matched the n'th sub-expression.]] +[[$+{NAME}][Outputs whatever matched the sub-expression named "NAME".]] ] Any $-placeholder sequence not listed above, results in '$' being treated as a literal. diff --git a/doc/html/boost_regex/background_information/examples.html b/doc/html/boost_regex/background_information/examples.html index d551f231..2de70f4d 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 52f8efe2..3f48c3c3 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.38
    @@ -53,7 +53,7 @@
    - + Boost 1.34
    @@ -76,7 +76,7 @@
    - + Boost 1.33.1
    @@ -146,7 +146,7 @@
    - + Boost 1.33.0
    @@ -201,7 +201,7 @@
    - + Boost 1.32.1
    @@ -209,7 +209,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 8d9e50d7..4c0fc1c7 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 a711f234..2301ab6f 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 de155209..e1649644 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 73b7d8ae..4a9b80eb 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

    @@ -65,8 +65,21 @@ match found with "foo" if the sub-expression $1 was matched, and with "bar" otherwise.

    +

    + For sub-expressions with an index greater than 9, or for access to named + sub-expressions use: +

    +

    + ?{INDEX}true-expression:false-expression +

    +

    + or +

    +

    + ?{NAME}true-expression:false-expression +

    - + Placeholder Sequences
    @@ -105,6 +118,30 @@ + +

    + $MATCH +

    + + +

    + As $& +

    + + + + +

    + ${^MATCH} +

    + + +

    + As $& +

    + + +

    $` @@ -119,6 +156,30 @@ + +

    + $PREMATCH +

    + + +

    + As $` +

    + + + + +

    + ${^PREMATCH} +

    + + +

    + As $` +

    + + +

    $' @@ -131,6 +192,79 @@ + +

    + $POSTMATCH +

    + + +

    + As $' +

    + + + + +

    + ${^POSTMATCH} +

    + + +

    + As $' +

    + + + + +

    + $+ +

    + + +

    + Outputs what matched the last marked sub-expression in the regular + expression. +

    + + + + +

    + $LAST_PAREN_MATCH +

    + + +

    + As $+ +

    + + + + +

    + $LAST_SUBMATCH_RESULT +

    + + +

    + Outputs what matched the last sub-expression to be actually matched. +

    + + + + +

    + $^N +

    + + +

    + As $LAST_SUBMATCH_RESULT +

    + + +

    $$ @@ -154,6 +288,30 @@

    + + +

    + ${n} +

    + + +

    + Outputs what matched the n'th sub-expression. +

    + + + + +

    + $+{NAME} +

    + + +

    + Outputs whatever matched the sub-expression named "NAME". +

    + +

    @@ -161,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 b8aeb72e..609ba749 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 e81b591d..3189d62c 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 6b6340eb..c009b8d5 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 224279f6..6d159362 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 d613605c..07a47ad4 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 4c8d7a3f..7923d13c 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 d515cb48..4be97bd4 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 7b674765..ac2057f0 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>
    @@ -166,7 +166,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 732889c4..79bbe08d 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 6c781423..6f6698a3 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 11f9d1ea..48f67005 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 6f3d7ddf..27380fa3 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 b173b48e..916e4a24 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 17494ce8..6cb4652a 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 9c4413f1..9e58948d 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 5019aeac..eb2b081f 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 charT>
    @@ -163,7 +163,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 bcf9ce4f..9ab5b031 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 58683e16..7ce064f0 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 62cded54..88c599ce 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 db25820f..ab42cbe1 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 389a5933..f3a7175d 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 6a6f32d9..266b7d0f 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 add2ff1c..c77eeddb 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.

    - + Lookahead

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

    - + Lookbehind

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

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

    - + Conditional Expressions
    @@ -1244,7 +1244,7 @@ sub-expression has been matched).

    - + Operator precedence
    @@ -1279,7 +1279,7 @@

    - + What gets matched

    @@ -1454,7 +1454,7 @@

    - + Variations

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

    - + Options

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

    - + Pattern Modifiers

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

    - + References

    diff --git a/doc/html/boost_regex/unicode.html b/doc/html/boost_regex/unicode.html index b3ceab35..427cb889 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 af141e1e..25083a6f 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: May 06, 2009 at 16:25:16 GMT

    Last revised: May 09, 2009 at 16:16:54 GMT


    diff --git a/include/boost/regex/v4/regex_format.hpp b/include/boost/regex/v4/regex_format.hpp index fcfd9dc3..4e95112f 100644 --- a/include/boost/regex/v4/regex_format.hpp +++ b/include/boost/regex/v4/regex_format.hpp @@ -581,9 +581,35 @@ void basic_regex_formatter::format_conditional( put(static_cast('?')); return; } - 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; + if(*m_position == '{') + { + const char_type* base = m_position; + ++m_position; + v = m_traits.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); + } + if((v < 0) || (*m_position != '}')) + { + m_position = base; + // oops trailing '?': + put(static_cast('?')); + return; + } + // Skip trailing '}': + ++m_position; + } + else + { + 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); + } if(v < 0) { // oops not a number: diff --git a/test/regress/test_replace.cpp b/test/regress/test_replace.cpp index caf2c2e3..06c137bf 100644 --- a/test/regress/test_replace.cpp +++ b/test/regress/test_replace.cpp @@ -88,6 +88,16 @@ void test_replace() TEST_REGEX_REPLACE("(a+)|(b+)", perl, "...aaabb,,,ab*abbb?", match_default|format_all, "?1A:B", "...AB,,,AB*AB?"); TEST_REGEX_REPLACE("(a+)|(b+)", perl, "...aaabb,,,ab*abbb?", match_default|format_all, "(?1A:B)C", "...ACBC,,,ACBC*ACBC?"); TEST_REGEX_REPLACE("(a+)|(b+)", perl, "...aaabb,,,ab*abbb?", match_default|format_all, "?1:B", "...B,,,B*B?"); + + TEST_REGEX_REPLACE("(a+)|(b+)", perl, "...aaabb,,,ab*abbb?", match_default|format_all, "(?{1}A)(?{2}B)", "...AB,,,AB*AB?"); + TEST_REGEX_REPLACE("(a+)|(b+)", perl, "...aaabb,,,ab*abbb?", match_default|format_all, "?{1}A:B", "...AB,,,AB*AB?"); + TEST_REGEX_REPLACE("(a+)|(b+)", perl, "...aaabb,,,ab*abbb?", match_default|format_all, "(?{1}A:B)C", "...ACBC,,,ACBC*ACBC?"); + TEST_REGEX_REPLACE("(a+)|(b+)", perl, "...aaabb,,,ab*abbb?", match_default|format_all, "?{1}:B", "...B,,,B*B?"); + TEST_REGEX_REPLACE("(?a+)|(?b+)", perl, "...aaabb,,,ab*abbb?", match_default|format_all, "(?{one}A)(?{two}B)", "...AB,,,AB*AB?"); + TEST_REGEX_REPLACE("(?a+)|(?b+)", perl, "...aaabb,,,ab*abbb?", match_default|format_all, "?{one}A:B", "...AB,,,AB*AB?"); + TEST_REGEX_REPLACE("(?a+)|(?b+)", perl, "...aaabb,,,ab*abbb?", match_default|format_all, "(?{one}A:B)C", "...ACBC,,,ACBC*ACBC?"); + TEST_REGEX_REPLACE("(?a+)|(?b+)", perl, "...aaabb,,,ab*abbb?", match_default|format_all, "?{one}:B", "...B,,,B*B?"); + // move to copying unmatched data, but replace first occurance only: TEST_REGEX_REPLACE("a+", perl, "...aaa,,,", match_default|format_all|format_first_only, "bbb", "...bbb,,,"); TEST_REGEX_REPLACE("a+(b+)", perl, "...aaabb,,,", match_default|format_all|format_first_only, "$1", "...bb,,,"); From aa16fa7fa18fd9788042d7de18f8a9fa35c9c024 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Wed, 13 May 2009 09:17:36 +0000 Subject: [PATCH 62/72] Added Perl-5.10 "branch reset" support. [SVN r52961] --- .../background_information/examples.html | 6 +- .../background_information/history.html | 12 +- .../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 | 114 +++++++++++------- doc/html/boost_regex/unicode.html | 4 +- doc/html/index.html | 4 +- doc/syntax_perl.qbk | 16 +++ include/boost/regex/v4/basic_regex_parser.hpp | 26 +++- test/regress/main.cpp | 3 +- test/regress/test.hpp | 1 + test/regress/test_perl_ex.cpp | 25 ++++ 36 files changed, 279 insertions(+), 190 deletions(-) diff --git a/doc/html/boost_regex/background_information/examples.html b/doc/html/boost_regex/background_information/examples.html index 2de70f4d..24db4e92 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 3f48c3c3..ed503d51 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.38
    @@ -53,7 +53,7 @@
    - + Boost 1.34
    @@ -76,7 +76,7 @@
    - + Boost 1.33.1
    @@ -146,7 +146,7 @@
    - + Boost 1.33.0
    @@ -201,7 +201,7 @@
    - + Boost 1.32.1
    @@ -209,7 +209,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 4c0fc1c7..5c9a1bdd 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 2301ab6f..95cb80a2 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 e1649644..613c1b0a 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 4a9b80eb..a98f3691 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 609ba749..dbb05cd2 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 3189d62c..a5fe7ddf 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 c009b8d5..dabf17a1 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 6d159362..c517de45 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 07a47ad4..7c3b91e6 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 7923d13c..260f3c72 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 4be97bd4..a7152b4d 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 ac2057f0..8d065dae 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>
    @@ -166,7 +166,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 79bbe08d..0a7705fc 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 6f6698a3..b179c8e4 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 48f67005..d62ab666 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 27380fa3..74043549 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 916e4a24..a7456c78 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 6cb4652a..33a69671 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 9e58948d..7647ea87 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 eb2b081f..2e4551f9 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 charT>
    @@ -163,7 +163,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 9ab5b031..4017b942 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 7ce064f0..d837fb03 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 88c599ce..43fc043e 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 ab42cbe1..4360bb0d 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 f3a7175d..afaca7c9 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 266b7d0f..47bc62d0 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 c77eeddb..f257a5d0 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
    @@ -1174,8 +1174,30 @@ (?:pattern) lexically groups pattern, without generating an additional sub-expression.

    +
    + + Branch reset +
    +

    + (?|pattern) resets the subexpression count at the start + of each "|" alternative within pattern. +

    +

    + The sub-expression count following this construct is that of whichever branch + had the largest number of sub-expressions. This construct is useful when + you want to capture one of a number of alternative matches in a single sub-expression + index. +

    +

    + In the following example the index of each sub-expression is shown below + the expression: +

    +
    # before  ---------------branch-reset----------- after        
    +/ ( a )  (?| x ( y ) z | (p (q) r) | (t) u (v) ) ( z ) /x
    +# 1            2         2  3        2     3     4
    +
    - + Lookahead

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

    - + Lookbehind

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

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

    - + Conditional Expressions
    @@ -1244,7 +1266,7 @@ sub-expression has been matched).

    - + Operator precedence
    @@ -1279,7 +1301,7 @@

    - + What gets matched

    @@ -1454,7 +1476,7 @@

    - + Variations

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

    - + Options

    @@ -1475,7 +1497,7 @@ are to be applied.

    - + Pattern Modifiers

    @@ -1487,7 +1509,7 @@ and no_mod_s.

    - + References

    diff --git a/doc/html/boost_regex/unicode.html b/doc/html/boost_regex/unicode.html index 427cb889..84b3eb20 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 25083a6f..0e5fb761 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: May 09, 2009 at 16:16:54 GMT

    Last revised: May 13, 2009 at 09:14:16 GMT


    diff --git a/doc/syntax_perl.qbk b/doc/syntax_perl.qbk index ff14c703..93707e2b 100644 --- a/doc/syntax_perl.qbk +++ b/doc/syntax_perl.qbk @@ -462,6 +462,22 @@ modifier on, letters afterward, turn it off. =(?:pattern)= lexically groups pattern, without generating an additional sub-expression. +[h5 Branch reset] + +=(?|pattern)= resets the subexpression count at the start of each "|" alternative within /pattern/. + +The sub-expression count following this construct is that of whichever branch had the largest number of +sub-expressions. This construct is useful when you want to capture one of a number of alternative matches +in a single sub-expression index. + +In the following example the index of each sub-expression is shown below the expression: + +[pre +# before ---------------branch-reset----------- after +/ ( a ) (?| x ( y ) z | (p (q) r) | (t) u (v) ) ( z ) /x +# 1 2 2 3 2 3 4 +] + [h5 Lookahead] [^(?=pattern)] consumes zero characters, only if pattern matches. diff --git a/include/boost/regex/v4/basic_regex_parser.hpp b/include/boost/regex/v4/basic_regex_parser.hpp index 09777d20..e36f91db 100644 --- a/include/boost/regex/v4/basic_regex_parser.hpp +++ b/include/boost/regex/v4/basic_regex_parser.hpp @@ -78,6 +78,8 @@ private: const charT* m_end; // the end of the string being parsed const charT* m_position; // our current parser position unsigned m_mark_count; // how many sub-expressions we have + int m_mark_reset; // used to indicate that we're inside a (?|...) block. + unsigned m_max_mark; // largest mark count seen inside a (?|...) block. std::ptrdiff_t m_paren_start; // where the last seen ')' began (where repeats are inserted). std::ptrdiff_t m_alt_insert_point; // where to insert the next alternative bool m_has_case_change; // true if somewhere in the current block the case has changed @@ -96,7 +98,7 @@ private: template basic_regex_parser::basic_regex_parser(regex_data* data) - : basic_regex_creator(data), m_mark_count(0), m_paren_start(0), m_alt_insert_point(0), m_has_case_change(false) + : basic_regex_creator(data), m_mark_count(0), m_mark_reset(-1), m_max_mark(0), m_paren_start(0), m_alt_insert_point(0), m_has_case_change(false) { } @@ -1072,6 +1074,14 @@ bool basic_regex_parser::parse_alt() fail(regex_constants::error_empty, this->m_position - this->m_base); return false; } + // + // Reset mark count if required: + // + if(m_max_mark < m_mark_count) + m_max_mark = m_mark_count; + if(m_mark_reset >= 0) + m_mark_count = m_mark_reset; + ++m_position; // // we need to append a trailing jump: @@ -1794,11 +1804,16 @@ bool basic_regex_parser::parse_perl_extension() bool old_case_change = m_has_case_change; m_has_case_change = false; charT name_delim; + int mark_reset = m_mark_reset; + m_mark_reset = -1; // // select the actual extension used: // switch(this->m_traits.syntax_type(*m_position)) { + case regex_constants::syntax_or: + m_mark_reset = m_mark_count; + // fall through: case regex_constants::syntax_colon: // // a non-capturing mark: @@ -2089,6 +2104,15 @@ named_capture_jump: // and the case change data: // m_has_case_change = old_case_change; + // + // And the mark_reset data: + // + if(m_max_mark > m_mark_count) + { + m_mark_count = m_max_mark; + } + m_mark_reset = mark_reset; + if(markid > 0) { diff --git a/test/regress/main.cpp b/test/regress/main.cpp index 73692208..064a19dd 100644 --- a/test/regress/main.cpp +++ b/test/regress/main.cpp @@ -40,7 +40,6 @@ int error_count = 0; void run_tests() { - RUN_TESTS(test_pocessive_repeats); RUN_TESTS(basic_tests); RUN_TESTS(test_simple_repeats); RUN_TESTS(test_alt); @@ -71,6 +70,8 @@ void run_tests() RUN_TESTS(test_operators); RUN_TESTS(test_overloads); RUN_TESTS(test_unicode); + RUN_TESTS(test_pocessive_repeats); + RUN_TESTS(test_mark_resets); } int cpp_main(int /*argc*/, char * /*argv*/[]) diff --git a/test/regress/test.hpp b/test/regress/test.hpp index e812aa94..0e6b88f9 100644 --- a/test/regress/test.hpp +++ b/test/regress/test.hpp @@ -259,5 +259,6 @@ void test_operators(); void test_overloads(); void test_unicode(); void test_pocessive_repeats(); +void test_mark_resets(); #endif diff --git a/test/regress/test_perl_ex.cpp b/test/regress/test_perl_ex.cpp index 6aa31684..2cb5f208 100644 --- a/test/regress/test_perl_ex.cpp +++ b/test/regress/test_perl_ex.cpp @@ -651,3 +651,28 @@ void test_options3() #endif } +void test_mark_resets() +{ + using namespace boost::regex_constants; + + TEST_REGEX_SEARCH("(?|(abc)|(xyz))", perl, "abc", match_default, make_array(0, 3, 0, 3, -2, -2)); + TEST_REGEX_SEARCH("(?|(abc)|(xyz))", perl, "xyz", match_default, make_array(0, 3, 0, 3, -2, -2)); + TEST_REGEX_SEARCH("(x)(?|(abc)|(xyz))(x)", perl, "xabcx", match_default, make_array(0, 5, 0, 1, 1, 4, 4, 5, -2, -2)); + TEST_REGEX_SEARCH("(x)(?|(abc)|(xyz))(x)", perl, "xxyzx", match_default, make_array(0, 5, 0, 1, 1, 4, 4, 5, -2, -2)); + TEST_REGEX_SEARCH("(x)(?|(abc)(pqr)|(xyz))(x)", perl, "xabcpqrx", match_default, make_array(0, 8, 0, 1, 1, 4, 4, 7, 7, 8, -2, -2)); + TEST_REGEX_SEARCH("(x)(?|(abc)(pqr)|(xyz))(x)", perl, "xxyzx", match_default, make_array(0, 5, 0, 1, 1, 4, -1, -1, 4, 5, -2, -2)); + TEST_REGEX_SEARCH("(?|(abc)|(xyz))\\1", perl, "abcabc", match_default, make_array(0, 6, 0, 3, -2, -2)); + TEST_REGEX_SEARCH("(?|(abc)|(xyz))\\1", perl, "xyzxyz", match_default, make_array(0, 6, 0, 3, -2, -2)); + TEST_REGEX_SEARCH("(?|(abc)|(xyz))\\1", perl, "abcxyz", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("(?|(abc)|(xyz))\\1", perl, "xyzabc", match_default, make_array(-2, -2)); + //TEST_REGEX_SEARCH("(?|(abc)|(xyz))(?1)", perl, "abcabc", match_default, make_array(0, 6, 0, 3, -2, -2)); + //TEST_REGEX_SEARCH("(?|(abc)|(xyz))(?1)", perl, "xyzabc", match_default, make_array(0, 6, 0, 3, -2, -2)); + //TEST_REGEX_SEARCH("(?|(abc)|(xyz))(?1)", perl, "xyzxyz", match_default, make_array(-2, -2)); + //TEST_REGEX_SEARCH("^X(?5)(a)(?|(b)|(q))(c)(d)(Y)", perl, "XYabcdY", match_default, make_array(0, 7, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, -2, -2)); + //TEST_INVALID_REGEX("^X(?5)(a)(?|(b)|(q))(c)(d)Y", perl); + //TEST_REGEX_SEARCH("^X(?&N)(a)(?|(b)|(q))(c)(d)(?Y)", perl, "XYabcdY", match_default, make_array(0, 7, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, -2, -2)); + //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, 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, 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, 6, 7, -2, -2)); +} + From d279b2c0a1108df126cfdba98b4ccd3f312064a0 Mon Sep 17 00:00:00 2001 From: Steven Watanabe Date: Mon, 18 May 2009 15:42:04 +0000 Subject: [PATCH 63/72] Qualify lower_bound with std:: to allow regex to work with Sun CC [SVN r53088] --- include/boost/regex/v4/basic_regex.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/regex/v4/basic_regex.hpp b/include/boost/regex/v4/basic_regex.hpp index aed79528..4a396a0e 100644 --- a/include/boost/regex/v4/basic_regex.hpp +++ b/include/boost/regex/v4/basic_regex.hpp @@ -104,7 +104,7 @@ public: int get_id(const charT* i, const charT* j) { name t(i, j, 0); - typename std::vector::const_iterator pos = lower_bound(m_sub_names.begin(), m_sub_names.end(), t); + typename std::vector::const_iterator pos = std::lower_bound(m_sub_names.begin(), m_sub_names.end(), t); if((pos != m_sub_names.end()) && (*pos == t)) { return pos->index; From 944a01f39e67dbc6df1915881a71d2d518628c05 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Tue, 26 May 2009 08:31:23 +0000 Subject: [PATCH 64/72] GCC warning suppression fixes. Fixes #3071. [SVN r53274] --- include/boost/regex/v4/basic_regex.hpp | 4 ++++ include/boost/regex/v4/regex_traits_defaults.hpp | 15 +++++++++++++++ 2 files changed, 19 insertions(+) diff --git a/include/boost/regex/v4/basic_regex.hpp b/include/boost/regex/v4/basic_regex.hpp index 4a396a0e..14d19218 100644 --- a/include/boost/regex/v4/basic_regex.hpp +++ b/include/boost/regex/v4/basic_regex.hpp @@ -69,6 +69,10 @@ class named_subexpressions_base { public: virtual int get_id(const charT* i, const charT* j) = 0; +#ifdef __GNUC__ + // warning supression: + virtual ~named_subexpressions_base(){} +#endif }; template diff --git a/include/boost/regex/v4/regex_traits_defaults.hpp b/include/boost/regex/v4/regex_traits_defaults.hpp index 55529c5e..5b2c6bc3 100644 --- a/include/boost/regex/v4/regex_traits_defaults.hpp +++ b/include/boost/regex/v4/regex_traits_defaults.hpp @@ -339,6 +339,21 @@ inline const charT* get_escape_R_string() #endif } +template <> +inline const char* get_escape_R_string() +{ +#ifdef BOOST_MSVC +# pragma warning(push) +# pragma warning(disable:4309) +#endif + static const char e2[] = { '(', '?', '>', '\x0D', '\x0A', '?', + '|', '[', '\x0A', '\x0B', '\x0C', '\x85', ']', ')', '\0' }; + return e2; +#ifdef BOOST_MSVC +# pragma warning(pop) +#endif +} + } // re_detail } // boost From cd0535d3688b63660dd0875a85d5dd0eefdec671 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Wed, 3 Jun 2009 11:24:22 +0000 Subject: [PATCH 65/72] Try and fix build errors with VC-10 beta. [SVN r53595] --- include/boost/regex/v4/regex_workaround.hpp | 2 +- src/usinstances.cpp | 3 ++- src/wc_regex_traits.cpp | 3 ++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/include/boost/regex/v4/regex_workaround.hpp b/include/boost/regex/v4/regex_workaround.hpp index fc3c2123..06527f1a 100644 --- a/include/boost/regex/v4/regex_workaround.hpp +++ b/include/boost/regex/v4/regex_workaround.hpp @@ -124,7 +124,7 @@ inline void pointer_construct(T* p, const T& t) #ifdef __cplusplus namespace boost{ namespace re_detail{ -#if BOOST_WORKAROUND(BOOST_MSVC,>=1400) && defined(_CPPLIB_VER) && defined(BOOST_DINKUMWARE_STDLIB) && !(defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION)) +#if BOOST_WORKAROUND(BOOST_MSVC,>=1400) && BOOST_WORKAROUND(BOOST_MSVC, <1600) && defined(_CPPLIB_VER) && defined(BOOST_DINKUMWARE_STDLIB) && !(defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION)) // // MSVC 8 will either emit warnings or else refuse to compile // code that makes perfectly legitimate use of std::copy, when diff --git a/src/usinstances.cpp b/src/usinstances.cpp index 56653662..ca7b1dc9 100644 --- a/src/usinstances.cpp +++ b/src/usinstances.cpp @@ -23,7 +23,8 @@ #include #if defined(_DLL_CPPLIB) && !defined(_M_CEE_PURE) && defined(_NATIVE_WCHAR_T_DEFINED) \ - && !(defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION) || defined(__STD_RWCOMPILER_H__) || defined(_RWSTD_VER)) + && !(defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION) || defined(__STD_RWCOMPILER_H__) || defined(_RWSTD_VER))\ + && BOOST_WORKAROUND(BOOST_MSVC, <1600) // // This is a horrible workaround, but without declaring these symbols extern we get // duplicate symbol errors when linking if the application is built without diff --git a/src/wc_regex_traits.cpp b/src/wc_regex_traits.cpp index cff9d185..fb622b5a 100644 --- a/src/wc_regex_traits.cpp +++ b/src/wc_regex_traits.cpp @@ -24,7 +24,8 @@ #include #if defined(_DLL_CPPLIB) && !defined(_M_CEE_PURE) && defined(_NATIVE_WCHAR_T_DEFINED) \ - && !(defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION) || defined(__STD_RWCOMPILER_H__) || defined(_RWSTD_VER)) + && !(defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION) || defined(__STD_RWCOMPILER_H__) || defined(_RWSTD_VER))\ + && BOOST_WORKAROUND(BOOST_MSVC, <1600) // // This is a horrible workaround, but without declaring these symbols extern we get // duplicate symbol errors when linking if the application is built without From 5a80ab5ed4ea9132c75f98fb88f3e21f08e37437 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sat, 6 Jun 2009 08:49:30 +0000 Subject: [PATCH 66/72] Another tentative VC10 beta fix. [SVN r53664] --- include/boost/regex/config.hpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/include/boost/regex/config.hpp b/include/boost/regex/config.hpp index 8c8f5248..88f234d1 100644 --- a/include/boost/regex/config.hpp +++ b/include/boost/regex/config.hpp @@ -165,8 +165,10 @@ # pragma warning(disable : 4251 4231 4660) # endif # ifdef _DLL -# include - extern template class __declspec(dllimport) std::basic_string; +# if BOOST_WORKAROUND(BOOST_MSVC, <1600) +# include + extern template class __declspec(dllimport) std::basic_string; +# endif # endif # ifdef BOOST_MSVC # pragma warning(pop) From 02a629baf74f25389adf3ff3f507c4597bf881ed Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sun, 7 Jun 2009 17:50:17 +0000 Subject: [PATCH 67/72] Simplify and fix PP logic. [SVN r53729] --- include/boost/regex/config.hpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/include/boost/regex/config.hpp b/include/boost/regex/config.hpp index 88f234d1..8306f3ff 100644 --- a/include/boost/regex/config.hpp +++ b/include/boost/regex/config.hpp @@ -164,11 +164,9 @@ # pragma warning(push) # pragma warning(disable : 4251 4231 4660) # endif -# ifdef _DLL -# if BOOST_WORKAROUND(BOOST_MSVC, <1600) -# include - extern template class __declspec(dllimport) std::basic_string; -# endif +# if defined(_DLL) && defined(BOOST_MSVC) && (BOOST_MSVC < 1600) +# include + extern template class __declspec(dllimport) std::basic_string; # endif # ifdef BOOST_MSVC # pragma warning(pop) From 5a6bc29d7ccd68af63fcf2ad0bc6c2554fd889ce Mon Sep 17 00:00:00 2001 From: John Maddock Date: Fri, 17 Jul 2009 10:23:50 +0000 Subject: [PATCH 68/72] Added initial support for recursive expressions. Updated docs and tests accordingly. [SVN r54994] --- .../background_information/examples.html | 6 +- .../background_information/history.html | 12 +- .../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 | 147 +++++++---- doc/html/boost_regex/unicode.html | 4 +- doc/html/index.html | 4 +- doc/syntax_perl.qbk | 27 ++- include/boost/regex/v4/basic_regex.hpp | 1 + .../boost/regex/v4/basic_regex_creator.hpp | 78 +++++- include/boost/regex/v4/basic_regex_parser.hpp | 113 ++++++++- include/boost/regex/v4/perl_matcher.hpp | 26 +- .../boost/regex/v4/perl_matcher_common.hpp | 65 ++--- .../regex/v4/perl_matcher_non_recursive.hpp | 228 +++++++++++++++++- .../boost/regex/v4/perl_matcher_recursive.hpp | 125 +++++++++- include/boost/regex/v4/states.hpp | 5 +- test/regress/main.cpp | 1 + test/regress/test.hpp | 1 + test/regress/test_non_greedy_repeats.cpp | 1 - test/regress/test_perl_ex.cpp | 175 +++++++++++++- 44 files changed, 1013 insertions(+), 264 deletions(-) diff --git a/doc/html/boost_regex/background_information/examples.html b/doc/html/boost_regex/background_information/examples.html index 24db4e92..dd6786c5 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 ed503d51..f04aecc4 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.38
    @@ -53,7 +53,7 @@
    - + Boost 1.34
    @@ -76,7 +76,7 @@
    - + Boost 1.33.1
    @@ -146,7 +146,7 @@
    - + Boost 1.33.0
    @@ -201,7 +201,7 @@
    - + Boost 1.32.1
    @@ -209,7 +209,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 5c9a1bdd..d6af3988 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 95cb80a2..115e5ce3 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 613c1b0a..1b9c755b 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 a98f3691..a927f24b 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 dbb05cd2..ac178cc9 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 a5fe7ddf..6ab5beae 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 dabf17a1..eb7cb84c 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 c517de45..1dcd410c 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 7c3b91e6..fab2dea1 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 260f3c72..26ce70d1 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 a7152b4d..941bdcb9 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 8d065dae..2d1c346c 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>
    @@ -166,7 +166,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 0a7705fc..8a5e4325 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 b179c8e4..f1fd4fed 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 d62ab666..4a6b3297 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 74043549..a2df7d3d 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 a7456c78..d8b73499 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 33a69671..9930174b 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 7647ea87..5f432601 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 2e4551f9..650c1178 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 charT>
    @@ -163,7 +163,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 4017b942..282023dd 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 d837fb03..864905fd 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 43fc043e..eeb38e8e 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 4360bb0d..becc2a20 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 afaca7c9..787c411f 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 47bc62d0..eeb9ef51 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 f257a5d0..46aa35e1 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
    @@ -1246,8 +1246,32 @@ be considered, if this doesn't allow the expression as a whole to match then no match is found at all.

    +
    + + Recursive + Expressions +
    +

    + (?N) (?-N) (?+N) + (?R) (?0) +

    +

    + (?R) and (?0) recurse to the start + of the entire pattern. +

    +

    + (?N) executes sub-expression N + recursively, for example (?2) will recurse to sub-expression + 2. +

    +

    + (?-N) and (?+N) + are relative recursions, so for example (?-1) recurses + to the last sub-expression to be declared, and (?+1) recurses + to the next sub-expression to be declared. +

    - + Conditional Expressions
    @@ -1261,12 +1285,35 @@ if the condition is true, otherwise fails.

    - condition may be either a forward lookahead assert, - or the index of a marked sub-expression (the condition becomes true if the - sub-expression has been matched). + condition may be either: a forward lookahead assert, + the index of a marked sub-expression (the condition becomes true if the sub-expression + has been matched), or an index of a recursion (the condition become true + if we are executing directly inside the specified recursion).

    +

    + 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. +
    • +
    - + Operator precedence
    @@ -1301,7 +1348,7 @@

    - + What gets matched

    @@ -1476,7 +1523,7 @@

    - + Variations

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

    - + Options

    @@ -1497,7 +1544,7 @@ are to be applied.

    - + Pattern Modifiers

    @@ -1509,7 +1556,7 @@ and no_mod_s.

    - + References

    diff --git a/doc/html/boost_regex/unicode.html b/doc/html/boost_regex/unicode.html index 84b3eb20..5abbf2a0 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 0e5fb761..51da76e4 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: May 13, 2009 at 09:14:16 GMT

    Last revised: July 16, 2009 at 15:54:11 GMT


    diff --git a/doc/syntax_perl.qbk b/doc/syntax_perl.qbk index 93707e2b..d97eb989 100644 --- a/doc/syntax_perl.qbk +++ b/doc/syntax_perl.qbk @@ -511,6 +511,17 @@ are typically used to improve performance; only the best possible match for pattern will be considered, if this doesn't allow the expression as a whole to match then no match is found at all. +[h5 Recursive Expressions] + +[^(?['N]) (?-['N]) (?+['N]) (?R) (?0)] + +=(?R)= and =(?0)= recurse to the start of the entire pattern. + +[^(?['N])] executes sub-expression /N/ recursively, for example =(?2)= will recurse to sub-expression 2. + +[^(?-['N])] and [^(?+['N])] are relative recursions, so for example =(?-1)= recurses to the last sub-expression to be declared, +and =(?+1)= recurses to the next sub-expression to be declared. + [h5 Conditional Expressions] =(?(condition)yes-pattern|no-pattern)= attempts to match /yes-pattern/ if @@ -519,9 +530,21 @@ the /condition/ is true, otherwise attempts to match /no-pattern/. =(?(condition)yes-pattern)= attempts to match /yes-pattern/ if the /condition/ is true, otherwise fails. -/condition/ may be either a forward lookahead assert, or the index of +/condition/ may be either: a forward lookahead assert, the index of a marked sub-expression (the condition becomes true if the sub-expression -has been matched). +has been matched), or an index of a recursion (the condition become true if we are executing +directly inside the specified recursion). + +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/. +* [^(?(R['N])yes-pattern|no-pattern)] Executes /yes-pattern/ if we are executing inside a recursion to sub-expression /N/, otherwise +executes /no-pattern/. [h4 Operator precedence] diff --git a/include/boost/regex/v4/basic_regex.hpp b/include/boost/regex/v4/basic_regex.hpp index 14d19218..617d578e 100644 --- a/include/boost/regex/v4/basic_regex.hpp +++ b/include/boost/regex/v4/basic_regex.hpp @@ -194,6 +194,7 @@ struct regex_data : public named_subexpressions std::vector< std::pair< std::size_t, std::size_t> > m_subs; // Position of sub-expressions within the *string*. + bool m_has_recursions; // whether we have recursive expressions; }; // // class basic_regex_implementation diff --git a/include/boost/regex/v4/basic_regex_creator.hpp b/include/boost/regex/v4/basic_regex_creator.hpp index 9f2cbeec..d6a5c09b 100644 --- a/include/boost/regex/v4/basic_regex_creator.hpp +++ b/include/boost/regex/v4/basic_regex_creator.hpp @@ -240,6 +240,7 @@ protected: bool m_has_backrefs; // true if there are actually any backrefs unsigned m_backrefs; // bitmask of permitted backrefs boost::uintmax_t m_bad_repeats; // bitmask of repeats we can't deduce a startmap for; + bool m_has_recursions; // set when we have recursive expresisons to fixup typename traits::char_class_type m_word_mask; // mask used to determine if a character is a word character typename traits::char_class_type m_mask_space; // mask used to determine if a character is a word character typename traits::char_class_type m_lower_mask; // mask used to determine if a character is a lowercase character @@ -250,6 +251,7 @@ private: basic_regex_creator(const basic_regex_creator&); void fixup_pointers(re_syntax_base* state); + void fixup_recursions(re_syntax_base* state); void create_startmaps(re_syntax_base* state); int calculate_backstep(re_syntax_base* state); void create_startmap(re_syntax_base* state, unsigned char* l_map, unsigned int* pnull, unsigned char mask); @@ -263,7 +265,7 @@ private: template basic_regex_creator::basic_regex_creator(regex_data* data) - : m_pdata(data), m_traits(*(data->m_ptraits)), m_last_state(0), m_repeater_id(0), m_has_backrefs(false), m_backrefs(0) + : m_pdata(data), m_traits(*(data->m_ptraits)), m_last_state(0), m_repeater_id(0), m_has_backrefs(false), m_backrefs(0), m_has_recursions(false) { m_pdata->m_data.clear(); m_pdata->m_status = ::boost::regex_constants::error_ok; @@ -692,6 +694,13 @@ void basic_regex_creator::finalize(const charT* p1, const charT* m_pdata->m_first_state = static_cast(m_pdata->m_data.data()); // fixup pointers in the machine: fixup_pointers(m_pdata->m_first_state); + if(m_has_recursions) + { + m_pdata->m_has_recursions = true; + fixup_recursions(m_pdata->m_first_state); + } + else + m_pdata->m_has_recursions = false; // create nested startmaps: create_startmaps(m_pdata->m_first_state); // create main startmap: @@ -713,6 +722,13 @@ void basic_regex_creator::fixup_pointers(re_syntax_base* state) { switch(state->type) { + case syntax_element_recurse: + m_has_recursions = true; + if(state->next.i) + state->next.p = getaddress(state->next.i, state); + else + state->next.p = 0; + break; case syntax_element_rep: case syntax_element_dot_rep: case syntax_element_char_rep: @@ -738,6 +754,65 @@ void basic_regex_creator::fixup_pointers(re_syntax_base* state) } } +template +void basic_regex_creator::fixup_recursions(re_syntax_base* state) +{ + re_syntax_base* base = state; + while(state) + { + switch(state->type) + { + case syntax_element_recurse: + { + bool ok = false; + re_syntax_base* p = base; + /* + if(static_cast(state)->alt.i == 0) + { + ok = true; + static_cast(state)->alt.p = p; + } + else + {*/ + while(p) + { + if((p->type == syntax_element_startmark) && (static_cast(p)->index == static_cast(state)->alt.i)) + { + static_cast(state)->alt.p = p; + ok = true; + break; + } + p = p->next.p; + } + //} + if(!ok) + { + // recursion to sub-expression that doesn't exist: + if(0 == this->m_pdata->m_status) // update the error code if not already set + this->m_pdata->m_status = boost::regex_constants::error_bad_pattern; + // + // clear the expression, we should be empty: + // + this->m_pdata->m_expression = 0; + this->m_pdata->m_expression_len = 0; + // + // and throw if required: + // + if(0 == (this->flags() & regex_constants::no_except)) + { + std::string message = this->m_pdata->m_ptraits->error_string(boost::regex_constants::error_bad_pattern); + boost::regex_error e(message, boost::regex_constants::error_bad_pattern, 0); + e.raise(); + } + } + } + default: + break; + } + state = state->next.p; + } +} + template void basic_regex_creator::create_startmaps(re_syntax_base* state) { @@ -953,6 +1028,7 @@ void basic_regex_creator::create_startmap(re_syntax_base* state, create_startmap(state->next.p, 0, pnull, mask); return; } + case syntax_element_recurse: case syntax_element_backref: // can be null, and any character can match: if(pnull) diff --git a/include/boost/regex/v4/basic_regex_parser.hpp b/include/boost/regex/v4/basic_regex_parser.hpp index e36f91db..a9e77b3b 100644 --- a/include/boost/regex/v4/basic_regex_parser.hpp +++ b/include/boost/regex/v4/basic_regex_parser.hpp @@ -125,8 +125,16 @@ void basic_regex_parser::parse(const charT* p1, const charT* p2, switch(l_flags & regbase::main_option_type) { case regbase::perl_syntax_group: - m_parser_proc = &basic_regex_parser::parse_extended; - break; + { + m_parser_proc = &basic_regex_parser::parse_extended; + // + // Add a leading paren with index zero to give recursions a target: + // + re_brace* br = static_cast(this->append_state(syntax_element_startmark, sizeof(re_brace))); + br->index = 0; + br->icase = this->flags() & regbase::icase; + break; + } case regbase::basic_syntax_group: m_parser_proc = &basic_regex_parser::parse_basic; break; @@ -387,6 +395,7 @@ bool basic_regex_parser::parse_open_paren() } re_brace* pb = static_cast(this->append_state(syntax_element_startmark, sizeof(re_brace))); pb->index = markid; + pb->icase = this->flags() & regbase::icase; std::ptrdiff_t last_paren_start = this->getoffset(pb); // back up insertion point for alternations, and set new point: std::ptrdiff_t last_alt_point = m_alt_insert_point; @@ -399,6 +408,11 @@ bool basic_regex_parser::parse_open_paren() bool old_case_change = m_has_case_change; m_has_case_change = false; // no changes to this scope as yet... // + // Back up branch reset data in case we have a nested (?|...) + // + int mark_reset = m_mark_reset; + m_mark_reset = -1; + // // now recursively add more states, this will terminate when we get to a // matching ')' : // @@ -423,6 +437,10 @@ bool basic_regex_parser::parse_open_paren() this->flags(opts); m_has_case_change = old_case_change; // + // restore branch reset: + // + m_mark_reset = mark_reset; + // // we either have a ')' or we have run out of characters prematurely: // if(m_position == m_end) @@ -444,6 +462,7 @@ bool basic_regex_parser::parse_open_paren() // pb = static_cast(this->append_state(syntax_element_endmark, sizeof(re_brace))); pb->index = markid; + pb->icase = this->flags() & regbase::icase; this->m_paren_start = last_paren_start; // // restore the alternate insertion point: @@ -729,6 +748,7 @@ escape_type_class_jump: { re_brace* pb = static_cast(this->append_state(syntax_element_startmark, sizeof(re_brace))); pb->index = -5; + pb->icase = this->flags() & regbase::icase; this->m_pdata->m_data.align(); ++m_position; return true; @@ -795,6 +815,7 @@ escape_type_class_jump: m_position = pc; re_brace* pb = static_cast(this->append_state(syntax_element_backref, sizeof(re_brace))); pb->index = i; + pb->icase = this->flags() & regbase::icase; } else { @@ -946,11 +967,13 @@ bool basic_regex_parser::parse_repeat(std::size_t low, std::size_ { 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; re_jump* jmp = static_cast(this->insert_state(insert_point + sizeof(re_brace), syntax_element_jump, sizeof(re_jump))); this->m_pdata->m_data.align(); jmp->alt.i = this->m_pdata->m_data.size() - this->getoffset(jmp); pb = static_cast(this->append_state(syntax_element_endmark, sizeof(re_brace))); pb->index = -3; + pb->icase = this->flags() & regbase::icase; } return true; } @@ -1706,6 +1729,7 @@ bool basic_regex_parser::parse_backref() m_position = pc; re_brace* pb = static_cast(this->append_state(syntax_element_backref, sizeof(re_brace))); pb->index = i; + pb->icase = this->flags() & regbase::icase; } else { @@ -1793,6 +1817,7 @@ bool basic_regex_parser::parse_perl_extension() int markid = 0; std::ptrdiff_t jump_offset = 0; re_brace* pb = static_cast(this->append_state(syntax_element_startmark, sizeof(re_brace))); + pb->icase = this->flags() & regbase::icase; std::ptrdiff_t last_paren_start = this->getoffset(pb); // back up insertion point for alternations, and set new point: std::ptrdiff_t last_alt_point = m_alt_insert_point; @@ -1806,6 +1831,7 @@ bool basic_regex_parser::parse_perl_extension() charT name_delim; int mark_reset = m_mark_reset; m_mark_reset = -1; + int v; // // select the actual extension used: // @@ -1821,6 +1847,57 @@ bool basic_regex_parser::parse_perl_extension() pb->index = markid = 0; ++m_position; break; + case regex_constants::syntax_digit: + { + // + // a recursive subexpression: + // + 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); + return false; + } +insert_recursion: + pb->index = markid = 0; + static_cast(this->append_state(syntax_element_recurse, sizeof(re_jump)))->alt.i = v; + static_cast( + this->append_state(syntax_element_toggle_case, sizeof(re_case)) + )->icase = this->flags() & regbase::icase; + break; + } + case regex_constants::syntax_plus: + // + // A forward-relative recursive subexpression: + // + ++m_position; + 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); + return false; + } + v += m_mark_count; + goto insert_recursion; + case regex_constants::syntax_dash: + // + // Possibly a backward-relative recursive subexpression: + // + ++m_position; + v = this->m_traits.toi(m_position, m_end, 10); + if(v <= 0) + { + --m_position; + // Oops not a relative recursion at all, but a (?-imsx) group: + goto option_group_jump; + } + v = m_mark_count + 1 - v; + if(v <= 0) + { + fail(regex_constants::error_backref, m_position - m_base); + return false; + } + goto insert_recursion; case regex_constants::syntax_equal: pb->index = markid = -1; ++m_position; @@ -1882,7 +1959,24 @@ bool basic_regex_parser::parse_perl_extension() return false; } int v = this->m_traits.toi(m_position, m_end, 10); - if(v > 0) + if(*m_position == charT('R')) + { + ++m_position; + v = -this->m_traits.toi(m_position, m_end, 10); + re_brace* br = static_cast(this->append_state(syntax_element_assert_backref, sizeof(re_brace))); + 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); + return false; + } + if(++m_position == m_end) + { + fail(regex_constants::error_badrepeat, m_position - m_base); + return false; + } + } + else if(v > 0) { re_brace* br = static_cast(this->append_state(syntax_element_assert_backref, sizeof(re_brace))); br->index = v; @@ -1976,9 +2070,21 @@ named_capture_jump: break; } default: + if(*m_position == charT('R')) + { + ++m_position; + v = 0; + if(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_close_mark) + { + fail(regex_constants::error_backref, m_position - m_base); + return false; + } + goto insert_recursion; + } // // lets assume that we have a (?imsx) group and try and parse it: // +option_group_jump: regex_constants::syntax_option_type opts = parse_options(); if(m_position == m_end) return false; @@ -2095,6 +2201,7 @@ named_capture_jump: // pb = static_cast(this->append_state(syntax_element_endmark, sizeof(re_brace))); pb->index = markid; + pb->icase = this->flags() & regbase::icase; this->m_paren_start = last_paren_start; // // restore the alternate insertion point: diff --git a/include/boost/regex/v4/perl_matcher.hpp b/include/boost/regex/v4/perl_matcher.hpp index e1ef9c2d..726c2881 100644 --- a/include/boost/regex/v4/perl_matcher.hpp +++ b/include/boost/regex/v4/perl_matcher.hpp @@ -285,7 +285,8 @@ public: } ~repeater_count() { - *stack = next; + if(next) + *stack = next; } std::size_t get_count() { return count; } int get_id() { return state_id; } @@ -325,6 +326,17 @@ enum saved_state_type saved_state_count = 14 }; +template +struct recursion_info +{ + typedef typename Results::value_type value_type; + typedef typename value_type::iterator iterator; + int id; + const re_syntax_base* preturn_address; + Results results; + repeater_count* repeater_stack; +}; + #ifdef BOOST_MSVC #pragma warning(push) #pragma warning(disable : 4251 4231 4660) @@ -340,6 +352,7 @@ public: typedef std::size_t traits_size_type; typedef typename is_byte::width_type width_type; typedef typename regex_iterator_traits::difference_type difference_type; + typedef match_results results_type; perl_matcher(BidiIterator first, BidiIterator end, match_results& what, @@ -348,7 +361,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) + m_independent(false), next_count(&rep_obj), rep_obj(&next_count), recursion_stack_position(0) { construct_init(e, f); } @@ -413,6 +426,7 @@ private: #ifdef BOOST_REGEX_RECURSIVE bool backtrack_till_match(std::size_t count); #endif + bool match_recursion(); // find procs stored in s_find_vtable: bool find_restart_any(); @@ -468,6 +482,9 @@ private: typename traits::char_class_type m_word_mask; // 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; #ifdef BOOST_REGEX_NON_RECURSIVE // @@ -491,6 +508,8 @@ private: bool unwind_short_set_repeat(bool); bool unwind_long_set_repeat(bool); bool unwind_non_greedy_repeat(bool); + bool unwind_recursion(bool); + bool unwind_recursion_pop(bool); void destroy_single_repeat(); void push_matched_paren(int index, const sub_match& sub); void push_recursion_stopper(); @@ -499,7 +518,8 @@ 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_pop(); // pointer to base of stack: saved_state* m_stack_base; diff --git a/include/boost/regex/v4/perl_matcher_common.hpp b/include/boost/regex/v4/perl_matcher_common.hpp index 09b0a9bb..a3eed0c2 100644 --- a/include/boost/regex/v4/perl_matcher_common.hpp +++ b/include/boost/regex/v4/perl_matcher_common.hpp @@ -345,25 +345,6 @@ bool perl_matcher::match_prefix() return m_has_found_match; } -template -bool perl_matcher::match_endmark() -{ - int index = static_cast(pstate)->index; - if(index > 0) - { - if((m_match_flags & match_nosubs) == 0) - m_presult->set_second(position, index); - } - else if((index < 0) && (index != -4)) - { - // matched forward lookahead: - pstate = 0; - return true; - } - pstate = pstate->next.p; - return true; -} - template bool perl_matcher::match_literal() { @@ -464,35 +445,6 @@ bool perl_matcher::match_wild() return true; } -template -bool perl_matcher::match_match() -{ - if((m_match_flags & match_not_null) && (position == (*m_presult)[0].first)) - return false; - if((m_match_flags & match_all) && (position != last)) - return false; - if((m_match_flags & regex_constants::match_not_initial_null) && (position == search_base)) - return false; - m_presult->set_second(position); - pstate = 0; - m_has_found_match = true; - if((m_match_flags & match_posix) == match_posix) - { - m_result.maybe_assign(*m_presult); - if((m_match_flags & match_any) == 0) - return false; - } -#ifdef BOOST_REGEX_MATCH_EXTRA - if(match_extra & m_match_flags) - { - for(unsigned i = 0; i < m_presult->size(); ++i) - if((*m_presult)[i].matched) - ((*m_presult)[i]).get_captures().push_back((*m_presult)[i]); - } -#endif - return true; -} - template bool perl_matcher::match_word_boundary() { @@ -760,8 +712,21 @@ template inline bool perl_matcher::match_assert_backref() { // return true if marked sub-expression N has been matched: - bool result = (*m_presult)[static_cast(pstate)->index].matched; - pstate = pstate->next.p; + int index = static_cast(pstate)->index; + bool result; + if(index > 0) + { + // Have we matched subexpression "index"? + result = (*m_presult)[index].matched; + pstate = pstate->next.p; + } + else + { + // Have we recursed into subexpression "index"? + // If index == 0 then check for any recursion at all, otherwise for recursion to -index-1. + result = recursion_stack_position && ((recursion_stack[recursion_stack_position-1].id == -index-1) || (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 572e32a6..2ce7ebe0 100644 --- a/include/boost/regex/v4/perl_matcher_non_recursive.hpp +++ b/include/boost/regex/v4/perl_matcher_non_recursive.hpp @@ -127,10 +127,21 @@ struct saved_single_repeat : public saved_state : saved_state(arg_id), count(c), rep(r), last_position(lp){} }; +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) + {} + int recursion_id; + const re_syntax_base* preturn_address; + Results results; +}; + template bool perl_matcher::match_all_states() { - static matcher_proc_type const s_match_vtable[29] = + static matcher_proc_type const s_match_vtable[30] = { (&perl_matcher::match_startmark), &perl_matcher::match_endmark, @@ -165,6 +176,7 @@ bool perl_matcher::match_all_states() &perl_matcher::match_backstep, &perl_matcher::match_assert_backref, &perl_matcher::match_toggle_case, + &perl_matcher::match_recursion, }; push_recursion_stopper(); @@ -316,10 +328,26 @@ inline void perl_matcher::push_single_repeat(st m_backup_state = pmp; } +template +inline void perl_matcher::push_recursion(int id, const re_syntax_base* p, results_type* presults) +{ + saved_recursion* pmp = static_cast*>(m_backup_state); + --pmp; + if(pmp < m_stack_base) + { + extend_stack(); + pmp = static_cast*>(m_backup_state); + --pmp; + } + (void) new (pmp)saved_recursion(id, p, presults); + m_backup_state = pmp; +} + template bool perl_matcher::match_startmark() { int index = static_cast(pstate)->index; + icase = static_cast(pstate)->icase; switch(index) { case 0: @@ -859,6 +887,100 @@ bool perl_matcher::match_long_set_repeat() #endif } +template +bool perl_matcher::match_recursion() +{ + BOOST_ASSERT(pstate->type == syntax_element_recurse); + // + // Backup call stack: + // + push_recursion_pop(); + // + // Set new call stack: + // + if(recursion_stack_position >= static_cast(sizeof(recursion_stack)/sizeof(recursion_stack[0]))) + { + return false; + } + recursion_stack[recursion_stack_position].preturn_address = pstate->next.p; + recursion_stack[recursion_stack_position].results = *m_presult; + 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; +} + +template +bool perl_matcher::match_endmark() +{ + int index = static_cast(pstate)->index; + icase = static_cast(pstate)->icase; + if(index > 0) + { + if((m_match_flags & match_nosubs) == 0) + { + m_presult->set_second(position, index); + } + if(recursion_stack_position) + { + if(index == 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); + } + } + } + else if((index < 0) && (index != -4)) + { + // matched forward lookahead: + pstate = 0; + return true; + } + pstate = pstate->next.p; + return true; +} + +template +bool perl_matcher::match_match() +{ + if(recursion_stack_position) + { + 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); + return true; + } + if((m_match_flags & match_not_null) && (position == (*m_presult)[0].first)) + return false; + if((m_match_flags & match_all) && (position != last)) + return false; + if((m_match_flags & regex_constants::match_not_initial_null) && (position == search_base)) + return false; + m_presult->set_second(position); + pstate = 0; + m_has_found_match = true; + if((m_match_flags & match_posix) == match_posix) + { + m_result.maybe_assign(*m_presult); + if((m_match_flags & match_any) == 0) + return false; + } +#ifdef BOOST_REGEX_MATCH_EXTRA + if(match_extra & m_match_flags) + { + for(unsigned i = 0; i < m_presult->size(); ++i) + if((*m_presult)[i].matched) + ((*m_presult)[i]).get_captures().push_back((*m_presult)[i]); + } +#endif + return true; +} + /**************************************************************************** Unwind and associated proceedures follow, these perform what normal stack @@ -869,7 +991,7 @@ unwinding does in the recursive implementation. template bool perl_matcher::unwind(bool have_match) { - static unwind_proc_type const s_unwind_table[14] = + static unwind_proc_type const s_unwind_table[18] = { &perl_matcher::unwind_end, &perl_matcher::unwind_paren, @@ -885,6 +1007,8 @@ bool perl_matcher::unwind(bool have_match) &perl_matcher::unwind_short_set_repeat, &perl_matcher::unwind_long_set_repeat, &perl_matcher::unwind_non_greedy_repeat, + &perl_matcher::unwind_recursion, + &perl_matcher::unwind_recursion_pop, }; m_recursive_result = have_match; @@ -1388,6 +1512,106 @@ bool perl_matcher::unwind_non_greedy_repeat(boo return r; } +template +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; + } + boost::re_detail::inplace_destroy(pmp++); + m_backup_state = pmp; + return true; +} + +template +bool perl_matcher::unwind_recursion_pop(bool r) +{ + saved_state* pmp = static_cast(m_backup_state); + if(!r) + { + --recursion_stack_position; + } + boost::re_detail::inplace_destroy(pmp++); + m_backup_state = pmp; + return true; +} + +template +void perl_matcher::push_recursion_pop() +{ + saved_state* pmp = static_cast(m_backup_state); + --pmp; + if(pmp < m_stack_base) + { + extend_stack(); + pmp = static_cast(m_backup_state); + --pmp; + } + (void) new (pmp)saved_state(15); + m_backup_state = pmp; +} +/* +template +bool perl_matcher::unwind_parenthesis_pop(bool r) +{ + saved_state* pmp = static_cast(m_backup_state); + if(!r) + { + --parenthesis_stack_position; + } + boost::re_detail::inplace_destroy(pmp++); + m_backup_state = pmp; + return true; +} + +template +void perl_matcher::push_parenthesis_pop() +{ + saved_state* pmp = static_cast(m_backup_state); + --pmp; + if(pmp < m_stack_base) + { + extend_stack(); + pmp = static_cast(m_backup_state); + --pmp; + } + (void) new (pmp)saved_state(16); + m_backup_state = pmp; +} + +template +bool perl_matcher::unwind_parenthesis_push(bool r) +{ + saved_position* pmp = static_cast*>(m_backup_state); + if(!r) + { + parenthesis_stack[parenthesis_stack_position++] = pmp->position; + } + boost::re_detail::inplace_destroy(pmp++); + m_backup_state = pmp; + return true; +} + +template +inline void perl_matcher::push_parenthesis_push(BidiIterator p) +{ + saved_position* pmp = static_cast*>(m_backup_state); + --pmp; + if(pmp < m_stack_base) + { + extend_stack(); + pmp = static_cast*>(m_backup_state); + --pmp; + } + (void) new (pmp)saved_position(0, p, 17); + m_backup_state = pmp; +} +*/ } // namespace re_detail } // namespace boost diff --git a/include/boost/regex/v4/perl_matcher_recursive.hpp b/include/boost/regex/v4/perl_matcher_recursive.hpp index bc0fe958..48f08b7b 100644 --- a/include/boost/regex/v4/perl_matcher_recursive.hpp +++ b/include/boost/regex/v4/perl_matcher_recursive.hpp @@ -60,7 +60,7 @@ public: template bool perl_matcher::match_all_states() { - static matcher_proc_type const s_match_vtable[29] = + static matcher_proc_type const s_match_vtable[30] = { (&perl_matcher::match_startmark), &perl_matcher::match_endmark, @@ -95,6 +95,7 @@ bool perl_matcher::match_all_states() &perl_matcher::match_backstep, &perl_matcher::match_assert_backref, &perl_matcher::match_toggle_case, + &perl_matcher::match_recursion, }; if(state_count > max_state_count) @@ -117,6 +118,7 @@ template bool perl_matcher::match_startmark() { int index = static_cast(pstate)->index; + icase = static_cast(pstate)->icase; bool r = true; switch(index) { @@ -848,6 +850,127 @@ bool perl_matcher::backtrack_till_match(std::si #endif } +template +bool perl_matcher::match_recursion() +{ + BOOST_ASSERT(pstate->type == syntax_element_recurse); + // + // Set new call stack: + // + if(recursion_stack_position >= static_cast(sizeof(recursion_stack)/sizeof(recursion_stack[0]))) + { + return false; + } + 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; + pstate = static_cast(pstate)->alt.p; + recursion_stack[recursion_stack_position].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 + next_count = &r; + bool result = match_all_states(); + next_count = saved; + + if(!result) + { + --recursion_stack_position; + next_count = recursion_stack[recursion_stack_position].repeater_stack; + *m_presult = recursion_stack[recursion_stack_position].results; + return false; + } + return true; +} + +template +bool perl_matcher::match_endmark() +{ + int index = static_cast(pstate)->index; + icase = static_cast(pstate)->icase; + if(index > 0) + { + if((m_match_flags & match_nosubs) == 0) + { + m_presult->set_second(position, index); + } + if(recursion_stack_position) + { + if(index == recursion_stack[recursion_stack_position-1].id) + { + --recursion_stack_position; + recursion_info saved = recursion_stack[recursion_stack_position]; + 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; + next_count = saved_count; + return false; + } + } + } + } + else if((index < 0) && (index != -4)) + { + // matched forward lookahead: + pstate = 0; + return true; + } + pstate = pstate ? pstate->next.p : 0; + return true; +} + +template +bool perl_matcher::match_match() +{ + if(recursion_stack_position) + { + 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; + if(!match_all_states()) + { + recursion_stack[recursion_stack_position].preturn_address = saved_state; + recursion_stack[recursion_stack_position].results = *m_presult; + ++recursion_stack_position; + return false; + } + return true; + } + if((m_match_flags & match_not_null) && (position == (*m_presult)[0].first)) + return false; + if((m_match_flags & match_all) && (position != last)) + return false; + if((m_match_flags & regex_constants::match_not_initial_null) && (position == search_base)) + return false; + m_presult->set_second(position); + pstate = 0; + m_has_found_match = true; + if((m_match_flags & match_posix) == match_posix) + { + m_result.maybe_assign(*m_presult); + if((m_match_flags & match_any) == 0) + return false; + } +#ifdef BOOST_REGEX_MATCH_EXTRA + if(match_extra & m_match_flags) + { + for(unsigned i = 0; i < m_presult->size(); ++i) + if((*m_presult)[i].matched) + ((*m_presult)[i]).get_captures().push_back((*m_presult)[i]); + } +#endif + return true; +} + + + } // namespace re_detail } // namespace boost #ifdef BOOST_MSVC diff --git a/include/boost/regex/v4/states.hpp b/include/boost/regex/v4/states.hpp index 44dd2b4a..efdebbe5 100644 --- a/include/boost/regex/v4/states.hpp +++ b/include/boost/regex/v4/states.hpp @@ -118,7 +118,9 @@ enum syntax_element_type syntax_element_backstep = syntax_element_long_set_rep + 1, // an assertion that a mark was matched: syntax_element_assert_backref = syntax_element_backstep + 1, - syntax_element_toggle_case = syntax_element_assert_backref + 1 + syntax_element_toggle_case = syntax_element_assert_backref + 1, + // a recursive expression: + syntax_element_recurse = syntax_element_toggle_case + 1 }; #ifdef BOOST_REGEX_DEBUG @@ -156,6 +158,7 @@ struct re_brace : public re_syntax_base // The index to match, can be zero (don't mark the sub-expression) // or negative (for perl style (?...) extentions): int index; + bool icase; }; /*** struct re_dot ************************************************** diff --git a/test/regress/main.cpp b/test/regress/main.cpp index 064a19dd..e741db50 100644 --- a/test/regress/main.cpp +++ b/test/regress/main.cpp @@ -72,6 +72,7 @@ void run_tests() RUN_TESTS(test_unicode); RUN_TESTS(test_pocessive_repeats); RUN_TESTS(test_mark_resets); + RUN_TESTS(test_recursion); } int cpp_main(int /*argc*/, char * /*argv*/[]) diff --git a/test/regress/test.hpp b/test/regress/test.hpp index 0e6b88f9..9e271288 100644 --- a/test/regress/test.hpp +++ b/test/regress/test.hpp @@ -260,5 +260,6 @@ void test_overloads(); void test_unicode(); void test_pocessive_repeats(); void test_mark_resets(); +void test_recursion(); #endif diff --git a/test/regress/test_non_greedy_repeats.cpp b/test/regress/test_non_greedy_repeats.cpp index c9935bd8..3196f5ac 100644 --- a/test/regress/test_non_greedy_repeats.cpp +++ b/test/regress/test_non_greedy_repeats.cpp @@ -41,6 +41,5 @@ void test_non_greedy_repeats() TEST_REGEX_SEARCH("xx[/-]{0,2}?(?:[+-][0-9])??\\z", perl, "xx--", match_default, make_array(0, 4, -2, -2)); TEST_INVALID_REGEX("a{1,3}{1}", perl); TEST_INVALID_REGEX("a**", perl); - //TEST_INVALID_REGEX("a++", perl); } diff --git a/test/regress/test_perl_ex.cpp b/test/regress/test_perl_ex.cpp index 2cb5f208..764d0c43 100644 --- a/test/regress/test_perl_ex.cpp +++ b/test/regress/test_perl_ex.cpp @@ -665,14 +665,173 @@ void test_mark_resets() TEST_REGEX_SEARCH("(?|(abc)|(xyz))\\1", perl, "xyzxyz", match_default, make_array(0, 6, 0, 3, -2, -2)); TEST_REGEX_SEARCH("(?|(abc)|(xyz))\\1", perl, "abcxyz", match_default, make_array(-2, -2)); TEST_REGEX_SEARCH("(?|(abc)|(xyz))\\1", perl, "xyzabc", match_default, make_array(-2, -2)); - //TEST_REGEX_SEARCH("(?|(abc)|(xyz))(?1)", perl, "abcabc", match_default, make_array(0, 6, 0, 3, -2, -2)); - //TEST_REGEX_SEARCH("(?|(abc)|(xyz))(?1)", perl, "xyzabc", match_default, make_array(0, 6, 0, 3, -2, -2)); - //TEST_REGEX_SEARCH("(?|(abc)|(xyz))(?1)", perl, "xyzxyz", match_default, make_array(-2, -2)); - //TEST_REGEX_SEARCH("^X(?5)(a)(?|(b)|(q))(c)(d)(Y)", perl, "XYabcdY", match_default, make_array(0, 7, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, -2, -2)); - //TEST_INVALID_REGEX("^X(?5)(a)(?|(b)|(q))(c)(d)Y", perl); + TEST_REGEX_SEARCH("(?|(abc)|(xyz))(?1)", perl, "abcabc", match_default, make_array(0, 6, 0, 3, -2, -2)); + TEST_REGEX_SEARCH("(?|(abc)|(xyz))(?1)", perl, "xyzabc", match_default, make_array(0, 6, 0, 3, -2, -2)); + TEST_REGEX_SEARCH("(?|(abc)|(xyz))(?1)", perl, "xyzxyz", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("^X(?5)(a)(?|(b)|(q))(c)(d)(Y)", perl, "XYabcdY", match_default, make_array(0, 7, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, -2, -2)); + TEST_INVALID_REGEX("^X(?5)(a)(?|(b)|(q))(c)(d)Y", perl); //TEST_REGEX_SEARCH("^X(?&N)(a)(?|(b)|(q))(c)(d)(?Y)", perl, "XYabcdY", match_default, make_array(0, 7, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, -2, -2)); - //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, 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, 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, 6, 7, -2, -2)); + 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)); +} + +void test_recursion() +{ + using namespace boost::regex_constants; + + TEST_INVALID_REGEX("(a(?2)b)", perl); + TEST_INVALID_REGEX("(a(?1b))", perl); + TEST_REGEX_SEARCH("(a(?1)b)", perl, "abc", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("(a(?1)+b)", perl, "abc", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("^([^()]|\\((?1)*\\))*$", perl, "abc", match_default, make_array(0, 3, 2, 3, -2, -2)); + TEST_REGEX_SEARCH("^([^()]|\\((?1)*\\))*$", perl, "a(b)c", match_default, make_array(0, 5, 4, 5, -2, -2)); + TEST_REGEX_SEARCH("^([^()]|\\((?1)*\\))*$", perl, "a(b(c))d", match_default, make_array(0, 8, 7, 8, -2, -2)); + TEST_REGEX_SEARCH("^([^()]|\\((?1)*\\))*$", perl, "a(b(c)d", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("^>abc>([^()]|\\((?1)*\\))*abc>123abc>([^()]|\\((?1)*\\))*abc>1(2)3abc>([^()]|\\((?1)*\\))*abc>(1(2)3)P)", perl|icase, "abcPXP123", match_default, make_array(3, 6, 5, 6, -2, -2)); + TEST_REGEX_SEARCH("(abc)(?i:(?1))", perl|icase, "defabcabcxyz", match_default, make_array(3, 9, 3, 6, -2, -2)); + TEST_REGEX_SEARCH("(abc)(?i:(?1))", perl, "DEFabcABCXYZ", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("(abc)(?i:(?1)abc)", perl, "DEFabcABCABCXYZ", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("(abc)(?:(?i)(?1))", perl, "defabcabcxyz", match_default, make_array(3, 9, 3, 6, -2, -2)); + TEST_REGEX_SEARCH("(abc)(?:(?i)(?1))", perl, "DEFabcABCXYZ", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("(?|(abc)|(xyz))(?1)", perl, "abcabc", match_default, make_array(0, 6, 0, 3, -2, -2)); + TEST_REGEX_SEARCH("(?|(abc)|(xyz))(?1)", perl, "xyzabc", match_default, make_array(0, 6, 0, 3, -2, -2)); + TEST_REGEX_SEARCH("(?|(abc)|(xyz))(?1)", perl, "xyzxyz", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("(?1)[]a()b](abc)", perl, "abcbabc", match_default, make_array(0, 7, 4, 7, -2, -2)); + TEST_REGEX_SEARCH("(?1)[]a()b](abc)", perl, "abcXabc", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("(?1)[^]a()b](abc)", perl, "abcXabc", match_default, make_array(0, 7, 4, 7, -2, -2)); + TEST_REGEX_SEARCH("(?1)[^]a()b](abc)", perl, "abcbabc", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("(?2)[]a()b](abc)(xyz)", perl, "xyzbabcxyz", match_default, make_array(0, 10, 4, 7, 7, 10, -2, -2)); + TEST_REGEX_SEARCH("^X(?5)(a)(?|(b)|(q))(c)(d)(Y)", perl, "XYabcdY", match_default, make_array(0, 7, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, -2, -2)); + TEST_INVALID_REGEX("^X(?5)(a)(?|(b)|(q))(c)(d)Y", perl); + 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_W(L"\\x{100}*(\\d+|\"(?1)\")", perl, L"1234", match_default, make_array(0, 4, 0, 4, -2, -2)); + TEST_REGEX_SEARCH_W(L"\\x{100}*(\\d+|\"(?1)\")", perl, L"\"1234\"", match_default, make_array(0, 6, 0, 6, -2, -2)); + TEST_REGEX_SEARCH_W(L"\\x{100}*(\\d+|\"(?1)\")", perl, L"\x100"L"1234", match_default, make_array(0, 5, 1, 5, -2, -2)); + TEST_REGEX_SEARCH_W(L"\\x{100}*(\\d+|\"(?1)\")", perl, L"\"\x100"L"1234\"", match_default, make_array(1, 6, 2, 6, -2, -2)); + TEST_REGEX_SEARCH_W(L"\\x{100}*(\\d+|\"(?1)\")", perl, L"\x100\x100"L"12ab", match_default, make_array(0, 4, 2, 4, -2, -2)); + TEST_REGEX_SEARCH_W(L"\\x{100}*(\\d+|\"(?1)\")", perl, L"\x100\x100"L"\"12\"", match_default, make_array(0, 6, 2, 6, -2, -2)); + TEST_REGEX_SEARCH_W(L"\\x{100}*(\\d+|\"(?1)\")", perl, L"\x100\x100"L"abcd", match_default, make_array(-2, -2)); + + TEST_REGEX_SEARCH("(ab|c)(?-1)", perl, "abc", match_default, make_array(0, 3, 0, 2, -2, -2)); + TEST_REGEX_SEARCH("xy(?+1)(abc)", perl, "xyabcabc", match_default, make_array(0, 8, 5, 8, -2, -2)); + TEST_REGEX_SEARCH("xy(?+1)(abc)", perl, "xyabc", match_default, make_array(-2, -2)); + TEST_INVALID_REGEX("x(?-0)y", perl); + TEST_INVALID_REGEX("x(?-1)y", perl); + TEST_INVALID_REGEX("x(?+0)y", perl); + TEST_INVALID_REGEX("x(?+1)y", perl); + TEST_REGEX_SEARCH("^(?+1)(?x|y){0}z", perl, "xzxx", match_default, make_array(0, 2, -1, -1, -2, -2)); + TEST_REGEX_SEARCH("^(?+1)(?x|y){0}z", perl, "yzyy", match_default, make_array(0, 2, -1, -1, -2, -2)); + TEST_REGEX_SEARCH("^(?+1)(?x|y){0}z", perl, "xxz", match_default, make_array(-2, -2)); + + // Now recurse to sub-expression zero: + TEST_REGEX_SEARCH("\\((?:(?>[^()]+)|(?0))*\\)", perl, "(abcd)", match_default, make_array(0, 6, -2, -2)); + TEST_REGEX_SEARCH("\\((?:(?>[^()]+)|(?0))*\\)", perl, "(abcd)xyz", match_default, make_array(0, 6, -2, -2)); + TEST_REGEX_SEARCH("\\((?:(?>[^()]+)|(?0))*\\)", perl, "xyz(abcd)", match_default, make_array(3, 9, -2, -2)); + TEST_REGEX_SEARCH("\\((?:(?>[^()]+)|(?0))*\\)", perl, "(ab(xy)cd)pqr", match_default, make_array(0, 10, -2, -2)); + TEST_REGEX_SEARCH("\\((?:(?>[^()]+)|(?0))*\\)", perl, "(ab(xycd)pqr", match_default, make_array(3, 9, -2, -2)); + TEST_REGEX_SEARCH("\\((?:(?>[^()]+)|(?0))*\\)", perl, "() abc ()", match_default, make_array(0, 2, -2, 7, 9, -2, -2)); + TEST_REGEX_SEARCH("\\((?:(?>[^()]+)|(?0))*\\)", perl, "12(abcde(fsh)xyz(foo(bar))lmno)89", match_default, make_array(2, 31, -2, -2)); + TEST_REGEX_SEARCH("\\((?:(?>[^()]+)|(?0))*\\)", perl, "abcd", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("\\((?:(?>[^()]+)|(?0))*\\)", perl, "abcd)", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("\\((?:(?>[^()]+)|(?0))*\\)", perl, "(abcd", match_default, make_array(-2, -2)); + + TEST_REGEX_SEARCH("\\( ( (?>[^()]+) | (?0) )* \\) ", perl|mod_x, "(ab(xy)cd)pqr", match_default, make_array(0, 10, 7, 9, -2, -2)); + TEST_REGEX_SEARCH("\\( ( (?>[^()]+) | (?0) )* \\) ", perl|mod_x, "1(abcd)(x(y)z)pqr", match_default, make_array(1, 7, 2, 6, -2, 7, 14, 12, 13, -2, -2)); + TEST_REGEX_SEARCH("\\( (?: (?>[^()]+) | (?0) ) \\) ", perl|mod_x, "(abcd)", match_default, make_array(0, 6, -2, -2)); + TEST_REGEX_SEARCH("\\( (?: (?>[^()]+) | (?0) ) \\) ", perl|mod_x, "(ab(xy)cd)", match_default, make_array(3, 7, -2, -2)); + TEST_REGEX_SEARCH("\\( (?: (?>[^()]+) | (?0) ) \\) ", perl|mod_x, "(a(b(c)d)e)", match_default, make_array(4, 7, -2, -2)); + TEST_REGEX_SEARCH("\\( (?: (?>[^()]+) | (?0) ) \\) ", perl|mod_x, "((ab))", match_default, make_array(0, 6, -2, -2)); + TEST_REGEX_SEARCH("\\( (?: (?>[^()]+) | (?0) ) \\) ", perl|mod_x, "()", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("\\( (?: (?>[^()]+) | (?0) )? \\) ", perl|mod_x, "()", match_default, make_array(0, 2, -2, -2)); + TEST_REGEX_SEARCH("\\( (?: (?>[^()]+) | (?0) )? \\) ", perl|mod_x, "12(abcde(fsh)xyz(foo(bar))lmno)89", match_default, make_array(8, 13, -2, 20, 25, -2, -2)); + TEST_REGEX_SEARCH("\\( ( (?>[^()]+) | (?0) )* \\) ", perl|mod_x, "(ab(xy)cd)", match_default, make_array(0, 10, 7, 9, -2, -2)); + TEST_REGEX_SEARCH("\\( ( ( (?>[^()]+) | (?0) )* ) \\) ", perl|mod_x, "(ab(xy)cd)", match_default, make_array(0, 10, 1, 9, 7, 9, -2, -2)); + TEST_REGEX_SEARCH("\\( (123)? ( ( (?>[^()]+) | (?0) )* ) \\) ", perl|mod_x, "(ab(xy)cd)", match_default, make_array(0, 10, -1, -1, 1, 9, 7, 9, -2, -2)); + TEST_REGEX_SEARCH("\\( (123)? ( ( (?>[^()]+) | (?0) )* ) \\) ", perl|mod_x, "(123ab(xy)cd)", match_default, make_array(0, 13, 1, 4, 4, 12, 10, 12, -2, -2)); + TEST_REGEX_SEARCH("\\( ( (123)? ( (?>[^()]+) | (?0) )* ) \\) ", perl|mod_x, "(ab(xy)cd)", match_default, make_array(0, 10, 1, 9, -1, -1, 7, 9, -2, -2)); + TEST_REGEX_SEARCH("\\( ( (123)? ( (?>[^()]+) | (?0) )* ) \\) ", perl|mod_x, "(123ab(xy)cd)", match_default, make_array(0, 13, 1, 12, 1, 4, 10, 12, -2, -2)); + TEST_REGEX_SEARCH("\\( (((((((((( ( (?>[^()]+) | (?0) )* )))))))))) \\) ", perl|mod_x, "(ab(xy)cd)", match_default, make_array(0, 10, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 7, 9, -2, -2)); + TEST_REGEX_SEARCH("\\( ( ( (?>[^()<>]+) | ((?>[^()]+)) | (?0) )* ) \\) ", perl|mod_x, "(abcd(xyz

    qrs)123)", match_default, make_array(0, 20, 1, 19, 16, 19, -1, -1, -2, -2)); + TEST_REGEX_SEARCH("\\( ( ( (?>[^()]+) | ((?0)) )* ) \\) ", perl|mod_x, "(ab(cd)ef)", match_default, make_array(0, 10, 1, 9, 7, 9, 3, 7, -2, -2)); + TEST_REGEX_SEARCH("\\( ( ( (?>[^()]+) | ((?0)) )* ) \\) ", perl|mod_x, "(ab(cd(ef)gh)ij)", match_default, make_array(0, 16, 1, 15, 13, 15, 3, 13, -2, -2)); + // Again with (?R): + TEST_REGEX_SEARCH("\\((?:(?>[^()]+)|(?R))*\\)", perl, "(abcd)", match_default, make_array(0, 6, -2, -2)); + TEST_REGEX_SEARCH("\\((?:(?>[^()]+)|(?R))*\\)", perl, "(abcd)xyz", match_default, make_array(0, 6, -2, -2)); + TEST_REGEX_SEARCH("\\((?:(?>[^()]+)|(?R))*\\)", perl, "xyz(abcd)", match_default, make_array(3, 9, -2, -2)); + TEST_REGEX_SEARCH("\\((?:(?>[^()]+)|(?R))*\\)", perl, "(ab(xy)cd)pqr", match_default, make_array(0, 10, -2, -2)); + TEST_REGEX_SEARCH("\\((?:(?>[^()]+)|(?R))*\\)", perl, "(ab(xycd)pqr", match_default, make_array(3, 9, -2, -2)); + TEST_REGEX_SEARCH("\\((?:(?>[^()]+)|(?R))*\\)", perl, "() abc ()", match_default, make_array(0, 2, -2, 7, 9, -2, -2)); + TEST_REGEX_SEARCH("\\((?:(?>[^()]+)|(?R))*\\)", perl, "12(abcde(fsh)xyz(foo(bar))lmno)89", match_default, make_array(2, 31, -2, -2)); + TEST_REGEX_SEARCH("\\((?:(?>[^()]+)|(?R))*\\)", perl, "abcd", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("\\((?:(?>[^()]+)|(?R))*\\)", perl, "abcd)", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("\\((?:(?>[^()]+)|(?R))*\\)", perl, "(abcd", match_default, make_array(-2, -2)); + + TEST_REGEX_SEARCH("\\( ( (?>[^()]+) | (?R) )* \\) ", perl|mod_x, "(ab(xy)cd)pqr", match_default, make_array(0, 10, 7, 9, -2, -2)); + TEST_REGEX_SEARCH("\\( ( (?>[^()]+) | (?R) )* \\) ", perl|mod_x, "1(abcd)(x(y)z)pqr", match_default, make_array(1, 7, 2, 6, -2, 7, 14, 12, 13, -2, -2)); + TEST_REGEX_SEARCH("\\( (?: (?>[^()]+) | (?R) ) \\) ", perl|mod_x, "(abcd)", match_default, make_array(0, 6, -2, -2)); + TEST_REGEX_SEARCH("\\( (?: (?>[^()]+) | (?R) ) \\) ", perl|mod_x, "(ab(xy)cd)", match_default, make_array(3, 7, -2, -2)); + TEST_REGEX_SEARCH("\\( (?: (?>[^()]+) | (?R) ) \\) ", perl|mod_x, "(a(b(c)d)e)", match_default, make_array(4, 7, -2, -2)); + TEST_REGEX_SEARCH("\\( (?: (?>[^()]+) | (?R) ) \\) ", perl|mod_x, "((ab))", match_default, make_array(0, 6, -2, -2)); + TEST_REGEX_SEARCH("\\( (?: (?>[^()]+) | (?R) ) \\) ", perl|mod_x, "()", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("\\( (?: (?>[^()]+) | (?R) )? \\) ", perl|mod_x, "()", match_default, make_array(0, 2, -2, -2)); + TEST_REGEX_SEARCH("\\( (?: (?>[^()]+) | (?R) )? \\) ", perl|mod_x, "12(abcde(fsh)xyz(foo(bar))lmno)89", match_default, make_array(8, 13, -2, 20, 25, -2, -2)); + TEST_REGEX_SEARCH("\\( ( (?>[^()]+) | (?R) )* \\) ", perl|mod_x, "(ab(xy)cd)", match_default, make_array(0, 10, 7, 9, -2, -2)); + TEST_REGEX_SEARCH("\\( ( ( (?>[^()]+) | (?R) )* ) \\) ", perl|mod_x, "(ab(xy)cd)", match_default, make_array(0, 10, 1, 9, 7, 9, -2, -2)); + TEST_REGEX_SEARCH("\\( (123)? ( ( (?>[^()]+) | (?R) )* ) \\) ", perl|mod_x, "(ab(xy)cd)", match_default, make_array(0, 10, -1, -1, 1, 9, 7, 9, -2, -2)); + TEST_REGEX_SEARCH("\\( (123)? ( ( (?>[^()]+) | (?R) )* ) \\) ", perl|mod_x, "(123ab(xy)cd)", match_default, make_array(0, 13, 1, 4, 4, 12, 10, 12, -2, -2)); + TEST_REGEX_SEARCH("\\( ( (123)? ( (?>[^()]+) | (?R) )* ) \\) ", perl|mod_x, "(ab(xy)cd)", match_default, make_array(0, 10, 1, 9, -1, -1, 7, 9, -2, -2)); + TEST_REGEX_SEARCH("\\( ( (123)? ( (?>[^()]+) | (?R) )* ) \\) ", perl|mod_x, "(123ab(xy)cd)", match_default, make_array(0, 13, 1, 12, 1, 4, 10, 12, -2, -2)); + TEST_REGEX_SEARCH("\\( (((((((((( ( (?>[^()]+) | (?R) )* )))))))))) \\) ", perl|mod_x, "(ab(xy)cd)", match_default, make_array(0, 10, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 7, 9, -2, -2)); + TEST_REGEX_SEARCH("\\( ( ( (?>[^()<>]+) | ((?>[^()]+)) | (?R) )* ) \\) ", perl|mod_x, "(abcd(xyz

    qrs)123)", match_default, make_array(0, 20, 1, 19, 16, 19, -1, -1, -2, -2)); + TEST_REGEX_SEARCH("\\( ( ( (?>[^()]+) | ((?R)) )* ) \\) ", perl|mod_x, "(ab(cd)ef)", match_default, make_array(0, 10, 1, 9, 7, 9, 3, 7, -2, -2)); + TEST_REGEX_SEARCH("\\( ( ( (?>[^()]+) | ((?R)) )* ) \\) ", perl|mod_x, "(ab(cd(ef)gh)ij)", match_default, make_array(0, 16, 1, 15, 13, 15, 3, 13, -2, -2)); + // And some extra cases: + TEST_REGEX_SEARCH("x(ab|(bc|(de|(?R))))", perl|mod_x, "xab", match_default, make_array(0, 3, 1, 3, -1, -1, -1, -1, -2, -2)); + TEST_REGEX_SEARCH("x(ab|(bc|(de|(?R))))", perl|mod_x, "xbc", match_default, make_array(0, 3, 1, 3, 1, 3, -1, -1, -2, -2)); + TEST_REGEX_SEARCH("x(ab|(bc|(de|(?R))))", perl|mod_x, "xde", match_default, make_array(0, 3, 1, 3, 1, 3, 1, 3, -2, -2)); + TEST_REGEX_SEARCH("x(ab|(bc|(de|(?R))))", perl|mod_x, "xxab", match_default, make_array(0, 4, 1, 4, 1, 4, 1, 4, -2, -2)); + TEST_REGEX_SEARCH("x(ab|(bc|(de|(?R))))", perl|mod_x, "xxxab", match_default, make_array(0, 5, 1, 5, 1, 5, 1, 5, -2, -2)); + TEST_REGEX_SEARCH("x(ab|(bc|(de|(?R))))", perl|mod_x, "xyab", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("[^()]*(?:\\((?R)\\)[^()]*)*", perl|mod_x, "(this(and)that)", match_default, make_array(0, 15, -2, 15, 15, -2, -2)); + TEST_REGEX_SEARCH("[^()]*(?:\\((?R)\\)[^()]*)*", perl|mod_x, "(this(and)that)stuff", match_default, make_array(0, 20, -2, 20, 20, -2, -2)); + TEST_REGEX_SEARCH("[^()]*(?:\\((?>(?R))\\)[^()]*)*", perl|mod_x, "(this(and)that)", match_default, make_array(0, 15, -2, 15, 15, -2, -2)); + + // More complex cases involving (?(R): + TEST_REGEX_SEARCH("< (?: (?(R) \\d++ | [^<>]*+) | (?R)) * >", perl|mod_x, "<>", match_default, make_array(0, 2, -2, -2)); + TEST_REGEX_SEARCH("< (?: (?(R) \\d++ | [^<>]*+) | (?R)) * >", perl|mod_x, "", match_default, make_array(0, 6, -2, -2)); + TEST_REGEX_SEARCH("< (?: (?(R) \\d++ | [^<>]*+) | (?R)) * >", perl|mod_x, " hij>", match_default, make_array(0, 15, -2, -2)); + TEST_REGEX_SEARCH("< (?: (?(R) \\d++ | [^<>]*+) | (?R)) * >", perl|mod_x, " hij>", match_default, make_array(5, 10, -2, -2)); + TEST_REGEX_SEARCH("< (?: (?(R) \\d++ | [^<>]*+) | (?R)) * >", perl|mod_x, "def>", match_default, make_array(0, 10, -2, -2)); + TEST_REGEX_SEARCH("< (?: (?(R) \\d++ | [^<>]*+) | (?R)) * >", perl|mod_x, "", match_default, make_array(4, 6, -2, -2)); + TEST_REGEX_SEARCH("< (?: (?(R) \\d++ | [^<>]*+) | (?R)) * >", perl|mod_x, " Date: Sun, 26 Jul 2009 00:49:56 +0000 Subject: [PATCH 69/72] Copyrights on CMakeLists.txt to keep them from clogging up the inspect reports. This is essentially the same commit as r55095 on the release branch. [SVN r55159] --- CMakeLists.txt | 6 ++++++ src/CMakeLists.txt | 6 ++++++ test/CMakeLists.txt | 6 ++++++ 3 files changed, 18 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 227c351f..0820f6c2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,3 +1,9 @@ +# +# 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 diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index be9383e1..59e1b7c4 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,3 +1,9 @@ +# +# 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) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 3de3d9e3..3da3c749 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -1,3 +1,9 @@ +# +# 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? From 66b633b417647037d74f8615609be0cb221fc7fc Mon Sep 17 00:00:00 2001 From: John Maddock Date: Wed, 29 Jul 2009 17:11:56 +0000 Subject: [PATCH 70/72] Added support for (?(DEFINE) blocks and updated the docs accordingly. Added support for ICU libraries which may be named icui18n.lib on some Win32 platforms. [SVN r55267] --- build/Jamfile.v2 | 4 + doc/history.qbk | 5 + .../background_information/examples.html | 6 +- .../background_information/history.html | 21 ++- .../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 | 102 ++++++++------- doc/html/boost_regex/unicode.html | 4 +- doc/html/index.html | 4 +- doc/syntax_perl.qbk | 2 + include/boost/regex/v4/basic_regex.hpp | 50 +++++-- .../boost/regex/v4/basic_regex_creator.hpp | 60 ++++++--- include/boost/regex/v4/basic_regex_parser.hpp | 123 +++++++++++++++++- .../boost/regex/v4/perl_matcher_common.hpp | 15 ++- test/regress/test_perl_ex.cpp | 61 ++++++++- 39 files changed, 496 insertions(+), 219 deletions(-) diff --git a/build/Jamfile.v2 b/build/Jamfile.v2 index ca7f801f..a914ad5b 100644 --- a/build/Jamfile.v2 +++ b/build/Jamfile.v2 @@ -79,6 +79,10 @@ rule check-icu-config ( ) { gICU_IN_LIB = icuin ; } + else if [ GLOB $(dir)/lib : icui18n.* ] + { + gICU_IN_LIB = icui18n ; + } else if [ GLOB $(dir)/lib64 : libicui18n.* ] { gICU_IN_LIB = icui18n ; diff --git a/doc/history.qbk b/doc/history.qbk index 05a9710e..360f8922 100644 --- a/doc/history.qbk +++ b/doc/history.qbk @@ -8,6 +8,11 @@ [section:history History] +[h4 Boost 1.40] + +* Added support for many Perl 5.10 syntax elements including named +sub-expressions, branch resets and recursive regular expressions. + [h4 Boost 1.38] * [*Breaking change]: empty expressions, and empty alternatives are now diff --git a/doc/html/boost_regex/background_information/examples.html b/doc/html/boost_regex/background_information/examples.html index dd6786c5..39bd0df1 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 f04aecc4..084381fc 100644 --- a/doc/html/boost_regex/background_information/history.html +++ b/doc/html/boost_regex/background_information/history.html @@ -25,8 +25,17 @@ +
    + + 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
    @@ -53,7 +62,7 @@
    - + Boost 1.34
    @@ -76,7 +85,7 @@
    - + Boost 1.33.1
    @@ -146,7 +155,7 @@
    - + Boost 1.33.0
    @@ -201,7 +210,7 @@
    - + Boost 1.32.1
    @@ -209,7 +218,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 d6af3988..eb901bae 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 115e5ce3..31c09f0d 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 1b9c755b..c6345106 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 a927f24b..90053a97 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 ac178cc9..3f61840d 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 6ab5beae..f4b5f922 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 eb7cb84c..30d3449c 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 1dcd410c..3d051b83 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 fab2dea1..8e482ee8 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 26ce70d1..331567be 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 941bdcb9..102543d0 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 2d1c346c..6e8f7c0b 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>
    @@ -166,7 +166,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 8a5e4325..4ea31468 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 f1fd4fed..892034a2 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 4a6b3297..6148023b 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 a2df7d3d..54858bc8 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 d8b73499..6424b99c 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 9930174b..2a101c5e 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 5f432601..9b1a7108 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 650c1178..70a65308 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 charT>
    @@ -163,7 +163,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 282023dd..44faddee 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 864905fd..8728ee16 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 eeb38e8e..cccf4917 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 becc2a20..999f0ce4 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 787c411f..6821fd0d 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 eeb9ef51..0c6e6604 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 46aa35e1..cc7a368a 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
    @@ -1311,9 +1311,15 @@ 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
    @@ -1348,7 +1354,7 @@

    - + What gets matched

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

    - + Variations

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

    - + Options

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

    - + Pattern Modifiers

    @@ -1556,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 5abbf2a0..94b8709f 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 51da76e4..cb420c49 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 16, 2009 at 15:54:11 GMT

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


    diff --git a/doc/syntax_perl.qbk b/doc/syntax_perl.qbk index d97eb989..716df83c 100644 --- a/doc/syntax_perl.qbk +++ b/doc/syntax_perl.qbk @@ -545,6 +545,8 @@ executes /no-pattern/. executes /no-pattern/. * [^(?(R['N])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. [h4 Operator precedence] diff --git a/include/boost/regex/v4/basic_regex.hpp b/include/boost/regex/v4/basic_regex.hpp index 617d578e..09b0467b 100644 --- a/include/boost/regex/v4/basic_regex.hpp +++ b/include/boost/regex/v4/basic_regex.hpp @@ -20,6 +20,7 @@ #define BOOST_REGEX_V4_BASIC_REGEX_HPP #include +#include #ifdef BOOST_MSVC #pragma warning(push) @@ -68,34 +69,53 @@ template class named_subexpressions_base { public: - virtual int get_id(const charT* i, const charT* j) = 0; + virtual int get_id(const charT* i, const charT* j)const = 0; + virtual int get_id(std::size_t hash)const = 0; #ifdef __GNUC__ // warning supression: virtual ~named_subexpressions_base(){} #endif }; +template +inline std::size_t hash_value_from_capture_name(Iterator i, Iterator j) +{ + std::size_t r = boost::hash_range(i, j); + r %= ((std::numeric_limits::max)() - 10001); + r += 10000; + return r; +} + template class named_subexpressions : public named_subexpressions_base { struct name { name(const charT* i, const charT* j, int idx) - : n(i, j), index(idx) {} - std::vector n; + : /*n(i, j), */ index(idx) + { + hash = hash_value_from_capture_name(i, j); + } + name(std::size_t h, int idx) + : index(idx), hash(h) + { + } + //std::vector n; int index; + std::size_t hash; bool operator < (const name& other)const { - return std::lexicographical_compare(n.begin(), n.end(), other.n.begin(), other.n.end()); + return hash < other.hash; //std::lexicographical_compare(n.begin(), n.end(), other.n.begin(), other.n.end()); } bool operator == (const name& other)const { - return n == other.n; + return hash == other.hash; //n == other.n; } void swap(name& other) { - n.swap(other.n); + //n.swap(other.n); std::swap(index, other.index); + std::swap(hash, other.hash); } }; public: @@ -105,7 +125,7 @@ public: m_sub_names.push_back(name(i, j, index)); bubble_down_one(m_sub_names.begin(), m_sub_names.end()); } - int get_id(const charT* i, const charT* j) + int get_id(const charT* i, const charT* j)const { name t(i, j, 0); typename std::vector::const_iterator pos = std::lower_bound(m_sub_names.begin(), m_sub_names.end(), t); @@ -115,6 +135,16 @@ public: } return -1; } + int get_id(std::size_t h)const + { + name t(h, 0); + typename std::vector::const_iterator pos = std::lower_bound(m_sub_names.begin(), m_sub_names.end(), t); + if((pos != m_sub_names.end()) && (*pos == t)) + { + return pos->index; + } + return -1; + } private: std::vector m_sub_names; }; @@ -126,7 +156,7 @@ class named_subexpressions_converter : public named_subexpressions_base public: named_subexpressions_converter(boost::shared_ptr > s) : m_converter(s) {} - virtual int get_id(const charT* i, const charT* j) + int get_id(const charT* i, const charT* j)const { if(i == j) return -1; @@ -138,6 +168,10 @@ public: } return m_converter->get_id(&v[0], &v[0] + v.size()); } + int get_id(std::size_t h)const + { + return m_converter->get_id(h); + } }; template diff --git a/include/boost/regex/v4/basic_regex_creator.hpp b/include/boost/regex/v4/basic_regex_creator.hpp index d6a5c09b..6f005054 100644 --- a/include/boost/regex/v4/basic_regex_creator.hpp +++ b/include/boost/regex/v4/basic_regex_creator.hpp @@ -762,29 +762,57 @@ void basic_regex_creator::fixup_recursions(re_syntax_base* state) { switch(state->type) { + case syntax_element_assert_backref: + { + // just check that the index is valid: + int id = static_cast(state)->index; + if(id < 0) + { + id = -id-1; + if(id >= 10000) + { + id = m_pdata->get_id(id); + if(id <= 0) + { + // check of sub-expression that doesn't exist: + if(0 == this->m_pdata->m_status) // update the error code if not already set + this->m_pdata->m_status = boost::regex_constants::error_bad_pattern; + // + // clear the expression, we should be empty: + // + this->m_pdata->m_expression = 0; + this->m_pdata->m_expression_len = 0; + // + // and throw if required: + // + if(0 == (this->flags() & regex_constants::no_except)) + { + std::string message = this->m_pdata->m_ptraits->error_string(boost::regex_constants::error_bad_pattern); + boost::regex_error e(message, boost::regex_constants::error_bad_pattern, 0); + e.raise(); + } + } + } + } + } + break; case syntax_element_recurse: { bool ok = false; re_syntax_base* p = base; - /* - if(static_cast(state)->alt.i == 0) + int id = static_cast(state)->alt.i; + if(id > 10000) + id = m_pdata->get_id(id); + while(p) { - ok = true; - static_cast(state)->alt.p = p; - } - else - {*/ - while(p) + if((p->type == syntax_element_startmark) && (static_cast(p)->index == id)) { - if((p->type == syntax_element_startmark) && (static_cast(p)->index == static_cast(state)->alt.i)) - { - static_cast(state)->alt.p = p; - ok = true; - break; - } - p = p->next.p; + static_cast(state)->alt.p = p; + ok = true; + break; } - //} + p = p->next.p; + } if(!ok) { // recursion to sub-expression that doesn't exist: diff --git a/include/boost/regex/v4/basic_regex_parser.hpp b/include/boost/regex/v4/basic_regex_parser.hpp index a9e77b3b..7d2f5543 100644 --- a/include/boost/regex/v4/basic_regex_parser.hpp +++ b/include/boost/regex/v4/basic_regex_parser.hpp @@ -1961,8 +1961,27 @@ insert_recursion: int v = this->m_traits.toi(m_position, m_end, 10); if(*m_position == charT('R')) { - ++m_position; - v = -this->m_traits.toi(m_position, m_end, 10); + if(++m_position == m_end) + { + fail(regex_constants::error_badrepeat, m_position - m_base); + return false; + } + if(*m_position == charT('&')) + { + const charT* base = ++m_position; + while((m_position != m_end) && (this->m_traits.syntax_type(*m_position) != regex_constants::syntax_close_mark)) + ++m_position; + if(m_position == m_end) + { + fail(regex_constants::error_badrepeat, m_position - m_base); + return false; + } + v = -static_cast(hash_value_from_capture_name(base, m_position)); + } + else + { + v = -this->m_traits.toi(m_position, m_end, 10); + } re_brace* br = static_cast(this->append_state(syntax_element_assert_backref, sizeof(re_brace))); br->index = v < 0 ? (v - 1) : 0; if(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_close_mark) @@ -1976,6 +1995,58 @@ insert_recursion: return false; } } + else if((*m_position == charT('\'')) || (*m_position == charT('<'))) + { + const charT* base = ++m_position; + while((m_position != m_end) && (*m_position != charT('>')) && (*m_position != charT('\''))) + ++m_position; + if(m_position == m_end) + { + fail(regex_constants::error_badrepeat, m_position - m_base); + return false; + } + 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)) + { + fail(regex_constants::error_badrepeat, m_position - m_base); + return false; + } + if(this->m_traits.syntax_type(*m_position) != regex_constants::syntax_close_mark) + { + fail(regex_constants::error_badrepeat, m_position - m_base); + return false; + } + if(++m_position == m_end) + { + fail(regex_constants::error_badrepeat, m_position - m_base); + return false; + } + } + else if(*m_position == charT('D')) + { + const char* def = "DEFINE"; + while(*def && (m_position != m_end) && (*m_position == charT(*def))) + ++m_position, ++def; + if((m_position == m_end) || *def) + { + fail(regex_constants::error_badrepeat, 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); + return false; + } + if(++m_position == m_end) + { + fail(regex_constants::error_badrepeat, m_position - m_base); + return false; + } + } else if(v > 0) { re_brace* br = static_cast(this->append_state(syntax_element_assert_backref, sizeof(re_brace))); @@ -2081,6 +2152,43 @@ named_capture_jump: } goto insert_recursion; } + if(*m_position == charT('&')) + { + ++m_position; + const charT* base = m_position; + while((m_position != m_end) && (this->m_traits.syntax_type(*m_position) != regex_constants::syntax_close_mark)) + ++m_position; + if(m_position == m_end) + { + fail(regex_constants::error_backref, m_position - m_base); + return false; + } + v = static_cast(hash_value_from_capture_name(base, m_position)); + goto insert_recursion; + } + if(*m_position == charT('P')) + { + ++m_position; + if(m_position == m_end) + { + fail(regex_constants::error_backref, m_position - m_base); + return false; + } + if(*m_position == charT('>')) + { + ++m_position; + const charT* base = m_position; + while((m_position != m_end) && (this->m_traits.syntax_type(*m_position) != regex_constants::syntax_close_mark)) + ++m_position; + if(m_position == m_end) + { + fail(regex_constants::error_backref, m_position - m_base); + return false; + } + v = static_cast(hash_value_from_capture_name(base, m_position)); + goto insert_recursion; + } + } // // lets assume that we have a (?imsx) group and try and parse it: // @@ -2183,9 +2291,20 @@ 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); return false; } + else + { + // We must *not* have seen an alternative inside a (DEFINE) block: + 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); + return false; + } + } // check for invalid repetition of next state: b = this->getaddress(expected_alt_point); b = this->getaddress(static_cast(b)->next.i, b); diff --git a/include/boost/regex/v4/perl_matcher_common.hpp b/include/boost/regex/v4/perl_matcher_common.hpp index a3eed0c2..fd439f84 100644 --- a/include/boost/regex/v4/perl_matcher_common.hpp +++ b/include/boost/regex/v4/perl_matcher_common.hpp @@ -714,8 +714,16 @@ inline bool perl_matcher::match_assert_backref( // return true if marked sub-expression N has been matched: int index = static_cast(pstate)->index; bool result; - if(index > 0) + if(index == 9999) { + // Magic value for a (DEFINE) block: + return false; + } + else if(index > 0) + { + // Check if index is a hash value: + if(index >= 10000) + index = re.get_data().get_id(index); // Have we matched subexpression "index"? result = (*m_presult)[index].matched; pstate = pstate->next.p; @@ -724,7 +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. - result = recursion_stack_position && ((recursion_stack[recursion_stack_position-1].id == -index-1) || (index == 0)); + 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)); pstate = pstate->next.p; } return result; diff --git a/test/regress/test_perl_ex.cpp b/test/regress/test_perl_ex.cpp index 764d0c43..3c58fa42 100644 --- a/test/regress/test_perl_ex.cpp +++ b/test/regress/test_perl_ex.cpp @@ -670,7 +670,7 @@ void test_mark_resets() TEST_REGEX_SEARCH("(?|(abc)|(xyz))(?1)", perl, "xyzxyz", match_default, make_array(-2, -2)); TEST_REGEX_SEARCH("^X(?5)(a)(?|(b)|(q))(c)(d)(Y)", perl, "XYabcdY", match_default, make_array(0, 7, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, -2, -2)); TEST_INVALID_REGEX("^X(?5)(a)(?|(b)|(q))(c)(d)Y", perl); - //TEST_REGEX_SEARCH("^X(?&N)(a)(?|(b)|(q))(c)(d)(?Y)", perl, "XYabcdY", match_default, make_array(0, 7, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, -2, -2)); + TEST_REGEX_SEARCH("^X(?&N)(a)(?|(b)|(q))(c)(d)(?Y)", perl, "XYabcdY", match_default, make_array(0, 7, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, -2, -2)); 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)); @@ -833,5 +833,64 @@ void test_recursion() TEST_REGEX_SEARCH("< (?: (?(R) \\d++ | [^<>]*+) | (?R)) * >", perl|mod_x, "", match_default, make_array(4, 6, -2, -2)); TEST_REGEX_SEARCH("< (?: (?(R) \\d++ | [^<>]*+) | (?R)) * >", perl|mod_x, "(?.)\\W*(?&one)\\W*\\k|)|(?(?.)\\W*(?&three)\\W*\\k'four'|\\W*.\\W*))\\W*$", perl|mod_x|icase, "Satan, oscillate my metallic sonatas!", match_default, make_array(0, 37, -1, -1, -1, -1, 0, 36, 0, 1, -2, -2)); + TEST_REGEX_SEARCH("(?'abc'a|b)(?d|e)(?&abc){2}", perl|mod_x, "bdaa", match_default, make_array(0, 4, 0, 1, 1, 2, -2, -2)); + TEST_REGEX_SEARCH("(?'abc'a|b)(?d|e)(?&abc){2}", perl|mod_x, "bdab", match_default, make_array(0, 4, 0, 1, 1, 2, -2, -2)); + TEST_REGEX_SEARCH("(?'abc'a|b)(?d|e)(?&abc){2}", perl|mod_x, "bddd", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("(?&abc)X(?P)", perl|mod_x, "abcPXP123", match_default, make_array(3, 6, 5, 6, -2, -2)); + TEST_REGEX_SEARCH("(?:a(?&abc)b)*(?x)", perl|mod_x, "123axbaxbaxbx456", match_default, make_array(3, 13, 12, 13 , -2, -2)); + TEST_REGEX_SEARCH("(?:a(?&abc)b){1,5}(?x)", perl|mod_x, "123axbaxbaxbx456", match_default, make_array(3, 13, 12, 13 , -2, -2)); + TEST_REGEX_SEARCH("(?:a(?&abc)b){2,5}(?x)", perl|mod_x, "123axbaxbaxbx456", match_default, make_array(3, 13, 12, 13 , -2, -2)); + TEST_REGEX_SEARCH("(?:a(?&abc)b){2,}(?x)", perl|mod_x, "123axbaxbaxbx456", match_default, make_array(3, 13, 12, 13 , -2, -2)); + TEST_INVALID_REGEX("(?)(?&)", perl|mod_x); + TEST_INVALID_REGEX("(?)(?&a)", perl|mod_x); + TEST_INVALID_REGEX("(?)(?&aaaaaaaaaaaaaaaaaaaaaaa)", perl|mod_x); + TEST_INVALID_REGEX("(?&N)[]a(?)](?abc)", perl|mod_x); + TEST_INVALID_REGEX("(?&N)[]a(?)](abc)", perl|mod_x); + TEST_INVALID_REGEX("(?&N)[]a(?)](abc)", perl|mod_x); + TEST_REGEX_SEARCH("^X(?&N)(a)(?|(b)|(q))(c)(d)(?Y)", perl|mod_x, "XYabcdY", match_default, make_array(0, 7, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, -2, -2)); + // And again with (?P> : + //TEST_REGEX_SEARCH("^\\W*(?:(?(?.)\\W*(?&one)\\W*\\k|)|(?(?.)\\W*(?&three)\\W*\\k'four'|\\W*.\\W*))\\W*$", perl|mod_x|icase, "Satan, oscillate my metallic sonatas!", match_default, make_array(0, 37, -1, -1, -1, -1, 0, 36, 0, 1, -2, -2)); + TEST_REGEX_SEARCH("(?'abc'a|b)(?d|e)(?P>abc){2}", perl|mod_x, "bdaa", match_default, make_array(0, 4, 0, 1, 1, 2, -2, -2)); + TEST_REGEX_SEARCH("(?'abc'a|b)(?d|e)(?P>abc){2}", perl|mod_x, "bdab", match_default, make_array(0, 4, 0, 1, 1, 2, -2, -2)); + TEST_REGEX_SEARCH("(?'abc'a|b)(?d|e)(?P>abc){2}", perl|mod_x, "bddd", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("(?P>abc)X(?P)", perl|mod_x, "abcPXP123", match_default, make_array(3, 6, 5, 6, -2, -2)); + TEST_REGEX_SEARCH("(?:a(?P>abc)b)*(?x)", perl|mod_x, "123axbaxbaxbx456", match_default, make_array(3, 13, 12, 13 , -2, -2)); + TEST_REGEX_SEARCH("(?:a(?P>abc)b){1,5}(?x)", perl|mod_x, "123axbaxbaxbx456", match_default, make_array(3, 13, 12, 13 , -2, -2)); + TEST_REGEX_SEARCH("(?:a(?P>abc)b){2,5}(?x)", perl|mod_x, "123axbaxbaxbx456", match_default, make_array(3, 13, 12, 13 , -2, -2)); + TEST_REGEX_SEARCH("(?:a(?P>abc)b){2,}(?x)", perl|mod_x, "123axbaxbaxbx456", match_default, make_array(3, 13, 12, 13 , -2, -2)); + TEST_INVALID_REGEX("(?)(?P>)", perl|mod_x); + TEST_INVALID_REGEX("(?)(?P>a)", perl|mod_x); + TEST_INVALID_REGEX("(?)(?P>aaaaaaaaaaaaaaaaaaaaaaa)", perl|mod_x); + TEST_INVALID_REGEX("(?P>N)[]a(?)](?abc)", perl|mod_x); + TEST_INVALID_REGEX("(?P>N)[]a(?)](abc)", perl|mod_x); + TEST_INVALID_REGEX("(?P>N)[]a(?)](abc)", perl|mod_x); + TEST_REGEX_SEARCH("^X(?P>N)(a)(?|(b)|(q))(c)(d)(?Y)", perl|mod_x, "XYabcdY", match_default, make_array(0, 7, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, -2, -2)); + // Now check (?(R&NAME) : + TEST_REGEX_SEARCH("(? (?'B' abc (?(R) (?(R&A)1) (?(R&B)2) X | (?1) (?2) (?R) ))) ", perl|mod_x, "abcabc1Xabc2XabcXabcabc", match_default, make_array(0, 17, 0, 17, 0, 17, -2, -2)); + TEST_INVALID_REGEX("(? (?'B' abc (?(R) (?(R&1)1) (?(R&B)2) X | (?1) (?2) (?R) ))) ", perl|mod_x); + TEST_REGEX_SEARCH("(?<1> (?'B' abc (?(R) (?(R&1)1) (?(R&B)2) X | (?1) (?2) (?R) ))) ", perl|mod_x, "abcabc1Xabc2XabcXabcabc", match_default, make_array(0, 17, 0, 17, 0, 17, -2, -2)); + + // Now check for named conditionals: + TEST_REGEX_SEARCH("^(?a)? (?()b|c) (?('ab')d|e)", perl|mod_x, "abd", match_default, make_array(0, 3, 0, 1, -2, -2)); + TEST_REGEX_SEARCH("^(?a)? (?()b|c) (?('ab')d|e)", perl|mod_x, "ce", match_default, make_array(0, 2, -1, -1, -2, -2)); + + // Recursions in combination with (DEFINE): + TEST_REGEX_SEARCH("^(?(DEFINE) (? a) (? b) ) (?&A) (?&B) ", perl|mod_x, "abcd", match_default, make_array(0, 2, -1, -1, -1, -1, -2, -2)); + TEST_REGEX_SEARCH("(?(?&NAME_PAT))\\s+(?(?&ADDRESS_PAT)) (?(DEFINE) (?[a-z]+) (?\\d+))", perl|mod_x, "metcalfe 33", match_default, make_array(0, 11, 0, 8, 9, 11, -1, -1, -1, -1, -2, -2)); + TEST_INVALID_REGEX("^(?(DEFINE) abc | xyz ) ", perl|mod_x); + //TEST_INVALID_REGEX("(?(DEFINE) abc){3} xyz", perl|mod_x); + TEST_REGEX_SEARCH("(?(DEFINE)(?2[0-4]\\d|25[0-5]|1\\d\\d|[1-9]?\\d))\\b(?&byte)(\\.(?&byte)){3}", perl|mod_x, "1.2.3.4", match_default, make_array(0, 7, -1, -1, 5, 7, -2, -2)); + TEST_REGEX_SEARCH("(?(DEFINE)(?2[0-4]\\d|25[0-5]|1\\d\\d|[1-9]?\\d))\\b(?&byte)(\\.(?&byte)){3}", perl|mod_x, "131.111.10.206", match_default, make_array(0, 14, -1, -1, 10, 14, -2, -2)); + TEST_REGEX_SEARCH("(?(DEFINE)(?2[0-4]\\d|25[0-5]|1\\d\\d|[1-9]?\\d))\\b(?&byte)(\\.(?&byte)){3}", perl|mod_x, "10.0.0.0", match_default, make_array(0, 8, -1, -1, 6, 8, -2, -2)); + TEST_REGEX_SEARCH("(?(DEFINE)(?2[0-4]\\d|25[0-5]|1\\d\\d|[1-9]?\\d))\\b(?&byte)(\\.(?&byte)){3}", perl|mod_x, "10.6", match_default, make_array(-2, -2)); + TEST_REGEX_SEARCH("(?(DEFINE)(?2[0-4]\\d|25[0-5]|1\\d\\d|[1-9]?\\d))\\b(?&byte)(\\.(?&byte)){3}", perl|mod_x, "455.3.4.5", 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, "1.2.3.4", match_default, make_array(0, 7, 5, 7, -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, "131.111.10.206", match_default, make_array(0, 14, 10, 14, -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.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)); } From cfc84473cb64d171e2c227d2bfc3af3b169faf16 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Wed, 29 Jul 2009 17:19:53 +0000 Subject: [PATCH 71/72] Update version number. [SVN r55268] --- build/bcb6.mak | 1124 ++++++++++++++++++++-------------------- build/gcc-shared.mak | 168 +++--- build/gcc.mak | 172 +++--- 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 | 550 ++++++++++---------- build/vc9.mak | 736 +++++++++++++------------- 11 files changed, 3310 insertions(+), 3310 deletions(-) diff --git a/build/bcb6.mak b/build/bcb6.mak index 7dc50584..80b4b178 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_38 bcb\libboost_regex-bcb-s-1_38.lib bcb\libboost_regex-bcb-mt-s-1_38 bcb\libboost_regex-bcb-mt-s-1_38.lib bcb\boost_regex-bcb-mt-1_38 bcb\boost_regex-bcb-mt-1_38.lib bcb\boost_regex-bcb-1_38 bcb\boost_regex-bcb-1_38.lib bcb\libboost_regex-bcb-mt-1_38 bcb\libboost_regex-bcb-mt-1_38.lib bcb\libboost_regex-bcb-1_38 bcb\libboost_regex-bcb-1_38.lib bcb\libboost_regex-bcb-sd-1_38 bcb\libboost_regex-bcb-sd-1_38.lib bcb\libboost_regex-bcb-mt-sd-1_38 bcb\libboost_regex-bcb-mt-sd-1_38.lib bcb\boost_regex-bcb-mt-d-1_38 bcb\boost_regex-bcb-mt-d-1_38.lib bcb\boost_regex-bcb-d-1_38 bcb\boost_regex-bcb-d-1_38.lib bcb\libboost_regex-bcb-mt-d-1_38 bcb\libboost_regex-bcb-mt-d-1_38.lib bcb\libboost_regex-bcb-d-1_38 bcb\libboost_regex-bcb-d-1_38.lib +all : bcb bcb\libboost_regex-bcb-s-1_40 bcb\libboost_regex-bcb-s-1_40.lib bcb\libboost_regex-bcb-mt-s-1_40 bcb\libboost_regex-bcb-mt-s-1_40.lib bcb\boost_regex-bcb-mt-1_40 bcb\boost_regex-bcb-mt-1_40.lib bcb\boost_regex-bcb-1_40 bcb\boost_regex-bcb-1_40.lib bcb\libboost_regex-bcb-mt-1_40 bcb\libboost_regex-bcb-mt-1_40.lib bcb\libboost_regex-bcb-1_40 bcb\libboost_regex-bcb-1_40.lib bcb\libboost_regex-bcb-sd-1_40 bcb\libboost_regex-bcb-sd-1_40.lib bcb\libboost_regex-bcb-mt-sd-1_40 bcb\libboost_regex-bcb-mt-sd-1_40.lib bcb\boost_regex-bcb-mt-d-1_40 bcb\boost_regex-bcb-mt-d-1_40.lib bcb\boost_regex-bcb-d-1_40 bcb\boost_regex-bcb-d-1_40.lib bcb\libboost_regex-bcb-mt-d-1_40 bcb\libboost_regex-bcb-mt-d-1_40.lib bcb\libboost_regex-bcb-d-1_40 bcb\libboost_regex-bcb-d-1_40.lib -clean : libboost_regex-bcb-s-1_38_clean libboost_regex-bcb-mt-s-1_38_clean boost_regex-bcb-mt-1_38_clean boost_regex-bcb-1_38_clean libboost_regex-bcb-mt-1_38_clean libboost_regex-bcb-1_38_clean libboost_regex-bcb-sd-1_38_clean libboost_regex-bcb-mt-sd-1_38_clean boost_regex-bcb-mt-d-1_38_clean boost_regex-bcb-d-1_38_clean libboost_regex-bcb-mt-d-1_38_clean libboost_regex-bcb-d-1_38_clean +clean : libboost_regex-bcb-s-1_40_clean libboost_regex-bcb-mt-s-1_40_clean boost_regex-bcb-mt-1_40_clean boost_regex-bcb-1_40_clean libboost_regex-bcb-mt-1_40_clean libboost_regex-bcb-1_40_clean libboost_regex-bcb-sd-1_40_clean libboost_regex-bcb-mt-sd-1_40_clean boost_regex-bcb-mt-d-1_40_clean boost_regex-bcb-d-1_40_clean libboost_regex-bcb-mt-d-1_40_clean libboost_regex-bcb-d-1_40_clean install : all - copy bcb\libboost_regex-bcb-s-1_38.lib $(BCROOT)\lib - copy bcb\libboost_regex-bcb-mt-s-1_38.lib $(BCROOT)\lib - copy bcb\boost_regex-bcb-mt-1_38.lib $(BCROOT)\lib - copy bcb\boost_regex-bcb-mt-1_38.dll $(BCROOT)\bin - copy bcb\boost_regex-bcb-mt-1_38.tds $(BCROOT)\bin - copy bcb\boost_regex-bcb-1_38.lib $(BCROOT)\lib - copy bcb\boost_regex-bcb-1_38.dll $(BCROOT)\bin - copy bcb\boost_regex-bcb-1_38.tds $(BCROOT)\bin - copy bcb\libboost_regex-bcb-mt-1_38.lib $(BCROOT)\lib - copy bcb\libboost_regex-bcb-1_38.lib $(BCROOT)\lib - copy bcb\libboost_regex-bcb-sd-1_38.lib $(BCROOT)\lib - copy bcb\libboost_regex-bcb-mt-sd-1_38.lib $(BCROOT)\lib - copy bcb\boost_regex-bcb-mt-d-1_38.lib $(BCROOT)\lib - copy bcb\boost_regex-bcb-mt-d-1_38.dll $(BCROOT)\bin - copy bcb\boost_regex-bcb-mt-d-1_38.tds $(BCROOT)\bin - copy bcb\boost_regex-bcb-d-1_38.lib $(BCROOT)\lib - copy bcb\boost_regex-bcb-d-1_38.dll $(BCROOT)\bin - copy bcb\boost_regex-bcb-d-1_38.tds $(BCROOT)\bin - copy bcb\libboost_regex-bcb-mt-d-1_38.lib $(BCROOT)\lib - copy bcb\libboost_regex-bcb-d-1_38.lib $(BCROOT)\lib + copy bcb\libboost_regex-bcb-s-1_40.lib $(BCROOT)\lib + copy bcb\libboost_regex-bcb-mt-s-1_40.lib $(BCROOT)\lib + copy bcb\boost_regex-bcb-mt-1_40.lib $(BCROOT)\lib + copy bcb\boost_regex-bcb-mt-1_40.dll $(BCROOT)\bin + copy bcb\boost_regex-bcb-mt-1_40.tds $(BCROOT)\bin + copy bcb\boost_regex-bcb-1_40.lib $(BCROOT)\lib + copy bcb\boost_regex-bcb-1_40.dll $(BCROOT)\bin + copy bcb\boost_regex-bcb-1_40.tds $(BCROOT)\bin + copy bcb\libboost_regex-bcb-mt-1_40.lib $(BCROOT)\lib + copy bcb\libboost_regex-bcb-1_40.lib $(BCROOT)\lib + copy bcb\libboost_regex-bcb-sd-1_40.lib $(BCROOT)\lib + copy bcb\libboost_regex-bcb-mt-sd-1_40.lib $(BCROOT)\lib + copy bcb\boost_regex-bcb-mt-d-1_40.lib $(BCROOT)\lib + copy bcb\boost_regex-bcb-mt-d-1_40.dll $(BCROOT)\bin + copy bcb\boost_regex-bcb-mt-d-1_40.tds $(BCROOT)\bin + copy bcb\boost_regex-bcb-d-1_40.lib $(BCROOT)\lib + copy bcb\boost_regex-bcb-d-1_40.dll $(BCROOT)\bin + copy bcb\boost_regex-bcb-d-1_40.tds $(BCROOT)\bin + copy bcb\libboost_regex-bcb-mt-d-1_40.lib $(BCROOT)\lib + copy bcb\libboost_regex-bcb-d-1_40.lib $(BCROOT)\lib bcb : -@mkdir bcb @@ -73,1266 +73,1266 @@ bcb : ######################################################## # -# section for libboost_regex-bcb-s-1_38.lib +# section for libboost_regex-bcb-s-1_40.lib # ######################################################## -bcb\libboost_regex-bcb-s-1_38\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_40\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_38\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_40\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\libboost_regex-bcb-s-1_38\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_40\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_38\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_40\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\libboost_regex-bcb-s-1_38\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_40\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_38\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_40\cregex.obj ../src/cregex.cpp | -bcb\libboost_regex-bcb-s-1_38\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_40\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_38\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_40\fileiter.obj ../src/fileiter.cpp | -bcb\libboost_regex-bcb-s-1_38\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_40\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_38\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_40\icu.obj ../src/icu.cpp | -bcb\libboost_regex-bcb-s-1_38\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_40\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_38\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_40\instances.obj ../src/instances.cpp | -bcb\libboost_regex-bcb-s-1_38\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_40\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_38\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_40\posix_api.obj ../src/posix_api.cpp | -bcb\libboost_regex-bcb-s-1_38\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_40\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_38\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_40\regex.obj ../src/regex.cpp | -bcb\libboost_regex-bcb-s-1_38\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_40\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_38\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_40\regex_debug.obj ../src/regex_debug.cpp | -bcb\libboost_regex-bcb-s-1_38\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_40\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_38\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_40\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\libboost_regex-bcb-s-1_38\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_40\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_38\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_40\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\libboost_regex-bcb-s-1_38\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_40\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_38\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_40\static_mutex.obj ../src/static_mutex.cpp | -bcb\libboost_regex-bcb-s-1_38\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_40\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_38\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_40\usinstances.obj ../src/usinstances.cpp | -bcb\libboost_regex-bcb-s-1_38\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_40\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_38\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_40\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\libboost_regex-bcb-s-1_38\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_40\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_38\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_40\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\libboost_regex-bcb-s-1_38\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_40\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_38\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_40\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\libboost_regex-bcb-s-1_38\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-s-1_40\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_38\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_40\winstances.obj ../src/winstances.cpp | -bcb\libboost_regex-bcb-s-1_38 : - -@mkdir bcb\libboost_regex-bcb-s-1_38 +bcb\libboost_regex-bcb-s-1_40 : + -@mkdir bcb\libboost_regex-bcb-s-1_40 -libboost_regex-bcb-s-1_38_clean : - del bcb\libboost_regex-bcb-s-1_38\*.obj - del bcb\libboost_regex-bcb-s-1_38\*.il? - del bcb\libboost_regex-bcb-s-1_38\*.csm - del bcb\libboost_regex-bcb-s-1_38\*.tds +libboost_regex-bcb-s-1_40_clean : + del bcb\libboost_regex-bcb-s-1_40\*.obj + del bcb\libboost_regex-bcb-s-1_40\*.il? + del bcb\libboost_regex-bcb-s-1_40\*.csm + del bcb\libboost_regex-bcb-s-1_40\*.tds -bcb\libboost_regex-bcb-s-1_38.lib : bcb\libboost_regex-bcb-s-1_38\c_regex_traits.obj bcb\libboost_regex-bcb-s-1_38\cpp_regex_traits.obj bcb\libboost_regex-bcb-s-1_38\cregex.obj bcb\libboost_regex-bcb-s-1_38\fileiter.obj bcb\libboost_regex-bcb-s-1_38\icu.obj bcb\libboost_regex-bcb-s-1_38\instances.obj bcb\libboost_regex-bcb-s-1_38\posix_api.obj bcb\libboost_regex-bcb-s-1_38\regex.obj bcb\libboost_regex-bcb-s-1_38\regex_debug.obj bcb\libboost_regex-bcb-s-1_38\regex_raw_buffer.obj bcb\libboost_regex-bcb-s-1_38\regex_traits_defaults.obj bcb\libboost_regex-bcb-s-1_38\static_mutex.obj bcb\libboost_regex-bcb-s-1_38\usinstances.obj bcb\libboost_regex-bcb-s-1_38\w32_regex_traits.obj bcb\libboost_regex-bcb-s-1_38\wc_regex_traits.obj bcb\libboost_regex-bcb-s-1_38\wide_posix_api.obj bcb\libboost_regex-bcb-s-1_38\winstances.obj - if exist bcb\libboost_regex-bcb-s-1_38.lib del bcb\libboost_regex-bcb-s-1_38.lib +bcb\libboost_regex-bcb-s-1_40.lib : bcb\libboost_regex-bcb-s-1_40\c_regex_traits.obj bcb\libboost_regex-bcb-s-1_40\cpp_regex_traits.obj bcb\libboost_regex-bcb-s-1_40\cregex.obj bcb\libboost_regex-bcb-s-1_40\fileiter.obj bcb\libboost_regex-bcb-s-1_40\icu.obj bcb\libboost_regex-bcb-s-1_40\instances.obj bcb\libboost_regex-bcb-s-1_40\posix_api.obj bcb\libboost_regex-bcb-s-1_40\regex.obj bcb\libboost_regex-bcb-s-1_40\regex_debug.obj bcb\libboost_regex-bcb-s-1_40\regex_raw_buffer.obj bcb\libboost_regex-bcb-s-1_40\regex_traits_defaults.obj bcb\libboost_regex-bcb-s-1_40\static_mutex.obj bcb\libboost_regex-bcb-s-1_40\usinstances.obj bcb\libboost_regex-bcb-s-1_40\w32_regex_traits.obj bcb\libboost_regex-bcb-s-1_40\wc_regex_traits.obj bcb\libboost_regex-bcb-s-1_40\wide_posix_api.obj bcb\libboost_regex-bcb-s-1_40\winstances.obj + if exist bcb\libboost_regex-bcb-s-1_40.lib del bcb\libboost_regex-bcb-s-1_40.lib tlib @&&| -/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-s-1_38.lib" +"bcb\libboost_regex-bcb-s-1_38\c_regex_traits.obj" +"bcb\libboost_regex-bcb-s-1_38\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-s-1_38\cregex.obj" +"bcb\libboost_regex-bcb-s-1_38\fileiter.obj" +"bcb\libboost_regex-bcb-s-1_38\icu.obj" +"bcb\libboost_regex-bcb-s-1_38\instances.obj" +"bcb\libboost_regex-bcb-s-1_38\posix_api.obj" +"bcb\libboost_regex-bcb-s-1_38\regex.obj" +"bcb\libboost_regex-bcb-s-1_38\regex_debug.obj" +"bcb\libboost_regex-bcb-s-1_38\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-s-1_38\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-s-1_38\static_mutex.obj" +"bcb\libboost_regex-bcb-s-1_38\usinstances.obj" +"bcb\libboost_regex-bcb-s-1_38\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-s-1_38\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-s-1_38\wide_posix_api.obj" +"bcb\libboost_regex-bcb-s-1_38\winstances.obj" +/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-s-1_40.lib" +"bcb\libboost_regex-bcb-s-1_40\c_regex_traits.obj" +"bcb\libboost_regex-bcb-s-1_40\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-s-1_40\cregex.obj" +"bcb\libboost_regex-bcb-s-1_40\fileiter.obj" +"bcb\libboost_regex-bcb-s-1_40\icu.obj" +"bcb\libboost_regex-bcb-s-1_40\instances.obj" +"bcb\libboost_regex-bcb-s-1_40\posix_api.obj" +"bcb\libboost_regex-bcb-s-1_40\regex.obj" +"bcb\libboost_regex-bcb-s-1_40\regex_debug.obj" +"bcb\libboost_regex-bcb-s-1_40\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-s-1_40\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-s-1_40\static_mutex.obj" +"bcb\libboost_regex-bcb-s-1_40\usinstances.obj" +"bcb\libboost_regex-bcb-s-1_40\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-s-1_40\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-s-1_40\wide_posix_api.obj" +"bcb\libboost_regex-bcb-s-1_40\winstances.obj" | ######################################################## # -# section for libboost_regex-bcb-mt-s-1_38.lib +# section for libboost_regex-bcb-mt-s-1_40.lib # ######################################################## -bcb\libboost_regex-bcb-mt-s-1_38\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_40\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_38\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_40\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-s-1_38\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_40\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_38\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_40\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-s-1_38\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_40\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_38\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_40\cregex.obj ../src/cregex.cpp | -bcb\libboost_regex-bcb-mt-s-1_38\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_40\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_38\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_40\fileiter.obj ../src/fileiter.cpp | -bcb\libboost_regex-bcb-mt-s-1_38\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_40\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_38\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_40\icu.obj ../src/icu.cpp | -bcb\libboost_regex-bcb-mt-s-1_38\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_40\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_38\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_40\instances.obj ../src/instances.cpp | -bcb\libboost_regex-bcb-mt-s-1_38\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_40\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_38\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_40\posix_api.obj ../src/posix_api.cpp | -bcb\libboost_regex-bcb-mt-s-1_38\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_40\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_38\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_40\regex.obj ../src/regex.cpp | -bcb\libboost_regex-bcb-mt-s-1_38\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_40\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_38\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_40\regex_debug.obj ../src/regex_debug.cpp | -bcb\libboost_regex-bcb-mt-s-1_38\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_40\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_38\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_40\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\libboost_regex-bcb-mt-s-1_38\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_40\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_38\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_40\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\libboost_regex-bcb-mt-s-1_38\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_40\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_38\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_40\static_mutex.obj ../src/static_mutex.cpp | -bcb\libboost_regex-bcb-mt-s-1_38\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_40\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_38\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_40\usinstances.obj ../src/usinstances.cpp | -bcb\libboost_regex-bcb-mt-s-1_38\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_40\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_38\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_40\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-s-1_38\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_40\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_38\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_40\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-s-1_38\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_40\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_38\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_40\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\libboost_regex-bcb-mt-s-1_38\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-s-1_40\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_38\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_40\winstances.obj ../src/winstances.cpp | -bcb\libboost_regex-bcb-mt-s-1_38 : - -@mkdir bcb\libboost_regex-bcb-mt-s-1_38 +bcb\libboost_regex-bcb-mt-s-1_40 : + -@mkdir bcb\libboost_regex-bcb-mt-s-1_40 -libboost_regex-bcb-mt-s-1_38_clean : - del bcb\libboost_regex-bcb-mt-s-1_38\*.obj - del bcb\libboost_regex-bcb-mt-s-1_38\*.il? - del bcb\libboost_regex-bcb-mt-s-1_38\*.csm - del bcb\libboost_regex-bcb-mt-s-1_38\*.tds +libboost_regex-bcb-mt-s-1_40_clean : + del bcb\libboost_regex-bcb-mt-s-1_40\*.obj + del bcb\libboost_regex-bcb-mt-s-1_40\*.il? + del bcb\libboost_regex-bcb-mt-s-1_40\*.csm + del bcb\libboost_regex-bcb-mt-s-1_40\*.tds -bcb\libboost_regex-bcb-mt-s-1_38.lib : bcb\libboost_regex-bcb-mt-s-1_38\c_regex_traits.obj bcb\libboost_regex-bcb-mt-s-1_38\cpp_regex_traits.obj bcb\libboost_regex-bcb-mt-s-1_38\cregex.obj bcb\libboost_regex-bcb-mt-s-1_38\fileiter.obj bcb\libboost_regex-bcb-mt-s-1_38\icu.obj bcb\libboost_regex-bcb-mt-s-1_38\instances.obj bcb\libboost_regex-bcb-mt-s-1_38\posix_api.obj bcb\libboost_regex-bcb-mt-s-1_38\regex.obj bcb\libboost_regex-bcb-mt-s-1_38\regex_debug.obj bcb\libboost_regex-bcb-mt-s-1_38\regex_raw_buffer.obj bcb\libboost_regex-bcb-mt-s-1_38\regex_traits_defaults.obj bcb\libboost_regex-bcb-mt-s-1_38\static_mutex.obj bcb\libboost_regex-bcb-mt-s-1_38\usinstances.obj bcb\libboost_regex-bcb-mt-s-1_38\w32_regex_traits.obj bcb\libboost_regex-bcb-mt-s-1_38\wc_regex_traits.obj bcb\libboost_regex-bcb-mt-s-1_38\wide_posix_api.obj bcb\libboost_regex-bcb-mt-s-1_38\winstances.obj - if exist bcb\libboost_regex-bcb-mt-s-1_38.lib del bcb\libboost_regex-bcb-mt-s-1_38.lib +bcb\libboost_regex-bcb-mt-s-1_40.lib : bcb\libboost_regex-bcb-mt-s-1_40\c_regex_traits.obj bcb\libboost_regex-bcb-mt-s-1_40\cpp_regex_traits.obj bcb\libboost_regex-bcb-mt-s-1_40\cregex.obj bcb\libboost_regex-bcb-mt-s-1_40\fileiter.obj bcb\libboost_regex-bcb-mt-s-1_40\icu.obj bcb\libboost_regex-bcb-mt-s-1_40\instances.obj bcb\libboost_regex-bcb-mt-s-1_40\posix_api.obj bcb\libboost_regex-bcb-mt-s-1_40\regex.obj bcb\libboost_regex-bcb-mt-s-1_40\regex_debug.obj bcb\libboost_regex-bcb-mt-s-1_40\regex_raw_buffer.obj bcb\libboost_regex-bcb-mt-s-1_40\regex_traits_defaults.obj bcb\libboost_regex-bcb-mt-s-1_40\static_mutex.obj bcb\libboost_regex-bcb-mt-s-1_40\usinstances.obj bcb\libboost_regex-bcb-mt-s-1_40\w32_regex_traits.obj bcb\libboost_regex-bcb-mt-s-1_40\wc_regex_traits.obj bcb\libboost_regex-bcb-mt-s-1_40\wide_posix_api.obj bcb\libboost_regex-bcb-mt-s-1_40\winstances.obj + if exist bcb\libboost_regex-bcb-mt-s-1_40.lib del bcb\libboost_regex-bcb-mt-s-1_40.lib tlib @&&| -/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-mt-s-1_38.lib" +"bcb\libboost_regex-bcb-mt-s-1_38\c_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-s-1_38\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-s-1_38\cregex.obj" +"bcb\libboost_regex-bcb-mt-s-1_38\fileiter.obj" +"bcb\libboost_regex-bcb-mt-s-1_38\icu.obj" +"bcb\libboost_regex-bcb-mt-s-1_38\instances.obj" +"bcb\libboost_regex-bcb-mt-s-1_38\posix_api.obj" +"bcb\libboost_regex-bcb-mt-s-1_38\regex.obj" +"bcb\libboost_regex-bcb-mt-s-1_38\regex_debug.obj" +"bcb\libboost_regex-bcb-mt-s-1_38\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-mt-s-1_38\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-mt-s-1_38\static_mutex.obj" +"bcb\libboost_regex-bcb-mt-s-1_38\usinstances.obj" +"bcb\libboost_regex-bcb-mt-s-1_38\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-s-1_38\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-s-1_38\wide_posix_api.obj" +"bcb\libboost_regex-bcb-mt-s-1_38\winstances.obj" +/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-mt-s-1_40.lib" +"bcb\libboost_regex-bcb-mt-s-1_40\c_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-s-1_40\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-s-1_40\cregex.obj" +"bcb\libboost_regex-bcb-mt-s-1_40\fileiter.obj" +"bcb\libboost_regex-bcb-mt-s-1_40\icu.obj" +"bcb\libboost_regex-bcb-mt-s-1_40\instances.obj" +"bcb\libboost_regex-bcb-mt-s-1_40\posix_api.obj" +"bcb\libboost_regex-bcb-mt-s-1_40\regex.obj" +"bcb\libboost_regex-bcb-mt-s-1_40\regex_debug.obj" +"bcb\libboost_regex-bcb-mt-s-1_40\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-mt-s-1_40\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-mt-s-1_40\static_mutex.obj" +"bcb\libboost_regex-bcb-mt-s-1_40\usinstances.obj" +"bcb\libboost_regex-bcb-mt-s-1_40\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-s-1_40\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-s-1_40\wide_posix_api.obj" +"bcb\libboost_regex-bcb-mt-s-1_40\winstances.obj" | ######################################################## # -# section for boost_regex-bcb-mt-1_38.lib +# section for boost_regex-bcb-mt-1_40.lib # ######################################################## -bcb\boost_regex-bcb-mt-1_38\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_40\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_38\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_40\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\boost_regex-bcb-mt-1_38\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_40\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_38\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_40\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\boost_regex-bcb-mt-1_38\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_40\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_38\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_40\cregex.obj ../src/cregex.cpp | -bcb\boost_regex-bcb-mt-1_38\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_40\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_38\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_40\fileiter.obj ../src/fileiter.cpp | -bcb\boost_regex-bcb-mt-1_38\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_40\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_38\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_40\icu.obj ../src/icu.cpp | -bcb\boost_regex-bcb-mt-1_38\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_40\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_38\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_40\instances.obj ../src/instances.cpp | -bcb\boost_regex-bcb-mt-1_38\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_40\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_38\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_40\posix_api.obj ../src/posix_api.cpp | -bcb\boost_regex-bcb-mt-1_38\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_40\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_38\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_40\regex.obj ../src/regex.cpp | -bcb\boost_regex-bcb-mt-1_38\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_40\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_38\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_40\regex_debug.obj ../src/regex_debug.cpp | -bcb\boost_regex-bcb-mt-1_38\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_40\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_38\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_40\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\boost_regex-bcb-mt-1_38\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_40\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_38\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_40\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\boost_regex-bcb-mt-1_38\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_40\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_38\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_40\static_mutex.obj ../src/static_mutex.cpp | -bcb\boost_regex-bcb-mt-1_38\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_40\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_38\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_40\usinstances.obj ../src/usinstances.cpp | -bcb\boost_regex-bcb-mt-1_38\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_40\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_38\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_40\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\boost_regex-bcb-mt-1_38\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_40\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_38\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_40\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\boost_regex-bcb-mt-1_38\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_40\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_38\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_40\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\boost_regex-bcb-mt-1_38\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-1_40\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_38\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_40\winstances.obj ../src/winstances.cpp | -bcb\boost_regex-bcb-mt-1_38 : - -@mkdir bcb\boost_regex-bcb-mt-1_38 +bcb\boost_regex-bcb-mt-1_40 : + -@mkdir bcb\boost_regex-bcb-mt-1_40 -boost_regex-bcb-mt-1_38_clean : - del bcb\boost_regex-bcb-mt-1_38\*.obj - del bcb\boost_regex-bcb-mt-1_38\*.il? - del bcb\boost_regex-bcb-mt-1_38\*.csm - del bcb\boost_regex-bcb-mt-1_38\*.tds +boost_regex-bcb-mt-1_40_clean : + del bcb\boost_regex-bcb-mt-1_40\*.obj + del bcb\boost_regex-bcb-mt-1_40\*.il? + del bcb\boost_regex-bcb-mt-1_40\*.csm + del bcb\boost_regex-bcb-mt-1_40\*.tds del bcb\*.tds -bcb\boost_regex-bcb-mt-1_38.lib : bcb\boost_regex-bcb-mt-1_38\c_regex_traits.obj bcb\boost_regex-bcb-mt-1_38\cpp_regex_traits.obj bcb\boost_regex-bcb-mt-1_38\cregex.obj bcb\boost_regex-bcb-mt-1_38\fileiter.obj bcb\boost_regex-bcb-mt-1_38\icu.obj bcb\boost_regex-bcb-mt-1_38\instances.obj bcb\boost_regex-bcb-mt-1_38\posix_api.obj bcb\boost_regex-bcb-mt-1_38\regex.obj bcb\boost_regex-bcb-mt-1_38\regex_debug.obj bcb\boost_regex-bcb-mt-1_38\regex_raw_buffer.obj bcb\boost_regex-bcb-mt-1_38\regex_traits_defaults.obj bcb\boost_regex-bcb-mt-1_38\static_mutex.obj bcb\boost_regex-bcb-mt-1_38\usinstances.obj bcb\boost_regex-bcb-mt-1_38\w32_regex_traits.obj bcb\boost_regex-bcb-mt-1_38\wc_regex_traits.obj bcb\boost_regex-bcb-mt-1_38\wide_posix_api.obj bcb\boost_regex-bcb-mt-1_38\winstances.obj +bcb\boost_regex-bcb-mt-1_40.lib : bcb\boost_regex-bcb-mt-1_40\c_regex_traits.obj bcb\boost_regex-bcb-mt-1_40\cpp_regex_traits.obj bcb\boost_regex-bcb-mt-1_40\cregex.obj bcb\boost_regex-bcb-mt-1_40\fileiter.obj bcb\boost_regex-bcb-mt-1_40\icu.obj bcb\boost_regex-bcb-mt-1_40\instances.obj bcb\boost_regex-bcb-mt-1_40\posix_api.obj bcb\boost_regex-bcb-mt-1_40\regex.obj bcb\boost_regex-bcb-mt-1_40\regex_debug.obj bcb\boost_regex-bcb-mt-1_40\regex_raw_buffer.obj bcb\boost_regex-bcb-mt-1_40\regex_traits_defaults.obj bcb\boost_regex-bcb-mt-1_40\static_mutex.obj bcb\boost_regex-bcb-mt-1_40\usinstances.obj bcb\boost_regex-bcb-mt-1_40\w32_regex_traits.obj bcb\boost_regex-bcb-mt-1_40\wc_regex_traits.obj bcb\boost_regex-bcb-mt-1_40\wide_posix_api.obj bcb\boost_regex-bcb-mt-1_40\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_38.dll $(XLFLAGS) bcb\boost_regex-bcb-mt-1_38\c_regex_traits.obj bcb\boost_regex-bcb-mt-1_38\cpp_regex_traits.obj bcb\boost_regex-bcb-mt-1_38\cregex.obj bcb\boost_regex-bcb-mt-1_38\fileiter.obj bcb\boost_regex-bcb-mt-1_38\icu.obj bcb\boost_regex-bcb-mt-1_38\instances.obj bcb\boost_regex-bcb-mt-1_38\posix_api.obj bcb\boost_regex-bcb-mt-1_38\regex.obj bcb\boost_regex-bcb-mt-1_38\regex_debug.obj bcb\boost_regex-bcb-mt-1_38\regex_raw_buffer.obj bcb\boost_regex-bcb-mt-1_38\regex_traits_defaults.obj bcb\boost_regex-bcb-mt-1_38\static_mutex.obj bcb\boost_regex-bcb-mt-1_38\usinstances.obj bcb\boost_regex-bcb-mt-1_38\w32_regex_traits.obj bcb\boost_regex-bcb-mt-1_38\wc_regex_traits.obj bcb\boost_regex-bcb-mt-1_38\wide_posix_api.obj bcb\boost_regex-bcb-mt-1_38\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_40.dll $(XLFLAGS) bcb\boost_regex-bcb-mt-1_40\c_regex_traits.obj bcb\boost_regex-bcb-mt-1_40\cpp_regex_traits.obj bcb\boost_regex-bcb-mt-1_40\cregex.obj bcb\boost_regex-bcb-mt-1_40\fileiter.obj bcb\boost_regex-bcb-mt-1_40\icu.obj bcb\boost_regex-bcb-mt-1_40\instances.obj bcb\boost_regex-bcb-mt-1_40\posix_api.obj bcb\boost_regex-bcb-mt-1_40\regex.obj bcb\boost_regex-bcb-mt-1_40\regex_debug.obj bcb\boost_regex-bcb-mt-1_40\regex_raw_buffer.obj bcb\boost_regex-bcb-mt-1_40\regex_traits_defaults.obj bcb\boost_regex-bcb-mt-1_40\static_mutex.obj bcb\boost_regex-bcb-mt-1_40\usinstances.obj bcb\boost_regex-bcb-mt-1_40\w32_regex_traits.obj bcb\boost_regex-bcb-mt-1_40\wc_regex_traits.obj bcb\boost_regex-bcb-mt-1_40\wide_posix_api.obj bcb\boost_regex-bcb-mt-1_40\winstances.obj $(LIBS) | - implib -w bcb\boost_regex-bcb-mt-1_38.lib bcb\boost_regex-bcb-mt-1_38.dll + implib -w bcb\boost_regex-bcb-mt-1_40.lib bcb\boost_regex-bcb-mt-1_40.dll ######################################################## # -# section for boost_regex-bcb-1_38.lib +# section for boost_regex-bcb-1_40.lib # ######################################################## -bcb\boost_regex-bcb-1_38\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_40\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_38\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_40\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\boost_regex-bcb-1_38\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_40\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_38\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_40\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\boost_regex-bcb-1_38\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_40\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_38\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_40\cregex.obj ../src/cregex.cpp | -bcb\boost_regex-bcb-1_38\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_40\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_38\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_40\fileiter.obj ../src/fileiter.cpp | -bcb\boost_regex-bcb-1_38\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_40\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_38\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_40\icu.obj ../src/icu.cpp | -bcb\boost_regex-bcb-1_38\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_40\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_38\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_40\instances.obj ../src/instances.cpp | -bcb\boost_regex-bcb-1_38\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_40\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_38\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_40\posix_api.obj ../src/posix_api.cpp | -bcb\boost_regex-bcb-1_38\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_40\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_38\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_40\regex.obj ../src/regex.cpp | -bcb\boost_regex-bcb-1_38\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_40\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_38\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_40\regex_debug.obj ../src/regex_debug.cpp | -bcb\boost_regex-bcb-1_38\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_40\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_38\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_40\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\boost_regex-bcb-1_38\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_40\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_38\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_40\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\boost_regex-bcb-1_38\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_40\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_38\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_40\static_mutex.obj ../src/static_mutex.cpp | -bcb\boost_regex-bcb-1_38\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_40\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_38\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_40\usinstances.obj ../src/usinstances.cpp | -bcb\boost_regex-bcb-1_38\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_40\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_38\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_40\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\boost_regex-bcb-1_38\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_40\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_38\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_40\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\boost_regex-bcb-1_38\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_40\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_38\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_40\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\boost_regex-bcb-1_38\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-1_40\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_38\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_40\winstances.obj ../src/winstances.cpp | -bcb\boost_regex-bcb-1_38 : - -@mkdir bcb\boost_regex-bcb-1_38 +bcb\boost_regex-bcb-1_40 : + -@mkdir bcb\boost_regex-bcb-1_40 -boost_regex-bcb-1_38_clean : - del bcb\boost_regex-bcb-1_38\*.obj - del bcb\boost_regex-bcb-1_38\*.il? - del bcb\boost_regex-bcb-1_38\*.csm - del bcb\boost_regex-bcb-1_38\*.tds +boost_regex-bcb-1_40_clean : + del bcb\boost_regex-bcb-1_40\*.obj + del bcb\boost_regex-bcb-1_40\*.il? + del bcb\boost_regex-bcb-1_40\*.csm + del bcb\boost_regex-bcb-1_40\*.tds del bcb\*.tds -bcb\boost_regex-bcb-1_38.lib : bcb\boost_regex-bcb-1_38\c_regex_traits.obj bcb\boost_regex-bcb-1_38\cpp_regex_traits.obj bcb\boost_regex-bcb-1_38\cregex.obj bcb\boost_regex-bcb-1_38\fileiter.obj bcb\boost_regex-bcb-1_38\icu.obj bcb\boost_regex-bcb-1_38\instances.obj bcb\boost_regex-bcb-1_38\posix_api.obj bcb\boost_regex-bcb-1_38\regex.obj bcb\boost_regex-bcb-1_38\regex_debug.obj bcb\boost_regex-bcb-1_38\regex_raw_buffer.obj bcb\boost_regex-bcb-1_38\regex_traits_defaults.obj bcb\boost_regex-bcb-1_38\static_mutex.obj bcb\boost_regex-bcb-1_38\usinstances.obj bcb\boost_regex-bcb-1_38\w32_regex_traits.obj bcb\boost_regex-bcb-1_38\wc_regex_traits.obj bcb\boost_regex-bcb-1_38\wide_posix_api.obj bcb\boost_regex-bcb-1_38\winstances.obj +bcb\boost_regex-bcb-1_40.lib : bcb\boost_regex-bcb-1_40\c_regex_traits.obj bcb\boost_regex-bcb-1_40\cpp_regex_traits.obj bcb\boost_regex-bcb-1_40\cregex.obj bcb\boost_regex-bcb-1_40\fileiter.obj bcb\boost_regex-bcb-1_40\icu.obj bcb\boost_regex-bcb-1_40\instances.obj bcb\boost_regex-bcb-1_40\posix_api.obj bcb\boost_regex-bcb-1_40\regex.obj bcb\boost_regex-bcb-1_40\regex_debug.obj bcb\boost_regex-bcb-1_40\regex_raw_buffer.obj bcb\boost_regex-bcb-1_40\regex_traits_defaults.obj bcb\boost_regex-bcb-1_40\static_mutex.obj bcb\boost_regex-bcb-1_40\usinstances.obj bcb\boost_regex-bcb-1_40\w32_regex_traits.obj bcb\boost_regex-bcb-1_40\wc_regex_traits.obj bcb\boost_regex-bcb-1_40\wide_posix_api.obj bcb\boost_regex-bcb-1_40\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_38.dll $(XLFLAGS) bcb\boost_regex-bcb-1_38\c_regex_traits.obj bcb\boost_regex-bcb-1_38\cpp_regex_traits.obj bcb\boost_regex-bcb-1_38\cregex.obj bcb\boost_regex-bcb-1_38\fileiter.obj bcb\boost_regex-bcb-1_38\icu.obj bcb\boost_regex-bcb-1_38\instances.obj bcb\boost_regex-bcb-1_38\posix_api.obj bcb\boost_regex-bcb-1_38\regex.obj bcb\boost_regex-bcb-1_38\regex_debug.obj bcb\boost_regex-bcb-1_38\regex_raw_buffer.obj bcb\boost_regex-bcb-1_38\regex_traits_defaults.obj bcb\boost_regex-bcb-1_38\static_mutex.obj bcb\boost_regex-bcb-1_38\usinstances.obj bcb\boost_regex-bcb-1_38\w32_regex_traits.obj bcb\boost_regex-bcb-1_38\wc_regex_traits.obj bcb\boost_regex-bcb-1_38\wide_posix_api.obj bcb\boost_regex-bcb-1_38\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_40.dll $(XLFLAGS) bcb\boost_regex-bcb-1_40\c_regex_traits.obj bcb\boost_regex-bcb-1_40\cpp_regex_traits.obj bcb\boost_regex-bcb-1_40\cregex.obj bcb\boost_regex-bcb-1_40\fileiter.obj bcb\boost_regex-bcb-1_40\icu.obj bcb\boost_regex-bcb-1_40\instances.obj bcb\boost_regex-bcb-1_40\posix_api.obj bcb\boost_regex-bcb-1_40\regex.obj bcb\boost_regex-bcb-1_40\regex_debug.obj bcb\boost_regex-bcb-1_40\regex_raw_buffer.obj bcb\boost_regex-bcb-1_40\regex_traits_defaults.obj bcb\boost_regex-bcb-1_40\static_mutex.obj bcb\boost_regex-bcb-1_40\usinstances.obj bcb\boost_regex-bcb-1_40\w32_regex_traits.obj bcb\boost_regex-bcb-1_40\wc_regex_traits.obj bcb\boost_regex-bcb-1_40\wide_posix_api.obj bcb\boost_regex-bcb-1_40\winstances.obj $(LIBS) | - implib -w bcb\boost_regex-bcb-1_38.lib bcb\boost_regex-bcb-1_38.dll + implib -w bcb\boost_regex-bcb-1_40.lib bcb\boost_regex-bcb-1_40.dll ######################################################## # -# section for libboost_regex-bcb-mt-1_38.lib +# section for libboost_regex-bcb-mt-1_40.lib # ######################################################## -bcb\libboost_regex-bcb-mt-1_38\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_40\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_38\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_40\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-1_38\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_40\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_38\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_40\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-1_38\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_40\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_38\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_40\cregex.obj ../src/cregex.cpp | -bcb\libboost_regex-bcb-mt-1_38\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_40\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_38\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_40\fileiter.obj ../src/fileiter.cpp | -bcb\libboost_regex-bcb-mt-1_38\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_40\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_38\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_40\icu.obj ../src/icu.cpp | -bcb\libboost_regex-bcb-mt-1_38\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_40\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_38\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_40\instances.obj ../src/instances.cpp | -bcb\libboost_regex-bcb-mt-1_38\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_40\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_38\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_40\posix_api.obj ../src/posix_api.cpp | -bcb\libboost_regex-bcb-mt-1_38\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_40\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_38\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_40\regex.obj ../src/regex.cpp | -bcb\libboost_regex-bcb-mt-1_38\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_40\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_38\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_40\regex_debug.obj ../src/regex_debug.cpp | -bcb\libboost_regex-bcb-mt-1_38\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_40\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_38\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_40\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\libboost_regex-bcb-mt-1_38\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_40\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_38\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_40\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\libboost_regex-bcb-mt-1_38\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_40\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_38\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_40\static_mutex.obj ../src/static_mutex.cpp | -bcb\libboost_regex-bcb-mt-1_38\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_40\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_38\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_40\usinstances.obj ../src/usinstances.cpp | -bcb\libboost_regex-bcb-mt-1_38\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_40\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_38\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_40\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-1_38\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_40\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_38\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_40\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-1_38\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_40\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_38\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_40\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\libboost_regex-bcb-mt-1_38\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-1_40\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_38\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_40\winstances.obj ../src/winstances.cpp | -bcb\libboost_regex-bcb-mt-1_38 : - -@mkdir bcb\libboost_regex-bcb-mt-1_38 +bcb\libboost_regex-bcb-mt-1_40 : + -@mkdir bcb\libboost_regex-bcb-mt-1_40 -libboost_regex-bcb-mt-1_38_clean : - del bcb\libboost_regex-bcb-mt-1_38\*.obj - del bcb\libboost_regex-bcb-mt-1_38\*.il? - del bcb\libboost_regex-bcb-mt-1_38\*.csm - del bcb\libboost_regex-bcb-mt-1_38\*.tds +libboost_regex-bcb-mt-1_40_clean : + del bcb\libboost_regex-bcb-mt-1_40\*.obj + del bcb\libboost_regex-bcb-mt-1_40\*.il? + del bcb\libboost_regex-bcb-mt-1_40\*.csm + del bcb\libboost_regex-bcb-mt-1_40\*.tds -bcb\libboost_regex-bcb-mt-1_38.lib : bcb\libboost_regex-bcb-mt-1_38\c_regex_traits.obj bcb\libboost_regex-bcb-mt-1_38\cpp_regex_traits.obj bcb\libboost_regex-bcb-mt-1_38\cregex.obj bcb\libboost_regex-bcb-mt-1_38\fileiter.obj bcb\libboost_regex-bcb-mt-1_38\icu.obj bcb\libboost_regex-bcb-mt-1_38\instances.obj bcb\libboost_regex-bcb-mt-1_38\posix_api.obj bcb\libboost_regex-bcb-mt-1_38\regex.obj bcb\libboost_regex-bcb-mt-1_38\regex_debug.obj bcb\libboost_regex-bcb-mt-1_38\regex_raw_buffer.obj bcb\libboost_regex-bcb-mt-1_38\regex_traits_defaults.obj bcb\libboost_regex-bcb-mt-1_38\static_mutex.obj bcb\libboost_regex-bcb-mt-1_38\usinstances.obj bcb\libboost_regex-bcb-mt-1_38\w32_regex_traits.obj bcb\libboost_regex-bcb-mt-1_38\wc_regex_traits.obj bcb\libboost_regex-bcb-mt-1_38\wide_posix_api.obj bcb\libboost_regex-bcb-mt-1_38\winstances.obj - if exist bcb\libboost_regex-bcb-mt-1_38.lib del bcb\libboost_regex-bcb-mt-1_38.lib +bcb\libboost_regex-bcb-mt-1_40.lib : bcb\libboost_regex-bcb-mt-1_40\c_regex_traits.obj bcb\libboost_regex-bcb-mt-1_40\cpp_regex_traits.obj bcb\libboost_regex-bcb-mt-1_40\cregex.obj bcb\libboost_regex-bcb-mt-1_40\fileiter.obj bcb\libboost_regex-bcb-mt-1_40\icu.obj bcb\libboost_regex-bcb-mt-1_40\instances.obj bcb\libboost_regex-bcb-mt-1_40\posix_api.obj bcb\libboost_regex-bcb-mt-1_40\regex.obj bcb\libboost_regex-bcb-mt-1_40\regex_debug.obj bcb\libboost_regex-bcb-mt-1_40\regex_raw_buffer.obj bcb\libboost_regex-bcb-mt-1_40\regex_traits_defaults.obj bcb\libboost_regex-bcb-mt-1_40\static_mutex.obj bcb\libboost_regex-bcb-mt-1_40\usinstances.obj bcb\libboost_regex-bcb-mt-1_40\w32_regex_traits.obj bcb\libboost_regex-bcb-mt-1_40\wc_regex_traits.obj bcb\libboost_regex-bcb-mt-1_40\wide_posix_api.obj bcb\libboost_regex-bcb-mt-1_40\winstances.obj + if exist bcb\libboost_regex-bcb-mt-1_40.lib del bcb\libboost_regex-bcb-mt-1_40.lib tlib @&&| -/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-mt-1_38.lib" +"bcb\libboost_regex-bcb-mt-1_38\c_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-1_38\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-1_38\cregex.obj" +"bcb\libboost_regex-bcb-mt-1_38\fileiter.obj" +"bcb\libboost_regex-bcb-mt-1_38\icu.obj" +"bcb\libboost_regex-bcb-mt-1_38\instances.obj" +"bcb\libboost_regex-bcb-mt-1_38\posix_api.obj" +"bcb\libboost_regex-bcb-mt-1_38\regex.obj" +"bcb\libboost_regex-bcb-mt-1_38\regex_debug.obj" +"bcb\libboost_regex-bcb-mt-1_38\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-mt-1_38\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-mt-1_38\static_mutex.obj" +"bcb\libboost_regex-bcb-mt-1_38\usinstances.obj" +"bcb\libboost_regex-bcb-mt-1_38\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-1_38\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-1_38\wide_posix_api.obj" +"bcb\libboost_regex-bcb-mt-1_38\winstances.obj" +/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-mt-1_40.lib" +"bcb\libboost_regex-bcb-mt-1_40\c_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-1_40\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-1_40\cregex.obj" +"bcb\libboost_regex-bcb-mt-1_40\fileiter.obj" +"bcb\libboost_regex-bcb-mt-1_40\icu.obj" +"bcb\libboost_regex-bcb-mt-1_40\instances.obj" +"bcb\libboost_regex-bcb-mt-1_40\posix_api.obj" +"bcb\libboost_regex-bcb-mt-1_40\regex.obj" +"bcb\libboost_regex-bcb-mt-1_40\regex_debug.obj" +"bcb\libboost_regex-bcb-mt-1_40\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-mt-1_40\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-mt-1_40\static_mutex.obj" +"bcb\libboost_regex-bcb-mt-1_40\usinstances.obj" +"bcb\libboost_regex-bcb-mt-1_40\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-1_40\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-1_40\wide_posix_api.obj" +"bcb\libboost_regex-bcb-mt-1_40\winstances.obj" | ######################################################## # -# section for libboost_regex-bcb-1_38.lib +# section for libboost_regex-bcb-1_40.lib # ######################################################## -bcb\libboost_regex-bcb-1_38\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_40\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_38\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_40\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\libboost_regex-bcb-1_38\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_40\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_38\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_40\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\libboost_regex-bcb-1_38\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_40\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_38\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_40\cregex.obj ../src/cregex.cpp | -bcb\libboost_regex-bcb-1_38\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_40\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_38\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_40\fileiter.obj ../src/fileiter.cpp | -bcb\libboost_regex-bcb-1_38\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_40\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_38\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_40\icu.obj ../src/icu.cpp | -bcb\libboost_regex-bcb-1_38\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_40\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_38\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_40\instances.obj ../src/instances.cpp | -bcb\libboost_regex-bcb-1_38\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_40\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_38\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_40\posix_api.obj ../src/posix_api.cpp | -bcb\libboost_regex-bcb-1_38\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_40\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_38\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_40\regex.obj ../src/regex.cpp | -bcb\libboost_regex-bcb-1_38\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_40\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_38\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_40\regex_debug.obj ../src/regex_debug.cpp | -bcb\libboost_regex-bcb-1_38\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_40\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_38\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_40\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\libboost_regex-bcb-1_38\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_40\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_38\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_40\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\libboost_regex-bcb-1_38\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_40\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_38\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_40\static_mutex.obj ../src/static_mutex.cpp | -bcb\libboost_regex-bcb-1_38\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_40\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_38\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_40\usinstances.obj ../src/usinstances.cpp | -bcb\libboost_regex-bcb-1_38\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_40\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_38\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_40\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\libboost_regex-bcb-1_38\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_40\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_38\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_40\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\libboost_regex-bcb-1_38\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_40\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_38\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_40\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\libboost_regex-bcb-1_38\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-1_40\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_38\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_40\winstances.obj ../src/winstances.cpp | -bcb\libboost_regex-bcb-1_38 : - -@mkdir bcb\libboost_regex-bcb-1_38 +bcb\libboost_regex-bcb-1_40 : + -@mkdir bcb\libboost_regex-bcb-1_40 -libboost_regex-bcb-1_38_clean : - del bcb\libboost_regex-bcb-1_38\*.obj - del bcb\libboost_regex-bcb-1_38\*.il? - del bcb\libboost_regex-bcb-1_38\*.csm - del bcb\libboost_regex-bcb-1_38\*.tds +libboost_regex-bcb-1_40_clean : + del bcb\libboost_regex-bcb-1_40\*.obj + del bcb\libboost_regex-bcb-1_40\*.il? + del bcb\libboost_regex-bcb-1_40\*.csm + del bcb\libboost_regex-bcb-1_40\*.tds -bcb\libboost_regex-bcb-1_38.lib : bcb\libboost_regex-bcb-1_38\c_regex_traits.obj bcb\libboost_regex-bcb-1_38\cpp_regex_traits.obj bcb\libboost_regex-bcb-1_38\cregex.obj bcb\libboost_regex-bcb-1_38\fileiter.obj bcb\libboost_regex-bcb-1_38\icu.obj bcb\libboost_regex-bcb-1_38\instances.obj bcb\libboost_regex-bcb-1_38\posix_api.obj bcb\libboost_regex-bcb-1_38\regex.obj bcb\libboost_regex-bcb-1_38\regex_debug.obj bcb\libboost_regex-bcb-1_38\regex_raw_buffer.obj bcb\libboost_regex-bcb-1_38\regex_traits_defaults.obj bcb\libboost_regex-bcb-1_38\static_mutex.obj bcb\libboost_regex-bcb-1_38\usinstances.obj bcb\libboost_regex-bcb-1_38\w32_regex_traits.obj bcb\libboost_regex-bcb-1_38\wc_regex_traits.obj bcb\libboost_regex-bcb-1_38\wide_posix_api.obj bcb\libboost_regex-bcb-1_38\winstances.obj - if exist bcb\libboost_regex-bcb-1_38.lib del bcb\libboost_regex-bcb-1_38.lib +bcb\libboost_regex-bcb-1_40.lib : bcb\libboost_regex-bcb-1_40\c_regex_traits.obj bcb\libboost_regex-bcb-1_40\cpp_regex_traits.obj bcb\libboost_regex-bcb-1_40\cregex.obj bcb\libboost_regex-bcb-1_40\fileiter.obj bcb\libboost_regex-bcb-1_40\icu.obj bcb\libboost_regex-bcb-1_40\instances.obj bcb\libboost_regex-bcb-1_40\posix_api.obj bcb\libboost_regex-bcb-1_40\regex.obj bcb\libboost_regex-bcb-1_40\regex_debug.obj bcb\libboost_regex-bcb-1_40\regex_raw_buffer.obj bcb\libboost_regex-bcb-1_40\regex_traits_defaults.obj bcb\libboost_regex-bcb-1_40\static_mutex.obj bcb\libboost_regex-bcb-1_40\usinstances.obj bcb\libboost_regex-bcb-1_40\w32_regex_traits.obj bcb\libboost_regex-bcb-1_40\wc_regex_traits.obj bcb\libboost_regex-bcb-1_40\wide_posix_api.obj bcb\libboost_regex-bcb-1_40\winstances.obj + if exist bcb\libboost_regex-bcb-1_40.lib del bcb\libboost_regex-bcb-1_40.lib tlib @&&| -/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-1_38.lib" +"bcb\libboost_regex-bcb-1_38\c_regex_traits.obj" +"bcb\libboost_regex-bcb-1_38\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-1_38\cregex.obj" +"bcb\libboost_regex-bcb-1_38\fileiter.obj" +"bcb\libboost_regex-bcb-1_38\icu.obj" +"bcb\libboost_regex-bcb-1_38\instances.obj" +"bcb\libboost_regex-bcb-1_38\posix_api.obj" +"bcb\libboost_regex-bcb-1_38\regex.obj" +"bcb\libboost_regex-bcb-1_38\regex_debug.obj" +"bcb\libboost_regex-bcb-1_38\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-1_38\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-1_38\static_mutex.obj" +"bcb\libboost_regex-bcb-1_38\usinstances.obj" +"bcb\libboost_regex-bcb-1_38\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-1_38\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-1_38\wide_posix_api.obj" +"bcb\libboost_regex-bcb-1_38\winstances.obj" +/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-1_40.lib" +"bcb\libboost_regex-bcb-1_40\c_regex_traits.obj" +"bcb\libboost_regex-bcb-1_40\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-1_40\cregex.obj" +"bcb\libboost_regex-bcb-1_40\fileiter.obj" +"bcb\libboost_regex-bcb-1_40\icu.obj" +"bcb\libboost_regex-bcb-1_40\instances.obj" +"bcb\libboost_regex-bcb-1_40\posix_api.obj" +"bcb\libboost_regex-bcb-1_40\regex.obj" +"bcb\libboost_regex-bcb-1_40\regex_debug.obj" +"bcb\libboost_regex-bcb-1_40\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-1_40\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-1_40\static_mutex.obj" +"bcb\libboost_regex-bcb-1_40\usinstances.obj" +"bcb\libboost_regex-bcb-1_40\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-1_40\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-1_40\wide_posix_api.obj" +"bcb\libboost_regex-bcb-1_40\winstances.obj" | ######################################################## # -# section for libboost_regex-bcb-sd-1_38.lib +# section for libboost_regex-bcb-sd-1_40.lib # ######################################################## -bcb\libboost_regex-bcb-sd-1_38\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_40\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_38\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_40\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\libboost_regex-bcb-sd-1_38\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_40\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_38\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_40\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\libboost_regex-bcb-sd-1_38\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_40\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_38\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_40\cregex.obj ../src/cregex.cpp | -bcb\libboost_regex-bcb-sd-1_38\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_40\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_38\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_40\fileiter.obj ../src/fileiter.cpp | -bcb\libboost_regex-bcb-sd-1_38\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_40\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_38\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_40\icu.obj ../src/icu.cpp | -bcb\libboost_regex-bcb-sd-1_38\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_40\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_38\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_40\instances.obj ../src/instances.cpp | -bcb\libboost_regex-bcb-sd-1_38\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_40\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_38\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_40\posix_api.obj ../src/posix_api.cpp | -bcb\libboost_regex-bcb-sd-1_38\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_40\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_38\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_40\regex.obj ../src/regex.cpp | -bcb\libboost_regex-bcb-sd-1_38\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_40\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_38\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_40\regex_debug.obj ../src/regex_debug.cpp | -bcb\libboost_regex-bcb-sd-1_38\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_40\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_38\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_40\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\libboost_regex-bcb-sd-1_38\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_40\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_38\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_40\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\libboost_regex-bcb-sd-1_38\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_40\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_38\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_40\static_mutex.obj ../src/static_mutex.cpp | -bcb\libboost_regex-bcb-sd-1_38\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_40\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_38\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_40\usinstances.obj ../src/usinstances.cpp | -bcb\libboost_regex-bcb-sd-1_38\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_40\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_38\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_40\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\libboost_regex-bcb-sd-1_38\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_40\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_38\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_40\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\libboost_regex-bcb-sd-1_38\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_40\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_38\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_40\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\libboost_regex-bcb-sd-1_38\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-sd-1_40\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_38\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_40\winstances.obj ../src/winstances.cpp | -bcb\libboost_regex-bcb-sd-1_38 : - -@mkdir bcb\libboost_regex-bcb-sd-1_38 +bcb\libboost_regex-bcb-sd-1_40 : + -@mkdir bcb\libboost_regex-bcb-sd-1_40 -libboost_regex-bcb-sd-1_38_clean : - del bcb\libboost_regex-bcb-sd-1_38\*.obj - del bcb\libboost_regex-bcb-sd-1_38\*.il? - del bcb\libboost_regex-bcb-sd-1_38\*.csm - del bcb\libboost_regex-bcb-sd-1_38\*.tds +libboost_regex-bcb-sd-1_40_clean : + del bcb\libboost_regex-bcb-sd-1_40\*.obj + del bcb\libboost_regex-bcb-sd-1_40\*.il? + del bcb\libboost_regex-bcb-sd-1_40\*.csm + del bcb\libboost_regex-bcb-sd-1_40\*.tds -bcb\libboost_regex-bcb-sd-1_38.lib : bcb\libboost_regex-bcb-sd-1_38\c_regex_traits.obj bcb\libboost_regex-bcb-sd-1_38\cpp_regex_traits.obj bcb\libboost_regex-bcb-sd-1_38\cregex.obj bcb\libboost_regex-bcb-sd-1_38\fileiter.obj bcb\libboost_regex-bcb-sd-1_38\icu.obj bcb\libboost_regex-bcb-sd-1_38\instances.obj bcb\libboost_regex-bcb-sd-1_38\posix_api.obj bcb\libboost_regex-bcb-sd-1_38\regex.obj bcb\libboost_regex-bcb-sd-1_38\regex_debug.obj bcb\libboost_regex-bcb-sd-1_38\regex_raw_buffer.obj bcb\libboost_regex-bcb-sd-1_38\regex_traits_defaults.obj bcb\libboost_regex-bcb-sd-1_38\static_mutex.obj bcb\libboost_regex-bcb-sd-1_38\usinstances.obj bcb\libboost_regex-bcb-sd-1_38\w32_regex_traits.obj bcb\libboost_regex-bcb-sd-1_38\wc_regex_traits.obj bcb\libboost_regex-bcb-sd-1_38\wide_posix_api.obj bcb\libboost_regex-bcb-sd-1_38\winstances.obj - if exist bcb\libboost_regex-bcb-sd-1_38.lib del bcb\libboost_regex-bcb-sd-1_38.lib +bcb\libboost_regex-bcb-sd-1_40.lib : bcb\libboost_regex-bcb-sd-1_40\c_regex_traits.obj bcb\libboost_regex-bcb-sd-1_40\cpp_regex_traits.obj bcb\libboost_regex-bcb-sd-1_40\cregex.obj bcb\libboost_regex-bcb-sd-1_40\fileiter.obj bcb\libboost_regex-bcb-sd-1_40\icu.obj bcb\libboost_regex-bcb-sd-1_40\instances.obj bcb\libboost_regex-bcb-sd-1_40\posix_api.obj bcb\libboost_regex-bcb-sd-1_40\regex.obj bcb\libboost_regex-bcb-sd-1_40\regex_debug.obj bcb\libboost_regex-bcb-sd-1_40\regex_raw_buffer.obj bcb\libboost_regex-bcb-sd-1_40\regex_traits_defaults.obj bcb\libboost_regex-bcb-sd-1_40\static_mutex.obj bcb\libboost_regex-bcb-sd-1_40\usinstances.obj bcb\libboost_regex-bcb-sd-1_40\w32_regex_traits.obj bcb\libboost_regex-bcb-sd-1_40\wc_regex_traits.obj bcb\libboost_regex-bcb-sd-1_40\wide_posix_api.obj bcb\libboost_regex-bcb-sd-1_40\winstances.obj + if exist bcb\libboost_regex-bcb-sd-1_40.lib del bcb\libboost_regex-bcb-sd-1_40.lib tlib @&&| -/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-sd-1_38.lib" +"bcb\libboost_regex-bcb-sd-1_38\c_regex_traits.obj" +"bcb\libboost_regex-bcb-sd-1_38\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-sd-1_38\cregex.obj" +"bcb\libboost_regex-bcb-sd-1_38\fileiter.obj" +"bcb\libboost_regex-bcb-sd-1_38\icu.obj" +"bcb\libboost_regex-bcb-sd-1_38\instances.obj" +"bcb\libboost_regex-bcb-sd-1_38\posix_api.obj" +"bcb\libboost_regex-bcb-sd-1_38\regex.obj" +"bcb\libboost_regex-bcb-sd-1_38\regex_debug.obj" +"bcb\libboost_regex-bcb-sd-1_38\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-sd-1_38\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-sd-1_38\static_mutex.obj" +"bcb\libboost_regex-bcb-sd-1_38\usinstances.obj" +"bcb\libboost_regex-bcb-sd-1_38\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-sd-1_38\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-sd-1_38\wide_posix_api.obj" +"bcb\libboost_regex-bcb-sd-1_38\winstances.obj" +/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-sd-1_40.lib" +"bcb\libboost_regex-bcb-sd-1_40\c_regex_traits.obj" +"bcb\libboost_regex-bcb-sd-1_40\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-sd-1_40\cregex.obj" +"bcb\libboost_regex-bcb-sd-1_40\fileiter.obj" +"bcb\libboost_regex-bcb-sd-1_40\icu.obj" +"bcb\libboost_regex-bcb-sd-1_40\instances.obj" +"bcb\libboost_regex-bcb-sd-1_40\posix_api.obj" +"bcb\libboost_regex-bcb-sd-1_40\regex.obj" +"bcb\libboost_regex-bcb-sd-1_40\regex_debug.obj" +"bcb\libboost_regex-bcb-sd-1_40\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-sd-1_40\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-sd-1_40\static_mutex.obj" +"bcb\libboost_regex-bcb-sd-1_40\usinstances.obj" +"bcb\libboost_regex-bcb-sd-1_40\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-sd-1_40\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-sd-1_40\wide_posix_api.obj" +"bcb\libboost_regex-bcb-sd-1_40\winstances.obj" | ######################################################## # -# section for libboost_regex-bcb-mt-sd-1_38.lib +# section for libboost_regex-bcb-mt-sd-1_40.lib # ######################################################## -bcb\libboost_regex-bcb-mt-sd-1_38\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_40\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_38\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_40\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-sd-1_38\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_40\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_38\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_40\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-sd-1_38\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_40\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_38\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_40\cregex.obj ../src/cregex.cpp | -bcb\libboost_regex-bcb-mt-sd-1_38\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_40\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_38\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_40\fileiter.obj ../src/fileiter.cpp | -bcb\libboost_regex-bcb-mt-sd-1_38\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_40\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_38\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_40\icu.obj ../src/icu.cpp | -bcb\libboost_regex-bcb-mt-sd-1_38\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_40\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_38\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_40\instances.obj ../src/instances.cpp | -bcb\libboost_regex-bcb-mt-sd-1_38\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_40\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_38\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_40\posix_api.obj ../src/posix_api.cpp | -bcb\libboost_regex-bcb-mt-sd-1_38\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_40\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_38\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_40\regex.obj ../src/regex.cpp | -bcb\libboost_regex-bcb-mt-sd-1_38\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_40\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_38\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_40\regex_debug.obj ../src/regex_debug.cpp | -bcb\libboost_regex-bcb-mt-sd-1_38\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_40\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_38\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_40\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\libboost_regex-bcb-mt-sd-1_38\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_40\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_38\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_40\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\libboost_regex-bcb-mt-sd-1_38\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_40\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_38\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_40\static_mutex.obj ../src/static_mutex.cpp | -bcb\libboost_regex-bcb-mt-sd-1_38\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_40\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_38\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_40\usinstances.obj ../src/usinstances.cpp | -bcb\libboost_regex-bcb-mt-sd-1_38\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_40\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_38\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_40\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-sd-1_38\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_40\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_38\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_40\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-sd-1_38\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_40\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_38\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_40\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\libboost_regex-bcb-mt-sd-1_38\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-sd-1_40\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_38\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_40\winstances.obj ../src/winstances.cpp | -bcb\libboost_regex-bcb-mt-sd-1_38 : - -@mkdir bcb\libboost_regex-bcb-mt-sd-1_38 +bcb\libboost_regex-bcb-mt-sd-1_40 : + -@mkdir bcb\libboost_regex-bcb-mt-sd-1_40 -libboost_regex-bcb-mt-sd-1_38_clean : - del bcb\libboost_regex-bcb-mt-sd-1_38\*.obj - del bcb\libboost_regex-bcb-mt-sd-1_38\*.il? - del bcb\libboost_regex-bcb-mt-sd-1_38\*.csm - del bcb\libboost_regex-bcb-mt-sd-1_38\*.tds +libboost_regex-bcb-mt-sd-1_40_clean : + del bcb\libboost_regex-bcb-mt-sd-1_40\*.obj + del bcb\libboost_regex-bcb-mt-sd-1_40\*.il? + del bcb\libboost_regex-bcb-mt-sd-1_40\*.csm + del bcb\libboost_regex-bcb-mt-sd-1_40\*.tds -bcb\libboost_regex-bcb-mt-sd-1_38.lib : bcb\libboost_regex-bcb-mt-sd-1_38\c_regex_traits.obj bcb\libboost_regex-bcb-mt-sd-1_38\cpp_regex_traits.obj bcb\libboost_regex-bcb-mt-sd-1_38\cregex.obj bcb\libboost_regex-bcb-mt-sd-1_38\fileiter.obj bcb\libboost_regex-bcb-mt-sd-1_38\icu.obj bcb\libboost_regex-bcb-mt-sd-1_38\instances.obj bcb\libboost_regex-bcb-mt-sd-1_38\posix_api.obj bcb\libboost_regex-bcb-mt-sd-1_38\regex.obj bcb\libboost_regex-bcb-mt-sd-1_38\regex_debug.obj bcb\libboost_regex-bcb-mt-sd-1_38\regex_raw_buffer.obj bcb\libboost_regex-bcb-mt-sd-1_38\regex_traits_defaults.obj bcb\libboost_regex-bcb-mt-sd-1_38\static_mutex.obj bcb\libboost_regex-bcb-mt-sd-1_38\usinstances.obj bcb\libboost_regex-bcb-mt-sd-1_38\w32_regex_traits.obj bcb\libboost_regex-bcb-mt-sd-1_38\wc_regex_traits.obj bcb\libboost_regex-bcb-mt-sd-1_38\wide_posix_api.obj bcb\libboost_regex-bcb-mt-sd-1_38\winstances.obj - if exist bcb\libboost_regex-bcb-mt-sd-1_38.lib del bcb\libboost_regex-bcb-mt-sd-1_38.lib +bcb\libboost_regex-bcb-mt-sd-1_40.lib : bcb\libboost_regex-bcb-mt-sd-1_40\c_regex_traits.obj bcb\libboost_regex-bcb-mt-sd-1_40\cpp_regex_traits.obj bcb\libboost_regex-bcb-mt-sd-1_40\cregex.obj bcb\libboost_regex-bcb-mt-sd-1_40\fileiter.obj bcb\libboost_regex-bcb-mt-sd-1_40\icu.obj bcb\libboost_regex-bcb-mt-sd-1_40\instances.obj bcb\libboost_regex-bcb-mt-sd-1_40\posix_api.obj bcb\libboost_regex-bcb-mt-sd-1_40\regex.obj bcb\libboost_regex-bcb-mt-sd-1_40\regex_debug.obj bcb\libboost_regex-bcb-mt-sd-1_40\regex_raw_buffer.obj bcb\libboost_regex-bcb-mt-sd-1_40\regex_traits_defaults.obj bcb\libboost_regex-bcb-mt-sd-1_40\static_mutex.obj bcb\libboost_regex-bcb-mt-sd-1_40\usinstances.obj bcb\libboost_regex-bcb-mt-sd-1_40\w32_regex_traits.obj bcb\libboost_regex-bcb-mt-sd-1_40\wc_regex_traits.obj bcb\libboost_regex-bcb-mt-sd-1_40\wide_posix_api.obj bcb\libboost_regex-bcb-mt-sd-1_40\winstances.obj + if exist bcb\libboost_regex-bcb-mt-sd-1_40.lib del bcb\libboost_regex-bcb-mt-sd-1_40.lib tlib @&&| -/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-mt-sd-1_38.lib" +"bcb\libboost_regex-bcb-mt-sd-1_38\c_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-sd-1_38\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-sd-1_38\cregex.obj" +"bcb\libboost_regex-bcb-mt-sd-1_38\fileiter.obj" +"bcb\libboost_regex-bcb-mt-sd-1_38\icu.obj" +"bcb\libboost_regex-bcb-mt-sd-1_38\instances.obj" +"bcb\libboost_regex-bcb-mt-sd-1_38\posix_api.obj" +"bcb\libboost_regex-bcb-mt-sd-1_38\regex.obj" +"bcb\libboost_regex-bcb-mt-sd-1_38\regex_debug.obj" +"bcb\libboost_regex-bcb-mt-sd-1_38\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-mt-sd-1_38\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-mt-sd-1_38\static_mutex.obj" +"bcb\libboost_regex-bcb-mt-sd-1_38\usinstances.obj" +"bcb\libboost_regex-bcb-mt-sd-1_38\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-sd-1_38\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-sd-1_38\wide_posix_api.obj" +"bcb\libboost_regex-bcb-mt-sd-1_38\winstances.obj" +/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-mt-sd-1_40.lib" +"bcb\libboost_regex-bcb-mt-sd-1_40\c_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-sd-1_40\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-sd-1_40\cregex.obj" +"bcb\libboost_regex-bcb-mt-sd-1_40\fileiter.obj" +"bcb\libboost_regex-bcb-mt-sd-1_40\icu.obj" +"bcb\libboost_regex-bcb-mt-sd-1_40\instances.obj" +"bcb\libboost_regex-bcb-mt-sd-1_40\posix_api.obj" +"bcb\libboost_regex-bcb-mt-sd-1_40\regex.obj" +"bcb\libboost_regex-bcb-mt-sd-1_40\regex_debug.obj" +"bcb\libboost_regex-bcb-mt-sd-1_40\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-mt-sd-1_40\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-mt-sd-1_40\static_mutex.obj" +"bcb\libboost_regex-bcb-mt-sd-1_40\usinstances.obj" +"bcb\libboost_regex-bcb-mt-sd-1_40\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-sd-1_40\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-sd-1_40\wide_posix_api.obj" +"bcb\libboost_regex-bcb-mt-sd-1_40\winstances.obj" | ######################################################## # -# section for boost_regex-bcb-mt-d-1_38.lib +# section for boost_regex-bcb-mt-d-1_40.lib # ######################################################## -bcb\boost_regex-bcb-mt-d-1_38\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_40\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_38\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_40\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\boost_regex-bcb-mt-d-1_38\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_40\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_38\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_40\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\boost_regex-bcb-mt-d-1_38\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_40\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_38\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_40\cregex.obj ../src/cregex.cpp | -bcb\boost_regex-bcb-mt-d-1_38\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_40\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_38\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_40\fileiter.obj ../src/fileiter.cpp | -bcb\boost_regex-bcb-mt-d-1_38\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_40\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_38\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_40\icu.obj ../src/icu.cpp | -bcb\boost_regex-bcb-mt-d-1_38\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_40\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_38\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_40\instances.obj ../src/instances.cpp | -bcb\boost_regex-bcb-mt-d-1_38\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_40\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_38\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_40\posix_api.obj ../src/posix_api.cpp | -bcb\boost_regex-bcb-mt-d-1_38\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_40\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_38\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_40\regex.obj ../src/regex.cpp | -bcb\boost_regex-bcb-mt-d-1_38\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_40\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_38\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_40\regex_debug.obj ../src/regex_debug.cpp | -bcb\boost_regex-bcb-mt-d-1_38\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_40\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_38\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_40\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\boost_regex-bcb-mt-d-1_38\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_40\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_38\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_40\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\boost_regex-bcb-mt-d-1_38\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_40\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_38\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_40\static_mutex.obj ../src/static_mutex.cpp | -bcb\boost_regex-bcb-mt-d-1_38\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_40\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_38\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_40\usinstances.obj ../src/usinstances.cpp | -bcb\boost_regex-bcb-mt-d-1_38\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_40\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_38\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_40\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\boost_regex-bcb-mt-d-1_38\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_40\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_38\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_40\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\boost_regex-bcb-mt-d-1_38\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_40\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_38\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_40\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\boost_regex-bcb-mt-d-1_38\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-mt-d-1_40\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_38\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_40\winstances.obj ../src/winstances.cpp | -bcb\boost_regex-bcb-mt-d-1_38 : - -@mkdir bcb\boost_regex-bcb-mt-d-1_38 +bcb\boost_regex-bcb-mt-d-1_40 : + -@mkdir bcb\boost_regex-bcb-mt-d-1_40 -boost_regex-bcb-mt-d-1_38_clean : - del bcb\boost_regex-bcb-mt-d-1_38\*.obj - del bcb\boost_regex-bcb-mt-d-1_38\*.il? - del bcb\boost_regex-bcb-mt-d-1_38\*.csm - del bcb\boost_regex-bcb-mt-d-1_38\*.tds +boost_regex-bcb-mt-d-1_40_clean : + del bcb\boost_regex-bcb-mt-d-1_40\*.obj + del bcb\boost_regex-bcb-mt-d-1_40\*.il? + del bcb\boost_regex-bcb-mt-d-1_40\*.csm + del bcb\boost_regex-bcb-mt-d-1_40\*.tds del bcb\*.tds -bcb\boost_regex-bcb-mt-d-1_38.lib : bcb\boost_regex-bcb-mt-d-1_38\c_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_38\cpp_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_38\cregex.obj bcb\boost_regex-bcb-mt-d-1_38\fileiter.obj bcb\boost_regex-bcb-mt-d-1_38\icu.obj bcb\boost_regex-bcb-mt-d-1_38\instances.obj bcb\boost_regex-bcb-mt-d-1_38\posix_api.obj bcb\boost_regex-bcb-mt-d-1_38\regex.obj bcb\boost_regex-bcb-mt-d-1_38\regex_debug.obj bcb\boost_regex-bcb-mt-d-1_38\regex_raw_buffer.obj bcb\boost_regex-bcb-mt-d-1_38\regex_traits_defaults.obj bcb\boost_regex-bcb-mt-d-1_38\static_mutex.obj bcb\boost_regex-bcb-mt-d-1_38\usinstances.obj bcb\boost_regex-bcb-mt-d-1_38\w32_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_38\wc_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_38\wide_posix_api.obj bcb\boost_regex-bcb-mt-d-1_38\winstances.obj +bcb\boost_regex-bcb-mt-d-1_40.lib : bcb\boost_regex-bcb-mt-d-1_40\c_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_40\cpp_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_40\cregex.obj bcb\boost_regex-bcb-mt-d-1_40\fileiter.obj bcb\boost_regex-bcb-mt-d-1_40\icu.obj bcb\boost_regex-bcb-mt-d-1_40\instances.obj bcb\boost_regex-bcb-mt-d-1_40\posix_api.obj bcb\boost_regex-bcb-mt-d-1_40\regex.obj bcb\boost_regex-bcb-mt-d-1_40\regex_debug.obj bcb\boost_regex-bcb-mt-d-1_40\regex_raw_buffer.obj bcb\boost_regex-bcb-mt-d-1_40\regex_traits_defaults.obj bcb\boost_regex-bcb-mt-d-1_40\static_mutex.obj bcb\boost_regex-bcb-mt-d-1_40\usinstances.obj bcb\boost_regex-bcb-mt-d-1_40\w32_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_40\wc_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_40\wide_posix_api.obj bcb\boost_regex-bcb-mt-d-1_40\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_38.dll $(XLFLAGS) bcb\boost_regex-bcb-mt-d-1_38\c_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_38\cpp_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_38\cregex.obj bcb\boost_regex-bcb-mt-d-1_38\fileiter.obj bcb\boost_regex-bcb-mt-d-1_38\icu.obj bcb\boost_regex-bcb-mt-d-1_38\instances.obj bcb\boost_regex-bcb-mt-d-1_38\posix_api.obj bcb\boost_regex-bcb-mt-d-1_38\regex.obj bcb\boost_regex-bcb-mt-d-1_38\regex_debug.obj bcb\boost_regex-bcb-mt-d-1_38\regex_raw_buffer.obj bcb\boost_regex-bcb-mt-d-1_38\regex_traits_defaults.obj bcb\boost_regex-bcb-mt-d-1_38\static_mutex.obj bcb\boost_regex-bcb-mt-d-1_38\usinstances.obj bcb\boost_regex-bcb-mt-d-1_38\w32_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_38\wc_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_38\wide_posix_api.obj bcb\boost_regex-bcb-mt-d-1_38\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_40.dll $(XLFLAGS) bcb\boost_regex-bcb-mt-d-1_40\c_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_40\cpp_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_40\cregex.obj bcb\boost_regex-bcb-mt-d-1_40\fileiter.obj bcb\boost_regex-bcb-mt-d-1_40\icu.obj bcb\boost_regex-bcb-mt-d-1_40\instances.obj bcb\boost_regex-bcb-mt-d-1_40\posix_api.obj bcb\boost_regex-bcb-mt-d-1_40\regex.obj bcb\boost_regex-bcb-mt-d-1_40\regex_debug.obj bcb\boost_regex-bcb-mt-d-1_40\regex_raw_buffer.obj bcb\boost_regex-bcb-mt-d-1_40\regex_traits_defaults.obj bcb\boost_regex-bcb-mt-d-1_40\static_mutex.obj bcb\boost_regex-bcb-mt-d-1_40\usinstances.obj bcb\boost_regex-bcb-mt-d-1_40\w32_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_40\wc_regex_traits.obj bcb\boost_regex-bcb-mt-d-1_40\wide_posix_api.obj bcb\boost_regex-bcb-mt-d-1_40\winstances.obj $(LIBS) | - implib -w bcb\boost_regex-bcb-mt-d-1_38.lib bcb\boost_regex-bcb-mt-d-1_38.dll + implib -w bcb\boost_regex-bcb-mt-d-1_40.lib bcb\boost_regex-bcb-mt-d-1_40.dll ######################################################## # -# section for boost_regex-bcb-d-1_38.lib +# section for boost_regex-bcb-d-1_40.lib # ######################################################## -bcb\boost_regex-bcb-d-1_38\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_40\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_38\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_40\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\boost_regex-bcb-d-1_38\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_40\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_38\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_40\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\boost_regex-bcb-d-1_38\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_40\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_38\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_40\cregex.obj ../src/cregex.cpp | -bcb\boost_regex-bcb-d-1_38\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_40\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_38\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_40\fileiter.obj ../src/fileiter.cpp | -bcb\boost_regex-bcb-d-1_38\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_40\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_38\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_40\icu.obj ../src/icu.cpp | -bcb\boost_regex-bcb-d-1_38\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_40\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_38\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_40\instances.obj ../src/instances.cpp | -bcb\boost_regex-bcb-d-1_38\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_40\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_38\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_40\posix_api.obj ../src/posix_api.cpp | -bcb\boost_regex-bcb-d-1_38\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_40\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_38\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_40\regex.obj ../src/regex.cpp | -bcb\boost_regex-bcb-d-1_38\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_40\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_38\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_40\regex_debug.obj ../src/regex_debug.cpp | -bcb\boost_regex-bcb-d-1_38\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_40\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_38\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_40\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\boost_regex-bcb-d-1_38\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_40\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_38\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_40\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\boost_regex-bcb-d-1_38\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_40\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_38\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_40\static_mutex.obj ../src/static_mutex.cpp | -bcb\boost_regex-bcb-d-1_38\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_40\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_38\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_40\usinstances.obj ../src/usinstances.cpp | -bcb\boost_regex-bcb-d-1_38\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_40\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_38\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_40\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\boost_regex-bcb-d-1_38\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_40\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_38\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_40\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\boost_regex-bcb-d-1_38\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_40\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_38\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_40\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\boost_regex-bcb-d-1_38\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\boost_regex-bcb-d-1_40\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_38\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_40\winstances.obj ../src/winstances.cpp | -bcb\boost_regex-bcb-d-1_38 : - -@mkdir bcb\boost_regex-bcb-d-1_38 +bcb\boost_regex-bcb-d-1_40 : + -@mkdir bcb\boost_regex-bcb-d-1_40 -boost_regex-bcb-d-1_38_clean : - del bcb\boost_regex-bcb-d-1_38\*.obj - del bcb\boost_regex-bcb-d-1_38\*.il? - del bcb\boost_regex-bcb-d-1_38\*.csm - del bcb\boost_regex-bcb-d-1_38\*.tds +boost_regex-bcb-d-1_40_clean : + del bcb\boost_regex-bcb-d-1_40\*.obj + del bcb\boost_regex-bcb-d-1_40\*.il? + del bcb\boost_regex-bcb-d-1_40\*.csm + del bcb\boost_regex-bcb-d-1_40\*.tds del bcb\*.tds -bcb\boost_regex-bcb-d-1_38.lib : bcb\boost_regex-bcb-d-1_38\c_regex_traits.obj bcb\boost_regex-bcb-d-1_38\cpp_regex_traits.obj bcb\boost_regex-bcb-d-1_38\cregex.obj bcb\boost_regex-bcb-d-1_38\fileiter.obj bcb\boost_regex-bcb-d-1_38\icu.obj bcb\boost_regex-bcb-d-1_38\instances.obj bcb\boost_regex-bcb-d-1_38\posix_api.obj bcb\boost_regex-bcb-d-1_38\regex.obj bcb\boost_regex-bcb-d-1_38\regex_debug.obj bcb\boost_regex-bcb-d-1_38\regex_raw_buffer.obj bcb\boost_regex-bcb-d-1_38\regex_traits_defaults.obj bcb\boost_regex-bcb-d-1_38\static_mutex.obj bcb\boost_regex-bcb-d-1_38\usinstances.obj bcb\boost_regex-bcb-d-1_38\w32_regex_traits.obj bcb\boost_regex-bcb-d-1_38\wc_regex_traits.obj bcb\boost_regex-bcb-d-1_38\wide_posix_api.obj bcb\boost_regex-bcb-d-1_38\winstances.obj +bcb\boost_regex-bcb-d-1_40.lib : bcb\boost_regex-bcb-d-1_40\c_regex_traits.obj bcb\boost_regex-bcb-d-1_40\cpp_regex_traits.obj bcb\boost_regex-bcb-d-1_40\cregex.obj bcb\boost_regex-bcb-d-1_40\fileiter.obj bcb\boost_regex-bcb-d-1_40\icu.obj bcb\boost_regex-bcb-d-1_40\instances.obj bcb\boost_regex-bcb-d-1_40\posix_api.obj bcb\boost_regex-bcb-d-1_40\regex.obj bcb\boost_regex-bcb-d-1_40\regex_debug.obj bcb\boost_regex-bcb-d-1_40\regex_raw_buffer.obj bcb\boost_regex-bcb-d-1_40\regex_traits_defaults.obj bcb\boost_regex-bcb-d-1_40\static_mutex.obj bcb\boost_regex-bcb-d-1_40\usinstances.obj bcb\boost_regex-bcb-d-1_40\w32_regex_traits.obj bcb\boost_regex-bcb-d-1_40\wc_regex_traits.obj bcb\boost_regex-bcb-d-1_40\wide_posix_api.obj bcb\boost_regex-bcb-d-1_40\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_38.dll $(XLFLAGS) bcb\boost_regex-bcb-d-1_38\c_regex_traits.obj bcb\boost_regex-bcb-d-1_38\cpp_regex_traits.obj bcb\boost_regex-bcb-d-1_38\cregex.obj bcb\boost_regex-bcb-d-1_38\fileiter.obj bcb\boost_regex-bcb-d-1_38\icu.obj bcb\boost_regex-bcb-d-1_38\instances.obj bcb\boost_regex-bcb-d-1_38\posix_api.obj bcb\boost_regex-bcb-d-1_38\regex.obj bcb\boost_regex-bcb-d-1_38\regex_debug.obj bcb\boost_regex-bcb-d-1_38\regex_raw_buffer.obj bcb\boost_regex-bcb-d-1_38\regex_traits_defaults.obj bcb\boost_regex-bcb-d-1_38\static_mutex.obj bcb\boost_regex-bcb-d-1_38\usinstances.obj bcb\boost_regex-bcb-d-1_38\w32_regex_traits.obj bcb\boost_regex-bcb-d-1_38\wc_regex_traits.obj bcb\boost_regex-bcb-d-1_38\wide_posix_api.obj bcb\boost_regex-bcb-d-1_38\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_40.dll $(XLFLAGS) bcb\boost_regex-bcb-d-1_40\c_regex_traits.obj bcb\boost_regex-bcb-d-1_40\cpp_regex_traits.obj bcb\boost_regex-bcb-d-1_40\cregex.obj bcb\boost_regex-bcb-d-1_40\fileiter.obj bcb\boost_regex-bcb-d-1_40\icu.obj bcb\boost_regex-bcb-d-1_40\instances.obj bcb\boost_regex-bcb-d-1_40\posix_api.obj bcb\boost_regex-bcb-d-1_40\regex.obj bcb\boost_regex-bcb-d-1_40\regex_debug.obj bcb\boost_regex-bcb-d-1_40\regex_raw_buffer.obj bcb\boost_regex-bcb-d-1_40\regex_traits_defaults.obj bcb\boost_regex-bcb-d-1_40\static_mutex.obj bcb\boost_regex-bcb-d-1_40\usinstances.obj bcb\boost_regex-bcb-d-1_40\w32_regex_traits.obj bcb\boost_regex-bcb-d-1_40\wc_regex_traits.obj bcb\boost_regex-bcb-d-1_40\wide_posix_api.obj bcb\boost_regex-bcb-d-1_40\winstances.obj $(LIBS) | - implib -w bcb\boost_regex-bcb-d-1_38.lib bcb\boost_regex-bcb-d-1_38.dll + implib -w bcb\boost_regex-bcb-d-1_40.lib bcb\boost_regex-bcb-d-1_40.dll ######################################################## # -# section for libboost_regex-bcb-mt-d-1_38.lib +# section for libboost_regex-bcb-mt-d-1_40.lib # ######################################################## -bcb\libboost_regex-bcb-mt-d-1_38\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_40\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_38\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_40\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-d-1_38\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_40\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_38\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_40\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-d-1_38\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_40\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_38\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_40\cregex.obj ../src/cregex.cpp | -bcb\libboost_regex-bcb-mt-d-1_38\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_40\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_38\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_40\fileiter.obj ../src/fileiter.cpp | -bcb\libboost_regex-bcb-mt-d-1_38\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_40\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_38\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_40\icu.obj ../src/icu.cpp | -bcb\libboost_regex-bcb-mt-d-1_38\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_40\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_38\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_40\instances.obj ../src/instances.cpp | -bcb\libboost_regex-bcb-mt-d-1_38\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_40\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_38\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_40\posix_api.obj ../src/posix_api.cpp | -bcb\libboost_regex-bcb-mt-d-1_38\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_40\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_38\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_40\regex.obj ../src/regex.cpp | -bcb\libboost_regex-bcb-mt-d-1_38\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_40\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_38\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_40\regex_debug.obj ../src/regex_debug.cpp | -bcb\libboost_regex-bcb-mt-d-1_38\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_40\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_38\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_40\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\libboost_regex-bcb-mt-d-1_38\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_40\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_38\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_40\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\libboost_regex-bcb-mt-d-1_38\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_40\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_38\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_40\static_mutex.obj ../src/static_mutex.cpp | -bcb\libboost_regex-bcb-mt-d-1_38\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_40\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_38\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_40\usinstances.obj ../src/usinstances.cpp | -bcb\libboost_regex-bcb-mt-d-1_38\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_40\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_38\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_40\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-d-1_38\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_40\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_38\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_40\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\libboost_regex-bcb-mt-d-1_38\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_40\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_38\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_40\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\libboost_regex-bcb-mt-d-1_38\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-mt-d-1_40\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_38\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_40\winstances.obj ../src/winstances.cpp | -bcb\libboost_regex-bcb-mt-d-1_38 : - -@mkdir bcb\libboost_regex-bcb-mt-d-1_38 +bcb\libboost_regex-bcb-mt-d-1_40 : + -@mkdir bcb\libboost_regex-bcb-mt-d-1_40 -libboost_regex-bcb-mt-d-1_38_clean : - del bcb\libboost_regex-bcb-mt-d-1_38\*.obj - del bcb\libboost_regex-bcb-mt-d-1_38\*.il? - del bcb\libboost_regex-bcb-mt-d-1_38\*.csm - del bcb\libboost_regex-bcb-mt-d-1_38\*.tds +libboost_regex-bcb-mt-d-1_40_clean : + del bcb\libboost_regex-bcb-mt-d-1_40\*.obj + del bcb\libboost_regex-bcb-mt-d-1_40\*.il? + del bcb\libboost_regex-bcb-mt-d-1_40\*.csm + del bcb\libboost_regex-bcb-mt-d-1_40\*.tds -bcb\libboost_regex-bcb-mt-d-1_38.lib : bcb\libboost_regex-bcb-mt-d-1_38\c_regex_traits.obj bcb\libboost_regex-bcb-mt-d-1_38\cpp_regex_traits.obj bcb\libboost_regex-bcb-mt-d-1_38\cregex.obj bcb\libboost_regex-bcb-mt-d-1_38\fileiter.obj bcb\libboost_regex-bcb-mt-d-1_38\icu.obj bcb\libboost_regex-bcb-mt-d-1_38\instances.obj bcb\libboost_regex-bcb-mt-d-1_38\posix_api.obj bcb\libboost_regex-bcb-mt-d-1_38\regex.obj bcb\libboost_regex-bcb-mt-d-1_38\regex_debug.obj bcb\libboost_regex-bcb-mt-d-1_38\regex_raw_buffer.obj bcb\libboost_regex-bcb-mt-d-1_38\regex_traits_defaults.obj bcb\libboost_regex-bcb-mt-d-1_38\static_mutex.obj bcb\libboost_regex-bcb-mt-d-1_38\usinstances.obj bcb\libboost_regex-bcb-mt-d-1_38\w32_regex_traits.obj bcb\libboost_regex-bcb-mt-d-1_38\wc_regex_traits.obj bcb\libboost_regex-bcb-mt-d-1_38\wide_posix_api.obj bcb\libboost_regex-bcb-mt-d-1_38\winstances.obj - if exist bcb\libboost_regex-bcb-mt-d-1_38.lib del bcb\libboost_regex-bcb-mt-d-1_38.lib +bcb\libboost_regex-bcb-mt-d-1_40.lib : bcb\libboost_regex-bcb-mt-d-1_40\c_regex_traits.obj bcb\libboost_regex-bcb-mt-d-1_40\cpp_regex_traits.obj bcb\libboost_regex-bcb-mt-d-1_40\cregex.obj bcb\libboost_regex-bcb-mt-d-1_40\fileiter.obj bcb\libboost_regex-bcb-mt-d-1_40\icu.obj bcb\libboost_regex-bcb-mt-d-1_40\instances.obj bcb\libboost_regex-bcb-mt-d-1_40\posix_api.obj bcb\libboost_regex-bcb-mt-d-1_40\regex.obj bcb\libboost_regex-bcb-mt-d-1_40\regex_debug.obj bcb\libboost_regex-bcb-mt-d-1_40\regex_raw_buffer.obj bcb\libboost_regex-bcb-mt-d-1_40\regex_traits_defaults.obj bcb\libboost_regex-bcb-mt-d-1_40\static_mutex.obj bcb\libboost_regex-bcb-mt-d-1_40\usinstances.obj bcb\libboost_regex-bcb-mt-d-1_40\w32_regex_traits.obj bcb\libboost_regex-bcb-mt-d-1_40\wc_regex_traits.obj bcb\libboost_regex-bcb-mt-d-1_40\wide_posix_api.obj bcb\libboost_regex-bcb-mt-d-1_40\winstances.obj + if exist bcb\libboost_regex-bcb-mt-d-1_40.lib del bcb\libboost_regex-bcb-mt-d-1_40.lib tlib @&&| -/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-mt-d-1_38.lib" +"bcb\libboost_regex-bcb-mt-d-1_38\c_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-d-1_38\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-d-1_38\cregex.obj" +"bcb\libboost_regex-bcb-mt-d-1_38\fileiter.obj" +"bcb\libboost_regex-bcb-mt-d-1_38\icu.obj" +"bcb\libboost_regex-bcb-mt-d-1_38\instances.obj" +"bcb\libboost_regex-bcb-mt-d-1_38\posix_api.obj" +"bcb\libboost_regex-bcb-mt-d-1_38\regex.obj" +"bcb\libboost_regex-bcb-mt-d-1_38\regex_debug.obj" +"bcb\libboost_regex-bcb-mt-d-1_38\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-mt-d-1_38\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-mt-d-1_38\static_mutex.obj" +"bcb\libboost_regex-bcb-mt-d-1_38\usinstances.obj" +"bcb\libboost_regex-bcb-mt-d-1_38\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-d-1_38\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-d-1_38\wide_posix_api.obj" +"bcb\libboost_regex-bcb-mt-d-1_38\winstances.obj" +/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-mt-d-1_40.lib" +"bcb\libboost_regex-bcb-mt-d-1_40\c_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-d-1_40\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-d-1_40\cregex.obj" +"bcb\libboost_regex-bcb-mt-d-1_40\fileiter.obj" +"bcb\libboost_regex-bcb-mt-d-1_40\icu.obj" +"bcb\libboost_regex-bcb-mt-d-1_40\instances.obj" +"bcb\libboost_regex-bcb-mt-d-1_40\posix_api.obj" +"bcb\libboost_regex-bcb-mt-d-1_40\regex.obj" +"bcb\libboost_regex-bcb-mt-d-1_40\regex_debug.obj" +"bcb\libboost_regex-bcb-mt-d-1_40\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-mt-d-1_40\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-mt-d-1_40\static_mutex.obj" +"bcb\libboost_regex-bcb-mt-d-1_40\usinstances.obj" +"bcb\libboost_regex-bcb-mt-d-1_40\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-d-1_40\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-mt-d-1_40\wide_posix_api.obj" +"bcb\libboost_regex-bcb-mt-d-1_40\winstances.obj" | ######################################################## # -# section for libboost_regex-bcb-d-1_38.lib +# section for libboost_regex-bcb-d-1_40.lib # ######################################################## -bcb\libboost_regex-bcb-d-1_38\c_regex_traits.obj: ../src/c_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_40\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_38\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_40\c_regex_traits.obj ../src/c_regex_traits.cpp | -bcb\libboost_regex-bcb-d-1_38\cpp_regex_traits.obj: ../src/cpp_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_40\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_38\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_40\cpp_regex_traits.obj ../src/cpp_regex_traits.cpp | -bcb\libboost_regex-bcb-d-1_38\cregex.obj: ../src/cregex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_40\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_38\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_40\cregex.obj ../src/cregex.cpp | -bcb\libboost_regex-bcb-d-1_38\fileiter.obj: ../src/fileiter.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_40\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_38\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_40\fileiter.obj ../src/fileiter.cpp | -bcb\libboost_regex-bcb-d-1_38\icu.obj: ../src/icu.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_40\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_38\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_40\icu.obj ../src/icu.cpp | -bcb\libboost_regex-bcb-d-1_38\instances.obj: ../src/instances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_40\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_38\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_40\instances.obj ../src/instances.cpp | -bcb\libboost_regex-bcb-d-1_38\posix_api.obj: ../src/posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_40\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_38\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_40\posix_api.obj ../src/posix_api.cpp | -bcb\libboost_regex-bcb-d-1_38\regex.obj: ../src/regex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_40\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_38\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_40\regex.obj ../src/regex.cpp | -bcb\libboost_regex-bcb-d-1_38\regex_debug.obj: ../src/regex_debug.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_40\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_38\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_40\regex_debug.obj ../src/regex_debug.cpp | -bcb\libboost_regex-bcb-d-1_38\regex_raw_buffer.obj: ../src/regex_raw_buffer.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_40\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_38\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_40\regex_raw_buffer.obj ../src/regex_raw_buffer.cpp | -bcb\libboost_regex-bcb-d-1_38\regex_traits_defaults.obj: ../src/regex_traits_defaults.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_40\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_38\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_40\regex_traits_defaults.obj ../src/regex_traits_defaults.cpp | -bcb\libboost_regex-bcb-d-1_38\static_mutex.obj: ../src/static_mutex.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_40\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_38\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_40\static_mutex.obj ../src/static_mutex.cpp | -bcb\libboost_regex-bcb-d-1_38\usinstances.obj: ../src/usinstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_40\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_38\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_40\usinstances.obj ../src/usinstances.cpp | -bcb\libboost_regex-bcb-d-1_38\w32_regex_traits.obj: ../src/w32_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_40\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_38\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_40\w32_regex_traits.obj ../src/w32_regex_traits.cpp | -bcb\libboost_regex-bcb-d-1_38\wc_regex_traits.obj: ../src/wc_regex_traits.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_40\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_38\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_40\wc_regex_traits.obj ../src/wc_regex_traits.cpp | -bcb\libboost_regex-bcb-d-1_38\wide_posix_api.obj: ../src/wide_posix_api.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_40\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_38\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_40\wide_posix_api.obj ../src/wide_posix_api.cpp | -bcb\libboost_regex-bcb-d-1_38\winstances.obj: ../src/winstances.cpp $(ALL_HEADER) +bcb\libboost_regex-bcb-d-1_40\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_38\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_40\winstances.obj ../src/winstances.cpp | -bcb\libboost_regex-bcb-d-1_38 : - -@mkdir bcb\libboost_regex-bcb-d-1_38 +bcb\libboost_regex-bcb-d-1_40 : + -@mkdir bcb\libboost_regex-bcb-d-1_40 -libboost_regex-bcb-d-1_38_clean : - del bcb\libboost_regex-bcb-d-1_38\*.obj - del bcb\libboost_regex-bcb-d-1_38\*.il? - del bcb\libboost_regex-bcb-d-1_38\*.csm - del bcb\libboost_regex-bcb-d-1_38\*.tds +libboost_regex-bcb-d-1_40_clean : + del bcb\libboost_regex-bcb-d-1_40\*.obj + del bcb\libboost_regex-bcb-d-1_40\*.il? + del bcb\libboost_regex-bcb-d-1_40\*.csm + del bcb\libboost_regex-bcb-d-1_40\*.tds -bcb\libboost_regex-bcb-d-1_38.lib : bcb\libboost_regex-bcb-d-1_38\c_regex_traits.obj bcb\libboost_regex-bcb-d-1_38\cpp_regex_traits.obj bcb\libboost_regex-bcb-d-1_38\cregex.obj bcb\libboost_regex-bcb-d-1_38\fileiter.obj bcb\libboost_regex-bcb-d-1_38\icu.obj bcb\libboost_regex-bcb-d-1_38\instances.obj bcb\libboost_regex-bcb-d-1_38\posix_api.obj bcb\libboost_regex-bcb-d-1_38\regex.obj bcb\libboost_regex-bcb-d-1_38\regex_debug.obj bcb\libboost_regex-bcb-d-1_38\regex_raw_buffer.obj bcb\libboost_regex-bcb-d-1_38\regex_traits_defaults.obj bcb\libboost_regex-bcb-d-1_38\static_mutex.obj bcb\libboost_regex-bcb-d-1_38\usinstances.obj bcb\libboost_regex-bcb-d-1_38\w32_regex_traits.obj bcb\libboost_regex-bcb-d-1_38\wc_regex_traits.obj bcb\libboost_regex-bcb-d-1_38\wide_posix_api.obj bcb\libboost_regex-bcb-d-1_38\winstances.obj - if exist bcb\libboost_regex-bcb-d-1_38.lib del bcb\libboost_regex-bcb-d-1_38.lib +bcb\libboost_regex-bcb-d-1_40.lib : bcb\libboost_regex-bcb-d-1_40\c_regex_traits.obj bcb\libboost_regex-bcb-d-1_40\cpp_regex_traits.obj bcb\libboost_regex-bcb-d-1_40\cregex.obj bcb\libboost_regex-bcb-d-1_40\fileiter.obj bcb\libboost_regex-bcb-d-1_40\icu.obj bcb\libboost_regex-bcb-d-1_40\instances.obj bcb\libboost_regex-bcb-d-1_40\posix_api.obj bcb\libboost_regex-bcb-d-1_40\regex.obj bcb\libboost_regex-bcb-d-1_40\regex_debug.obj bcb\libboost_regex-bcb-d-1_40\regex_raw_buffer.obj bcb\libboost_regex-bcb-d-1_40\regex_traits_defaults.obj bcb\libboost_regex-bcb-d-1_40\static_mutex.obj bcb\libboost_regex-bcb-d-1_40\usinstances.obj bcb\libboost_regex-bcb-d-1_40\w32_regex_traits.obj bcb\libboost_regex-bcb-d-1_40\wc_regex_traits.obj bcb\libboost_regex-bcb-d-1_40\wide_posix_api.obj bcb\libboost_regex-bcb-d-1_40\winstances.obj + if exist bcb\libboost_regex-bcb-d-1_40.lib del bcb\libboost_regex-bcb-d-1_40.lib tlib @&&| -/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-d-1_38.lib" +"bcb\libboost_regex-bcb-d-1_38\c_regex_traits.obj" +"bcb\libboost_regex-bcb-d-1_38\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-d-1_38\cregex.obj" +"bcb\libboost_regex-bcb-d-1_38\fileiter.obj" +"bcb\libboost_regex-bcb-d-1_38\icu.obj" +"bcb\libboost_regex-bcb-d-1_38\instances.obj" +"bcb\libboost_regex-bcb-d-1_38\posix_api.obj" +"bcb\libboost_regex-bcb-d-1_38\regex.obj" +"bcb\libboost_regex-bcb-d-1_38\regex_debug.obj" +"bcb\libboost_regex-bcb-d-1_38\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-d-1_38\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-d-1_38\static_mutex.obj" +"bcb\libboost_regex-bcb-d-1_38\usinstances.obj" +"bcb\libboost_regex-bcb-d-1_38\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-d-1_38\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-d-1_38\wide_posix_api.obj" +"bcb\libboost_regex-bcb-d-1_38\winstances.obj" +/P128 /C /u /a $(XSFLAGS) "bcb\libboost_regex-bcb-d-1_40.lib" +"bcb\libboost_regex-bcb-d-1_40\c_regex_traits.obj" +"bcb\libboost_regex-bcb-d-1_40\cpp_regex_traits.obj" +"bcb\libboost_regex-bcb-d-1_40\cregex.obj" +"bcb\libboost_regex-bcb-d-1_40\fileiter.obj" +"bcb\libboost_regex-bcb-d-1_40\icu.obj" +"bcb\libboost_regex-bcb-d-1_40\instances.obj" +"bcb\libboost_regex-bcb-d-1_40\posix_api.obj" +"bcb\libboost_regex-bcb-d-1_40\regex.obj" +"bcb\libboost_regex-bcb-d-1_40\regex_debug.obj" +"bcb\libboost_regex-bcb-d-1_40\regex_raw_buffer.obj" +"bcb\libboost_regex-bcb-d-1_40\regex_traits_defaults.obj" +"bcb\libboost_regex-bcb-d-1_40\static_mutex.obj" +"bcb\libboost_regex-bcb-d-1_40\usinstances.obj" +"bcb\libboost_regex-bcb-d-1_40\w32_regex_traits.obj" +"bcb\libboost_regex-bcb-d-1_40\wc_regex_traits.obj" +"bcb\libboost_regex-bcb-d-1_40\wide_posix_api.obj" +"bcb\libboost_regex-bcb-d-1_40\winstances.obj" | diff --git a/build/gcc-shared.mak b/build/gcc-shared.mak index da23de46..09addf18 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_38_shared ./gcc/libboost_regex-gcc-1_38.so gcc gcc/boost_regex-gcc-d-1_38_shared ./gcc/libboost_regex-gcc-d-1_38.so +all : gcc gcc gcc/boost_regex-gcc-1_40_shared ./gcc/libboost_regex-gcc-1_40.so gcc gcc/boost_regex-gcc-d-1_40_shared ./gcc/libboost_regex-gcc-d-1_40.so gcc : mkdir -p gcc -clean : boost_regex-gcc-1_38_clean boost_regex-gcc-d-1_38_clean +clean : boost_regex-gcc-1_40_clean boost_regex-gcc-d-1_40_clean install : all @@ -60,132 +60,132 @@ install : all ######################################################## # -# section for libboost_regex-gcc-1_38.a +# section for libboost_regex-gcc-1_40.a # ######################################################## -gcc/boost_regex-gcc-1_38_shared/c_regex_traits.o: ../src/c_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38_shared/c_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/c_regex_traits.cpp +gcc/boost_regex-gcc-1_40_shared/c_regex_traits.o: ../src/c_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_40_shared/c_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/c_regex_traits.cpp -gcc/boost_regex-gcc-1_38_shared/cpp_regex_traits.o: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38_shared/cpp_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cpp_regex_traits.cpp +gcc/boost_regex-gcc-1_40_shared/cpp_regex_traits.o: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_40_shared/cpp_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cpp_regex_traits.cpp -gcc/boost_regex-gcc-1_38_shared/cregex.o: ../src/cregex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38_shared/cregex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cregex.cpp +gcc/boost_regex-gcc-1_40_shared/cregex.o: ../src/cregex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_40_shared/cregex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cregex.cpp -gcc/boost_regex-gcc-1_38_shared/fileiter.o: ../src/fileiter.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38_shared/fileiter.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/fileiter.cpp +gcc/boost_regex-gcc-1_40_shared/fileiter.o: ../src/fileiter.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_40_shared/fileiter.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/fileiter.cpp -gcc/boost_regex-gcc-1_38_shared/icu.o: ../src/icu.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38_shared/icu.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/icu.cpp +gcc/boost_regex-gcc-1_40_shared/icu.o: ../src/icu.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_40_shared/icu.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/icu.cpp -gcc/boost_regex-gcc-1_38_shared/instances.o: ../src/instances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38_shared/instances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/instances.cpp +gcc/boost_regex-gcc-1_40_shared/instances.o: ../src/instances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_40_shared/instances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/instances.cpp -gcc/boost_regex-gcc-1_38_shared/posix_api.o: ../src/posix_api.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38_shared/posix_api.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/posix_api.cpp +gcc/boost_regex-gcc-1_40_shared/posix_api.o: ../src/posix_api.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_40_shared/posix_api.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/posix_api.cpp -gcc/boost_regex-gcc-1_38_shared/regex.o: ../src/regex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38_shared/regex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex.cpp +gcc/boost_regex-gcc-1_40_shared/regex.o: ../src/regex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_40_shared/regex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex.cpp -gcc/boost_regex-gcc-1_38_shared/regex_debug.o: ../src/regex_debug.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38_shared/regex_debug.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_debug.cpp +gcc/boost_regex-gcc-1_40_shared/regex_debug.o: ../src/regex_debug.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_40_shared/regex_debug.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_debug.cpp -gcc/boost_regex-gcc-1_38_shared/regex_raw_buffer.o: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38_shared/regex_raw_buffer.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_raw_buffer.cpp +gcc/boost_regex-gcc-1_40_shared/regex_raw_buffer.o: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_40_shared/regex_raw_buffer.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_raw_buffer.cpp -gcc/boost_regex-gcc-1_38_shared/regex_traits_defaults.o: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38_shared/regex_traits_defaults.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_traits_defaults.cpp +gcc/boost_regex-gcc-1_40_shared/regex_traits_defaults.o: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_40_shared/regex_traits_defaults.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_traits_defaults.cpp -gcc/boost_regex-gcc-1_38_shared/static_mutex.o: ../src/static_mutex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38_shared/static_mutex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/static_mutex.cpp +gcc/boost_regex-gcc-1_40_shared/static_mutex.o: ../src/static_mutex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_40_shared/static_mutex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/static_mutex.cpp -gcc/boost_regex-gcc-1_38_shared/usinstances.o: ../src/usinstances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38_shared/usinstances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/usinstances.cpp +gcc/boost_regex-gcc-1_40_shared/usinstances.o: ../src/usinstances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_40_shared/usinstances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/usinstances.cpp -gcc/boost_regex-gcc-1_38_shared/w32_regex_traits.o: ../src/w32_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38_shared/w32_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/w32_regex_traits.cpp +gcc/boost_regex-gcc-1_40_shared/w32_regex_traits.o: ../src/w32_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_40_shared/w32_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/w32_regex_traits.cpp -gcc/boost_regex-gcc-1_38_shared/wc_regex_traits.o: ../src/wc_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38_shared/wc_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wc_regex_traits.cpp +gcc/boost_regex-gcc-1_40_shared/wc_regex_traits.o: ../src/wc_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_40_shared/wc_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wc_regex_traits.cpp -gcc/boost_regex-gcc-1_38_shared/wide_posix_api.o: ../src/wide_posix_api.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38_shared/wide_posix_api.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wide_posix_api.cpp +gcc/boost_regex-gcc-1_40_shared/wide_posix_api.o: ../src/wide_posix_api.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_40_shared/wide_posix_api.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wide_posix_api.cpp -gcc/boost_regex-gcc-1_38_shared/winstances.o: ../src/winstances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38_shared/winstances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/winstances.cpp +gcc/boost_regex-gcc-1_40_shared/winstances.o: ../src/winstances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_40_shared/winstances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/winstances.cpp -gcc/boost_regex-gcc-1_38_shared : - mkdir -p gcc/boost_regex-gcc-1_38_shared +gcc/boost_regex-gcc-1_40_shared : + mkdir -p gcc/boost_regex-gcc-1_40_shared -boost_regex-gcc-1_38_clean : - rm -f gcc/boost_regex-gcc-1_38_shared/*.o +boost_regex-gcc-1_40_clean : + rm -f gcc/boost_regex-gcc-1_40_shared/*.o -./gcc/libboost_regex-gcc-1_38.so : gcc/boost_regex-gcc-1_38_shared/c_regex_traits.o gcc/boost_regex-gcc-1_38_shared/cpp_regex_traits.o gcc/boost_regex-gcc-1_38_shared/cregex.o gcc/boost_regex-gcc-1_38_shared/fileiter.o gcc/boost_regex-gcc-1_38_shared/icu.o gcc/boost_regex-gcc-1_38_shared/instances.o gcc/boost_regex-gcc-1_38_shared/posix_api.o gcc/boost_regex-gcc-1_38_shared/regex.o gcc/boost_regex-gcc-1_38_shared/regex_debug.o gcc/boost_regex-gcc-1_38_shared/regex_raw_buffer.o gcc/boost_regex-gcc-1_38_shared/regex_traits_defaults.o gcc/boost_regex-gcc-1_38_shared/static_mutex.o gcc/boost_regex-gcc-1_38_shared/usinstances.o gcc/boost_regex-gcc-1_38_shared/w32_regex_traits.o gcc/boost_regex-gcc-1_38_shared/wc_regex_traits.o gcc/boost_regex-gcc-1_38_shared/wide_posix_api.o gcc/boost_regex-gcc-1_38_shared/winstances.o - $(LINKER) -o gcc/libboost_regex-gcc-1_38.so $(LDFLAGS) $(ICU_LDFLAGS) gcc/boost_regex-gcc-1_38_shared/c_regex_traits.o gcc/boost_regex-gcc-1_38_shared/cpp_regex_traits.o gcc/boost_regex-gcc-1_38_shared/cregex.o gcc/boost_regex-gcc-1_38_shared/fileiter.o gcc/boost_regex-gcc-1_38_shared/icu.o gcc/boost_regex-gcc-1_38_shared/instances.o gcc/boost_regex-gcc-1_38_shared/posix_api.o gcc/boost_regex-gcc-1_38_shared/regex.o gcc/boost_regex-gcc-1_38_shared/regex_debug.o gcc/boost_regex-gcc-1_38_shared/regex_raw_buffer.o gcc/boost_regex-gcc-1_38_shared/regex_traits_defaults.o gcc/boost_regex-gcc-1_38_shared/static_mutex.o gcc/boost_regex-gcc-1_38_shared/usinstances.o gcc/boost_regex-gcc-1_38_shared/w32_regex_traits.o gcc/boost_regex-gcc-1_38_shared/wc_regex_traits.o gcc/boost_regex-gcc-1_38_shared/wide_posix_api.o gcc/boost_regex-gcc-1_38_shared/winstances.o $(ICU_LIBS) $(LIBS) +./gcc/libboost_regex-gcc-1_40.so : gcc/boost_regex-gcc-1_40_shared/c_regex_traits.o gcc/boost_regex-gcc-1_40_shared/cpp_regex_traits.o gcc/boost_regex-gcc-1_40_shared/cregex.o gcc/boost_regex-gcc-1_40_shared/fileiter.o gcc/boost_regex-gcc-1_40_shared/icu.o gcc/boost_regex-gcc-1_40_shared/instances.o gcc/boost_regex-gcc-1_40_shared/posix_api.o gcc/boost_regex-gcc-1_40_shared/regex.o gcc/boost_regex-gcc-1_40_shared/regex_debug.o gcc/boost_regex-gcc-1_40_shared/regex_raw_buffer.o gcc/boost_regex-gcc-1_40_shared/regex_traits_defaults.o gcc/boost_regex-gcc-1_40_shared/static_mutex.o gcc/boost_regex-gcc-1_40_shared/usinstances.o gcc/boost_regex-gcc-1_40_shared/w32_regex_traits.o gcc/boost_regex-gcc-1_40_shared/wc_regex_traits.o gcc/boost_regex-gcc-1_40_shared/wide_posix_api.o gcc/boost_regex-gcc-1_40_shared/winstances.o + $(LINKER) -o gcc/libboost_regex-gcc-1_40.so $(LDFLAGS) $(ICU_LDFLAGS) gcc/boost_regex-gcc-1_40_shared/c_regex_traits.o gcc/boost_regex-gcc-1_40_shared/cpp_regex_traits.o gcc/boost_regex-gcc-1_40_shared/cregex.o gcc/boost_regex-gcc-1_40_shared/fileiter.o gcc/boost_regex-gcc-1_40_shared/icu.o gcc/boost_regex-gcc-1_40_shared/instances.o gcc/boost_regex-gcc-1_40_shared/posix_api.o gcc/boost_regex-gcc-1_40_shared/regex.o gcc/boost_regex-gcc-1_40_shared/regex_debug.o gcc/boost_regex-gcc-1_40_shared/regex_raw_buffer.o gcc/boost_regex-gcc-1_40_shared/regex_traits_defaults.o gcc/boost_regex-gcc-1_40_shared/static_mutex.o gcc/boost_regex-gcc-1_40_shared/usinstances.o gcc/boost_regex-gcc-1_40_shared/w32_regex_traits.o gcc/boost_regex-gcc-1_40_shared/wc_regex_traits.o gcc/boost_regex-gcc-1_40_shared/wide_posix_api.o gcc/boost_regex-gcc-1_40_shared/winstances.o $(ICU_LIBS) $(LIBS) ######################################################## # -# section for libboost_regex-gcc-d-1_38.a +# section for libboost_regex-gcc-d-1_40.a # ######################################################## -gcc/boost_regex-gcc-d-1_38_shared/c_regex_traits.o: ../src/c_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38_shared/c_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/c_regex_traits.cpp +gcc/boost_regex-gcc-d-1_40_shared/c_regex_traits.o: ../src/c_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_40_shared/c_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/c_regex_traits.cpp -gcc/boost_regex-gcc-d-1_38_shared/cpp_regex_traits.o: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38_shared/cpp_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cpp_regex_traits.cpp +gcc/boost_regex-gcc-d-1_40_shared/cpp_regex_traits.o: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_40_shared/cpp_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cpp_regex_traits.cpp -gcc/boost_regex-gcc-d-1_38_shared/cregex.o: ../src/cregex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38_shared/cregex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cregex.cpp +gcc/boost_regex-gcc-d-1_40_shared/cregex.o: ../src/cregex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_40_shared/cregex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cregex.cpp -gcc/boost_regex-gcc-d-1_38_shared/fileiter.o: ../src/fileiter.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38_shared/fileiter.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/fileiter.cpp +gcc/boost_regex-gcc-d-1_40_shared/fileiter.o: ../src/fileiter.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_40_shared/fileiter.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/fileiter.cpp -gcc/boost_regex-gcc-d-1_38_shared/icu.o: ../src/icu.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38_shared/icu.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/icu.cpp +gcc/boost_regex-gcc-d-1_40_shared/icu.o: ../src/icu.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_40_shared/icu.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/icu.cpp -gcc/boost_regex-gcc-d-1_38_shared/instances.o: ../src/instances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38_shared/instances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/instances.cpp +gcc/boost_regex-gcc-d-1_40_shared/instances.o: ../src/instances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_40_shared/instances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/instances.cpp -gcc/boost_regex-gcc-d-1_38_shared/posix_api.o: ../src/posix_api.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38_shared/posix_api.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/posix_api.cpp +gcc/boost_regex-gcc-d-1_40_shared/posix_api.o: ../src/posix_api.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_40_shared/posix_api.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/posix_api.cpp -gcc/boost_regex-gcc-d-1_38_shared/regex.o: ../src/regex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38_shared/regex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex.cpp +gcc/boost_regex-gcc-d-1_40_shared/regex.o: ../src/regex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_40_shared/regex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex.cpp -gcc/boost_regex-gcc-d-1_38_shared/regex_debug.o: ../src/regex_debug.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38_shared/regex_debug.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_debug.cpp +gcc/boost_regex-gcc-d-1_40_shared/regex_debug.o: ../src/regex_debug.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_40_shared/regex_debug.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_debug.cpp -gcc/boost_regex-gcc-d-1_38_shared/regex_raw_buffer.o: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38_shared/regex_raw_buffer.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_raw_buffer.cpp +gcc/boost_regex-gcc-d-1_40_shared/regex_raw_buffer.o: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_40_shared/regex_raw_buffer.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_raw_buffer.cpp -gcc/boost_regex-gcc-d-1_38_shared/regex_traits_defaults.o: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38_shared/regex_traits_defaults.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_traits_defaults.cpp +gcc/boost_regex-gcc-d-1_40_shared/regex_traits_defaults.o: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_40_shared/regex_traits_defaults.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_traits_defaults.cpp -gcc/boost_regex-gcc-d-1_38_shared/static_mutex.o: ../src/static_mutex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38_shared/static_mutex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/static_mutex.cpp +gcc/boost_regex-gcc-d-1_40_shared/static_mutex.o: ../src/static_mutex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_40_shared/static_mutex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/static_mutex.cpp -gcc/boost_regex-gcc-d-1_38_shared/usinstances.o: ../src/usinstances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38_shared/usinstances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/usinstances.cpp +gcc/boost_regex-gcc-d-1_40_shared/usinstances.o: ../src/usinstances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_40_shared/usinstances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/usinstances.cpp -gcc/boost_regex-gcc-d-1_38_shared/w32_regex_traits.o: ../src/w32_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38_shared/w32_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/w32_regex_traits.cpp +gcc/boost_regex-gcc-d-1_40_shared/w32_regex_traits.o: ../src/w32_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_40_shared/w32_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/w32_regex_traits.cpp -gcc/boost_regex-gcc-d-1_38_shared/wc_regex_traits.o: ../src/wc_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38_shared/wc_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wc_regex_traits.cpp +gcc/boost_regex-gcc-d-1_40_shared/wc_regex_traits.o: ../src/wc_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_40_shared/wc_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wc_regex_traits.cpp -gcc/boost_regex-gcc-d-1_38_shared/wide_posix_api.o: ../src/wide_posix_api.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38_shared/wide_posix_api.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wide_posix_api.cpp +gcc/boost_regex-gcc-d-1_40_shared/wide_posix_api.o: ../src/wide_posix_api.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_40_shared/wide_posix_api.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wide_posix_api.cpp -gcc/boost_regex-gcc-d-1_38_shared/winstances.o: ../src/winstances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38_shared/winstances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/winstances.cpp +gcc/boost_regex-gcc-d-1_40_shared/winstances.o: ../src/winstances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_40_shared/winstances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/winstances.cpp -gcc/boost_regex-gcc-d-1_38_shared : - mkdir -p gcc/boost_regex-gcc-d-1_38_shared +gcc/boost_regex-gcc-d-1_40_shared : + mkdir -p gcc/boost_regex-gcc-d-1_40_shared -boost_regex-gcc-d-1_38_clean : - rm -f gcc/boost_regex-gcc-d-1_38_shared/*.o +boost_regex-gcc-d-1_40_clean : + rm -f gcc/boost_regex-gcc-d-1_40_shared/*.o -./gcc/libboost_regex-gcc-d-1_38.so : gcc/boost_regex-gcc-d-1_38_shared/c_regex_traits.o gcc/boost_regex-gcc-d-1_38_shared/cpp_regex_traits.o gcc/boost_regex-gcc-d-1_38_shared/cregex.o gcc/boost_regex-gcc-d-1_38_shared/fileiter.o gcc/boost_regex-gcc-d-1_38_shared/icu.o gcc/boost_regex-gcc-d-1_38_shared/instances.o gcc/boost_regex-gcc-d-1_38_shared/posix_api.o gcc/boost_regex-gcc-d-1_38_shared/regex.o gcc/boost_regex-gcc-d-1_38_shared/regex_debug.o gcc/boost_regex-gcc-d-1_38_shared/regex_raw_buffer.o gcc/boost_regex-gcc-d-1_38_shared/regex_traits_defaults.o gcc/boost_regex-gcc-d-1_38_shared/static_mutex.o gcc/boost_regex-gcc-d-1_38_shared/usinstances.o gcc/boost_regex-gcc-d-1_38_shared/w32_regex_traits.o gcc/boost_regex-gcc-d-1_38_shared/wc_regex_traits.o gcc/boost_regex-gcc-d-1_38_shared/wide_posix_api.o gcc/boost_regex-gcc-d-1_38_shared/winstances.o - $(LINKER) -o gcc/libboost_regex-gcc-d-1_38.so $(LDFLAGS) $(ICU_LDFLAGS) gcc/boost_regex-gcc-d-1_38_shared/c_regex_traits.o gcc/boost_regex-gcc-d-1_38_shared/cpp_regex_traits.o gcc/boost_regex-gcc-d-1_38_shared/cregex.o gcc/boost_regex-gcc-d-1_38_shared/fileiter.o gcc/boost_regex-gcc-d-1_38_shared/icu.o gcc/boost_regex-gcc-d-1_38_shared/instances.o gcc/boost_regex-gcc-d-1_38_shared/posix_api.o gcc/boost_regex-gcc-d-1_38_shared/regex.o gcc/boost_regex-gcc-d-1_38_shared/regex_debug.o gcc/boost_regex-gcc-d-1_38_shared/regex_raw_buffer.o gcc/boost_regex-gcc-d-1_38_shared/regex_traits_defaults.o gcc/boost_regex-gcc-d-1_38_shared/static_mutex.o gcc/boost_regex-gcc-d-1_38_shared/usinstances.o gcc/boost_regex-gcc-d-1_38_shared/w32_regex_traits.o gcc/boost_regex-gcc-d-1_38_shared/wc_regex_traits.o gcc/boost_regex-gcc-d-1_38_shared/wide_posix_api.o gcc/boost_regex-gcc-d-1_38_shared/winstances.o $(ICU_LIBS) $(LIBS) +./gcc/libboost_regex-gcc-d-1_40.so : gcc/boost_regex-gcc-d-1_40_shared/c_regex_traits.o gcc/boost_regex-gcc-d-1_40_shared/cpp_regex_traits.o gcc/boost_regex-gcc-d-1_40_shared/cregex.o gcc/boost_regex-gcc-d-1_40_shared/fileiter.o gcc/boost_regex-gcc-d-1_40_shared/icu.o gcc/boost_regex-gcc-d-1_40_shared/instances.o gcc/boost_regex-gcc-d-1_40_shared/posix_api.o gcc/boost_regex-gcc-d-1_40_shared/regex.o gcc/boost_regex-gcc-d-1_40_shared/regex_debug.o gcc/boost_regex-gcc-d-1_40_shared/regex_raw_buffer.o gcc/boost_regex-gcc-d-1_40_shared/regex_traits_defaults.o gcc/boost_regex-gcc-d-1_40_shared/static_mutex.o gcc/boost_regex-gcc-d-1_40_shared/usinstances.o gcc/boost_regex-gcc-d-1_40_shared/w32_regex_traits.o gcc/boost_regex-gcc-d-1_40_shared/wc_regex_traits.o gcc/boost_regex-gcc-d-1_40_shared/wide_posix_api.o gcc/boost_regex-gcc-d-1_40_shared/winstances.o + $(LINKER) -o gcc/libboost_regex-gcc-d-1_40.so $(LDFLAGS) $(ICU_LDFLAGS) gcc/boost_regex-gcc-d-1_40_shared/c_regex_traits.o gcc/boost_regex-gcc-d-1_40_shared/cpp_regex_traits.o gcc/boost_regex-gcc-d-1_40_shared/cregex.o gcc/boost_regex-gcc-d-1_40_shared/fileiter.o gcc/boost_regex-gcc-d-1_40_shared/icu.o gcc/boost_regex-gcc-d-1_40_shared/instances.o gcc/boost_regex-gcc-d-1_40_shared/posix_api.o gcc/boost_regex-gcc-d-1_40_shared/regex.o gcc/boost_regex-gcc-d-1_40_shared/regex_debug.o gcc/boost_regex-gcc-d-1_40_shared/regex_raw_buffer.o gcc/boost_regex-gcc-d-1_40_shared/regex_traits_defaults.o gcc/boost_regex-gcc-d-1_40_shared/static_mutex.o gcc/boost_regex-gcc-d-1_40_shared/usinstances.o gcc/boost_regex-gcc-d-1_40_shared/w32_regex_traits.o gcc/boost_regex-gcc-d-1_40_shared/wc_regex_traits.o gcc/boost_regex-gcc-d-1_40_shared/wide_posix_api.o gcc/boost_regex-gcc-d-1_40_shared/winstances.o $(ICU_LIBS) $(LIBS) diff --git a/build/gcc.mak b/build/gcc.mak index 16384122..ba89425b 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_38 ./gcc/libboost_regex-gcc-1_38.a gcc gcc/boost_regex-gcc-d-1_38 ./gcc/libboost_regex-gcc-d-1_38.a +all : gcc gcc gcc/boost_regex-gcc-1_40 ./gcc/libboost_regex-gcc-1_40.a gcc gcc/boost_regex-gcc-d-1_40 ./gcc/libboost_regex-gcc-d-1_40.a gcc : mkdir -p gcc -clean : boost_regex-gcc-1_38_clean boost_regex-gcc-d-1_38_clean +clean : boost_regex-gcc-1_40_clean boost_regex-gcc-d-1_40_clean install : all @@ -60,134 +60,134 @@ install : all ######################################################## # -# section for libboost_regex-gcc-1_38.a +# section for libboost_regex-gcc-1_40.a # ######################################################## -gcc/boost_regex-gcc-1_38/c_regex_traits.o: ../src/c_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38/c_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/c_regex_traits.cpp +gcc/boost_regex-gcc-1_40/c_regex_traits.o: ../src/c_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_40/c_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/c_regex_traits.cpp -gcc/boost_regex-gcc-1_38/cpp_regex_traits.o: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38/cpp_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cpp_regex_traits.cpp +gcc/boost_regex-gcc-1_40/cpp_regex_traits.o: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_40/cpp_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cpp_regex_traits.cpp -gcc/boost_regex-gcc-1_38/cregex.o: ../src/cregex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38/cregex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cregex.cpp +gcc/boost_regex-gcc-1_40/cregex.o: ../src/cregex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_40/cregex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cregex.cpp -gcc/boost_regex-gcc-1_38/fileiter.o: ../src/fileiter.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38/fileiter.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/fileiter.cpp +gcc/boost_regex-gcc-1_40/fileiter.o: ../src/fileiter.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_40/fileiter.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/fileiter.cpp -gcc/boost_regex-gcc-1_38/icu.o: ../src/icu.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38/icu.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/icu.cpp +gcc/boost_regex-gcc-1_40/icu.o: ../src/icu.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_40/icu.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/icu.cpp -gcc/boost_regex-gcc-1_38/instances.o: ../src/instances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38/instances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/instances.cpp +gcc/boost_regex-gcc-1_40/instances.o: ../src/instances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_40/instances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/instances.cpp -gcc/boost_regex-gcc-1_38/posix_api.o: ../src/posix_api.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38/posix_api.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/posix_api.cpp +gcc/boost_regex-gcc-1_40/posix_api.o: ../src/posix_api.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_40/posix_api.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/posix_api.cpp -gcc/boost_regex-gcc-1_38/regex.o: ../src/regex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38/regex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex.cpp +gcc/boost_regex-gcc-1_40/regex.o: ../src/regex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_40/regex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex.cpp -gcc/boost_regex-gcc-1_38/regex_debug.o: ../src/regex_debug.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38/regex_debug.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_debug.cpp +gcc/boost_regex-gcc-1_40/regex_debug.o: ../src/regex_debug.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_40/regex_debug.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_debug.cpp -gcc/boost_regex-gcc-1_38/regex_raw_buffer.o: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38/regex_raw_buffer.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_raw_buffer.cpp +gcc/boost_regex-gcc-1_40/regex_raw_buffer.o: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_40/regex_raw_buffer.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_raw_buffer.cpp -gcc/boost_regex-gcc-1_38/regex_traits_defaults.o: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38/regex_traits_defaults.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_traits_defaults.cpp +gcc/boost_regex-gcc-1_40/regex_traits_defaults.o: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_40/regex_traits_defaults.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_traits_defaults.cpp -gcc/boost_regex-gcc-1_38/static_mutex.o: ../src/static_mutex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38/static_mutex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/static_mutex.cpp +gcc/boost_regex-gcc-1_40/static_mutex.o: ../src/static_mutex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_40/static_mutex.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/static_mutex.cpp -gcc/boost_regex-gcc-1_38/usinstances.o: ../src/usinstances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38/usinstances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/usinstances.cpp +gcc/boost_regex-gcc-1_40/usinstances.o: ../src/usinstances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_40/usinstances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/usinstances.cpp -gcc/boost_regex-gcc-1_38/w32_regex_traits.o: ../src/w32_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38/w32_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/w32_regex_traits.cpp +gcc/boost_regex-gcc-1_40/w32_regex_traits.o: ../src/w32_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_40/w32_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/w32_regex_traits.cpp -gcc/boost_regex-gcc-1_38/wc_regex_traits.o: ../src/wc_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38/wc_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wc_regex_traits.cpp +gcc/boost_regex-gcc-1_40/wc_regex_traits.o: ../src/wc_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_40/wc_regex_traits.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wc_regex_traits.cpp -gcc/boost_regex-gcc-1_38/wide_posix_api.o: ../src/wide_posix_api.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38/wide_posix_api.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wide_posix_api.cpp +gcc/boost_regex-gcc-1_40/wide_posix_api.o: ../src/wide_posix_api.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_40/wide_posix_api.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wide_posix_api.cpp -gcc/boost_regex-gcc-1_38/winstances.o: ../src/winstances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_38/winstances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/winstances.cpp +gcc/boost_regex-gcc-1_40/winstances.o: ../src/winstances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-1_40/winstances.o $(C1) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/winstances.cpp -gcc/boost_regex-gcc-1_38 : - mkdir -p gcc/boost_regex-gcc-1_38 +gcc/boost_regex-gcc-1_40 : + mkdir -p gcc/boost_regex-gcc-1_40 -boost_regex-gcc-1_38_clean : - rm -f gcc/boost_regex-gcc-1_38/*.o +boost_regex-gcc-1_40_clean : + rm -f gcc/boost_regex-gcc-1_40/*.o -./gcc/libboost_regex-gcc-1_38.a : gcc/boost_regex-gcc-1_38/c_regex_traits.o gcc/boost_regex-gcc-1_38/cpp_regex_traits.o gcc/boost_regex-gcc-1_38/cregex.o gcc/boost_regex-gcc-1_38/fileiter.o gcc/boost_regex-gcc-1_38/icu.o gcc/boost_regex-gcc-1_38/instances.o gcc/boost_regex-gcc-1_38/posix_api.o gcc/boost_regex-gcc-1_38/regex.o gcc/boost_regex-gcc-1_38/regex_debug.o gcc/boost_regex-gcc-1_38/regex_raw_buffer.o gcc/boost_regex-gcc-1_38/regex_traits_defaults.o gcc/boost_regex-gcc-1_38/static_mutex.o gcc/boost_regex-gcc-1_38/usinstances.o gcc/boost_regex-gcc-1_38/w32_regex_traits.o gcc/boost_regex-gcc-1_38/wc_regex_traits.o gcc/boost_regex-gcc-1_38/wide_posix_api.o gcc/boost_regex-gcc-1_38/winstances.o - ar -r gcc/libboost_regex-gcc-1_38.a gcc/boost_regex-gcc-1_38/c_regex_traits.o gcc/boost_regex-gcc-1_38/cpp_regex_traits.o gcc/boost_regex-gcc-1_38/cregex.o gcc/boost_regex-gcc-1_38/fileiter.o gcc/boost_regex-gcc-1_38/icu.o gcc/boost_regex-gcc-1_38/instances.o gcc/boost_regex-gcc-1_38/posix_api.o gcc/boost_regex-gcc-1_38/regex.o gcc/boost_regex-gcc-1_38/regex_debug.o gcc/boost_regex-gcc-1_38/regex_raw_buffer.o gcc/boost_regex-gcc-1_38/regex_traits_defaults.o gcc/boost_regex-gcc-1_38/static_mutex.o gcc/boost_regex-gcc-1_38/usinstances.o gcc/boost_regex-gcc-1_38/w32_regex_traits.o gcc/boost_regex-gcc-1_38/wc_regex_traits.o gcc/boost_regex-gcc-1_38/wide_posix_api.o gcc/boost_regex-gcc-1_38/winstances.o - -ar -s gcc/libboost_regex-gcc-1_38.a +./gcc/libboost_regex-gcc-1_40.a : gcc/boost_regex-gcc-1_40/c_regex_traits.o gcc/boost_regex-gcc-1_40/cpp_regex_traits.o gcc/boost_regex-gcc-1_40/cregex.o gcc/boost_regex-gcc-1_40/fileiter.o gcc/boost_regex-gcc-1_40/icu.o gcc/boost_regex-gcc-1_40/instances.o gcc/boost_regex-gcc-1_40/posix_api.o gcc/boost_regex-gcc-1_40/regex.o gcc/boost_regex-gcc-1_40/regex_debug.o gcc/boost_regex-gcc-1_40/regex_raw_buffer.o gcc/boost_regex-gcc-1_40/regex_traits_defaults.o gcc/boost_regex-gcc-1_40/static_mutex.o gcc/boost_regex-gcc-1_40/usinstances.o gcc/boost_regex-gcc-1_40/w32_regex_traits.o gcc/boost_regex-gcc-1_40/wc_regex_traits.o gcc/boost_regex-gcc-1_40/wide_posix_api.o gcc/boost_regex-gcc-1_40/winstances.o + ar -r gcc/libboost_regex-gcc-1_40.a gcc/boost_regex-gcc-1_40/c_regex_traits.o gcc/boost_regex-gcc-1_40/cpp_regex_traits.o gcc/boost_regex-gcc-1_40/cregex.o gcc/boost_regex-gcc-1_40/fileiter.o gcc/boost_regex-gcc-1_40/icu.o gcc/boost_regex-gcc-1_40/instances.o gcc/boost_regex-gcc-1_40/posix_api.o gcc/boost_regex-gcc-1_40/regex.o gcc/boost_regex-gcc-1_40/regex_debug.o gcc/boost_regex-gcc-1_40/regex_raw_buffer.o gcc/boost_regex-gcc-1_40/regex_traits_defaults.o gcc/boost_regex-gcc-1_40/static_mutex.o gcc/boost_regex-gcc-1_40/usinstances.o gcc/boost_regex-gcc-1_40/w32_regex_traits.o gcc/boost_regex-gcc-1_40/wc_regex_traits.o gcc/boost_regex-gcc-1_40/wide_posix_api.o gcc/boost_regex-gcc-1_40/winstances.o + -ar -s gcc/libboost_regex-gcc-1_40.a ######################################################## # -# section for libboost_regex-gcc-d-1_38.a +# section for libboost_regex-gcc-d-1_40.a # ######################################################## -gcc/boost_regex-gcc-d-1_38/c_regex_traits.o: ../src/c_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38/c_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/c_regex_traits.cpp +gcc/boost_regex-gcc-d-1_40/c_regex_traits.o: ../src/c_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_40/c_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/c_regex_traits.cpp -gcc/boost_regex-gcc-d-1_38/cpp_regex_traits.o: ../src/cpp_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38/cpp_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cpp_regex_traits.cpp +gcc/boost_regex-gcc-d-1_40/cpp_regex_traits.o: ../src/cpp_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_40/cpp_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cpp_regex_traits.cpp -gcc/boost_regex-gcc-d-1_38/cregex.o: ../src/cregex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38/cregex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cregex.cpp +gcc/boost_regex-gcc-d-1_40/cregex.o: ../src/cregex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_40/cregex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/cregex.cpp -gcc/boost_regex-gcc-d-1_38/fileiter.o: ../src/fileiter.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38/fileiter.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/fileiter.cpp +gcc/boost_regex-gcc-d-1_40/fileiter.o: ../src/fileiter.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_40/fileiter.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/fileiter.cpp -gcc/boost_regex-gcc-d-1_38/icu.o: ../src/icu.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38/icu.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/icu.cpp +gcc/boost_regex-gcc-d-1_40/icu.o: ../src/icu.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_40/icu.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/icu.cpp -gcc/boost_regex-gcc-d-1_38/instances.o: ../src/instances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38/instances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/instances.cpp +gcc/boost_regex-gcc-d-1_40/instances.o: ../src/instances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_40/instances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/instances.cpp -gcc/boost_regex-gcc-d-1_38/posix_api.o: ../src/posix_api.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38/posix_api.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/posix_api.cpp +gcc/boost_regex-gcc-d-1_40/posix_api.o: ../src/posix_api.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_40/posix_api.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/posix_api.cpp -gcc/boost_regex-gcc-d-1_38/regex.o: ../src/regex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38/regex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex.cpp +gcc/boost_regex-gcc-d-1_40/regex.o: ../src/regex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_40/regex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex.cpp -gcc/boost_regex-gcc-d-1_38/regex_debug.o: ../src/regex_debug.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38/regex_debug.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_debug.cpp +gcc/boost_regex-gcc-d-1_40/regex_debug.o: ../src/regex_debug.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_40/regex_debug.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_debug.cpp -gcc/boost_regex-gcc-d-1_38/regex_raw_buffer.o: ../src/regex_raw_buffer.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38/regex_raw_buffer.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_raw_buffer.cpp +gcc/boost_regex-gcc-d-1_40/regex_raw_buffer.o: ../src/regex_raw_buffer.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_40/regex_raw_buffer.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_raw_buffer.cpp -gcc/boost_regex-gcc-d-1_38/regex_traits_defaults.o: ../src/regex_traits_defaults.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38/regex_traits_defaults.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_traits_defaults.cpp +gcc/boost_regex-gcc-d-1_40/regex_traits_defaults.o: ../src/regex_traits_defaults.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_40/regex_traits_defaults.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/regex_traits_defaults.cpp -gcc/boost_regex-gcc-d-1_38/static_mutex.o: ../src/static_mutex.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38/static_mutex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/static_mutex.cpp +gcc/boost_regex-gcc-d-1_40/static_mutex.o: ../src/static_mutex.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_40/static_mutex.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/static_mutex.cpp -gcc/boost_regex-gcc-d-1_38/usinstances.o: ../src/usinstances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38/usinstances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/usinstances.cpp +gcc/boost_regex-gcc-d-1_40/usinstances.o: ../src/usinstances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_40/usinstances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/usinstances.cpp -gcc/boost_regex-gcc-d-1_38/w32_regex_traits.o: ../src/w32_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38/w32_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/w32_regex_traits.cpp +gcc/boost_regex-gcc-d-1_40/w32_regex_traits.o: ../src/w32_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_40/w32_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/w32_regex_traits.cpp -gcc/boost_regex-gcc-d-1_38/wc_regex_traits.o: ../src/wc_regex_traits.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38/wc_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wc_regex_traits.cpp +gcc/boost_regex-gcc-d-1_40/wc_regex_traits.o: ../src/wc_regex_traits.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_40/wc_regex_traits.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wc_regex_traits.cpp -gcc/boost_regex-gcc-d-1_38/wide_posix_api.o: ../src/wide_posix_api.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38/wide_posix_api.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wide_posix_api.cpp +gcc/boost_regex-gcc-d-1_40/wide_posix_api.o: ../src/wide_posix_api.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_40/wide_posix_api.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/wide_posix_api.cpp -gcc/boost_regex-gcc-d-1_38/winstances.o: ../src/winstances.cpp $(ALL_HEADER) - $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_38/winstances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/winstances.cpp +gcc/boost_regex-gcc-d-1_40/winstances.o: ../src/winstances.cpp $(ALL_HEADER) + $(CXX) $(INCLUDES) -o gcc/boost_regex-gcc-d-1_40/winstances.o $(C2) $(CXXFLAGS) $(ICU_CXXFLAGS) ../src/winstances.cpp -gcc/boost_regex-gcc-d-1_38 : - mkdir -p gcc/boost_regex-gcc-d-1_38 +gcc/boost_regex-gcc-d-1_40 : + mkdir -p gcc/boost_regex-gcc-d-1_40 -boost_regex-gcc-d-1_38_clean : - rm -f gcc/boost_regex-gcc-d-1_38/*.o +boost_regex-gcc-d-1_40_clean : + rm -f gcc/boost_regex-gcc-d-1_40/*.o -./gcc/libboost_regex-gcc-d-1_38.a : gcc/boost_regex-gcc-d-1_38/c_regex_traits.o gcc/boost_regex-gcc-d-1_38/cpp_regex_traits.o gcc/boost_regex-gcc-d-1_38/cregex.o gcc/boost_regex-gcc-d-1_38/fileiter.o gcc/boost_regex-gcc-d-1_38/icu.o gcc/boost_regex-gcc-d-1_38/instances.o gcc/boost_regex-gcc-d-1_38/posix_api.o gcc/boost_regex-gcc-d-1_38/regex.o gcc/boost_regex-gcc-d-1_38/regex_debug.o gcc/boost_regex-gcc-d-1_38/regex_raw_buffer.o gcc/boost_regex-gcc-d-1_38/regex_traits_defaults.o gcc/boost_regex-gcc-d-1_38/static_mutex.o gcc/boost_regex-gcc-d-1_38/usinstances.o gcc/boost_regex-gcc-d-1_38/w32_regex_traits.o gcc/boost_regex-gcc-d-1_38/wc_regex_traits.o gcc/boost_regex-gcc-d-1_38/wide_posix_api.o gcc/boost_regex-gcc-d-1_38/winstances.o - ar -r gcc/libboost_regex-gcc-d-1_38.a gcc/boost_regex-gcc-d-1_38/c_regex_traits.o gcc/boost_regex-gcc-d-1_38/cpp_regex_traits.o gcc/boost_regex-gcc-d-1_38/cregex.o gcc/boost_regex-gcc-d-1_38/fileiter.o gcc/boost_regex-gcc-d-1_38/icu.o gcc/boost_regex-gcc-d-1_38/instances.o gcc/boost_regex-gcc-d-1_38/posix_api.o gcc/boost_regex-gcc-d-1_38/regex.o gcc/boost_regex-gcc-d-1_38/regex_debug.o gcc/boost_regex-gcc-d-1_38/regex_raw_buffer.o gcc/boost_regex-gcc-d-1_38/regex_traits_defaults.o gcc/boost_regex-gcc-d-1_38/static_mutex.o gcc/boost_regex-gcc-d-1_38/usinstances.o gcc/boost_regex-gcc-d-1_38/w32_regex_traits.o gcc/boost_regex-gcc-d-1_38/wc_regex_traits.o gcc/boost_regex-gcc-d-1_38/wide_posix_api.o gcc/boost_regex-gcc-d-1_38/winstances.o - -ar -s gcc/libboost_regex-gcc-d-1_38.a +./gcc/libboost_regex-gcc-d-1_40.a : gcc/boost_regex-gcc-d-1_40/c_regex_traits.o gcc/boost_regex-gcc-d-1_40/cpp_regex_traits.o gcc/boost_regex-gcc-d-1_40/cregex.o gcc/boost_regex-gcc-d-1_40/fileiter.o gcc/boost_regex-gcc-d-1_40/icu.o gcc/boost_regex-gcc-d-1_40/instances.o gcc/boost_regex-gcc-d-1_40/posix_api.o gcc/boost_regex-gcc-d-1_40/regex.o gcc/boost_regex-gcc-d-1_40/regex_debug.o gcc/boost_regex-gcc-d-1_40/regex_raw_buffer.o gcc/boost_regex-gcc-d-1_40/regex_traits_defaults.o gcc/boost_regex-gcc-d-1_40/static_mutex.o gcc/boost_regex-gcc-d-1_40/usinstances.o gcc/boost_regex-gcc-d-1_40/w32_regex_traits.o gcc/boost_regex-gcc-d-1_40/wc_regex_traits.o gcc/boost_regex-gcc-d-1_40/wide_posix_api.o gcc/boost_regex-gcc-d-1_40/winstances.o + ar -r gcc/libboost_regex-gcc-d-1_40.a gcc/boost_regex-gcc-d-1_40/c_regex_traits.o gcc/boost_regex-gcc-d-1_40/cpp_regex_traits.o gcc/boost_regex-gcc-d-1_40/cregex.o gcc/boost_regex-gcc-d-1_40/fileiter.o gcc/boost_regex-gcc-d-1_40/icu.o gcc/boost_regex-gcc-d-1_40/instances.o gcc/boost_regex-gcc-d-1_40/posix_api.o gcc/boost_regex-gcc-d-1_40/regex.o gcc/boost_regex-gcc-d-1_40/regex_debug.o gcc/boost_regex-gcc-d-1_40/regex_raw_buffer.o gcc/boost_regex-gcc-d-1_40/regex_traits_defaults.o gcc/boost_regex-gcc-d-1_40/static_mutex.o gcc/boost_regex-gcc-d-1_40/usinstances.o gcc/boost_regex-gcc-d-1_40/w32_regex_traits.o gcc/boost_regex-gcc-d-1_40/wc_regex_traits.o gcc/boost_regex-gcc-d-1_40/wide_posix_api.o gcc/boost_regex-gcc-d-1_40/winstances.o + -ar -s gcc/libboost_regex-gcc-d-1_40.a diff --git a/build/vc6-stlport.mak b/build/vc6-stlport.mak index f46da324..3703c535 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_38_dir ./vc6-stlport/libboost_regex-vc6-mt-sp-1_38.lib boost_regex-vc6-mt-p-1_38_dir ./vc6-stlport/boost_regex-vc6-mt-p-1_38.lib libboost_regex-vc6-mt-p-1_38_dir ./vc6-stlport/libboost_regex-vc6-mt-p-1_38.lib boost_regex-vc6-mt-gdp-1_38_dir ./vc6-stlport/boost_regex-vc6-mt-gdp-1_38.lib libboost_regex-vc6-mt-sgdp-1_38_dir ./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38.lib libboost_regex-vc6-mt-gdp-1_38_dir ./vc6-stlport/libboost_regex-vc6-mt-gdp-1_38.lib +all : main_dir libboost_regex-vc6-mt-sp-1_40_dir ./vc6-stlport/libboost_regex-vc6-mt-sp-1_40.lib boost_regex-vc6-mt-p-1_40_dir ./vc6-stlport/boost_regex-vc6-mt-p-1_40.lib libboost_regex-vc6-mt-p-1_40_dir ./vc6-stlport/libboost_regex-vc6-mt-p-1_40.lib boost_regex-vc6-mt-gdp-1_40_dir ./vc6-stlport/boost_regex-vc6-mt-gdp-1_40.lib libboost_regex-vc6-mt-sgdp-1_40_dir ./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40.lib libboost_regex-vc6-mt-gdp-1_40_dir ./vc6-stlport/libboost_regex-vc6-mt-gdp-1_40.lib -clean : libboost_regex-vc6-mt-sp-1_38_clean boost_regex-vc6-mt-p-1_38_clean libboost_regex-vc6-mt-p-1_38_clean boost_regex-vc6-mt-gdp-1_38_clean libboost_regex-vc6-mt-sgdp-1_38_clean libboost_regex-vc6-mt-gdp-1_38_clean +clean : libboost_regex-vc6-mt-sp-1_40_clean boost_regex-vc6-mt-p-1_40_clean libboost_regex-vc6-mt-p-1_40_clean boost_regex-vc6-mt-gdp-1_40_clean libboost_regex-vc6-mt-sgdp-1_40_clean libboost_regex-vc6-mt-gdp-1_40_clean install : stlport_check all - copy vc6-stlport\libboost_regex-vc6-mt-sp-1_38.lib "$(MSVCDIR)\lib" - copy vc6-stlport\boost_regex-vc6-mt-p-1_38.lib "$(MSVCDIR)\lib" - copy vc6-stlport\boost_regex-vc6-mt-p-1_38.dll "$(MSVCDIR)\bin" - copy vc6-stlport\libboost_regex-vc6-mt-p-1_38.lib "$(MSVCDIR)\lib" - copy vc6-stlport\boost_regex-vc6-mt-gdp-1_38.lib "$(MSVCDIR)\lib" - copy vc6-stlport\boost_regex-vc6-mt-gdp-1_38.dll "$(MSVCDIR)\bin" - copy vc6-stlport\boost_regex-vc6-mt-gdp-1_38.pdb "$(MSVCDIR)\lib" - copy vc6-stlport\libboost_regex-vc6-mt-sgdp-1_38.lib "$(MSVCDIR)\lib" - copy vc6-stlport\libboost_regex-vc6-mt-sgdp-1_38.pdb "$(MSVCDIR)\lib" - copy vc6-stlport\libboost_regex-vc6-mt-gdp-1_38.lib "$(MSVCDIR)\lib" - copy vc6-stlport\libboost_regex-vc6-mt-gdp-1_38.pdb "$(MSVCDIR)\lib" + copy vc6-stlport\libboost_regex-vc6-mt-sp-1_40.lib "$(MSVCDIR)\lib" + copy vc6-stlport\boost_regex-vc6-mt-p-1_40.lib "$(MSVCDIR)\lib" + copy vc6-stlport\boost_regex-vc6-mt-p-1_40.dll "$(MSVCDIR)\bin" + copy vc6-stlport\libboost_regex-vc6-mt-p-1_40.lib "$(MSVCDIR)\lib" + copy vc6-stlport\boost_regex-vc6-mt-gdp-1_40.lib "$(MSVCDIR)\lib" + copy vc6-stlport\boost_regex-vc6-mt-gdp-1_40.dll "$(MSVCDIR)\bin" + copy vc6-stlport\boost_regex-vc6-mt-gdp-1_40.pdb "$(MSVCDIR)\lib" + copy vc6-stlport\libboost_regex-vc6-mt-sgdp-1_40.lib "$(MSVCDIR)\lib" + copy vc6-stlport\libboost_regex-vc6-mt-sgdp-1_40.pdb "$(MSVCDIR)\lib" + copy vc6-stlport\libboost_regex-vc6-mt-gdp-1_40.lib "$(MSVCDIR)\lib" + copy vc6-stlport\libboost_regex-vc6-mt-gdp-1_40.pdb "$(MSVCDIR)\lib" main_dir : @if not exist "vc6-stlport\$(NULL)" mkdir vc6-stlport @@ -88,410 +88,410 @@ stlport_check : "$(STLPORT_PATH)\stlport\string" ######################################################## # -# section for libboost_regex-vc6-mt-sp-1_38.lib +# section for libboost_regex-vc6-mt-sp-1_40.lib # ######################################################## -vc6-stlport/libboost_regex-vc6-mt-sp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_38.pdb ../src/c_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_40.pdb ../src/c_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_38.pdb ../src/cpp_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_40.pdb ../src/cpp_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_38.pdb ../src/cregex.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_40.pdb ../src/cregex.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_38.pdb ../src/fileiter.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_40.pdb ../src/fileiter.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_38.pdb ../src/icu.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_40.pdb ../src/icu.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_38.pdb ../src/instances.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_40.pdb ../src/instances.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_38.pdb ../src/posix_api.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_40.pdb ../src/posix_api.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_38.pdb ../src/regex.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_40.pdb ../src/regex.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_38.pdb ../src/regex_debug.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_40.pdb ../src/regex_debug.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_38.pdb ../src/regex_raw_buffer.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_40.pdb ../src/regex_raw_buffer.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_38.pdb ../src/regex_traits_defaults.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_40.pdb ../src/regex_traits_defaults.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_38.pdb ../src/static_mutex.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_40.pdb ../src/static_mutex.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_38.pdb ../src/usinstances.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_40.pdb ../src/usinstances.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_38.pdb ../src/w32_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_40.pdb ../src/w32_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_38.pdb ../src/wc_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_40.pdb ../src/wc_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_38.pdb ../src/wide_posix_api.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_40.pdb ../src/wide_posix_api.cpp -vc6-stlport/libboost_regex-vc6-mt-sp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_38.pdb ../src/winstances.cpp +vc6-stlport/libboost_regex-vc6-mt-sp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-sp-1_40.pdb ../src/winstances.cpp -libboost_regex-vc6-mt-sp-1_38_dir : - @if not exist "vc6-stlport\libboost_regex-vc6-mt-sp-1_38\$(NULL)" mkdir vc6-stlport\libboost_regex-vc6-mt-sp-1_38 +libboost_regex-vc6-mt-sp-1_40_dir : + @if not exist "vc6-stlport\libboost_regex-vc6-mt-sp-1_40\$(NULL)" mkdir vc6-stlport\libboost_regex-vc6-mt-sp-1_40 -libboost_regex-vc6-mt-sp-1_38_clean : - del vc6-stlport\libboost_regex-vc6-mt-sp-1_38\*.obj - del vc6-stlport\libboost_regex-vc6-mt-sp-1_38\*.idb - del vc6-stlport\libboost_regex-vc6-mt-sp-1_38\*.exp - del vc6-stlport\libboost_regex-vc6-mt-sp-1_38\*.pch +libboost_regex-vc6-mt-sp-1_40_clean : + del vc6-stlport\libboost_regex-vc6-mt-sp-1_40\*.obj + del vc6-stlport\libboost_regex-vc6-mt-sp-1_40\*.idb + del vc6-stlport\libboost_regex-vc6-mt-sp-1_40\*.exp + del vc6-stlport\libboost_regex-vc6-mt-sp-1_40\*.pch -./vc6-stlport/libboost_regex-vc6-mt-sp-1_38.lib : vc6-stlport/libboost_regex-vc6-mt-sp-1_38/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/cregex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/icu.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/instances.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/regex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/winstances.obj - link -lib /nologo /out:vc6-stlport/libboost_regex-vc6-mt-sp-1_38.lib $(XSFLAGS) vc6-stlport/libboost_regex-vc6-mt-sp-1_38/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/cregex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/icu.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/instances.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/regex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_38/winstances.obj +./vc6-stlport/libboost_regex-vc6-mt-sp-1_40.lib : vc6-stlport/libboost_regex-vc6-mt-sp-1_40/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_40/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_40/cregex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_40/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_40/icu.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_40/instances.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_40/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_40/regex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_40/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_40/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_40/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_40/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_40/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_40/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_40/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_40/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_40/winstances.obj + link -lib /nologo /out:vc6-stlport/libboost_regex-vc6-mt-sp-1_40.lib $(XSFLAGS) vc6-stlport/libboost_regex-vc6-mt-sp-1_40/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_40/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_40/cregex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_40/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_40/icu.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_40/instances.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_40/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_40/regex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_40/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_40/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_40/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_40/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_40/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_40/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_40/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_40/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sp-1_40/winstances.obj ######################################################## # -# section for boost_regex-vc6-mt-p-1_38.lib +# section for boost_regex-vc6-mt-p-1_40.lib # ######################################################## -vc6-stlport/boost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_38.pdb ../src/c_regex_traits.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_40/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_40/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_40.pdb ../src/c_regex_traits.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_38.pdb ../src/cpp_regex_traits.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_40/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_40/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_40.pdb ../src/cpp_regex_traits.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_38.pdb ../src/cregex.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_40/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_40/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_40.pdb ../src/cregex.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_38.pdb ../src/fileiter.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_40/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_40/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_40.pdb ../src/fileiter.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_38.pdb ../src/icu.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_40/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_40/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_40.pdb ../src/icu.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_38.pdb ../src/instances.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_40/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_40/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_40.pdb ../src/instances.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_38.pdb ../src/posix_api.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_40/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_40/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_40.pdb ../src/posix_api.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_38.pdb ../src/regex.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_40/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_40/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_40.pdb ../src/regex.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_38.pdb ../src/regex_debug.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_40/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_40/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_40.pdb ../src/regex_debug.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_38.pdb ../src/regex_raw_buffer.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_40/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_40/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_40.pdb ../src/regex_raw_buffer.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_38.pdb ../src/regex_traits_defaults.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_40/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_40/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_40.pdb ../src/regex_traits_defaults.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_38.pdb ../src/static_mutex.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_40/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_40/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_40.pdb ../src/static_mutex.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_38.pdb ../src/usinstances.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_40/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_40/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_40.pdb ../src/usinstances.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_38.pdb ../src/w32_regex_traits.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_40/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_40/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_40.pdb ../src/w32_regex_traits.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_38.pdb ../src/wc_regex_traits.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_40/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_40/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_40.pdb ../src/wc_regex_traits.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_38.pdb ../src/wide_posix_api.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_40/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_40/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_40.pdb ../src/wide_posix_api.cpp -vc6-stlport/boost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_38.pdb ../src/winstances.cpp +vc6-stlport/boost_regex-vc6-mt-p-1_40/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_40/ -Fdvc6-stlport/boost_regex-vc6-mt-p-1_40.pdb ../src/winstances.cpp -boost_regex-vc6-mt-p-1_38_dir : - @if not exist "vc6-stlport\boost_regex-vc6-mt-p-1_38\$(NULL)" mkdir vc6-stlport\boost_regex-vc6-mt-p-1_38 +boost_regex-vc6-mt-p-1_40_dir : + @if not exist "vc6-stlport\boost_regex-vc6-mt-p-1_40\$(NULL)" mkdir vc6-stlport\boost_regex-vc6-mt-p-1_40 -boost_regex-vc6-mt-p-1_38_clean : - del vc6-stlport\boost_regex-vc6-mt-p-1_38\*.obj - del vc6-stlport\boost_regex-vc6-mt-p-1_38\*.idb - del vc6-stlport\boost_regex-vc6-mt-p-1_38\*.exp - del vc6-stlport\boost_regex-vc6-mt-p-1_38\*.pch +boost_regex-vc6-mt-p-1_40_clean : + del vc6-stlport\boost_regex-vc6-mt-p-1_40\*.obj + del vc6-stlport\boost_regex-vc6-mt-p-1_40\*.idb + del vc6-stlport\boost_regex-vc6-mt-p-1_40\*.exp + del vc6-stlport\boost_regex-vc6-mt-p-1_40\*.pch -./vc6-stlport/boost_regex-vc6-mt-p-1_38.lib : vc6-stlport/boost_regex-vc6-mt-p-1_38/c_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/cpp_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/cregex.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/fileiter.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/icu.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/instances.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/posix_api.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/regex.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/regex_debug.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/regex_raw_buffer.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/regex_traits_defaults.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/static_mutex.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/usinstances.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/w32_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/wc_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/wide_posix_api.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/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_38.pdb" /debug /machine:I386 /out:"vc6-stlport/boost_regex-vc6-mt-p-1_38.dll" /implib:"vc6-stlport/boost_regex-vc6-mt-p-1_38.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc6-stlport/boost_regex-vc6-mt-p-1_38/c_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/cpp_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/cregex.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/fileiter.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/icu.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/instances.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/posix_api.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/regex.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/regex_debug.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/regex_raw_buffer.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/regex_traits_defaults.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/static_mutex.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/usinstances.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/w32_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/wc_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/wide_posix_api.obj vc6-stlport/boost_regex-vc6-mt-p-1_38/winstances.obj +./vc6-stlport/boost_regex-vc6-mt-p-1_40.lib : vc6-stlport/boost_regex-vc6-mt-p-1_40/c_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_40/cpp_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_40/cregex.obj vc6-stlport/boost_regex-vc6-mt-p-1_40/fileiter.obj vc6-stlport/boost_regex-vc6-mt-p-1_40/icu.obj vc6-stlport/boost_regex-vc6-mt-p-1_40/instances.obj vc6-stlport/boost_regex-vc6-mt-p-1_40/posix_api.obj vc6-stlport/boost_regex-vc6-mt-p-1_40/regex.obj vc6-stlport/boost_regex-vc6-mt-p-1_40/regex_debug.obj vc6-stlport/boost_regex-vc6-mt-p-1_40/regex_raw_buffer.obj vc6-stlport/boost_regex-vc6-mt-p-1_40/regex_traits_defaults.obj vc6-stlport/boost_regex-vc6-mt-p-1_40/static_mutex.obj vc6-stlport/boost_regex-vc6-mt-p-1_40/usinstances.obj vc6-stlport/boost_regex-vc6-mt-p-1_40/w32_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_40/wc_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_40/wide_posix_api.obj vc6-stlport/boost_regex-vc6-mt-p-1_40/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_40.pdb" /debug /machine:I386 /out:"vc6-stlport/boost_regex-vc6-mt-p-1_40.dll" /implib:"vc6-stlport/boost_regex-vc6-mt-p-1_40.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc6-stlport/boost_regex-vc6-mt-p-1_40/c_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_40/cpp_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_40/cregex.obj vc6-stlport/boost_regex-vc6-mt-p-1_40/fileiter.obj vc6-stlport/boost_regex-vc6-mt-p-1_40/icu.obj vc6-stlport/boost_regex-vc6-mt-p-1_40/instances.obj vc6-stlport/boost_regex-vc6-mt-p-1_40/posix_api.obj vc6-stlport/boost_regex-vc6-mt-p-1_40/regex.obj vc6-stlport/boost_regex-vc6-mt-p-1_40/regex_debug.obj vc6-stlport/boost_regex-vc6-mt-p-1_40/regex_raw_buffer.obj vc6-stlport/boost_regex-vc6-mt-p-1_40/regex_traits_defaults.obj vc6-stlport/boost_regex-vc6-mt-p-1_40/static_mutex.obj vc6-stlport/boost_regex-vc6-mt-p-1_40/usinstances.obj vc6-stlport/boost_regex-vc6-mt-p-1_40/w32_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_40/wc_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-p-1_40/wide_posix_api.obj vc6-stlport/boost_regex-vc6-mt-p-1_40/winstances.obj ######################################################## # -# section for libboost_regex-vc6-mt-p-1_38.lib +# section for libboost_regex-vc6-mt-p-1_40.lib # ######################################################## -vc6-stlport/libboost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_38.pdb ../src/c_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_40.pdb ../src/c_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_38.pdb ../src/cpp_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_40.pdb ../src/cpp_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_38.pdb ../src/cregex.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_40.pdb ../src/cregex.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_38.pdb ../src/fileiter.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_40.pdb ../src/fileiter.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_38.pdb ../src/icu.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_40.pdb ../src/icu.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_38.pdb ../src/instances.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_40.pdb ../src/instances.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_38.pdb ../src/posix_api.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_40.pdb ../src/posix_api.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_38.pdb ../src/regex.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_40.pdb ../src/regex.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_38.pdb ../src/regex_debug.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_40.pdb ../src/regex_debug.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_38.pdb ../src/regex_raw_buffer.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_40.pdb ../src/regex_raw_buffer.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_38.pdb ../src/regex_traits_defaults.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_40.pdb ../src/regex_traits_defaults.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_38.pdb ../src/static_mutex.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_40.pdb ../src/static_mutex.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_38.pdb ../src/usinstances.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_40.pdb ../src/usinstances.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_38.pdb ../src/w32_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_40.pdb ../src/w32_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_38.pdb ../src/wc_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_40.pdb ../src/wc_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_38.pdb ../src/wide_posix_api.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_40.pdb ../src/wide_posix_api.cpp -vc6-stlport/libboost_regex-vc6-mt-p-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_38.pdb ../src/winstances.cpp +vc6-stlport/libboost_regex-vc6-mt-p-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-p-1_40.pdb ../src/winstances.cpp -libboost_regex-vc6-mt-p-1_38_dir : - @if not exist "vc6-stlport\libboost_regex-vc6-mt-p-1_38\$(NULL)" mkdir vc6-stlport\libboost_regex-vc6-mt-p-1_38 +libboost_regex-vc6-mt-p-1_40_dir : + @if not exist "vc6-stlport\libboost_regex-vc6-mt-p-1_40\$(NULL)" mkdir vc6-stlport\libboost_regex-vc6-mt-p-1_40 -libboost_regex-vc6-mt-p-1_38_clean : - del vc6-stlport\libboost_regex-vc6-mt-p-1_38\*.obj - del vc6-stlport\libboost_regex-vc6-mt-p-1_38\*.idb - del vc6-stlport\libboost_regex-vc6-mt-p-1_38\*.exp - del vc6-stlport\libboost_regex-vc6-mt-p-1_38\*.pch +libboost_regex-vc6-mt-p-1_40_clean : + del vc6-stlport\libboost_regex-vc6-mt-p-1_40\*.obj + del vc6-stlport\libboost_regex-vc6-mt-p-1_40\*.idb + del vc6-stlport\libboost_regex-vc6-mt-p-1_40\*.exp + del vc6-stlport\libboost_regex-vc6-mt-p-1_40\*.pch -./vc6-stlport/libboost_regex-vc6-mt-p-1_38.lib : vc6-stlport/libboost_regex-vc6-mt-p-1_38/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/cregex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/icu.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/instances.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/regex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/winstances.obj - link -lib /nologo /out:vc6-stlport/libboost_regex-vc6-mt-p-1_38.lib $(XSFLAGS) vc6-stlport/libboost_regex-vc6-mt-p-1_38/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/cregex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/icu.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/instances.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/regex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-p-1_38/winstances.obj +./vc6-stlport/libboost_regex-vc6-mt-p-1_40.lib : vc6-stlport/libboost_regex-vc6-mt-p-1_40/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_40/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_40/cregex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_40/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-p-1_40/icu.obj vc6-stlport/libboost_regex-vc6-mt-p-1_40/instances.obj vc6-stlport/libboost_regex-vc6-mt-p-1_40/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-p-1_40/regex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_40/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-p-1_40/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-p-1_40/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-p-1_40/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_40/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-p-1_40/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_40/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_40/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-p-1_40/winstances.obj + link -lib /nologo /out:vc6-stlport/libboost_regex-vc6-mt-p-1_40.lib $(XSFLAGS) vc6-stlport/libboost_regex-vc6-mt-p-1_40/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_40/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_40/cregex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_40/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-p-1_40/icu.obj vc6-stlport/libboost_regex-vc6-mt-p-1_40/instances.obj vc6-stlport/libboost_regex-vc6-mt-p-1_40/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-p-1_40/regex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_40/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-p-1_40/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-p-1_40/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-p-1_40/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-p-1_40/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-p-1_40/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_40/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-p-1_40/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-p-1_40/winstances.obj ######################################################## # -# section for boost_regex-vc6-mt-gdp-1_38.lib +# section for boost_regex-vc6-mt-gdp-1_40.lib # ######################################################## -vc6-stlport/boost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_38.pdb ../src/c_regex_traits.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_40/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_40/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_40.pdb ../src/c_regex_traits.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_38.pdb ../src/cpp_regex_traits.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_40/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_40/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_40.pdb ../src/cpp_regex_traits.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_38.pdb ../src/cregex.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_40/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_40/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_40.pdb ../src/cregex.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_38.pdb ../src/fileiter.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_40/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_40/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_40.pdb ../src/fileiter.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_38.pdb ../src/icu.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_40/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_40/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_40.pdb ../src/icu.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_38.pdb ../src/instances.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_40/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_40/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_40.pdb ../src/instances.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_38.pdb ../src/posix_api.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_40/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_40/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_40.pdb ../src/posix_api.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_38.pdb ../src/regex.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_40/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_40/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_40.pdb ../src/regex.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_38.pdb ../src/regex_debug.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_40/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_40/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_40.pdb ../src/regex_debug.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_38.pdb ../src/regex_raw_buffer.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_40/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_40/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_40.pdb ../src/regex_raw_buffer.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_38.pdb ../src/regex_traits_defaults.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_40/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_40/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_40.pdb ../src/regex_traits_defaults.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_38.pdb ../src/static_mutex.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_40/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_40/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_40.pdb ../src/static_mutex.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_38.pdb ../src/usinstances.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_40/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_40/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_40.pdb ../src/usinstances.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_38.pdb ../src/w32_regex_traits.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_40/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_40/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_40.pdb ../src/w32_regex_traits.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_38.pdb ../src/wc_regex_traits.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_40/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_40/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_40.pdb ../src/wc_regex_traits.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_38.pdb ../src/wide_posix_api.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_40/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_40/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_40.pdb ../src/wide_posix_api.cpp -vc6-stlport/boost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_38.pdb ../src/winstances.cpp +vc6-stlport/boost_regex-vc6-mt-gdp-1_40/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_40/ -Fdvc6-stlport/boost_regex-vc6-mt-gdp-1_40.pdb ../src/winstances.cpp -boost_regex-vc6-mt-gdp-1_38_dir : - @if not exist "vc6-stlport\boost_regex-vc6-mt-gdp-1_38\$(NULL)" mkdir vc6-stlport\boost_regex-vc6-mt-gdp-1_38 +boost_regex-vc6-mt-gdp-1_40_dir : + @if not exist "vc6-stlport\boost_regex-vc6-mt-gdp-1_40\$(NULL)" mkdir vc6-stlport\boost_regex-vc6-mt-gdp-1_40 -boost_regex-vc6-mt-gdp-1_38_clean : - del vc6-stlport\boost_regex-vc6-mt-gdp-1_38\*.obj - del vc6-stlport\boost_regex-vc6-mt-gdp-1_38\*.idb - del vc6-stlport\boost_regex-vc6-mt-gdp-1_38\*.exp - del vc6-stlport\boost_regex-vc6-mt-gdp-1_38\*.pch +boost_regex-vc6-mt-gdp-1_40_clean : + del vc6-stlport\boost_regex-vc6-mt-gdp-1_40\*.obj + del vc6-stlport\boost_regex-vc6-mt-gdp-1_40\*.idb + del vc6-stlport\boost_regex-vc6-mt-gdp-1_40\*.exp + del vc6-stlport\boost_regex-vc6-mt-gdp-1_40\*.pch -./vc6-stlport/boost_regex-vc6-mt-gdp-1_38.lib : vc6-stlport/boost_regex-vc6-mt-gdp-1_38/c_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/cpp_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/cregex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/fileiter.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/icu.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/instances.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/posix_api.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/regex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/regex_debug.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/regex_raw_buffer.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/regex_traits_defaults.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/static_mutex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/usinstances.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/w32_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/wc_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/wide_posix_api.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/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_38.pdb" /debug /machine:I386 /out:"vc6-stlport/boost_regex-vc6-mt-gdp-1_38.dll" /implib:"vc6-stlport/boost_regex-vc6-mt-gdp-1_38.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc6-stlport/boost_regex-vc6-mt-gdp-1_38/c_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/cpp_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/cregex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/fileiter.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/icu.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/instances.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/posix_api.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/regex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/regex_debug.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/regex_raw_buffer.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/regex_traits_defaults.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/static_mutex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/usinstances.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/w32_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/wc_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/wide_posix_api.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_38/winstances.obj +./vc6-stlport/boost_regex-vc6-mt-gdp-1_40.lib : vc6-stlport/boost_regex-vc6-mt-gdp-1_40/c_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_40/cpp_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_40/cregex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_40/fileiter.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_40/icu.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_40/instances.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_40/posix_api.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_40/regex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_40/regex_debug.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_40/regex_raw_buffer.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_40/regex_traits_defaults.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_40/static_mutex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_40/usinstances.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_40/w32_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_40/wc_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_40/wide_posix_api.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_40/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_40.pdb" /debug /machine:I386 /out:"vc6-stlport/boost_regex-vc6-mt-gdp-1_40.dll" /implib:"vc6-stlport/boost_regex-vc6-mt-gdp-1_40.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc6-stlport/boost_regex-vc6-mt-gdp-1_40/c_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_40/cpp_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_40/cregex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_40/fileiter.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_40/icu.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_40/instances.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_40/posix_api.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_40/regex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_40/regex_debug.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_40/regex_raw_buffer.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_40/regex_traits_defaults.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_40/static_mutex.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_40/usinstances.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_40/w32_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_40/wc_regex_traits.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_40/wide_posix_api.obj vc6-stlport/boost_regex-vc6-mt-gdp-1_40/winstances.obj ######################################################## # -# section for libboost_regex-vc6-mt-sgdp-1_38.lib +# section for libboost_regex-vc6-mt-sgdp-1_40.lib # ######################################################## -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_38.pdb ../src/c_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_40.pdb ../src/c_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_38.pdb ../src/cpp_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_40.pdb ../src/cpp_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_38.pdb ../src/cregex.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_40.pdb ../src/cregex.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_38.pdb ../src/fileiter.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_40.pdb ../src/fileiter.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_38.pdb ../src/icu.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_40.pdb ../src/icu.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_38.pdb ../src/instances.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_40.pdb ../src/instances.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_38.pdb ../src/posix_api.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_40.pdb ../src/posix_api.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_38.pdb ../src/regex.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_40.pdb ../src/regex.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_38.pdb ../src/regex_debug.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_40.pdb ../src/regex_debug.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_38.pdb ../src/regex_raw_buffer.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_40.pdb ../src/regex_raw_buffer.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_38.pdb ../src/regex_traits_defaults.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_40.pdb ../src/regex_traits_defaults.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_38.pdb ../src/static_mutex.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_40.pdb ../src/static_mutex.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_38.pdb ../src/usinstances.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_40.pdb ../src/usinstances.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_38.pdb ../src/w32_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_40.pdb ../src/w32_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_38.pdb ../src/wc_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_40.pdb ../src/wc_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_38.pdb ../src/wide_posix_api.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_40.pdb ../src/wide_posix_api.cpp -vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_38.pdb ../src/winstances.cpp +vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-sgdp-1_40.pdb ../src/winstances.cpp -libboost_regex-vc6-mt-sgdp-1_38_dir : - @if not exist "vc6-stlport\libboost_regex-vc6-mt-sgdp-1_38\$(NULL)" mkdir vc6-stlport\libboost_regex-vc6-mt-sgdp-1_38 +libboost_regex-vc6-mt-sgdp-1_40_dir : + @if not exist "vc6-stlport\libboost_regex-vc6-mt-sgdp-1_40\$(NULL)" mkdir vc6-stlport\libboost_regex-vc6-mt-sgdp-1_40 -libboost_regex-vc6-mt-sgdp-1_38_clean : - del vc6-stlport\libboost_regex-vc6-mt-sgdp-1_38\*.obj - del vc6-stlport\libboost_regex-vc6-mt-sgdp-1_38\*.idb - del vc6-stlport\libboost_regex-vc6-mt-sgdp-1_38\*.exp - del vc6-stlport\libboost_regex-vc6-mt-sgdp-1_38\*.pch +libboost_regex-vc6-mt-sgdp-1_40_clean : + del vc6-stlport\libboost_regex-vc6-mt-sgdp-1_40\*.obj + del vc6-stlport\libboost_regex-vc6-mt-sgdp-1_40\*.idb + del vc6-stlport\libboost_regex-vc6-mt-sgdp-1_40\*.exp + del vc6-stlport\libboost_regex-vc6-mt-sgdp-1_40\*.pch -./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38.lib : vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/cregex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/icu.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/instances.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/regex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/winstances.obj - link -lib /nologo /out:vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38.lib $(XSFLAGS) vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/cregex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/icu.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/instances.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/regex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_38/winstances.obj +./vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40.lib : vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/cregex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/icu.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/instances.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/regex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/winstances.obj + link -lib /nologo /out:vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40.lib $(XSFLAGS) vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/cregex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/icu.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/instances.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/regex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-sgdp-1_40/winstances.obj ######################################################## # -# section for libboost_regex-vc6-mt-gdp-1_38.lib +# section for libboost_regex-vc6-mt-gdp-1_40.lib # ######################################################## -vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_38.pdb ../src/c_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_40.pdb ../src/c_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_38.pdb ../src/cpp_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_40.pdb ../src/cpp_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_38.pdb ../src/cregex.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_40.pdb ../src/cregex.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_38.pdb ../src/fileiter.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_40.pdb ../src/fileiter.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_38.pdb ../src/icu.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_40.pdb ../src/icu.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_38.pdb ../src/instances.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_40.pdb ../src/instances.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_38.pdb ../src/posix_api.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_40.pdb ../src/posix_api.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_38.pdb ../src/regex.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_40.pdb ../src/regex.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_38.pdb ../src/regex_debug.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_40.pdb ../src/regex_debug.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_38.pdb ../src/regex_raw_buffer.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_40.pdb ../src/regex_raw_buffer.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_38.pdb ../src/regex_traits_defaults.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_40.pdb ../src/regex_traits_defaults.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_38.pdb ../src/static_mutex.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_40.pdb ../src/static_mutex.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_38.pdb ../src/usinstances.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_40.pdb ../src/usinstances.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_38.pdb ../src/w32_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_40.pdb ../src/w32_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_38.pdb ../src/wc_regex_traits.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_40.pdb ../src/wc_regex_traits.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_38.pdb ../src/wide_posix_api.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_40.pdb ../src/wide_posix_api.cpp -vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/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_38/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_38.pdb ../src/winstances.cpp +vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/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_40/ -Fdvc6-stlport/libboost_regex-vc6-mt-gdp-1_40.pdb ../src/winstances.cpp -libboost_regex-vc6-mt-gdp-1_38_dir : - @if not exist "vc6-stlport\libboost_regex-vc6-mt-gdp-1_38\$(NULL)" mkdir vc6-stlport\libboost_regex-vc6-mt-gdp-1_38 +libboost_regex-vc6-mt-gdp-1_40_dir : + @if not exist "vc6-stlport\libboost_regex-vc6-mt-gdp-1_40\$(NULL)" mkdir vc6-stlport\libboost_regex-vc6-mt-gdp-1_40 -libboost_regex-vc6-mt-gdp-1_38_clean : - del vc6-stlport\libboost_regex-vc6-mt-gdp-1_38\*.obj - del vc6-stlport\libboost_regex-vc6-mt-gdp-1_38\*.idb - del vc6-stlport\libboost_regex-vc6-mt-gdp-1_38\*.exp - del vc6-stlport\libboost_regex-vc6-mt-gdp-1_38\*.pch +libboost_regex-vc6-mt-gdp-1_40_clean : + del vc6-stlport\libboost_regex-vc6-mt-gdp-1_40\*.obj + del vc6-stlport\libboost_regex-vc6-mt-gdp-1_40\*.idb + del vc6-stlport\libboost_regex-vc6-mt-gdp-1_40\*.exp + del vc6-stlport\libboost_regex-vc6-mt-gdp-1_40\*.pch -./vc6-stlport/libboost_regex-vc6-mt-gdp-1_38.lib : vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/cregex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/icu.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/instances.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/regex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/winstances.obj - link -lib /nologo /out:vc6-stlport/libboost_regex-vc6-mt-gdp-1_38.lib $(XSFLAGS) vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/cregex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/icu.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/instances.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/regex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_38/winstances.obj +./vc6-stlport/libboost_regex-vc6-mt-gdp-1_40.lib : vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/cregex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/icu.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/instances.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/regex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/winstances.obj + link -lib /nologo /out:vc6-stlport/libboost_regex-vc6-mt-gdp-1_40.lib $(XSFLAGS) vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/c_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/cpp_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/cregex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/fileiter.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/icu.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/instances.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/posix_api.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/regex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/regex_debug.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/regex_raw_buffer.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/regex_traits_defaults.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/static_mutex.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/usinstances.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/w32_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/wc_regex_traits.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/wide_posix_api.obj vc6-stlport/libboost_regex-vc6-mt-gdp-1_40/winstances.obj diff --git a/build/vc6.mak b/build/vc6.mak index 28c79a21..4fe0d003 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_38_dir ./vc6/libboost_regex-vc6-s-1_38.lib libboost_regex-vc6-mt-s-1_38_dir ./vc6/libboost_regex-vc6-mt-s-1_38.lib libboost_regex-vc6-sgd-1_38_dir ./vc6/libboost_regex-vc6-sgd-1_38.lib libboost_regex-vc6-mt-sgd-1_38_dir ./vc6/libboost_regex-vc6-mt-sgd-1_38.lib boost_regex-vc6-mt-gd-1_38_dir ./vc6/boost_regex-vc6-mt-gd-1_38.lib boost_regex-vc6-mt-1_38_dir ./vc6/boost_regex-vc6-mt-1_38.lib libboost_regex-vc6-mt-1_38_dir ./vc6/libboost_regex-vc6-mt-1_38.lib libboost_regex-vc6-mt-gd-1_38_dir ./vc6/libboost_regex-vc6-mt-gd-1_38.lib +all : main_dir libboost_regex-vc6-s-1_40_dir ./vc6/libboost_regex-vc6-s-1_40.lib libboost_regex-vc6-mt-s-1_40_dir ./vc6/libboost_regex-vc6-mt-s-1_40.lib libboost_regex-vc6-sgd-1_40_dir ./vc6/libboost_regex-vc6-sgd-1_40.lib libboost_regex-vc6-mt-sgd-1_40_dir ./vc6/libboost_regex-vc6-mt-sgd-1_40.lib boost_regex-vc6-mt-gd-1_40_dir ./vc6/boost_regex-vc6-mt-gd-1_40.lib boost_regex-vc6-mt-1_40_dir ./vc6/boost_regex-vc6-mt-1_40.lib libboost_regex-vc6-mt-1_40_dir ./vc6/libboost_regex-vc6-mt-1_40.lib libboost_regex-vc6-mt-gd-1_40_dir ./vc6/libboost_regex-vc6-mt-gd-1_40.lib -clean : libboost_regex-vc6-s-1_38_clean libboost_regex-vc6-mt-s-1_38_clean libboost_regex-vc6-sgd-1_38_clean libboost_regex-vc6-mt-sgd-1_38_clean boost_regex-vc6-mt-gd-1_38_clean boost_regex-vc6-mt-1_38_clean libboost_regex-vc6-mt-1_38_clean libboost_regex-vc6-mt-gd-1_38_clean +clean : libboost_regex-vc6-s-1_40_clean libboost_regex-vc6-mt-s-1_40_clean libboost_regex-vc6-sgd-1_40_clean libboost_regex-vc6-mt-sgd-1_40_clean boost_regex-vc6-mt-gd-1_40_clean boost_regex-vc6-mt-1_40_clean libboost_regex-vc6-mt-1_40_clean libboost_regex-vc6-mt-gd-1_40_clean install : all - copy vc6\libboost_regex-vc6-s-1_38.lib "$(MSVCDIR)\lib" - copy vc6\libboost_regex-vc6-mt-s-1_38.lib "$(MSVCDIR)\lib" - copy vc6\libboost_regex-vc6-sgd-1_38.lib "$(MSVCDIR)\lib" - copy vc6\libboost_regex-vc6-sgd-1_38.pdb "$(MSVCDIR)\lib" - copy vc6\libboost_regex-vc6-mt-sgd-1_38.lib "$(MSVCDIR)\lib" - copy vc6\libboost_regex-vc6-mt-sgd-1_38.pdb "$(MSVCDIR)\lib" - copy vc6\boost_regex-vc6-mt-gd-1_38.lib "$(MSVCDIR)\lib" - copy vc6\boost_regex-vc6-mt-gd-1_38.dll "$(MSVCDIR)\bin" - copy vc6\boost_regex-vc6-mt-gd-1_38.pdb "$(MSVCDIR)\lib" - copy vc6\boost_regex-vc6-mt-1_38.lib "$(MSVCDIR)\lib" - copy vc6\boost_regex-vc6-mt-1_38.dll "$(MSVCDIR)\bin" - copy vc6\libboost_regex-vc6-mt-1_38.lib "$(MSVCDIR)\lib" - copy vc6\libboost_regex-vc6-mt-gd-1_38.lib "$(MSVCDIR)\lib" - copy vc6\libboost_regex-vc6-mt-gd-1_38.pdb "$(MSVCDIR)\lib" + copy vc6\libboost_regex-vc6-s-1_40.lib "$(MSVCDIR)\lib" + copy vc6\libboost_regex-vc6-mt-s-1_40.lib "$(MSVCDIR)\lib" + copy vc6\libboost_regex-vc6-sgd-1_40.lib "$(MSVCDIR)\lib" + copy vc6\libboost_regex-vc6-sgd-1_40.pdb "$(MSVCDIR)\lib" + copy vc6\libboost_regex-vc6-mt-sgd-1_40.lib "$(MSVCDIR)\lib" + copy vc6\libboost_regex-vc6-mt-sgd-1_40.pdb "$(MSVCDIR)\lib" + copy vc6\boost_regex-vc6-mt-gd-1_40.lib "$(MSVCDIR)\lib" + copy vc6\boost_regex-vc6-mt-gd-1_40.dll "$(MSVCDIR)\bin" + copy vc6\boost_regex-vc6-mt-gd-1_40.pdb "$(MSVCDIR)\lib" + copy vc6\boost_regex-vc6-mt-1_40.lib "$(MSVCDIR)\lib" + copy vc6\boost_regex-vc6-mt-1_40.dll "$(MSVCDIR)\bin" + copy vc6\libboost_regex-vc6-mt-1_40.lib "$(MSVCDIR)\lib" + copy vc6\libboost_regex-vc6-mt-gd-1_40.lib "$(MSVCDIR)\lib" + copy vc6\libboost_regex-vc6-mt-gd-1_40.pdb "$(MSVCDIR)\lib" main_dir : @if not exist "vc6\$(NULL)" mkdir vc6 @@ -88,546 +88,546 @@ main_dir : ######################################################## # -# section for libboost_regex-vc6-s-1_38.lib +# section for libboost_regex-vc6-s-1_40.lib # ######################################################## -vc6/libboost_regex-vc6-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-s-1_38.pdb ../src/c_regex_traits.cpp +vc6/libboost_regex-vc6-s-1_40/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_40/ -Fdvc6/libboost_regex-vc6-s-1_40.pdb ../src/c_regex_traits.cpp -vc6/libboost_regex-vc6-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-s-1_38.pdb ../src/cpp_regex_traits.cpp +vc6/libboost_regex-vc6-s-1_40/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_40/ -Fdvc6/libboost_regex-vc6-s-1_40.pdb ../src/cpp_regex_traits.cpp -vc6/libboost_regex-vc6-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-s-1_38.pdb ../src/cregex.cpp +vc6/libboost_regex-vc6-s-1_40/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_40/ -Fdvc6/libboost_regex-vc6-s-1_40.pdb ../src/cregex.cpp -vc6/libboost_regex-vc6-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-s-1_38.pdb ../src/fileiter.cpp +vc6/libboost_regex-vc6-s-1_40/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_40/ -Fdvc6/libboost_regex-vc6-s-1_40.pdb ../src/fileiter.cpp -vc6/libboost_regex-vc6-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-s-1_38.pdb ../src/icu.cpp +vc6/libboost_regex-vc6-s-1_40/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_40/ -Fdvc6/libboost_regex-vc6-s-1_40.pdb ../src/icu.cpp -vc6/libboost_regex-vc6-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-s-1_38.pdb ../src/instances.cpp +vc6/libboost_regex-vc6-s-1_40/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_40/ -Fdvc6/libboost_regex-vc6-s-1_40.pdb ../src/instances.cpp -vc6/libboost_regex-vc6-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-s-1_38.pdb ../src/posix_api.cpp +vc6/libboost_regex-vc6-s-1_40/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_40/ -Fdvc6/libboost_regex-vc6-s-1_40.pdb ../src/posix_api.cpp -vc6/libboost_regex-vc6-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-s-1_38.pdb ../src/regex.cpp +vc6/libboost_regex-vc6-s-1_40/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_40/ -Fdvc6/libboost_regex-vc6-s-1_40.pdb ../src/regex.cpp -vc6/libboost_regex-vc6-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-s-1_38.pdb ../src/regex_debug.cpp +vc6/libboost_regex-vc6-s-1_40/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_40/ -Fdvc6/libboost_regex-vc6-s-1_40.pdb ../src/regex_debug.cpp -vc6/libboost_regex-vc6-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-s-1_38.pdb ../src/regex_raw_buffer.cpp +vc6/libboost_regex-vc6-s-1_40/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_40/ -Fdvc6/libboost_regex-vc6-s-1_40.pdb ../src/regex_raw_buffer.cpp -vc6/libboost_regex-vc6-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-s-1_38.pdb ../src/regex_traits_defaults.cpp +vc6/libboost_regex-vc6-s-1_40/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_40/ -Fdvc6/libboost_regex-vc6-s-1_40.pdb ../src/regex_traits_defaults.cpp -vc6/libboost_regex-vc6-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-s-1_38.pdb ../src/static_mutex.cpp +vc6/libboost_regex-vc6-s-1_40/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_40/ -Fdvc6/libboost_regex-vc6-s-1_40.pdb ../src/static_mutex.cpp -vc6/libboost_regex-vc6-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-s-1_38.pdb ../src/usinstances.cpp +vc6/libboost_regex-vc6-s-1_40/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_40/ -Fdvc6/libboost_regex-vc6-s-1_40.pdb ../src/usinstances.cpp -vc6/libboost_regex-vc6-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-s-1_38.pdb ../src/w32_regex_traits.cpp +vc6/libboost_regex-vc6-s-1_40/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_40/ -Fdvc6/libboost_regex-vc6-s-1_40.pdb ../src/w32_regex_traits.cpp -vc6/libboost_regex-vc6-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-s-1_38.pdb ../src/wc_regex_traits.cpp +vc6/libboost_regex-vc6-s-1_40/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_40/ -Fdvc6/libboost_regex-vc6-s-1_40.pdb ../src/wc_regex_traits.cpp -vc6/libboost_regex-vc6-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-s-1_38.pdb ../src/wide_posix_api.cpp +vc6/libboost_regex-vc6-s-1_40/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_40/ -Fdvc6/libboost_regex-vc6-s-1_40.pdb ../src/wide_posix_api.cpp -vc6/libboost_regex-vc6-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-s-1_38.pdb ../src/winstances.cpp +vc6/libboost_regex-vc6-s-1_40/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_40/ -Fdvc6/libboost_regex-vc6-s-1_40.pdb ../src/winstances.cpp -libboost_regex-vc6-s-1_38_dir : - @if not exist "vc6\libboost_regex-vc6-s-1_38\$(NULL)" mkdir vc6\libboost_regex-vc6-s-1_38 +libboost_regex-vc6-s-1_40_dir : + @if not exist "vc6\libboost_regex-vc6-s-1_40\$(NULL)" mkdir vc6\libboost_regex-vc6-s-1_40 -libboost_regex-vc6-s-1_38_clean : - del vc6\libboost_regex-vc6-s-1_38\*.obj - del vc6\libboost_regex-vc6-s-1_38\*.idb - del vc6\libboost_regex-vc6-s-1_38\*.exp - del vc6\libboost_regex-vc6-s-1_38\*.pch +libboost_regex-vc6-s-1_40_clean : + del vc6\libboost_regex-vc6-s-1_40\*.obj + del vc6\libboost_regex-vc6-s-1_40\*.idb + del vc6\libboost_regex-vc6-s-1_40\*.exp + del vc6\libboost_regex-vc6-s-1_40\*.pch -./vc6/libboost_regex-vc6-s-1_38.lib : vc6/libboost_regex-vc6-s-1_38/c_regex_traits.obj vc6/libboost_regex-vc6-s-1_38/cpp_regex_traits.obj vc6/libboost_regex-vc6-s-1_38/cregex.obj vc6/libboost_regex-vc6-s-1_38/fileiter.obj vc6/libboost_regex-vc6-s-1_38/icu.obj vc6/libboost_regex-vc6-s-1_38/instances.obj vc6/libboost_regex-vc6-s-1_38/posix_api.obj vc6/libboost_regex-vc6-s-1_38/regex.obj vc6/libboost_regex-vc6-s-1_38/regex_debug.obj vc6/libboost_regex-vc6-s-1_38/regex_raw_buffer.obj vc6/libboost_regex-vc6-s-1_38/regex_traits_defaults.obj vc6/libboost_regex-vc6-s-1_38/static_mutex.obj vc6/libboost_regex-vc6-s-1_38/usinstances.obj vc6/libboost_regex-vc6-s-1_38/w32_regex_traits.obj vc6/libboost_regex-vc6-s-1_38/wc_regex_traits.obj vc6/libboost_regex-vc6-s-1_38/wide_posix_api.obj vc6/libboost_regex-vc6-s-1_38/winstances.obj - link -lib /nologo /out:vc6/libboost_regex-vc6-s-1_38.lib $(XSFLAGS) vc6/libboost_regex-vc6-s-1_38/c_regex_traits.obj vc6/libboost_regex-vc6-s-1_38/cpp_regex_traits.obj vc6/libboost_regex-vc6-s-1_38/cregex.obj vc6/libboost_regex-vc6-s-1_38/fileiter.obj vc6/libboost_regex-vc6-s-1_38/icu.obj vc6/libboost_regex-vc6-s-1_38/instances.obj vc6/libboost_regex-vc6-s-1_38/posix_api.obj vc6/libboost_regex-vc6-s-1_38/regex.obj vc6/libboost_regex-vc6-s-1_38/regex_debug.obj vc6/libboost_regex-vc6-s-1_38/regex_raw_buffer.obj vc6/libboost_regex-vc6-s-1_38/regex_traits_defaults.obj vc6/libboost_regex-vc6-s-1_38/static_mutex.obj vc6/libboost_regex-vc6-s-1_38/usinstances.obj vc6/libboost_regex-vc6-s-1_38/w32_regex_traits.obj vc6/libboost_regex-vc6-s-1_38/wc_regex_traits.obj vc6/libboost_regex-vc6-s-1_38/wide_posix_api.obj vc6/libboost_regex-vc6-s-1_38/winstances.obj +./vc6/libboost_regex-vc6-s-1_40.lib : vc6/libboost_regex-vc6-s-1_40/c_regex_traits.obj vc6/libboost_regex-vc6-s-1_40/cpp_regex_traits.obj vc6/libboost_regex-vc6-s-1_40/cregex.obj vc6/libboost_regex-vc6-s-1_40/fileiter.obj vc6/libboost_regex-vc6-s-1_40/icu.obj vc6/libboost_regex-vc6-s-1_40/instances.obj vc6/libboost_regex-vc6-s-1_40/posix_api.obj vc6/libboost_regex-vc6-s-1_40/regex.obj vc6/libboost_regex-vc6-s-1_40/regex_debug.obj vc6/libboost_regex-vc6-s-1_40/regex_raw_buffer.obj vc6/libboost_regex-vc6-s-1_40/regex_traits_defaults.obj vc6/libboost_regex-vc6-s-1_40/static_mutex.obj vc6/libboost_regex-vc6-s-1_40/usinstances.obj vc6/libboost_regex-vc6-s-1_40/w32_regex_traits.obj vc6/libboost_regex-vc6-s-1_40/wc_regex_traits.obj vc6/libboost_regex-vc6-s-1_40/wide_posix_api.obj vc6/libboost_regex-vc6-s-1_40/winstances.obj + link -lib /nologo /out:vc6/libboost_regex-vc6-s-1_40.lib $(XSFLAGS) vc6/libboost_regex-vc6-s-1_40/c_regex_traits.obj vc6/libboost_regex-vc6-s-1_40/cpp_regex_traits.obj vc6/libboost_regex-vc6-s-1_40/cregex.obj vc6/libboost_regex-vc6-s-1_40/fileiter.obj vc6/libboost_regex-vc6-s-1_40/icu.obj vc6/libboost_regex-vc6-s-1_40/instances.obj vc6/libboost_regex-vc6-s-1_40/posix_api.obj vc6/libboost_regex-vc6-s-1_40/regex.obj vc6/libboost_regex-vc6-s-1_40/regex_debug.obj vc6/libboost_regex-vc6-s-1_40/regex_raw_buffer.obj vc6/libboost_regex-vc6-s-1_40/regex_traits_defaults.obj vc6/libboost_regex-vc6-s-1_40/static_mutex.obj vc6/libboost_regex-vc6-s-1_40/usinstances.obj vc6/libboost_regex-vc6-s-1_40/w32_regex_traits.obj vc6/libboost_regex-vc6-s-1_40/wc_regex_traits.obj vc6/libboost_regex-vc6-s-1_40/wide_posix_api.obj vc6/libboost_regex-vc6-s-1_40/winstances.obj ######################################################## # -# section for libboost_regex-vc6-mt-s-1_38.lib +# section for libboost_regex-vc6-mt-s-1_40.lib # ######################################################## -vc6/libboost_regex-vc6-mt-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-s-1_38.pdb ../src/c_regex_traits.cpp +vc6/libboost_regex-vc6-mt-s-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-s-1_40.pdb ../src/c_regex_traits.cpp -vc6/libboost_regex-vc6-mt-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-s-1_38.pdb ../src/cpp_regex_traits.cpp +vc6/libboost_regex-vc6-mt-s-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-s-1_40.pdb ../src/cpp_regex_traits.cpp -vc6/libboost_regex-vc6-mt-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-s-1_38.pdb ../src/cregex.cpp +vc6/libboost_regex-vc6-mt-s-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-s-1_40.pdb ../src/cregex.cpp -vc6/libboost_regex-vc6-mt-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-s-1_38.pdb ../src/fileiter.cpp +vc6/libboost_regex-vc6-mt-s-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-s-1_40.pdb ../src/fileiter.cpp -vc6/libboost_regex-vc6-mt-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-s-1_38.pdb ../src/icu.cpp +vc6/libboost_regex-vc6-mt-s-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-s-1_40.pdb ../src/icu.cpp -vc6/libboost_regex-vc6-mt-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-s-1_38.pdb ../src/instances.cpp +vc6/libboost_regex-vc6-mt-s-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-s-1_40.pdb ../src/instances.cpp -vc6/libboost_regex-vc6-mt-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-s-1_38.pdb ../src/posix_api.cpp +vc6/libboost_regex-vc6-mt-s-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-s-1_40.pdb ../src/posix_api.cpp -vc6/libboost_regex-vc6-mt-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-s-1_38.pdb ../src/regex.cpp +vc6/libboost_regex-vc6-mt-s-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-s-1_40.pdb ../src/regex.cpp -vc6/libboost_regex-vc6-mt-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-s-1_38.pdb ../src/regex_debug.cpp +vc6/libboost_regex-vc6-mt-s-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-s-1_40.pdb ../src/regex_debug.cpp -vc6/libboost_regex-vc6-mt-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-s-1_38.pdb ../src/regex_raw_buffer.cpp +vc6/libboost_regex-vc6-mt-s-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-s-1_40.pdb ../src/regex_raw_buffer.cpp -vc6/libboost_regex-vc6-mt-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-s-1_38.pdb ../src/regex_traits_defaults.cpp +vc6/libboost_regex-vc6-mt-s-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-s-1_40.pdb ../src/regex_traits_defaults.cpp -vc6/libboost_regex-vc6-mt-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-s-1_38.pdb ../src/static_mutex.cpp +vc6/libboost_regex-vc6-mt-s-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-s-1_40.pdb ../src/static_mutex.cpp -vc6/libboost_regex-vc6-mt-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-s-1_38.pdb ../src/usinstances.cpp +vc6/libboost_regex-vc6-mt-s-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-s-1_40.pdb ../src/usinstances.cpp -vc6/libboost_regex-vc6-mt-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-s-1_38.pdb ../src/w32_regex_traits.cpp +vc6/libboost_regex-vc6-mt-s-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-s-1_40.pdb ../src/w32_regex_traits.cpp -vc6/libboost_regex-vc6-mt-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-s-1_38.pdb ../src/wc_regex_traits.cpp +vc6/libboost_regex-vc6-mt-s-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-s-1_40.pdb ../src/wc_regex_traits.cpp -vc6/libboost_regex-vc6-mt-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-s-1_38.pdb ../src/wide_posix_api.cpp +vc6/libboost_regex-vc6-mt-s-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-s-1_40.pdb ../src/wide_posix_api.cpp -vc6/libboost_regex-vc6-mt-s-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-s-1_38.pdb ../src/winstances.cpp +vc6/libboost_regex-vc6-mt-s-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-s-1_40.pdb ../src/winstances.cpp -libboost_regex-vc6-mt-s-1_38_dir : - @if not exist "vc6\libboost_regex-vc6-mt-s-1_38\$(NULL)" mkdir vc6\libboost_regex-vc6-mt-s-1_38 +libboost_regex-vc6-mt-s-1_40_dir : + @if not exist "vc6\libboost_regex-vc6-mt-s-1_40\$(NULL)" mkdir vc6\libboost_regex-vc6-mt-s-1_40 -libboost_regex-vc6-mt-s-1_38_clean : - del vc6\libboost_regex-vc6-mt-s-1_38\*.obj - del vc6\libboost_regex-vc6-mt-s-1_38\*.idb - del vc6\libboost_regex-vc6-mt-s-1_38\*.exp - del vc6\libboost_regex-vc6-mt-s-1_38\*.pch +libboost_regex-vc6-mt-s-1_40_clean : + del vc6\libboost_regex-vc6-mt-s-1_40\*.obj + del vc6\libboost_regex-vc6-mt-s-1_40\*.idb + del vc6\libboost_regex-vc6-mt-s-1_40\*.exp + del vc6\libboost_regex-vc6-mt-s-1_40\*.pch -./vc6/libboost_regex-vc6-mt-s-1_38.lib : vc6/libboost_regex-vc6-mt-s-1_38/c_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_38/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_38/cregex.obj vc6/libboost_regex-vc6-mt-s-1_38/fileiter.obj vc6/libboost_regex-vc6-mt-s-1_38/icu.obj vc6/libboost_regex-vc6-mt-s-1_38/instances.obj vc6/libboost_regex-vc6-mt-s-1_38/posix_api.obj vc6/libboost_regex-vc6-mt-s-1_38/regex.obj vc6/libboost_regex-vc6-mt-s-1_38/regex_debug.obj vc6/libboost_regex-vc6-mt-s-1_38/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-s-1_38/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-s-1_38/static_mutex.obj vc6/libboost_regex-vc6-mt-s-1_38/usinstances.obj vc6/libboost_regex-vc6-mt-s-1_38/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_38/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_38/wide_posix_api.obj vc6/libboost_regex-vc6-mt-s-1_38/winstances.obj - link -lib /nologo /out:vc6/libboost_regex-vc6-mt-s-1_38.lib $(XSFLAGS) vc6/libboost_regex-vc6-mt-s-1_38/c_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_38/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_38/cregex.obj vc6/libboost_regex-vc6-mt-s-1_38/fileiter.obj vc6/libboost_regex-vc6-mt-s-1_38/icu.obj vc6/libboost_regex-vc6-mt-s-1_38/instances.obj vc6/libboost_regex-vc6-mt-s-1_38/posix_api.obj vc6/libboost_regex-vc6-mt-s-1_38/regex.obj vc6/libboost_regex-vc6-mt-s-1_38/regex_debug.obj vc6/libboost_regex-vc6-mt-s-1_38/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-s-1_38/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-s-1_38/static_mutex.obj vc6/libboost_regex-vc6-mt-s-1_38/usinstances.obj vc6/libboost_regex-vc6-mt-s-1_38/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_38/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_38/wide_posix_api.obj vc6/libboost_regex-vc6-mt-s-1_38/winstances.obj +./vc6/libboost_regex-vc6-mt-s-1_40.lib : vc6/libboost_regex-vc6-mt-s-1_40/c_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_40/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_40/cregex.obj vc6/libboost_regex-vc6-mt-s-1_40/fileiter.obj vc6/libboost_regex-vc6-mt-s-1_40/icu.obj vc6/libboost_regex-vc6-mt-s-1_40/instances.obj vc6/libboost_regex-vc6-mt-s-1_40/posix_api.obj vc6/libboost_regex-vc6-mt-s-1_40/regex.obj vc6/libboost_regex-vc6-mt-s-1_40/regex_debug.obj vc6/libboost_regex-vc6-mt-s-1_40/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-s-1_40/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-s-1_40/static_mutex.obj vc6/libboost_regex-vc6-mt-s-1_40/usinstances.obj vc6/libboost_regex-vc6-mt-s-1_40/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_40/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_40/wide_posix_api.obj vc6/libboost_regex-vc6-mt-s-1_40/winstances.obj + link -lib /nologo /out:vc6/libboost_regex-vc6-mt-s-1_40.lib $(XSFLAGS) vc6/libboost_regex-vc6-mt-s-1_40/c_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_40/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_40/cregex.obj vc6/libboost_regex-vc6-mt-s-1_40/fileiter.obj vc6/libboost_regex-vc6-mt-s-1_40/icu.obj vc6/libboost_regex-vc6-mt-s-1_40/instances.obj vc6/libboost_regex-vc6-mt-s-1_40/posix_api.obj vc6/libboost_regex-vc6-mt-s-1_40/regex.obj vc6/libboost_regex-vc6-mt-s-1_40/regex_debug.obj vc6/libboost_regex-vc6-mt-s-1_40/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-s-1_40/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-s-1_40/static_mutex.obj vc6/libboost_regex-vc6-mt-s-1_40/usinstances.obj vc6/libboost_regex-vc6-mt-s-1_40/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_40/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-s-1_40/wide_posix_api.obj vc6/libboost_regex-vc6-mt-s-1_40/winstances.obj ######################################################## # -# section for libboost_regex-vc6-sgd-1_38.lib +# section for libboost_regex-vc6-sgd-1_40.lib # ######################################################## -vc6/libboost_regex-vc6-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-sgd-1_38.pdb ../src/c_regex_traits.cpp +vc6/libboost_regex-vc6-sgd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-sgd-1_40.pdb ../src/c_regex_traits.cpp -vc6/libboost_regex-vc6-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-sgd-1_38.pdb ../src/cpp_regex_traits.cpp +vc6/libboost_regex-vc6-sgd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-sgd-1_40.pdb ../src/cpp_regex_traits.cpp -vc6/libboost_regex-vc6-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-sgd-1_38.pdb ../src/cregex.cpp +vc6/libboost_regex-vc6-sgd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-sgd-1_40.pdb ../src/cregex.cpp -vc6/libboost_regex-vc6-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-sgd-1_38.pdb ../src/fileiter.cpp +vc6/libboost_regex-vc6-sgd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-sgd-1_40.pdb ../src/fileiter.cpp -vc6/libboost_regex-vc6-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-sgd-1_38.pdb ../src/icu.cpp +vc6/libboost_regex-vc6-sgd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-sgd-1_40.pdb ../src/icu.cpp -vc6/libboost_regex-vc6-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-sgd-1_38.pdb ../src/instances.cpp +vc6/libboost_regex-vc6-sgd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-sgd-1_40.pdb ../src/instances.cpp -vc6/libboost_regex-vc6-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-sgd-1_38.pdb ../src/posix_api.cpp +vc6/libboost_regex-vc6-sgd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-sgd-1_40.pdb ../src/posix_api.cpp -vc6/libboost_regex-vc6-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-sgd-1_38.pdb ../src/regex.cpp +vc6/libboost_regex-vc6-sgd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-sgd-1_40.pdb ../src/regex.cpp -vc6/libboost_regex-vc6-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-sgd-1_38.pdb ../src/regex_debug.cpp +vc6/libboost_regex-vc6-sgd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-sgd-1_40.pdb ../src/regex_debug.cpp -vc6/libboost_regex-vc6-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-sgd-1_38.pdb ../src/regex_raw_buffer.cpp +vc6/libboost_regex-vc6-sgd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-sgd-1_40.pdb ../src/regex_raw_buffer.cpp -vc6/libboost_regex-vc6-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-sgd-1_38.pdb ../src/regex_traits_defaults.cpp +vc6/libboost_regex-vc6-sgd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-sgd-1_40.pdb ../src/regex_traits_defaults.cpp -vc6/libboost_regex-vc6-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-sgd-1_38.pdb ../src/static_mutex.cpp +vc6/libboost_regex-vc6-sgd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-sgd-1_40.pdb ../src/static_mutex.cpp -vc6/libboost_regex-vc6-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-sgd-1_38.pdb ../src/usinstances.cpp +vc6/libboost_regex-vc6-sgd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-sgd-1_40.pdb ../src/usinstances.cpp -vc6/libboost_regex-vc6-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-sgd-1_38.pdb ../src/w32_regex_traits.cpp +vc6/libboost_regex-vc6-sgd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-sgd-1_40.pdb ../src/w32_regex_traits.cpp -vc6/libboost_regex-vc6-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-sgd-1_38.pdb ../src/wc_regex_traits.cpp +vc6/libboost_regex-vc6-sgd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-sgd-1_40.pdb ../src/wc_regex_traits.cpp -vc6/libboost_regex-vc6-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-sgd-1_38.pdb ../src/wide_posix_api.cpp +vc6/libboost_regex-vc6-sgd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-sgd-1_40.pdb ../src/wide_posix_api.cpp -vc6/libboost_regex-vc6-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-sgd-1_38.pdb ../src/winstances.cpp +vc6/libboost_regex-vc6-sgd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-sgd-1_40.pdb ../src/winstances.cpp -libboost_regex-vc6-sgd-1_38_dir : - @if not exist "vc6\libboost_regex-vc6-sgd-1_38\$(NULL)" mkdir vc6\libboost_regex-vc6-sgd-1_38 +libboost_regex-vc6-sgd-1_40_dir : + @if not exist "vc6\libboost_regex-vc6-sgd-1_40\$(NULL)" mkdir vc6\libboost_regex-vc6-sgd-1_40 -libboost_regex-vc6-sgd-1_38_clean : - del vc6\libboost_regex-vc6-sgd-1_38\*.obj - del vc6\libboost_regex-vc6-sgd-1_38\*.idb - del vc6\libboost_regex-vc6-sgd-1_38\*.exp - del vc6\libboost_regex-vc6-sgd-1_38\*.pch +libboost_regex-vc6-sgd-1_40_clean : + del vc6\libboost_regex-vc6-sgd-1_40\*.obj + del vc6\libboost_regex-vc6-sgd-1_40\*.idb + del vc6\libboost_regex-vc6-sgd-1_40\*.exp + del vc6\libboost_regex-vc6-sgd-1_40\*.pch -./vc6/libboost_regex-vc6-sgd-1_38.lib : vc6/libboost_regex-vc6-sgd-1_38/c_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_38/cpp_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_38/cregex.obj vc6/libboost_regex-vc6-sgd-1_38/fileiter.obj vc6/libboost_regex-vc6-sgd-1_38/icu.obj vc6/libboost_regex-vc6-sgd-1_38/instances.obj vc6/libboost_regex-vc6-sgd-1_38/posix_api.obj vc6/libboost_regex-vc6-sgd-1_38/regex.obj vc6/libboost_regex-vc6-sgd-1_38/regex_debug.obj vc6/libboost_regex-vc6-sgd-1_38/regex_raw_buffer.obj vc6/libboost_regex-vc6-sgd-1_38/regex_traits_defaults.obj vc6/libboost_regex-vc6-sgd-1_38/static_mutex.obj vc6/libboost_regex-vc6-sgd-1_38/usinstances.obj vc6/libboost_regex-vc6-sgd-1_38/w32_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_38/wc_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_38/wide_posix_api.obj vc6/libboost_regex-vc6-sgd-1_38/winstances.obj - link -lib /nologo /out:vc6/libboost_regex-vc6-sgd-1_38.lib $(XSFLAGS) vc6/libboost_regex-vc6-sgd-1_38/c_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_38/cpp_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_38/cregex.obj vc6/libboost_regex-vc6-sgd-1_38/fileiter.obj vc6/libboost_regex-vc6-sgd-1_38/icu.obj vc6/libboost_regex-vc6-sgd-1_38/instances.obj vc6/libboost_regex-vc6-sgd-1_38/posix_api.obj vc6/libboost_regex-vc6-sgd-1_38/regex.obj vc6/libboost_regex-vc6-sgd-1_38/regex_debug.obj vc6/libboost_regex-vc6-sgd-1_38/regex_raw_buffer.obj vc6/libboost_regex-vc6-sgd-1_38/regex_traits_defaults.obj vc6/libboost_regex-vc6-sgd-1_38/static_mutex.obj vc6/libboost_regex-vc6-sgd-1_38/usinstances.obj vc6/libboost_regex-vc6-sgd-1_38/w32_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_38/wc_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_38/wide_posix_api.obj vc6/libboost_regex-vc6-sgd-1_38/winstances.obj +./vc6/libboost_regex-vc6-sgd-1_40.lib : vc6/libboost_regex-vc6-sgd-1_40/c_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_40/cpp_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_40/cregex.obj vc6/libboost_regex-vc6-sgd-1_40/fileiter.obj vc6/libboost_regex-vc6-sgd-1_40/icu.obj vc6/libboost_regex-vc6-sgd-1_40/instances.obj vc6/libboost_regex-vc6-sgd-1_40/posix_api.obj vc6/libboost_regex-vc6-sgd-1_40/regex.obj vc6/libboost_regex-vc6-sgd-1_40/regex_debug.obj vc6/libboost_regex-vc6-sgd-1_40/regex_raw_buffer.obj vc6/libboost_regex-vc6-sgd-1_40/regex_traits_defaults.obj vc6/libboost_regex-vc6-sgd-1_40/static_mutex.obj vc6/libboost_regex-vc6-sgd-1_40/usinstances.obj vc6/libboost_regex-vc6-sgd-1_40/w32_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_40/wc_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_40/wide_posix_api.obj vc6/libboost_regex-vc6-sgd-1_40/winstances.obj + link -lib /nologo /out:vc6/libboost_regex-vc6-sgd-1_40.lib $(XSFLAGS) vc6/libboost_regex-vc6-sgd-1_40/c_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_40/cpp_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_40/cregex.obj vc6/libboost_regex-vc6-sgd-1_40/fileiter.obj vc6/libboost_regex-vc6-sgd-1_40/icu.obj vc6/libboost_regex-vc6-sgd-1_40/instances.obj vc6/libboost_regex-vc6-sgd-1_40/posix_api.obj vc6/libboost_regex-vc6-sgd-1_40/regex.obj vc6/libboost_regex-vc6-sgd-1_40/regex_debug.obj vc6/libboost_regex-vc6-sgd-1_40/regex_raw_buffer.obj vc6/libboost_regex-vc6-sgd-1_40/regex_traits_defaults.obj vc6/libboost_regex-vc6-sgd-1_40/static_mutex.obj vc6/libboost_regex-vc6-sgd-1_40/usinstances.obj vc6/libboost_regex-vc6-sgd-1_40/w32_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_40/wc_regex_traits.obj vc6/libboost_regex-vc6-sgd-1_40/wide_posix_api.obj vc6/libboost_regex-vc6-sgd-1_40/winstances.obj ######################################################## # -# section for libboost_regex-vc6-mt-sgd-1_38.lib +# section for libboost_regex-vc6-mt-sgd-1_40.lib # ######################################################## -vc6/libboost_regex-vc6-mt-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_38.pdb ../src/c_regex_traits.cpp +vc6/libboost_regex-vc6-mt-sgd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_40.pdb ../src/c_regex_traits.cpp -vc6/libboost_regex-vc6-mt-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_38.pdb ../src/cpp_regex_traits.cpp +vc6/libboost_regex-vc6-mt-sgd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_40.pdb ../src/cpp_regex_traits.cpp -vc6/libboost_regex-vc6-mt-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_38.pdb ../src/cregex.cpp +vc6/libboost_regex-vc6-mt-sgd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_40.pdb ../src/cregex.cpp -vc6/libboost_regex-vc6-mt-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_38.pdb ../src/fileiter.cpp +vc6/libboost_regex-vc6-mt-sgd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_40.pdb ../src/fileiter.cpp -vc6/libboost_regex-vc6-mt-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_38.pdb ../src/icu.cpp +vc6/libboost_regex-vc6-mt-sgd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_40.pdb ../src/icu.cpp -vc6/libboost_regex-vc6-mt-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_38.pdb ../src/instances.cpp +vc6/libboost_regex-vc6-mt-sgd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_40.pdb ../src/instances.cpp -vc6/libboost_regex-vc6-mt-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_38.pdb ../src/posix_api.cpp +vc6/libboost_regex-vc6-mt-sgd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_40.pdb ../src/posix_api.cpp -vc6/libboost_regex-vc6-mt-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_38.pdb ../src/regex.cpp +vc6/libboost_regex-vc6-mt-sgd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_40.pdb ../src/regex.cpp -vc6/libboost_regex-vc6-mt-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_38.pdb ../src/regex_debug.cpp +vc6/libboost_regex-vc6-mt-sgd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_40.pdb ../src/regex_debug.cpp -vc6/libboost_regex-vc6-mt-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_38.pdb ../src/regex_raw_buffer.cpp +vc6/libboost_regex-vc6-mt-sgd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_40.pdb ../src/regex_raw_buffer.cpp -vc6/libboost_regex-vc6-mt-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_38.pdb ../src/regex_traits_defaults.cpp +vc6/libboost_regex-vc6-mt-sgd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_40.pdb ../src/regex_traits_defaults.cpp -vc6/libboost_regex-vc6-mt-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_38.pdb ../src/static_mutex.cpp +vc6/libboost_regex-vc6-mt-sgd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_40.pdb ../src/static_mutex.cpp -vc6/libboost_regex-vc6-mt-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_38.pdb ../src/usinstances.cpp +vc6/libboost_regex-vc6-mt-sgd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_40.pdb ../src/usinstances.cpp -vc6/libboost_regex-vc6-mt-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_38.pdb ../src/w32_regex_traits.cpp +vc6/libboost_regex-vc6-mt-sgd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_40.pdb ../src/w32_regex_traits.cpp -vc6/libboost_regex-vc6-mt-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_38.pdb ../src/wc_regex_traits.cpp +vc6/libboost_regex-vc6-mt-sgd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_40.pdb ../src/wc_regex_traits.cpp -vc6/libboost_regex-vc6-mt-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_38.pdb ../src/wide_posix_api.cpp +vc6/libboost_regex-vc6-mt-sgd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_40.pdb ../src/wide_posix_api.cpp -vc6/libboost_regex-vc6-mt-sgd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_38.pdb ../src/winstances.cpp +vc6/libboost_regex-vc6-mt-sgd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-sgd-1_40.pdb ../src/winstances.cpp -libboost_regex-vc6-mt-sgd-1_38_dir : - @if not exist "vc6\libboost_regex-vc6-mt-sgd-1_38\$(NULL)" mkdir vc6\libboost_regex-vc6-mt-sgd-1_38 +libboost_regex-vc6-mt-sgd-1_40_dir : + @if not exist "vc6\libboost_regex-vc6-mt-sgd-1_40\$(NULL)" mkdir vc6\libboost_regex-vc6-mt-sgd-1_40 -libboost_regex-vc6-mt-sgd-1_38_clean : - del vc6\libboost_regex-vc6-mt-sgd-1_38\*.obj - del vc6\libboost_regex-vc6-mt-sgd-1_38\*.idb - del vc6\libboost_regex-vc6-mt-sgd-1_38\*.exp - del vc6\libboost_regex-vc6-mt-sgd-1_38\*.pch +libboost_regex-vc6-mt-sgd-1_40_clean : + del vc6\libboost_regex-vc6-mt-sgd-1_40\*.obj + del vc6\libboost_regex-vc6-mt-sgd-1_40\*.idb + del vc6\libboost_regex-vc6-mt-sgd-1_40\*.exp + del vc6\libboost_regex-vc6-mt-sgd-1_40\*.pch -./vc6/libboost_regex-vc6-mt-sgd-1_38.lib : vc6/libboost_regex-vc6-mt-sgd-1_38/c_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_38/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_38/cregex.obj vc6/libboost_regex-vc6-mt-sgd-1_38/fileiter.obj vc6/libboost_regex-vc6-mt-sgd-1_38/icu.obj vc6/libboost_regex-vc6-mt-sgd-1_38/instances.obj vc6/libboost_regex-vc6-mt-sgd-1_38/posix_api.obj vc6/libboost_regex-vc6-mt-sgd-1_38/regex.obj vc6/libboost_regex-vc6-mt-sgd-1_38/regex_debug.obj vc6/libboost_regex-vc6-mt-sgd-1_38/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-sgd-1_38/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-sgd-1_38/static_mutex.obj vc6/libboost_regex-vc6-mt-sgd-1_38/usinstances.obj vc6/libboost_regex-vc6-mt-sgd-1_38/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_38/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_38/wide_posix_api.obj vc6/libboost_regex-vc6-mt-sgd-1_38/winstances.obj - link -lib /nologo /out:vc6/libboost_regex-vc6-mt-sgd-1_38.lib $(XSFLAGS) vc6/libboost_regex-vc6-mt-sgd-1_38/c_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_38/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_38/cregex.obj vc6/libboost_regex-vc6-mt-sgd-1_38/fileiter.obj vc6/libboost_regex-vc6-mt-sgd-1_38/icu.obj vc6/libboost_regex-vc6-mt-sgd-1_38/instances.obj vc6/libboost_regex-vc6-mt-sgd-1_38/posix_api.obj vc6/libboost_regex-vc6-mt-sgd-1_38/regex.obj vc6/libboost_regex-vc6-mt-sgd-1_38/regex_debug.obj vc6/libboost_regex-vc6-mt-sgd-1_38/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-sgd-1_38/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-sgd-1_38/static_mutex.obj vc6/libboost_regex-vc6-mt-sgd-1_38/usinstances.obj vc6/libboost_regex-vc6-mt-sgd-1_38/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_38/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_38/wide_posix_api.obj vc6/libboost_regex-vc6-mt-sgd-1_38/winstances.obj +./vc6/libboost_regex-vc6-mt-sgd-1_40.lib : vc6/libboost_regex-vc6-mt-sgd-1_40/c_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_40/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_40/cregex.obj vc6/libboost_regex-vc6-mt-sgd-1_40/fileiter.obj vc6/libboost_regex-vc6-mt-sgd-1_40/icu.obj vc6/libboost_regex-vc6-mt-sgd-1_40/instances.obj vc6/libboost_regex-vc6-mt-sgd-1_40/posix_api.obj vc6/libboost_regex-vc6-mt-sgd-1_40/regex.obj vc6/libboost_regex-vc6-mt-sgd-1_40/regex_debug.obj vc6/libboost_regex-vc6-mt-sgd-1_40/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-sgd-1_40/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-sgd-1_40/static_mutex.obj vc6/libboost_regex-vc6-mt-sgd-1_40/usinstances.obj vc6/libboost_regex-vc6-mt-sgd-1_40/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_40/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_40/wide_posix_api.obj vc6/libboost_regex-vc6-mt-sgd-1_40/winstances.obj + link -lib /nologo /out:vc6/libboost_regex-vc6-mt-sgd-1_40.lib $(XSFLAGS) vc6/libboost_regex-vc6-mt-sgd-1_40/c_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_40/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_40/cregex.obj vc6/libboost_regex-vc6-mt-sgd-1_40/fileiter.obj vc6/libboost_regex-vc6-mt-sgd-1_40/icu.obj vc6/libboost_regex-vc6-mt-sgd-1_40/instances.obj vc6/libboost_regex-vc6-mt-sgd-1_40/posix_api.obj vc6/libboost_regex-vc6-mt-sgd-1_40/regex.obj vc6/libboost_regex-vc6-mt-sgd-1_40/regex_debug.obj vc6/libboost_regex-vc6-mt-sgd-1_40/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-sgd-1_40/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-sgd-1_40/static_mutex.obj vc6/libboost_regex-vc6-mt-sgd-1_40/usinstances.obj vc6/libboost_regex-vc6-mt-sgd-1_40/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_40/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-sgd-1_40/wide_posix_api.obj vc6/libboost_regex-vc6-mt-sgd-1_40/winstances.obj ######################################################## # -# section for boost_regex-vc6-mt-gd-1_38.lib +# section for boost_regex-vc6-mt-gd-1_40.lib # ######################################################## -vc6/boost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-gd-1_38.pdb ../src/c_regex_traits.cpp +vc6/boost_regex-vc6-mt-gd-1_40/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_40/ -Fdvc6/boost_regex-vc6-mt-gd-1_40.pdb ../src/c_regex_traits.cpp -vc6/boost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-gd-1_38.pdb ../src/cpp_regex_traits.cpp +vc6/boost_regex-vc6-mt-gd-1_40/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_40/ -Fdvc6/boost_regex-vc6-mt-gd-1_40.pdb ../src/cpp_regex_traits.cpp -vc6/boost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-gd-1_38.pdb ../src/cregex.cpp +vc6/boost_regex-vc6-mt-gd-1_40/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_40/ -Fdvc6/boost_regex-vc6-mt-gd-1_40.pdb ../src/cregex.cpp -vc6/boost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-gd-1_38.pdb ../src/fileiter.cpp +vc6/boost_regex-vc6-mt-gd-1_40/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_40/ -Fdvc6/boost_regex-vc6-mt-gd-1_40.pdb ../src/fileiter.cpp -vc6/boost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-gd-1_38.pdb ../src/icu.cpp +vc6/boost_regex-vc6-mt-gd-1_40/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_40/ -Fdvc6/boost_regex-vc6-mt-gd-1_40.pdb ../src/icu.cpp -vc6/boost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-gd-1_38.pdb ../src/instances.cpp +vc6/boost_regex-vc6-mt-gd-1_40/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_40/ -Fdvc6/boost_regex-vc6-mt-gd-1_40.pdb ../src/instances.cpp -vc6/boost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-gd-1_38.pdb ../src/posix_api.cpp +vc6/boost_regex-vc6-mt-gd-1_40/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_40/ -Fdvc6/boost_regex-vc6-mt-gd-1_40.pdb ../src/posix_api.cpp -vc6/boost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-gd-1_38.pdb ../src/regex.cpp +vc6/boost_regex-vc6-mt-gd-1_40/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_40/ -Fdvc6/boost_regex-vc6-mt-gd-1_40.pdb ../src/regex.cpp -vc6/boost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-gd-1_38.pdb ../src/regex_debug.cpp +vc6/boost_regex-vc6-mt-gd-1_40/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_40/ -Fdvc6/boost_regex-vc6-mt-gd-1_40.pdb ../src/regex_debug.cpp -vc6/boost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-gd-1_38.pdb ../src/regex_raw_buffer.cpp +vc6/boost_regex-vc6-mt-gd-1_40/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_40/ -Fdvc6/boost_regex-vc6-mt-gd-1_40.pdb ../src/regex_raw_buffer.cpp -vc6/boost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-gd-1_38.pdb ../src/regex_traits_defaults.cpp +vc6/boost_regex-vc6-mt-gd-1_40/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_40/ -Fdvc6/boost_regex-vc6-mt-gd-1_40.pdb ../src/regex_traits_defaults.cpp -vc6/boost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-gd-1_38.pdb ../src/static_mutex.cpp +vc6/boost_regex-vc6-mt-gd-1_40/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_40/ -Fdvc6/boost_regex-vc6-mt-gd-1_40.pdb ../src/static_mutex.cpp -vc6/boost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-gd-1_38.pdb ../src/usinstances.cpp +vc6/boost_regex-vc6-mt-gd-1_40/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_40/ -Fdvc6/boost_regex-vc6-mt-gd-1_40.pdb ../src/usinstances.cpp -vc6/boost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-gd-1_38.pdb ../src/w32_regex_traits.cpp +vc6/boost_regex-vc6-mt-gd-1_40/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_40/ -Fdvc6/boost_regex-vc6-mt-gd-1_40.pdb ../src/w32_regex_traits.cpp -vc6/boost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-gd-1_38.pdb ../src/wc_regex_traits.cpp +vc6/boost_regex-vc6-mt-gd-1_40/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_40/ -Fdvc6/boost_regex-vc6-mt-gd-1_40.pdb ../src/wc_regex_traits.cpp -vc6/boost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-gd-1_38.pdb ../src/wide_posix_api.cpp +vc6/boost_regex-vc6-mt-gd-1_40/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_40/ -Fdvc6/boost_regex-vc6-mt-gd-1_40.pdb ../src/wide_posix_api.cpp -vc6/boost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-gd-1_38.pdb ../src/winstances.cpp +vc6/boost_regex-vc6-mt-gd-1_40/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_40/ -Fdvc6/boost_regex-vc6-mt-gd-1_40.pdb ../src/winstances.cpp -boost_regex-vc6-mt-gd-1_38_dir : - @if not exist "vc6\boost_regex-vc6-mt-gd-1_38\$(NULL)" mkdir vc6\boost_regex-vc6-mt-gd-1_38 +boost_regex-vc6-mt-gd-1_40_dir : + @if not exist "vc6\boost_regex-vc6-mt-gd-1_40\$(NULL)" mkdir vc6\boost_regex-vc6-mt-gd-1_40 -boost_regex-vc6-mt-gd-1_38_clean : - del vc6\boost_regex-vc6-mt-gd-1_38\*.obj - del vc6\boost_regex-vc6-mt-gd-1_38\*.idb - del vc6\boost_regex-vc6-mt-gd-1_38\*.exp - del vc6\boost_regex-vc6-mt-gd-1_38\*.pch +boost_regex-vc6-mt-gd-1_40_clean : + del vc6\boost_regex-vc6-mt-gd-1_40\*.obj + del vc6\boost_regex-vc6-mt-gd-1_40\*.idb + del vc6\boost_regex-vc6-mt-gd-1_40\*.exp + del vc6\boost_regex-vc6-mt-gd-1_40\*.pch -./vc6/boost_regex-vc6-mt-gd-1_38.lib : vc6/boost_regex-vc6-mt-gd-1_38/c_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_38/cpp_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_38/cregex.obj vc6/boost_regex-vc6-mt-gd-1_38/fileiter.obj vc6/boost_regex-vc6-mt-gd-1_38/icu.obj vc6/boost_regex-vc6-mt-gd-1_38/instances.obj vc6/boost_regex-vc6-mt-gd-1_38/posix_api.obj vc6/boost_regex-vc6-mt-gd-1_38/regex.obj vc6/boost_regex-vc6-mt-gd-1_38/regex_debug.obj vc6/boost_regex-vc6-mt-gd-1_38/regex_raw_buffer.obj vc6/boost_regex-vc6-mt-gd-1_38/regex_traits_defaults.obj vc6/boost_regex-vc6-mt-gd-1_38/static_mutex.obj vc6/boost_regex-vc6-mt-gd-1_38/usinstances.obj vc6/boost_regex-vc6-mt-gd-1_38/w32_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_38/wc_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_38/wide_posix_api.obj vc6/boost_regex-vc6-mt-gd-1_38/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_38.pdb" /debug /machine:I386 /out:"vc6/boost_regex-vc6-mt-gd-1_38.dll" /implib:"vc6/boost_regex-vc6-mt-gd-1_38.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc6/boost_regex-vc6-mt-gd-1_38/c_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_38/cpp_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_38/cregex.obj vc6/boost_regex-vc6-mt-gd-1_38/fileiter.obj vc6/boost_regex-vc6-mt-gd-1_38/icu.obj vc6/boost_regex-vc6-mt-gd-1_38/instances.obj vc6/boost_regex-vc6-mt-gd-1_38/posix_api.obj vc6/boost_regex-vc6-mt-gd-1_38/regex.obj vc6/boost_regex-vc6-mt-gd-1_38/regex_debug.obj vc6/boost_regex-vc6-mt-gd-1_38/regex_raw_buffer.obj vc6/boost_regex-vc6-mt-gd-1_38/regex_traits_defaults.obj vc6/boost_regex-vc6-mt-gd-1_38/static_mutex.obj vc6/boost_regex-vc6-mt-gd-1_38/usinstances.obj vc6/boost_regex-vc6-mt-gd-1_38/w32_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_38/wc_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_38/wide_posix_api.obj vc6/boost_regex-vc6-mt-gd-1_38/winstances.obj +./vc6/boost_regex-vc6-mt-gd-1_40.lib : vc6/boost_regex-vc6-mt-gd-1_40/c_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_40/cpp_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_40/cregex.obj vc6/boost_regex-vc6-mt-gd-1_40/fileiter.obj vc6/boost_regex-vc6-mt-gd-1_40/icu.obj vc6/boost_regex-vc6-mt-gd-1_40/instances.obj vc6/boost_regex-vc6-mt-gd-1_40/posix_api.obj vc6/boost_regex-vc6-mt-gd-1_40/regex.obj vc6/boost_regex-vc6-mt-gd-1_40/regex_debug.obj vc6/boost_regex-vc6-mt-gd-1_40/regex_raw_buffer.obj vc6/boost_regex-vc6-mt-gd-1_40/regex_traits_defaults.obj vc6/boost_regex-vc6-mt-gd-1_40/static_mutex.obj vc6/boost_regex-vc6-mt-gd-1_40/usinstances.obj vc6/boost_regex-vc6-mt-gd-1_40/w32_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_40/wc_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_40/wide_posix_api.obj vc6/boost_regex-vc6-mt-gd-1_40/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_40.pdb" /debug /machine:I386 /out:"vc6/boost_regex-vc6-mt-gd-1_40.dll" /implib:"vc6/boost_regex-vc6-mt-gd-1_40.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc6/boost_regex-vc6-mt-gd-1_40/c_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_40/cpp_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_40/cregex.obj vc6/boost_regex-vc6-mt-gd-1_40/fileiter.obj vc6/boost_regex-vc6-mt-gd-1_40/icu.obj vc6/boost_regex-vc6-mt-gd-1_40/instances.obj vc6/boost_regex-vc6-mt-gd-1_40/posix_api.obj vc6/boost_regex-vc6-mt-gd-1_40/regex.obj vc6/boost_regex-vc6-mt-gd-1_40/regex_debug.obj vc6/boost_regex-vc6-mt-gd-1_40/regex_raw_buffer.obj vc6/boost_regex-vc6-mt-gd-1_40/regex_traits_defaults.obj vc6/boost_regex-vc6-mt-gd-1_40/static_mutex.obj vc6/boost_regex-vc6-mt-gd-1_40/usinstances.obj vc6/boost_regex-vc6-mt-gd-1_40/w32_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_40/wc_regex_traits.obj vc6/boost_regex-vc6-mt-gd-1_40/wide_posix_api.obj vc6/boost_regex-vc6-mt-gd-1_40/winstances.obj ######################################################## # -# section for boost_regex-vc6-mt-1_38.lib +# section for boost_regex-vc6-mt-1_40.lib # ######################################################## -vc6/boost_regex-vc6-mt-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-1_38.pdb ../src/c_regex_traits.cpp +vc6/boost_regex-vc6-mt-1_40/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_40/ -Fdvc6/boost_regex-vc6-mt-1_40.pdb ../src/c_regex_traits.cpp -vc6/boost_regex-vc6-mt-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-1_38.pdb ../src/cpp_regex_traits.cpp +vc6/boost_regex-vc6-mt-1_40/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_40/ -Fdvc6/boost_regex-vc6-mt-1_40.pdb ../src/cpp_regex_traits.cpp -vc6/boost_regex-vc6-mt-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-1_38.pdb ../src/cregex.cpp +vc6/boost_regex-vc6-mt-1_40/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_40/ -Fdvc6/boost_regex-vc6-mt-1_40.pdb ../src/cregex.cpp -vc6/boost_regex-vc6-mt-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-1_38.pdb ../src/fileiter.cpp +vc6/boost_regex-vc6-mt-1_40/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_40/ -Fdvc6/boost_regex-vc6-mt-1_40.pdb ../src/fileiter.cpp -vc6/boost_regex-vc6-mt-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-1_38.pdb ../src/icu.cpp +vc6/boost_regex-vc6-mt-1_40/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_40/ -Fdvc6/boost_regex-vc6-mt-1_40.pdb ../src/icu.cpp -vc6/boost_regex-vc6-mt-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-1_38.pdb ../src/instances.cpp +vc6/boost_regex-vc6-mt-1_40/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_40/ -Fdvc6/boost_regex-vc6-mt-1_40.pdb ../src/instances.cpp -vc6/boost_regex-vc6-mt-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-1_38.pdb ../src/posix_api.cpp +vc6/boost_regex-vc6-mt-1_40/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_40/ -Fdvc6/boost_regex-vc6-mt-1_40.pdb ../src/posix_api.cpp -vc6/boost_regex-vc6-mt-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-1_38.pdb ../src/regex.cpp +vc6/boost_regex-vc6-mt-1_40/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_40/ -Fdvc6/boost_regex-vc6-mt-1_40.pdb ../src/regex.cpp -vc6/boost_regex-vc6-mt-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-1_38.pdb ../src/regex_debug.cpp +vc6/boost_regex-vc6-mt-1_40/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_40/ -Fdvc6/boost_regex-vc6-mt-1_40.pdb ../src/regex_debug.cpp -vc6/boost_regex-vc6-mt-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-1_38.pdb ../src/regex_raw_buffer.cpp +vc6/boost_regex-vc6-mt-1_40/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_40/ -Fdvc6/boost_regex-vc6-mt-1_40.pdb ../src/regex_raw_buffer.cpp -vc6/boost_regex-vc6-mt-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-1_38.pdb ../src/regex_traits_defaults.cpp +vc6/boost_regex-vc6-mt-1_40/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_40/ -Fdvc6/boost_regex-vc6-mt-1_40.pdb ../src/regex_traits_defaults.cpp -vc6/boost_regex-vc6-mt-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-1_38.pdb ../src/static_mutex.cpp +vc6/boost_regex-vc6-mt-1_40/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_40/ -Fdvc6/boost_regex-vc6-mt-1_40.pdb ../src/static_mutex.cpp -vc6/boost_regex-vc6-mt-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-1_38.pdb ../src/usinstances.cpp +vc6/boost_regex-vc6-mt-1_40/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_40/ -Fdvc6/boost_regex-vc6-mt-1_40.pdb ../src/usinstances.cpp -vc6/boost_regex-vc6-mt-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-1_38.pdb ../src/w32_regex_traits.cpp +vc6/boost_regex-vc6-mt-1_40/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_40/ -Fdvc6/boost_regex-vc6-mt-1_40.pdb ../src/w32_regex_traits.cpp -vc6/boost_regex-vc6-mt-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-1_38.pdb ../src/wc_regex_traits.cpp +vc6/boost_regex-vc6-mt-1_40/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_40/ -Fdvc6/boost_regex-vc6-mt-1_40.pdb ../src/wc_regex_traits.cpp -vc6/boost_regex-vc6-mt-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-1_38.pdb ../src/wide_posix_api.cpp +vc6/boost_regex-vc6-mt-1_40/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_40/ -Fdvc6/boost_regex-vc6-mt-1_40.pdb ../src/wide_posix_api.cpp -vc6/boost_regex-vc6-mt-1_38/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_38/ -Fdvc6/boost_regex-vc6-mt-1_38.pdb ../src/winstances.cpp +vc6/boost_regex-vc6-mt-1_40/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_40/ -Fdvc6/boost_regex-vc6-mt-1_40.pdb ../src/winstances.cpp -boost_regex-vc6-mt-1_38_dir : - @if not exist "vc6\boost_regex-vc6-mt-1_38\$(NULL)" mkdir vc6\boost_regex-vc6-mt-1_38 +boost_regex-vc6-mt-1_40_dir : + @if not exist "vc6\boost_regex-vc6-mt-1_40\$(NULL)" mkdir vc6\boost_regex-vc6-mt-1_40 -boost_regex-vc6-mt-1_38_clean : - del vc6\boost_regex-vc6-mt-1_38\*.obj - del vc6\boost_regex-vc6-mt-1_38\*.idb - del vc6\boost_regex-vc6-mt-1_38\*.exp - del vc6\boost_regex-vc6-mt-1_38\*.pch +boost_regex-vc6-mt-1_40_clean : + del vc6\boost_regex-vc6-mt-1_40\*.obj + del vc6\boost_regex-vc6-mt-1_40\*.idb + del vc6\boost_regex-vc6-mt-1_40\*.exp + del vc6\boost_regex-vc6-mt-1_40\*.pch -./vc6/boost_regex-vc6-mt-1_38.lib : vc6/boost_regex-vc6-mt-1_38/c_regex_traits.obj vc6/boost_regex-vc6-mt-1_38/cpp_regex_traits.obj vc6/boost_regex-vc6-mt-1_38/cregex.obj vc6/boost_regex-vc6-mt-1_38/fileiter.obj vc6/boost_regex-vc6-mt-1_38/icu.obj vc6/boost_regex-vc6-mt-1_38/instances.obj vc6/boost_regex-vc6-mt-1_38/posix_api.obj vc6/boost_regex-vc6-mt-1_38/regex.obj vc6/boost_regex-vc6-mt-1_38/regex_debug.obj vc6/boost_regex-vc6-mt-1_38/regex_raw_buffer.obj vc6/boost_regex-vc6-mt-1_38/regex_traits_defaults.obj vc6/boost_regex-vc6-mt-1_38/static_mutex.obj vc6/boost_regex-vc6-mt-1_38/usinstances.obj vc6/boost_regex-vc6-mt-1_38/w32_regex_traits.obj vc6/boost_regex-vc6-mt-1_38/wc_regex_traits.obj vc6/boost_regex-vc6-mt-1_38/wide_posix_api.obj vc6/boost_regex-vc6-mt-1_38/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_38.pdb" /debug /machine:I386 /out:"vc6/boost_regex-vc6-mt-1_38.dll" /implib:"vc6/boost_regex-vc6-mt-1_38.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc6/boost_regex-vc6-mt-1_38/c_regex_traits.obj vc6/boost_regex-vc6-mt-1_38/cpp_regex_traits.obj vc6/boost_regex-vc6-mt-1_38/cregex.obj vc6/boost_regex-vc6-mt-1_38/fileiter.obj vc6/boost_regex-vc6-mt-1_38/icu.obj vc6/boost_regex-vc6-mt-1_38/instances.obj vc6/boost_regex-vc6-mt-1_38/posix_api.obj vc6/boost_regex-vc6-mt-1_38/regex.obj vc6/boost_regex-vc6-mt-1_38/regex_debug.obj vc6/boost_regex-vc6-mt-1_38/regex_raw_buffer.obj vc6/boost_regex-vc6-mt-1_38/regex_traits_defaults.obj vc6/boost_regex-vc6-mt-1_38/static_mutex.obj vc6/boost_regex-vc6-mt-1_38/usinstances.obj vc6/boost_regex-vc6-mt-1_38/w32_regex_traits.obj vc6/boost_regex-vc6-mt-1_38/wc_regex_traits.obj vc6/boost_regex-vc6-mt-1_38/wide_posix_api.obj vc6/boost_regex-vc6-mt-1_38/winstances.obj +./vc6/boost_regex-vc6-mt-1_40.lib : vc6/boost_regex-vc6-mt-1_40/c_regex_traits.obj vc6/boost_regex-vc6-mt-1_40/cpp_regex_traits.obj vc6/boost_regex-vc6-mt-1_40/cregex.obj vc6/boost_regex-vc6-mt-1_40/fileiter.obj vc6/boost_regex-vc6-mt-1_40/icu.obj vc6/boost_regex-vc6-mt-1_40/instances.obj vc6/boost_regex-vc6-mt-1_40/posix_api.obj vc6/boost_regex-vc6-mt-1_40/regex.obj vc6/boost_regex-vc6-mt-1_40/regex_debug.obj vc6/boost_regex-vc6-mt-1_40/regex_raw_buffer.obj vc6/boost_regex-vc6-mt-1_40/regex_traits_defaults.obj vc6/boost_regex-vc6-mt-1_40/static_mutex.obj vc6/boost_regex-vc6-mt-1_40/usinstances.obj vc6/boost_regex-vc6-mt-1_40/w32_regex_traits.obj vc6/boost_regex-vc6-mt-1_40/wc_regex_traits.obj vc6/boost_regex-vc6-mt-1_40/wide_posix_api.obj vc6/boost_regex-vc6-mt-1_40/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_40.pdb" /debug /machine:I386 /out:"vc6/boost_regex-vc6-mt-1_40.dll" /implib:"vc6/boost_regex-vc6-mt-1_40.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc6/boost_regex-vc6-mt-1_40/c_regex_traits.obj vc6/boost_regex-vc6-mt-1_40/cpp_regex_traits.obj vc6/boost_regex-vc6-mt-1_40/cregex.obj vc6/boost_regex-vc6-mt-1_40/fileiter.obj vc6/boost_regex-vc6-mt-1_40/icu.obj vc6/boost_regex-vc6-mt-1_40/instances.obj vc6/boost_regex-vc6-mt-1_40/posix_api.obj vc6/boost_regex-vc6-mt-1_40/regex.obj vc6/boost_regex-vc6-mt-1_40/regex_debug.obj vc6/boost_regex-vc6-mt-1_40/regex_raw_buffer.obj vc6/boost_regex-vc6-mt-1_40/regex_traits_defaults.obj vc6/boost_regex-vc6-mt-1_40/static_mutex.obj vc6/boost_regex-vc6-mt-1_40/usinstances.obj vc6/boost_regex-vc6-mt-1_40/w32_regex_traits.obj vc6/boost_regex-vc6-mt-1_40/wc_regex_traits.obj vc6/boost_regex-vc6-mt-1_40/wide_posix_api.obj vc6/boost_regex-vc6-mt-1_40/winstances.obj ######################################################## # -# section for libboost_regex-vc6-mt-1_38.lib +# section for libboost_regex-vc6-mt-1_40.lib # ######################################################## -vc6/libboost_regex-vc6-mt-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-1_38.pdb ../src/c_regex_traits.cpp +vc6/libboost_regex-vc6-mt-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-1_40.pdb ../src/c_regex_traits.cpp -vc6/libboost_regex-vc6-mt-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-1_38.pdb ../src/cpp_regex_traits.cpp +vc6/libboost_regex-vc6-mt-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-1_40.pdb ../src/cpp_regex_traits.cpp -vc6/libboost_regex-vc6-mt-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-1_38.pdb ../src/cregex.cpp +vc6/libboost_regex-vc6-mt-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-1_40.pdb ../src/cregex.cpp -vc6/libboost_regex-vc6-mt-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-1_38.pdb ../src/fileiter.cpp +vc6/libboost_regex-vc6-mt-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-1_40.pdb ../src/fileiter.cpp -vc6/libboost_regex-vc6-mt-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-1_38.pdb ../src/icu.cpp +vc6/libboost_regex-vc6-mt-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-1_40.pdb ../src/icu.cpp -vc6/libboost_regex-vc6-mt-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-1_38.pdb ../src/instances.cpp +vc6/libboost_regex-vc6-mt-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-1_40.pdb ../src/instances.cpp -vc6/libboost_regex-vc6-mt-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-1_38.pdb ../src/posix_api.cpp +vc6/libboost_regex-vc6-mt-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-1_40.pdb ../src/posix_api.cpp -vc6/libboost_regex-vc6-mt-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-1_38.pdb ../src/regex.cpp +vc6/libboost_regex-vc6-mt-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-1_40.pdb ../src/regex.cpp -vc6/libboost_regex-vc6-mt-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-1_38.pdb ../src/regex_debug.cpp +vc6/libboost_regex-vc6-mt-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-1_40.pdb ../src/regex_debug.cpp -vc6/libboost_regex-vc6-mt-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-1_38.pdb ../src/regex_raw_buffer.cpp +vc6/libboost_regex-vc6-mt-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-1_40.pdb ../src/regex_raw_buffer.cpp -vc6/libboost_regex-vc6-mt-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-1_38.pdb ../src/regex_traits_defaults.cpp +vc6/libboost_regex-vc6-mt-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-1_40.pdb ../src/regex_traits_defaults.cpp -vc6/libboost_regex-vc6-mt-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-1_38.pdb ../src/static_mutex.cpp +vc6/libboost_regex-vc6-mt-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-1_40.pdb ../src/static_mutex.cpp -vc6/libboost_regex-vc6-mt-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-1_38.pdb ../src/usinstances.cpp +vc6/libboost_regex-vc6-mt-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-1_40.pdb ../src/usinstances.cpp -vc6/libboost_regex-vc6-mt-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-1_38.pdb ../src/w32_regex_traits.cpp +vc6/libboost_regex-vc6-mt-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-1_40.pdb ../src/w32_regex_traits.cpp -vc6/libboost_regex-vc6-mt-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-1_38.pdb ../src/wc_regex_traits.cpp +vc6/libboost_regex-vc6-mt-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-1_40.pdb ../src/wc_regex_traits.cpp -vc6/libboost_regex-vc6-mt-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-1_38.pdb ../src/wide_posix_api.cpp +vc6/libboost_regex-vc6-mt-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-1_40.pdb ../src/wide_posix_api.cpp -vc6/libboost_regex-vc6-mt-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-1_38.pdb ../src/winstances.cpp +vc6/libboost_regex-vc6-mt-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-1_40.pdb ../src/winstances.cpp -libboost_regex-vc6-mt-1_38_dir : - @if not exist "vc6\libboost_regex-vc6-mt-1_38\$(NULL)" mkdir vc6\libboost_regex-vc6-mt-1_38 +libboost_regex-vc6-mt-1_40_dir : + @if not exist "vc6\libboost_regex-vc6-mt-1_40\$(NULL)" mkdir vc6\libboost_regex-vc6-mt-1_40 -libboost_regex-vc6-mt-1_38_clean : - del vc6\libboost_regex-vc6-mt-1_38\*.obj - del vc6\libboost_regex-vc6-mt-1_38\*.idb - del vc6\libboost_regex-vc6-mt-1_38\*.exp - del vc6\libboost_regex-vc6-mt-1_38\*.pch +libboost_regex-vc6-mt-1_40_clean : + del vc6\libboost_regex-vc6-mt-1_40\*.obj + del vc6\libboost_regex-vc6-mt-1_40\*.idb + del vc6\libboost_regex-vc6-mt-1_40\*.exp + del vc6\libboost_regex-vc6-mt-1_40\*.pch -./vc6/libboost_regex-vc6-mt-1_38.lib : vc6/libboost_regex-vc6-mt-1_38/c_regex_traits.obj vc6/libboost_regex-vc6-mt-1_38/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-1_38/cregex.obj vc6/libboost_regex-vc6-mt-1_38/fileiter.obj vc6/libboost_regex-vc6-mt-1_38/icu.obj vc6/libboost_regex-vc6-mt-1_38/instances.obj vc6/libboost_regex-vc6-mt-1_38/posix_api.obj vc6/libboost_regex-vc6-mt-1_38/regex.obj vc6/libboost_regex-vc6-mt-1_38/regex_debug.obj vc6/libboost_regex-vc6-mt-1_38/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-1_38/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-1_38/static_mutex.obj vc6/libboost_regex-vc6-mt-1_38/usinstances.obj vc6/libboost_regex-vc6-mt-1_38/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-1_38/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-1_38/wide_posix_api.obj vc6/libboost_regex-vc6-mt-1_38/winstances.obj - link -lib /nologo /out:vc6/libboost_regex-vc6-mt-1_38.lib $(XSFLAGS) vc6/libboost_regex-vc6-mt-1_38/c_regex_traits.obj vc6/libboost_regex-vc6-mt-1_38/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-1_38/cregex.obj vc6/libboost_regex-vc6-mt-1_38/fileiter.obj vc6/libboost_regex-vc6-mt-1_38/icu.obj vc6/libboost_regex-vc6-mt-1_38/instances.obj vc6/libboost_regex-vc6-mt-1_38/posix_api.obj vc6/libboost_regex-vc6-mt-1_38/regex.obj vc6/libboost_regex-vc6-mt-1_38/regex_debug.obj vc6/libboost_regex-vc6-mt-1_38/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-1_38/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-1_38/static_mutex.obj vc6/libboost_regex-vc6-mt-1_38/usinstances.obj vc6/libboost_regex-vc6-mt-1_38/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-1_38/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-1_38/wide_posix_api.obj vc6/libboost_regex-vc6-mt-1_38/winstances.obj +./vc6/libboost_regex-vc6-mt-1_40.lib : vc6/libboost_regex-vc6-mt-1_40/c_regex_traits.obj vc6/libboost_regex-vc6-mt-1_40/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-1_40/cregex.obj vc6/libboost_regex-vc6-mt-1_40/fileiter.obj vc6/libboost_regex-vc6-mt-1_40/icu.obj vc6/libboost_regex-vc6-mt-1_40/instances.obj vc6/libboost_regex-vc6-mt-1_40/posix_api.obj vc6/libboost_regex-vc6-mt-1_40/regex.obj vc6/libboost_regex-vc6-mt-1_40/regex_debug.obj vc6/libboost_regex-vc6-mt-1_40/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-1_40/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-1_40/static_mutex.obj vc6/libboost_regex-vc6-mt-1_40/usinstances.obj vc6/libboost_regex-vc6-mt-1_40/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-1_40/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-1_40/wide_posix_api.obj vc6/libboost_regex-vc6-mt-1_40/winstances.obj + link -lib /nologo /out:vc6/libboost_regex-vc6-mt-1_40.lib $(XSFLAGS) vc6/libboost_regex-vc6-mt-1_40/c_regex_traits.obj vc6/libboost_regex-vc6-mt-1_40/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-1_40/cregex.obj vc6/libboost_regex-vc6-mt-1_40/fileiter.obj vc6/libboost_regex-vc6-mt-1_40/icu.obj vc6/libboost_regex-vc6-mt-1_40/instances.obj vc6/libboost_regex-vc6-mt-1_40/posix_api.obj vc6/libboost_regex-vc6-mt-1_40/regex.obj vc6/libboost_regex-vc6-mt-1_40/regex_debug.obj vc6/libboost_regex-vc6-mt-1_40/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-1_40/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-1_40/static_mutex.obj vc6/libboost_regex-vc6-mt-1_40/usinstances.obj vc6/libboost_regex-vc6-mt-1_40/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-1_40/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-1_40/wide_posix_api.obj vc6/libboost_regex-vc6-mt-1_40/winstances.obj ######################################################## # -# section for libboost_regex-vc6-mt-gd-1_38.lib +# section for libboost_regex-vc6-mt-gd-1_40.lib # ######################################################## -vc6/libboost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-gd-1_38.pdb ../src/c_regex_traits.cpp +vc6/libboost_regex-vc6-mt-gd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-gd-1_40.pdb ../src/c_regex_traits.cpp -vc6/libboost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-gd-1_38.pdb ../src/cpp_regex_traits.cpp +vc6/libboost_regex-vc6-mt-gd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-gd-1_40.pdb ../src/cpp_regex_traits.cpp -vc6/libboost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-gd-1_38.pdb ../src/cregex.cpp +vc6/libboost_regex-vc6-mt-gd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-gd-1_40.pdb ../src/cregex.cpp -vc6/libboost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-gd-1_38.pdb ../src/fileiter.cpp +vc6/libboost_regex-vc6-mt-gd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-gd-1_40.pdb ../src/fileiter.cpp -vc6/libboost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-gd-1_38.pdb ../src/icu.cpp +vc6/libboost_regex-vc6-mt-gd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-gd-1_40.pdb ../src/icu.cpp -vc6/libboost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-gd-1_38.pdb ../src/instances.cpp +vc6/libboost_regex-vc6-mt-gd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-gd-1_40.pdb ../src/instances.cpp -vc6/libboost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-gd-1_38.pdb ../src/posix_api.cpp +vc6/libboost_regex-vc6-mt-gd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-gd-1_40.pdb ../src/posix_api.cpp -vc6/libboost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-gd-1_38.pdb ../src/regex.cpp +vc6/libboost_regex-vc6-mt-gd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-gd-1_40.pdb ../src/regex.cpp -vc6/libboost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-gd-1_38.pdb ../src/regex_debug.cpp +vc6/libboost_regex-vc6-mt-gd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-gd-1_40.pdb ../src/regex_debug.cpp -vc6/libboost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-gd-1_38.pdb ../src/regex_raw_buffer.cpp +vc6/libboost_regex-vc6-mt-gd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-gd-1_40.pdb ../src/regex_raw_buffer.cpp -vc6/libboost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-gd-1_38.pdb ../src/regex_traits_defaults.cpp +vc6/libboost_regex-vc6-mt-gd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-gd-1_40.pdb ../src/regex_traits_defaults.cpp -vc6/libboost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-gd-1_38.pdb ../src/static_mutex.cpp +vc6/libboost_regex-vc6-mt-gd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-gd-1_40.pdb ../src/static_mutex.cpp -vc6/libboost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-gd-1_38.pdb ../src/usinstances.cpp +vc6/libboost_regex-vc6-mt-gd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-gd-1_40.pdb ../src/usinstances.cpp -vc6/libboost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-gd-1_38.pdb ../src/w32_regex_traits.cpp +vc6/libboost_regex-vc6-mt-gd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-gd-1_40.pdb ../src/w32_regex_traits.cpp -vc6/libboost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-gd-1_38.pdb ../src/wc_regex_traits.cpp +vc6/libboost_regex-vc6-mt-gd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-gd-1_40.pdb ../src/wc_regex_traits.cpp -vc6/libboost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-gd-1_38.pdb ../src/wide_posix_api.cpp +vc6/libboost_regex-vc6-mt-gd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-gd-1_40.pdb ../src/wide_posix_api.cpp -vc6/libboost_regex-vc6-mt-gd-1_38/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_38/ -Fdvc6/libboost_regex-vc6-mt-gd-1_38.pdb ../src/winstances.cpp +vc6/libboost_regex-vc6-mt-gd-1_40/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_40/ -Fdvc6/libboost_regex-vc6-mt-gd-1_40.pdb ../src/winstances.cpp -libboost_regex-vc6-mt-gd-1_38_dir : - @if not exist "vc6\libboost_regex-vc6-mt-gd-1_38\$(NULL)" mkdir vc6\libboost_regex-vc6-mt-gd-1_38 +libboost_regex-vc6-mt-gd-1_40_dir : + @if not exist "vc6\libboost_regex-vc6-mt-gd-1_40\$(NULL)" mkdir vc6\libboost_regex-vc6-mt-gd-1_40 -libboost_regex-vc6-mt-gd-1_38_clean : - del vc6\libboost_regex-vc6-mt-gd-1_38\*.obj - del vc6\libboost_regex-vc6-mt-gd-1_38\*.idb - del vc6\libboost_regex-vc6-mt-gd-1_38\*.exp - del vc6\libboost_regex-vc6-mt-gd-1_38\*.pch +libboost_regex-vc6-mt-gd-1_40_clean : + del vc6\libboost_regex-vc6-mt-gd-1_40\*.obj + del vc6\libboost_regex-vc6-mt-gd-1_40\*.idb + del vc6\libboost_regex-vc6-mt-gd-1_40\*.exp + del vc6\libboost_regex-vc6-mt-gd-1_40\*.pch -./vc6/libboost_regex-vc6-mt-gd-1_38.lib : vc6/libboost_regex-vc6-mt-gd-1_38/c_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_38/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_38/cregex.obj vc6/libboost_regex-vc6-mt-gd-1_38/fileiter.obj vc6/libboost_regex-vc6-mt-gd-1_38/icu.obj vc6/libboost_regex-vc6-mt-gd-1_38/instances.obj vc6/libboost_regex-vc6-mt-gd-1_38/posix_api.obj vc6/libboost_regex-vc6-mt-gd-1_38/regex.obj vc6/libboost_regex-vc6-mt-gd-1_38/regex_debug.obj vc6/libboost_regex-vc6-mt-gd-1_38/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-gd-1_38/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-gd-1_38/static_mutex.obj vc6/libboost_regex-vc6-mt-gd-1_38/usinstances.obj vc6/libboost_regex-vc6-mt-gd-1_38/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_38/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_38/wide_posix_api.obj vc6/libboost_regex-vc6-mt-gd-1_38/winstances.obj - link -lib /nologo /out:vc6/libboost_regex-vc6-mt-gd-1_38.lib $(XSFLAGS) vc6/libboost_regex-vc6-mt-gd-1_38/c_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_38/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_38/cregex.obj vc6/libboost_regex-vc6-mt-gd-1_38/fileiter.obj vc6/libboost_regex-vc6-mt-gd-1_38/icu.obj vc6/libboost_regex-vc6-mt-gd-1_38/instances.obj vc6/libboost_regex-vc6-mt-gd-1_38/posix_api.obj vc6/libboost_regex-vc6-mt-gd-1_38/regex.obj vc6/libboost_regex-vc6-mt-gd-1_38/regex_debug.obj vc6/libboost_regex-vc6-mt-gd-1_38/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-gd-1_38/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-gd-1_38/static_mutex.obj vc6/libboost_regex-vc6-mt-gd-1_38/usinstances.obj vc6/libboost_regex-vc6-mt-gd-1_38/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_38/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_38/wide_posix_api.obj vc6/libboost_regex-vc6-mt-gd-1_38/winstances.obj +./vc6/libboost_regex-vc6-mt-gd-1_40.lib : vc6/libboost_regex-vc6-mt-gd-1_40/c_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_40/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_40/cregex.obj vc6/libboost_regex-vc6-mt-gd-1_40/fileiter.obj vc6/libboost_regex-vc6-mt-gd-1_40/icu.obj vc6/libboost_regex-vc6-mt-gd-1_40/instances.obj vc6/libboost_regex-vc6-mt-gd-1_40/posix_api.obj vc6/libboost_regex-vc6-mt-gd-1_40/regex.obj vc6/libboost_regex-vc6-mt-gd-1_40/regex_debug.obj vc6/libboost_regex-vc6-mt-gd-1_40/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-gd-1_40/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-gd-1_40/static_mutex.obj vc6/libboost_regex-vc6-mt-gd-1_40/usinstances.obj vc6/libboost_regex-vc6-mt-gd-1_40/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_40/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_40/wide_posix_api.obj vc6/libboost_regex-vc6-mt-gd-1_40/winstances.obj + link -lib /nologo /out:vc6/libboost_regex-vc6-mt-gd-1_40.lib $(XSFLAGS) vc6/libboost_regex-vc6-mt-gd-1_40/c_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_40/cpp_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_40/cregex.obj vc6/libboost_regex-vc6-mt-gd-1_40/fileiter.obj vc6/libboost_regex-vc6-mt-gd-1_40/icu.obj vc6/libboost_regex-vc6-mt-gd-1_40/instances.obj vc6/libboost_regex-vc6-mt-gd-1_40/posix_api.obj vc6/libboost_regex-vc6-mt-gd-1_40/regex.obj vc6/libboost_regex-vc6-mt-gd-1_40/regex_debug.obj vc6/libboost_regex-vc6-mt-gd-1_40/regex_raw_buffer.obj vc6/libboost_regex-vc6-mt-gd-1_40/regex_traits_defaults.obj vc6/libboost_regex-vc6-mt-gd-1_40/static_mutex.obj vc6/libboost_regex-vc6-mt-gd-1_40/usinstances.obj vc6/libboost_regex-vc6-mt-gd-1_40/w32_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_40/wc_regex_traits.obj vc6/libboost_regex-vc6-mt-gd-1_40/wide_posix_api.obj vc6/libboost_regex-vc6-mt-gd-1_40/winstances.obj diff --git a/build/vc7-stlport.mak b/build/vc7-stlport.mak index 0955dee4..69a657ba 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_38_dir ./vc7-stlport/libboost_regex-vc7-mt-sp-1_38.lib boost_regex-vc7-mt-p-1_38_dir ./vc7-stlport/boost_regex-vc7-mt-p-1_38.lib libboost_regex-vc7-mt-p-1_38_dir ./vc7-stlport/libboost_regex-vc7-mt-p-1_38.lib boost_regex-vc7-mt-gdp-1_38_dir ./vc7-stlport/boost_regex-vc7-mt-gdp-1_38.lib libboost_regex-vc7-mt-sgdp-1_38_dir ./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38.lib libboost_regex-vc7-mt-gdp-1_38_dir ./vc7-stlport/libboost_regex-vc7-mt-gdp-1_38.lib +all : main_dir libboost_regex-vc7-mt-sp-1_40_dir ./vc7-stlport/libboost_regex-vc7-mt-sp-1_40.lib boost_regex-vc7-mt-p-1_40_dir ./vc7-stlport/boost_regex-vc7-mt-p-1_40.lib libboost_regex-vc7-mt-p-1_40_dir ./vc7-stlport/libboost_regex-vc7-mt-p-1_40.lib boost_regex-vc7-mt-gdp-1_40_dir ./vc7-stlport/boost_regex-vc7-mt-gdp-1_40.lib libboost_regex-vc7-mt-sgdp-1_40_dir ./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40.lib libboost_regex-vc7-mt-gdp-1_40_dir ./vc7-stlport/libboost_regex-vc7-mt-gdp-1_40.lib -clean : libboost_regex-vc7-mt-sp-1_38_clean boost_regex-vc7-mt-p-1_38_clean libboost_regex-vc7-mt-p-1_38_clean boost_regex-vc7-mt-gdp-1_38_clean libboost_regex-vc7-mt-sgdp-1_38_clean libboost_regex-vc7-mt-gdp-1_38_clean +clean : libboost_regex-vc7-mt-sp-1_40_clean boost_regex-vc7-mt-p-1_40_clean libboost_regex-vc7-mt-p-1_40_clean boost_regex-vc7-mt-gdp-1_40_clean libboost_regex-vc7-mt-sgdp-1_40_clean libboost_regex-vc7-mt-gdp-1_40_clean install : stlport_check all - copy vc7-stlport\libboost_regex-vc7-mt-sp-1_38.lib "$(MSVCDIR)\lib" - copy vc7-stlport\boost_regex-vc7-mt-p-1_38.lib "$(MSVCDIR)\lib" - copy vc7-stlport\boost_regex-vc7-mt-p-1_38.dll "$(MSVCDIR)\bin" - copy vc7-stlport\libboost_regex-vc7-mt-p-1_38.lib "$(MSVCDIR)\lib" - copy vc7-stlport\boost_regex-vc7-mt-gdp-1_38.lib "$(MSVCDIR)\lib" - copy vc7-stlport\boost_regex-vc7-mt-gdp-1_38.dll "$(MSVCDIR)\bin" - copy vc7-stlport\boost_regex-vc7-mt-gdp-1_38.pdb "$(MSVCDIR)\lib" - copy vc7-stlport\libboost_regex-vc7-mt-sgdp-1_38.lib "$(MSVCDIR)\lib" - copy vc7-stlport\libboost_regex-vc7-mt-sgdp-1_38.pdb "$(MSVCDIR)\lib" - copy vc7-stlport\libboost_regex-vc7-mt-gdp-1_38.lib "$(MSVCDIR)\lib" - copy vc7-stlport\libboost_regex-vc7-mt-gdp-1_38.pdb "$(MSVCDIR)\lib" + copy vc7-stlport\libboost_regex-vc7-mt-sp-1_40.lib "$(MSVCDIR)\lib" + copy vc7-stlport\boost_regex-vc7-mt-p-1_40.lib "$(MSVCDIR)\lib" + copy vc7-stlport\boost_regex-vc7-mt-p-1_40.dll "$(MSVCDIR)\bin" + copy vc7-stlport\libboost_regex-vc7-mt-p-1_40.lib "$(MSVCDIR)\lib" + copy vc7-stlport\boost_regex-vc7-mt-gdp-1_40.lib "$(MSVCDIR)\lib" + copy vc7-stlport\boost_regex-vc7-mt-gdp-1_40.dll "$(MSVCDIR)\bin" + copy vc7-stlport\boost_regex-vc7-mt-gdp-1_40.pdb "$(MSVCDIR)\lib" + copy vc7-stlport\libboost_regex-vc7-mt-sgdp-1_40.lib "$(MSVCDIR)\lib" + copy vc7-stlport\libboost_regex-vc7-mt-sgdp-1_40.pdb "$(MSVCDIR)\lib" + copy vc7-stlport\libboost_regex-vc7-mt-gdp-1_40.lib "$(MSVCDIR)\lib" + copy vc7-stlport\libboost_regex-vc7-mt-gdp-1_40.pdb "$(MSVCDIR)\lib" main_dir : @if not exist "vc7-stlport\$(NULL)" mkdir vc7-stlport @@ -88,410 +88,410 @@ stlport_check : "$(STLPORT_PATH)\stlport\string" ######################################################## # -# section for libboost_regex-vc7-mt-sp-1_38.lib +# section for libboost_regex-vc7-mt-sp-1_40.lib # ######################################################## -vc7-stlport/libboost_regex-vc7-mt-sp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_38.pdb ../src/c_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_40.pdb ../src/c_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_38.pdb ../src/cpp_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_40.pdb ../src/cpp_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_38.pdb ../src/cregex.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_40.pdb ../src/cregex.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_38.pdb ../src/fileiter.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_40.pdb ../src/fileiter.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_38.pdb ../src/icu.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_40.pdb ../src/icu.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_38.pdb ../src/instances.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_40.pdb ../src/instances.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_38.pdb ../src/posix_api.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_40.pdb ../src/posix_api.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_38.pdb ../src/regex.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_40.pdb ../src/regex.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_38.pdb ../src/regex_debug.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_40.pdb ../src/regex_debug.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_38.pdb ../src/regex_raw_buffer.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_40.pdb ../src/regex_raw_buffer.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_38.pdb ../src/regex_traits_defaults.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_40.pdb ../src/regex_traits_defaults.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_38.pdb ../src/static_mutex.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_40.pdb ../src/static_mutex.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_38.pdb ../src/usinstances.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_40.pdb ../src/usinstances.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_38.pdb ../src/w32_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_40.pdb ../src/w32_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_38.pdb ../src/wc_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_40.pdb ../src/wc_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_38.pdb ../src/wide_posix_api.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_40.pdb ../src/wide_posix_api.cpp -vc7-stlport/libboost_regex-vc7-mt-sp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_38.pdb ../src/winstances.cpp +vc7-stlport/libboost_regex-vc7-mt-sp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-sp-1_40.pdb ../src/winstances.cpp -libboost_regex-vc7-mt-sp-1_38_dir : - @if not exist "vc7-stlport\libboost_regex-vc7-mt-sp-1_38\$(NULL)" mkdir vc7-stlport\libboost_regex-vc7-mt-sp-1_38 +libboost_regex-vc7-mt-sp-1_40_dir : + @if not exist "vc7-stlport\libboost_regex-vc7-mt-sp-1_40\$(NULL)" mkdir vc7-stlport\libboost_regex-vc7-mt-sp-1_40 -libboost_regex-vc7-mt-sp-1_38_clean : - del vc7-stlport\libboost_regex-vc7-mt-sp-1_38\*.obj - del vc7-stlport\libboost_regex-vc7-mt-sp-1_38\*.idb - del vc7-stlport\libboost_regex-vc7-mt-sp-1_38\*.exp - del vc7-stlport\libboost_regex-vc7-mt-sp-1_38\*.pch +libboost_regex-vc7-mt-sp-1_40_clean : + del vc7-stlport\libboost_regex-vc7-mt-sp-1_40\*.obj + del vc7-stlport\libboost_regex-vc7-mt-sp-1_40\*.idb + del vc7-stlport\libboost_regex-vc7-mt-sp-1_40\*.exp + del vc7-stlport\libboost_regex-vc7-mt-sp-1_40\*.pch -./vc7-stlport/libboost_regex-vc7-mt-sp-1_38.lib : vc7-stlport/libboost_regex-vc7-mt-sp-1_38/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/cregex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/icu.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/instances.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/regex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/winstances.obj - link -lib /nologo /out:vc7-stlport/libboost_regex-vc7-mt-sp-1_38.lib $(XSFLAGS) vc7-stlport/libboost_regex-vc7-mt-sp-1_38/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/cregex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/icu.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/instances.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/regex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_38/winstances.obj +./vc7-stlport/libboost_regex-vc7-mt-sp-1_40.lib : vc7-stlport/libboost_regex-vc7-mt-sp-1_40/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_40/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_40/cregex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_40/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_40/icu.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_40/instances.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_40/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_40/regex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_40/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_40/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_40/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_40/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_40/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_40/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_40/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_40/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_40/winstances.obj + link -lib /nologo /out:vc7-stlport/libboost_regex-vc7-mt-sp-1_40.lib $(XSFLAGS) vc7-stlport/libboost_regex-vc7-mt-sp-1_40/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_40/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_40/cregex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_40/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_40/icu.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_40/instances.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_40/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_40/regex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_40/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_40/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_40/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_40/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_40/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_40/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_40/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_40/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sp-1_40/winstances.obj ######################################################## # -# section for boost_regex-vc7-mt-p-1_38.lib +# section for boost_regex-vc7-mt-p-1_40.lib # ######################################################## -vc7-stlport/boost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_38.pdb ../src/c_regex_traits.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_40/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_40/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_40.pdb ../src/c_regex_traits.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_38.pdb ../src/cpp_regex_traits.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_40/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_40/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_40.pdb ../src/cpp_regex_traits.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_38.pdb ../src/cregex.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_40/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_40/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_40.pdb ../src/cregex.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_38.pdb ../src/fileiter.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_40/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_40/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_40.pdb ../src/fileiter.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_38.pdb ../src/icu.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_40/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_40/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_40.pdb ../src/icu.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_38.pdb ../src/instances.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_40/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_40/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_40.pdb ../src/instances.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_38.pdb ../src/posix_api.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_40/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_40/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_40.pdb ../src/posix_api.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_38.pdb ../src/regex.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_40/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_40/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_40.pdb ../src/regex.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_38.pdb ../src/regex_debug.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_40/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_40/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_40.pdb ../src/regex_debug.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_38.pdb ../src/regex_raw_buffer.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_40/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_40/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_40.pdb ../src/regex_raw_buffer.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_38.pdb ../src/regex_traits_defaults.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_40/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_40/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_40.pdb ../src/regex_traits_defaults.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_38.pdb ../src/static_mutex.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_40/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_40/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_40.pdb ../src/static_mutex.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_38.pdb ../src/usinstances.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_40/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_40/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_40.pdb ../src/usinstances.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_38.pdb ../src/w32_regex_traits.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_40/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_40/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_40.pdb ../src/w32_regex_traits.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_38.pdb ../src/wc_regex_traits.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_40/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_40/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_40.pdb ../src/wc_regex_traits.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_38.pdb ../src/wide_posix_api.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_40/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_40/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_40.pdb ../src/wide_posix_api.cpp -vc7-stlport/boost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_38.pdb ../src/winstances.cpp +vc7-stlport/boost_regex-vc7-mt-p-1_40/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_40/ -Fdvc7-stlport/boost_regex-vc7-mt-p-1_40.pdb ../src/winstances.cpp -boost_regex-vc7-mt-p-1_38_dir : - @if not exist "vc7-stlport\boost_regex-vc7-mt-p-1_38\$(NULL)" mkdir vc7-stlport\boost_regex-vc7-mt-p-1_38 +boost_regex-vc7-mt-p-1_40_dir : + @if not exist "vc7-stlport\boost_regex-vc7-mt-p-1_40\$(NULL)" mkdir vc7-stlport\boost_regex-vc7-mt-p-1_40 -boost_regex-vc7-mt-p-1_38_clean : - del vc7-stlport\boost_regex-vc7-mt-p-1_38\*.obj - del vc7-stlport\boost_regex-vc7-mt-p-1_38\*.idb - del vc7-stlport\boost_regex-vc7-mt-p-1_38\*.exp - del vc7-stlport\boost_regex-vc7-mt-p-1_38\*.pch +boost_regex-vc7-mt-p-1_40_clean : + del vc7-stlport\boost_regex-vc7-mt-p-1_40\*.obj + del vc7-stlport\boost_regex-vc7-mt-p-1_40\*.idb + del vc7-stlport\boost_regex-vc7-mt-p-1_40\*.exp + del vc7-stlport\boost_regex-vc7-mt-p-1_40\*.pch -./vc7-stlport/boost_regex-vc7-mt-p-1_38.lib : vc7-stlport/boost_regex-vc7-mt-p-1_38/c_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/cpp_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/cregex.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/fileiter.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/icu.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/instances.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/posix_api.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/regex.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/regex_debug.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/regex_raw_buffer.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/regex_traits_defaults.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/static_mutex.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/usinstances.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/w32_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/wc_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/wide_posix_api.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/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_38.pdb" /debug /machine:I386 /out:"vc7-stlport/boost_regex-vc7-mt-p-1_38.dll" /implib:"vc7-stlport/boost_regex-vc7-mt-p-1_38.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc7-stlport/boost_regex-vc7-mt-p-1_38/c_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/cpp_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/cregex.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/fileiter.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/icu.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/instances.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/posix_api.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/regex.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/regex_debug.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/regex_raw_buffer.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/regex_traits_defaults.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/static_mutex.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/usinstances.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/w32_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/wc_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/wide_posix_api.obj vc7-stlport/boost_regex-vc7-mt-p-1_38/winstances.obj +./vc7-stlport/boost_regex-vc7-mt-p-1_40.lib : vc7-stlport/boost_regex-vc7-mt-p-1_40/c_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_40/cpp_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_40/cregex.obj vc7-stlport/boost_regex-vc7-mt-p-1_40/fileiter.obj vc7-stlport/boost_regex-vc7-mt-p-1_40/icu.obj vc7-stlport/boost_regex-vc7-mt-p-1_40/instances.obj vc7-stlport/boost_regex-vc7-mt-p-1_40/posix_api.obj vc7-stlport/boost_regex-vc7-mt-p-1_40/regex.obj vc7-stlport/boost_regex-vc7-mt-p-1_40/regex_debug.obj vc7-stlport/boost_regex-vc7-mt-p-1_40/regex_raw_buffer.obj vc7-stlport/boost_regex-vc7-mt-p-1_40/regex_traits_defaults.obj vc7-stlport/boost_regex-vc7-mt-p-1_40/static_mutex.obj vc7-stlport/boost_regex-vc7-mt-p-1_40/usinstances.obj vc7-stlport/boost_regex-vc7-mt-p-1_40/w32_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_40/wc_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_40/wide_posix_api.obj vc7-stlport/boost_regex-vc7-mt-p-1_40/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_40.pdb" /debug /machine:I386 /out:"vc7-stlport/boost_regex-vc7-mt-p-1_40.dll" /implib:"vc7-stlport/boost_regex-vc7-mt-p-1_40.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc7-stlport/boost_regex-vc7-mt-p-1_40/c_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_40/cpp_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_40/cregex.obj vc7-stlport/boost_regex-vc7-mt-p-1_40/fileiter.obj vc7-stlport/boost_regex-vc7-mt-p-1_40/icu.obj vc7-stlport/boost_regex-vc7-mt-p-1_40/instances.obj vc7-stlport/boost_regex-vc7-mt-p-1_40/posix_api.obj vc7-stlport/boost_regex-vc7-mt-p-1_40/regex.obj vc7-stlport/boost_regex-vc7-mt-p-1_40/regex_debug.obj vc7-stlport/boost_regex-vc7-mt-p-1_40/regex_raw_buffer.obj vc7-stlport/boost_regex-vc7-mt-p-1_40/regex_traits_defaults.obj vc7-stlport/boost_regex-vc7-mt-p-1_40/static_mutex.obj vc7-stlport/boost_regex-vc7-mt-p-1_40/usinstances.obj vc7-stlport/boost_regex-vc7-mt-p-1_40/w32_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_40/wc_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-p-1_40/wide_posix_api.obj vc7-stlport/boost_regex-vc7-mt-p-1_40/winstances.obj ######################################################## # -# section for libboost_regex-vc7-mt-p-1_38.lib +# section for libboost_regex-vc7-mt-p-1_40.lib # ######################################################## -vc7-stlport/libboost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_38.pdb ../src/c_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_40.pdb ../src/c_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_38.pdb ../src/cpp_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_40.pdb ../src/cpp_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_38.pdb ../src/cregex.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_40.pdb ../src/cregex.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_38.pdb ../src/fileiter.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_40.pdb ../src/fileiter.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_38.pdb ../src/icu.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_40.pdb ../src/icu.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_38.pdb ../src/instances.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_40.pdb ../src/instances.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_38.pdb ../src/posix_api.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_40.pdb ../src/posix_api.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_38.pdb ../src/regex.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_40.pdb ../src/regex.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_38.pdb ../src/regex_debug.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_40.pdb ../src/regex_debug.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_38.pdb ../src/regex_raw_buffer.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_40.pdb ../src/regex_raw_buffer.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_38.pdb ../src/regex_traits_defaults.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_40.pdb ../src/regex_traits_defaults.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_38.pdb ../src/static_mutex.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_40.pdb ../src/static_mutex.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_38.pdb ../src/usinstances.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_40.pdb ../src/usinstances.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_38.pdb ../src/w32_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_40.pdb ../src/w32_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_38.pdb ../src/wc_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_40.pdb ../src/wc_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_38.pdb ../src/wide_posix_api.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_40.pdb ../src/wide_posix_api.cpp -vc7-stlport/libboost_regex-vc7-mt-p-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_38.pdb ../src/winstances.cpp +vc7-stlport/libboost_regex-vc7-mt-p-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-p-1_40.pdb ../src/winstances.cpp -libboost_regex-vc7-mt-p-1_38_dir : - @if not exist "vc7-stlport\libboost_regex-vc7-mt-p-1_38\$(NULL)" mkdir vc7-stlport\libboost_regex-vc7-mt-p-1_38 +libboost_regex-vc7-mt-p-1_40_dir : + @if not exist "vc7-stlport\libboost_regex-vc7-mt-p-1_40\$(NULL)" mkdir vc7-stlport\libboost_regex-vc7-mt-p-1_40 -libboost_regex-vc7-mt-p-1_38_clean : - del vc7-stlport\libboost_regex-vc7-mt-p-1_38\*.obj - del vc7-stlport\libboost_regex-vc7-mt-p-1_38\*.idb - del vc7-stlport\libboost_regex-vc7-mt-p-1_38\*.exp - del vc7-stlport\libboost_regex-vc7-mt-p-1_38\*.pch +libboost_regex-vc7-mt-p-1_40_clean : + del vc7-stlport\libboost_regex-vc7-mt-p-1_40\*.obj + del vc7-stlport\libboost_regex-vc7-mt-p-1_40\*.idb + del vc7-stlport\libboost_regex-vc7-mt-p-1_40\*.exp + del vc7-stlport\libboost_regex-vc7-mt-p-1_40\*.pch -./vc7-stlport/libboost_regex-vc7-mt-p-1_38.lib : vc7-stlport/libboost_regex-vc7-mt-p-1_38/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/cregex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/icu.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/instances.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/regex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/winstances.obj - link -lib /nologo /out:vc7-stlport/libboost_regex-vc7-mt-p-1_38.lib $(XSFLAGS) vc7-stlport/libboost_regex-vc7-mt-p-1_38/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/cregex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/icu.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/instances.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/regex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-p-1_38/winstances.obj +./vc7-stlport/libboost_regex-vc7-mt-p-1_40.lib : vc7-stlport/libboost_regex-vc7-mt-p-1_40/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_40/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_40/cregex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_40/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-p-1_40/icu.obj vc7-stlport/libboost_regex-vc7-mt-p-1_40/instances.obj vc7-stlport/libboost_regex-vc7-mt-p-1_40/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-p-1_40/regex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_40/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-p-1_40/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-p-1_40/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-p-1_40/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_40/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-p-1_40/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_40/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_40/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-p-1_40/winstances.obj + link -lib /nologo /out:vc7-stlport/libboost_regex-vc7-mt-p-1_40.lib $(XSFLAGS) vc7-stlport/libboost_regex-vc7-mt-p-1_40/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_40/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_40/cregex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_40/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-p-1_40/icu.obj vc7-stlport/libboost_regex-vc7-mt-p-1_40/instances.obj vc7-stlport/libboost_regex-vc7-mt-p-1_40/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-p-1_40/regex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_40/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-p-1_40/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-p-1_40/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-p-1_40/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-p-1_40/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-p-1_40/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_40/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-p-1_40/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-p-1_40/winstances.obj ######################################################## # -# section for boost_regex-vc7-mt-gdp-1_38.lib +# section for boost_regex-vc7-mt-gdp-1_40.lib # ######################################################## -vc7-stlport/boost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_38.pdb ../src/c_regex_traits.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_40/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_40/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_40.pdb ../src/c_regex_traits.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_38.pdb ../src/cpp_regex_traits.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_40/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_40/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_40.pdb ../src/cpp_regex_traits.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_38.pdb ../src/cregex.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_40/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_40/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_40.pdb ../src/cregex.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_38.pdb ../src/fileiter.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_40/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_40/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_40.pdb ../src/fileiter.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_38.pdb ../src/icu.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_40/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_40/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_40.pdb ../src/icu.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_38.pdb ../src/instances.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_40/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_40/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_40.pdb ../src/instances.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_38.pdb ../src/posix_api.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_40/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_40/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_40.pdb ../src/posix_api.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_38.pdb ../src/regex.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_40/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_40/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_40.pdb ../src/regex.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_38.pdb ../src/regex_debug.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_40/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_40/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_40.pdb ../src/regex_debug.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_38.pdb ../src/regex_raw_buffer.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_40/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_40/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_40.pdb ../src/regex_raw_buffer.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_38.pdb ../src/regex_traits_defaults.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_40/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_40/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_40.pdb ../src/regex_traits_defaults.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_38.pdb ../src/static_mutex.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_40/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_40/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_40.pdb ../src/static_mutex.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_38.pdb ../src/usinstances.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_40/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_40/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_40.pdb ../src/usinstances.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_38.pdb ../src/w32_regex_traits.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_40/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_40/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_40.pdb ../src/w32_regex_traits.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_38.pdb ../src/wc_regex_traits.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_40/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_40/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_40.pdb ../src/wc_regex_traits.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_38.pdb ../src/wide_posix_api.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_40/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_40/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_40.pdb ../src/wide_posix_api.cpp -vc7-stlport/boost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_38.pdb ../src/winstances.cpp +vc7-stlport/boost_regex-vc7-mt-gdp-1_40/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_40/ -Fdvc7-stlport/boost_regex-vc7-mt-gdp-1_40.pdb ../src/winstances.cpp -boost_regex-vc7-mt-gdp-1_38_dir : - @if not exist "vc7-stlport\boost_regex-vc7-mt-gdp-1_38\$(NULL)" mkdir vc7-stlport\boost_regex-vc7-mt-gdp-1_38 +boost_regex-vc7-mt-gdp-1_40_dir : + @if not exist "vc7-stlport\boost_regex-vc7-mt-gdp-1_40\$(NULL)" mkdir vc7-stlport\boost_regex-vc7-mt-gdp-1_40 -boost_regex-vc7-mt-gdp-1_38_clean : - del vc7-stlport\boost_regex-vc7-mt-gdp-1_38\*.obj - del vc7-stlport\boost_regex-vc7-mt-gdp-1_38\*.idb - del vc7-stlport\boost_regex-vc7-mt-gdp-1_38\*.exp - del vc7-stlport\boost_regex-vc7-mt-gdp-1_38\*.pch +boost_regex-vc7-mt-gdp-1_40_clean : + del vc7-stlport\boost_regex-vc7-mt-gdp-1_40\*.obj + del vc7-stlport\boost_regex-vc7-mt-gdp-1_40\*.idb + del vc7-stlport\boost_regex-vc7-mt-gdp-1_40\*.exp + del vc7-stlport\boost_regex-vc7-mt-gdp-1_40\*.pch -./vc7-stlport/boost_regex-vc7-mt-gdp-1_38.lib : vc7-stlport/boost_regex-vc7-mt-gdp-1_38/c_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/cpp_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/cregex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/fileiter.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/icu.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/instances.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/posix_api.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/regex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/regex_debug.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/regex_raw_buffer.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/regex_traits_defaults.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/static_mutex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/usinstances.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/w32_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/wc_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/wide_posix_api.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/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_38.pdb" /debug /machine:I386 /out:"vc7-stlport/boost_regex-vc7-mt-gdp-1_38.dll" /implib:"vc7-stlport/boost_regex-vc7-mt-gdp-1_38.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc7-stlport/boost_regex-vc7-mt-gdp-1_38/c_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/cpp_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/cregex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/fileiter.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/icu.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/instances.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/posix_api.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/regex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/regex_debug.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/regex_raw_buffer.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/regex_traits_defaults.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/static_mutex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/usinstances.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/w32_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/wc_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/wide_posix_api.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_38/winstances.obj +./vc7-stlport/boost_regex-vc7-mt-gdp-1_40.lib : vc7-stlport/boost_regex-vc7-mt-gdp-1_40/c_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_40/cpp_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_40/cregex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_40/fileiter.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_40/icu.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_40/instances.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_40/posix_api.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_40/regex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_40/regex_debug.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_40/regex_raw_buffer.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_40/regex_traits_defaults.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_40/static_mutex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_40/usinstances.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_40/w32_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_40/wc_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_40/wide_posix_api.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_40/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_40.pdb" /debug /machine:I386 /out:"vc7-stlport/boost_regex-vc7-mt-gdp-1_40.dll" /implib:"vc7-stlport/boost_regex-vc7-mt-gdp-1_40.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc7-stlport/boost_regex-vc7-mt-gdp-1_40/c_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_40/cpp_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_40/cregex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_40/fileiter.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_40/icu.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_40/instances.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_40/posix_api.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_40/regex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_40/regex_debug.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_40/regex_raw_buffer.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_40/regex_traits_defaults.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_40/static_mutex.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_40/usinstances.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_40/w32_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_40/wc_regex_traits.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_40/wide_posix_api.obj vc7-stlport/boost_regex-vc7-mt-gdp-1_40/winstances.obj ######################################################## # -# section for libboost_regex-vc7-mt-sgdp-1_38.lib +# section for libboost_regex-vc7-mt-sgdp-1_40.lib # ######################################################## -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_38.pdb ../src/c_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_40.pdb ../src/c_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_38.pdb ../src/cpp_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_40.pdb ../src/cpp_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_38.pdb ../src/cregex.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_40.pdb ../src/cregex.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_38.pdb ../src/fileiter.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_40.pdb ../src/fileiter.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_38.pdb ../src/icu.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_40.pdb ../src/icu.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_38.pdb ../src/instances.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_40.pdb ../src/instances.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_38.pdb ../src/posix_api.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_40.pdb ../src/posix_api.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_38.pdb ../src/regex.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_40.pdb ../src/regex.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_38.pdb ../src/regex_debug.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_40.pdb ../src/regex_debug.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_38.pdb ../src/regex_raw_buffer.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_40.pdb ../src/regex_raw_buffer.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_38.pdb ../src/regex_traits_defaults.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_40.pdb ../src/regex_traits_defaults.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_38.pdb ../src/static_mutex.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_40.pdb ../src/static_mutex.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_38.pdb ../src/usinstances.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_40.pdb ../src/usinstances.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_38.pdb ../src/w32_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_40.pdb ../src/w32_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_38.pdb ../src/wc_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_40.pdb ../src/wc_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_38.pdb ../src/wide_posix_api.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_40.pdb ../src/wide_posix_api.cpp -vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_38.pdb ../src/winstances.cpp +vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-sgdp-1_40.pdb ../src/winstances.cpp -libboost_regex-vc7-mt-sgdp-1_38_dir : - @if not exist "vc7-stlport\libboost_regex-vc7-mt-sgdp-1_38\$(NULL)" mkdir vc7-stlport\libboost_regex-vc7-mt-sgdp-1_38 +libboost_regex-vc7-mt-sgdp-1_40_dir : + @if not exist "vc7-stlport\libboost_regex-vc7-mt-sgdp-1_40\$(NULL)" mkdir vc7-stlport\libboost_regex-vc7-mt-sgdp-1_40 -libboost_regex-vc7-mt-sgdp-1_38_clean : - del vc7-stlport\libboost_regex-vc7-mt-sgdp-1_38\*.obj - del vc7-stlport\libboost_regex-vc7-mt-sgdp-1_38\*.idb - del vc7-stlport\libboost_regex-vc7-mt-sgdp-1_38\*.exp - del vc7-stlport\libboost_regex-vc7-mt-sgdp-1_38\*.pch +libboost_regex-vc7-mt-sgdp-1_40_clean : + del vc7-stlport\libboost_regex-vc7-mt-sgdp-1_40\*.obj + del vc7-stlport\libboost_regex-vc7-mt-sgdp-1_40\*.idb + del vc7-stlport\libboost_regex-vc7-mt-sgdp-1_40\*.exp + del vc7-stlport\libboost_regex-vc7-mt-sgdp-1_40\*.pch -./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38.lib : vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/cregex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/icu.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/instances.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/regex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/winstances.obj - link -lib /nologo /out:vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38.lib $(XSFLAGS) vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/cregex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/icu.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/instances.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/regex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_38/winstances.obj +./vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40.lib : vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/cregex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/icu.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/instances.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/regex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/winstances.obj + link -lib /nologo /out:vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40.lib $(XSFLAGS) vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/cregex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/icu.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/instances.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/regex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-sgdp-1_40/winstances.obj ######################################################## # -# section for libboost_regex-vc7-mt-gdp-1_38.lib +# section for libboost_regex-vc7-mt-gdp-1_40.lib # ######################################################## -vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_38.pdb ../src/c_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_40.pdb ../src/c_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_38.pdb ../src/cpp_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_40.pdb ../src/cpp_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_38.pdb ../src/cregex.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_40.pdb ../src/cregex.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_38.pdb ../src/fileiter.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_40.pdb ../src/fileiter.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_38.pdb ../src/icu.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_40.pdb ../src/icu.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_38.pdb ../src/instances.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_40.pdb ../src/instances.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_38.pdb ../src/posix_api.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_40.pdb ../src/posix_api.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_38.pdb ../src/regex.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_40.pdb ../src/regex.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_38.pdb ../src/regex_debug.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_40.pdb ../src/regex_debug.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_38.pdb ../src/regex_raw_buffer.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_40.pdb ../src/regex_raw_buffer.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_38.pdb ../src/regex_traits_defaults.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_40.pdb ../src/regex_traits_defaults.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_38.pdb ../src/static_mutex.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_40.pdb ../src/static_mutex.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_38.pdb ../src/usinstances.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_40.pdb ../src/usinstances.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_38.pdb ../src/w32_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_40.pdb ../src/w32_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_38.pdb ../src/wc_regex_traits.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_40.pdb ../src/wc_regex_traits.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_38.pdb ../src/wide_posix_api.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_40.pdb ../src/wide_posix_api.cpp -vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/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_38/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_38.pdb ../src/winstances.cpp +vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/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_40/ -Fdvc7-stlport/libboost_regex-vc7-mt-gdp-1_40.pdb ../src/winstances.cpp -libboost_regex-vc7-mt-gdp-1_38_dir : - @if not exist "vc7-stlport\libboost_regex-vc7-mt-gdp-1_38\$(NULL)" mkdir vc7-stlport\libboost_regex-vc7-mt-gdp-1_38 +libboost_regex-vc7-mt-gdp-1_40_dir : + @if not exist "vc7-stlport\libboost_regex-vc7-mt-gdp-1_40\$(NULL)" mkdir vc7-stlport\libboost_regex-vc7-mt-gdp-1_40 -libboost_regex-vc7-mt-gdp-1_38_clean : - del vc7-stlport\libboost_regex-vc7-mt-gdp-1_38\*.obj - del vc7-stlport\libboost_regex-vc7-mt-gdp-1_38\*.idb - del vc7-stlport\libboost_regex-vc7-mt-gdp-1_38\*.exp - del vc7-stlport\libboost_regex-vc7-mt-gdp-1_38\*.pch +libboost_regex-vc7-mt-gdp-1_40_clean : + del vc7-stlport\libboost_regex-vc7-mt-gdp-1_40\*.obj + del vc7-stlport\libboost_regex-vc7-mt-gdp-1_40\*.idb + del vc7-stlport\libboost_regex-vc7-mt-gdp-1_40\*.exp + del vc7-stlport\libboost_regex-vc7-mt-gdp-1_40\*.pch -./vc7-stlport/libboost_regex-vc7-mt-gdp-1_38.lib : vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/cregex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/icu.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/instances.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/regex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/winstances.obj - link -lib /nologo /out:vc7-stlport/libboost_regex-vc7-mt-gdp-1_38.lib $(XSFLAGS) vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/cregex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/icu.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/instances.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/regex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_38/winstances.obj +./vc7-stlport/libboost_regex-vc7-mt-gdp-1_40.lib : vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/cregex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/icu.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/instances.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/regex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/winstances.obj + link -lib /nologo /out:vc7-stlport/libboost_regex-vc7-mt-gdp-1_40.lib $(XSFLAGS) vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/c_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/cpp_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/cregex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/fileiter.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/icu.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/instances.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/posix_api.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/regex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/regex_debug.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/regex_raw_buffer.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/regex_traits_defaults.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/static_mutex.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/usinstances.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/w32_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/wc_regex_traits.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/wide_posix_api.obj vc7-stlport/libboost_regex-vc7-mt-gdp-1_40/winstances.obj diff --git a/build/vc7.mak b/build/vc7.mak index 9fc56fa1..750d9caa 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_38_dir ./vc7/libboost_regex-vc7-s-1_38.lib libboost_regex-vc7-mt-s-1_38_dir ./vc7/libboost_regex-vc7-mt-s-1_38.lib libboost_regex-vc7-sgd-1_38_dir ./vc7/libboost_regex-vc7-sgd-1_38.lib libboost_regex-vc7-mt-sgd-1_38_dir ./vc7/libboost_regex-vc7-mt-sgd-1_38.lib boost_regex-vc7-mt-gd-1_38_dir ./vc7/boost_regex-vc7-mt-gd-1_38.lib boost_regex-vc7-mt-1_38_dir ./vc7/boost_regex-vc7-mt-1_38.lib libboost_regex-vc7-mt-1_38_dir ./vc7/libboost_regex-vc7-mt-1_38.lib libboost_regex-vc7-mt-gd-1_38_dir ./vc7/libboost_regex-vc7-mt-gd-1_38.lib +all : main_dir libboost_regex-vc7-s-1_40_dir ./vc7/libboost_regex-vc7-s-1_40.lib libboost_regex-vc7-mt-s-1_40_dir ./vc7/libboost_regex-vc7-mt-s-1_40.lib libboost_regex-vc7-sgd-1_40_dir ./vc7/libboost_regex-vc7-sgd-1_40.lib libboost_regex-vc7-mt-sgd-1_40_dir ./vc7/libboost_regex-vc7-mt-sgd-1_40.lib boost_regex-vc7-mt-gd-1_40_dir ./vc7/boost_regex-vc7-mt-gd-1_40.lib boost_regex-vc7-mt-1_40_dir ./vc7/boost_regex-vc7-mt-1_40.lib libboost_regex-vc7-mt-1_40_dir ./vc7/libboost_regex-vc7-mt-1_40.lib libboost_regex-vc7-mt-gd-1_40_dir ./vc7/libboost_regex-vc7-mt-gd-1_40.lib -clean : libboost_regex-vc7-s-1_38_clean libboost_regex-vc7-mt-s-1_38_clean libboost_regex-vc7-sgd-1_38_clean libboost_regex-vc7-mt-sgd-1_38_clean boost_regex-vc7-mt-gd-1_38_clean boost_regex-vc7-mt-1_38_clean libboost_regex-vc7-mt-1_38_clean libboost_regex-vc7-mt-gd-1_38_clean +clean : libboost_regex-vc7-s-1_40_clean libboost_regex-vc7-mt-s-1_40_clean libboost_regex-vc7-sgd-1_40_clean libboost_regex-vc7-mt-sgd-1_40_clean boost_regex-vc7-mt-gd-1_40_clean boost_regex-vc7-mt-1_40_clean libboost_regex-vc7-mt-1_40_clean libboost_regex-vc7-mt-gd-1_40_clean install : all - copy vc7\libboost_regex-vc7-s-1_38.lib "$(MSVCDIR)\lib" - copy vc7\libboost_regex-vc7-mt-s-1_38.lib "$(MSVCDIR)\lib" - copy vc7\libboost_regex-vc7-sgd-1_38.lib "$(MSVCDIR)\lib" - copy vc7\libboost_regex-vc7-sgd-1_38.pdb "$(MSVCDIR)\lib" - copy vc7\libboost_regex-vc7-mt-sgd-1_38.lib "$(MSVCDIR)\lib" - copy vc7\libboost_regex-vc7-mt-sgd-1_38.pdb "$(MSVCDIR)\lib" - copy vc7\boost_regex-vc7-mt-gd-1_38.lib "$(MSVCDIR)\lib" - copy vc7\boost_regex-vc7-mt-gd-1_38.dll "$(MSVCDIR)\bin" - copy vc7\boost_regex-vc7-mt-gd-1_38.pdb "$(MSVCDIR)\lib" - copy vc7\boost_regex-vc7-mt-1_38.lib "$(MSVCDIR)\lib" - copy vc7\boost_regex-vc7-mt-1_38.dll "$(MSVCDIR)\bin" - copy vc7\libboost_regex-vc7-mt-1_38.lib "$(MSVCDIR)\lib" - copy vc7\libboost_regex-vc7-mt-gd-1_38.lib "$(MSVCDIR)\lib" - copy vc7\libboost_regex-vc7-mt-gd-1_38.pdb "$(MSVCDIR)\lib" + copy vc7\libboost_regex-vc7-s-1_40.lib "$(MSVCDIR)\lib" + copy vc7\libboost_regex-vc7-mt-s-1_40.lib "$(MSVCDIR)\lib" + copy vc7\libboost_regex-vc7-sgd-1_40.lib "$(MSVCDIR)\lib" + copy vc7\libboost_regex-vc7-sgd-1_40.pdb "$(MSVCDIR)\lib" + copy vc7\libboost_regex-vc7-mt-sgd-1_40.lib "$(MSVCDIR)\lib" + copy vc7\libboost_regex-vc7-mt-sgd-1_40.pdb "$(MSVCDIR)\lib" + copy vc7\boost_regex-vc7-mt-gd-1_40.lib "$(MSVCDIR)\lib" + copy vc7\boost_regex-vc7-mt-gd-1_40.dll "$(MSVCDIR)\bin" + copy vc7\boost_regex-vc7-mt-gd-1_40.pdb "$(MSVCDIR)\lib" + copy vc7\boost_regex-vc7-mt-1_40.lib "$(MSVCDIR)\lib" + copy vc7\boost_regex-vc7-mt-1_40.dll "$(MSVCDIR)\bin" + copy vc7\libboost_regex-vc7-mt-1_40.lib "$(MSVCDIR)\lib" + copy vc7\libboost_regex-vc7-mt-gd-1_40.lib "$(MSVCDIR)\lib" + copy vc7\libboost_regex-vc7-mt-gd-1_40.pdb "$(MSVCDIR)\lib" main_dir : @if not exist "vc7\$(NULL)" mkdir vc7 @@ -88,546 +88,546 @@ main_dir : ######################################################## # -# section for libboost_regex-vc7-s-1_38.lib +# section for libboost_regex-vc7-s-1_40.lib # ######################################################## -vc7/libboost_regex-vc7-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-s-1_38.pdb ../src/c_regex_traits.cpp +vc7/libboost_regex-vc7-s-1_40/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_40/ -Fdvc7/libboost_regex-vc7-s-1_40.pdb ../src/c_regex_traits.cpp -vc7/libboost_regex-vc7-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-s-1_38.pdb ../src/cpp_regex_traits.cpp +vc7/libboost_regex-vc7-s-1_40/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_40/ -Fdvc7/libboost_regex-vc7-s-1_40.pdb ../src/cpp_regex_traits.cpp -vc7/libboost_regex-vc7-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-s-1_38.pdb ../src/cregex.cpp +vc7/libboost_regex-vc7-s-1_40/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_40/ -Fdvc7/libboost_regex-vc7-s-1_40.pdb ../src/cregex.cpp -vc7/libboost_regex-vc7-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-s-1_38.pdb ../src/fileiter.cpp +vc7/libboost_regex-vc7-s-1_40/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_40/ -Fdvc7/libboost_regex-vc7-s-1_40.pdb ../src/fileiter.cpp -vc7/libboost_regex-vc7-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-s-1_38.pdb ../src/icu.cpp +vc7/libboost_regex-vc7-s-1_40/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_40/ -Fdvc7/libboost_regex-vc7-s-1_40.pdb ../src/icu.cpp -vc7/libboost_regex-vc7-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-s-1_38.pdb ../src/instances.cpp +vc7/libboost_regex-vc7-s-1_40/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_40/ -Fdvc7/libboost_regex-vc7-s-1_40.pdb ../src/instances.cpp -vc7/libboost_regex-vc7-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-s-1_38.pdb ../src/posix_api.cpp +vc7/libboost_regex-vc7-s-1_40/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_40/ -Fdvc7/libboost_regex-vc7-s-1_40.pdb ../src/posix_api.cpp -vc7/libboost_regex-vc7-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-s-1_38.pdb ../src/regex.cpp +vc7/libboost_regex-vc7-s-1_40/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_40/ -Fdvc7/libboost_regex-vc7-s-1_40.pdb ../src/regex.cpp -vc7/libboost_regex-vc7-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-s-1_38.pdb ../src/regex_debug.cpp +vc7/libboost_regex-vc7-s-1_40/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_40/ -Fdvc7/libboost_regex-vc7-s-1_40.pdb ../src/regex_debug.cpp -vc7/libboost_regex-vc7-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-s-1_38.pdb ../src/regex_raw_buffer.cpp +vc7/libboost_regex-vc7-s-1_40/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_40/ -Fdvc7/libboost_regex-vc7-s-1_40.pdb ../src/regex_raw_buffer.cpp -vc7/libboost_regex-vc7-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-s-1_38.pdb ../src/regex_traits_defaults.cpp +vc7/libboost_regex-vc7-s-1_40/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_40/ -Fdvc7/libboost_regex-vc7-s-1_40.pdb ../src/regex_traits_defaults.cpp -vc7/libboost_regex-vc7-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-s-1_38.pdb ../src/static_mutex.cpp +vc7/libboost_regex-vc7-s-1_40/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_40/ -Fdvc7/libboost_regex-vc7-s-1_40.pdb ../src/static_mutex.cpp -vc7/libboost_regex-vc7-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-s-1_38.pdb ../src/usinstances.cpp +vc7/libboost_regex-vc7-s-1_40/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_40/ -Fdvc7/libboost_regex-vc7-s-1_40.pdb ../src/usinstances.cpp -vc7/libboost_regex-vc7-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-s-1_38.pdb ../src/w32_regex_traits.cpp +vc7/libboost_regex-vc7-s-1_40/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_40/ -Fdvc7/libboost_regex-vc7-s-1_40.pdb ../src/w32_regex_traits.cpp -vc7/libboost_regex-vc7-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-s-1_38.pdb ../src/wc_regex_traits.cpp +vc7/libboost_regex-vc7-s-1_40/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_40/ -Fdvc7/libboost_regex-vc7-s-1_40.pdb ../src/wc_regex_traits.cpp -vc7/libboost_regex-vc7-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-s-1_38.pdb ../src/wide_posix_api.cpp +vc7/libboost_regex-vc7-s-1_40/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_40/ -Fdvc7/libboost_regex-vc7-s-1_40.pdb ../src/wide_posix_api.cpp -vc7/libboost_regex-vc7-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-s-1_38.pdb ../src/winstances.cpp +vc7/libboost_regex-vc7-s-1_40/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_40/ -Fdvc7/libboost_regex-vc7-s-1_40.pdb ../src/winstances.cpp -libboost_regex-vc7-s-1_38_dir : - @if not exist "vc7\libboost_regex-vc7-s-1_38\$(NULL)" mkdir vc7\libboost_regex-vc7-s-1_38 +libboost_regex-vc7-s-1_40_dir : + @if not exist "vc7\libboost_regex-vc7-s-1_40\$(NULL)" mkdir vc7\libboost_regex-vc7-s-1_40 -libboost_regex-vc7-s-1_38_clean : - del vc7\libboost_regex-vc7-s-1_38\*.obj - del vc7\libboost_regex-vc7-s-1_38\*.idb - del vc7\libboost_regex-vc7-s-1_38\*.exp - del vc7\libboost_regex-vc7-s-1_38\*.pch +libboost_regex-vc7-s-1_40_clean : + del vc7\libboost_regex-vc7-s-1_40\*.obj + del vc7\libboost_regex-vc7-s-1_40\*.idb + del vc7\libboost_regex-vc7-s-1_40\*.exp + del vc7\libboost_regex-vc7-s-1_40\*.pch -./vc7/libboost_regex-vc7-s-1_38.lib : vc7/libboost_regex-vc7-s-1_38/c_regex_traits.obj vc7/libboost_regex-vc7-s-1_38/cpp_regex_traits.obj vc7/libboost_regex-vc7-s-1_38/cregex.obj vc7/libboost_regex-vc7-s-1_38/fileiter.obj vc7/libboost_regex-vc7-s-1_38/icu.obj vc7/libboost_regex-vc7-s-1_38/instances.obj vc7/libboost_regex-vc7-s-1_38/posix_api.obj vc7/libboost_regex-vc7-s-1_38/regex.obj vc7/libboost_regex-vc7-s-1_38/regex_debug.obj vc7/libboost_regex-vc7-s-1_38/regex_raw_buffer.obj vc7/libboost_regex-vc7-s-1_38/regex_traits_defaults.obj vc7/libboost_regex-vc7-s-1_38/static_mutex.obj vc7/libboost_regex-vc7-s-1_38/usinstances.obj vc7/libboost_regex-vc7-s-1_38/w32_regex_traits.obj vc7/libboost_regex-vc7-s-1_38/wc_regex_traits.obj vc7/libboost_regex-vc7-s-1_38/wide_posix_api.obj vc7/libboost_regex-vc7-s-1_38/winstances.obj - link -lib /nologo /out:vc7/libboost_regex-vc7-s-1_38.lib $(XSFLAGS) vc7/libboost_regex-vc7-s-1_38/c_regex_traits.obj vc7/libboost_regex-vc7-s-1_38/cpp_regex_traits.obj vc7/libboost_regex-vc7-s-1_38/cregex.obj vc7/libboost_regex-vc7-s-1_38/fileiter.obj vc7/libboost_regex-vc7-s-1_38/icu.obj vc7/libboost_regex-vc7-s-1_38/instances.obj vc7/libboost_regex-vc7-s-1_38/posix_api.obj vc7/libboost_regex-vc7-s-1_38/regex.obj vc7/libboost_regex-vc7-s-1_38/regex_debug.obj vc7/libboost_regex-vc7-s-1_38/regex_raw_buffer.obj vc7/libboost_regex-vc7-s-1_38/regex_traits_defaults.obj vc7/libboost_regex-vc7-s-1_38/static_mutex.obj vc7/libboost_regex-vc7-s-1_38/usinstances.obj vc7/libboost_regex-vc7-s-1_38/w32_regex_traits.obj vc7/libboost_regex-vc7-s-1_38/wc_regex_traits.obj vc7/libboost_regex-vc7-s-1_38/wide_posix_api.obj vc7/libboost_regex-vc7-s-1_38/winstances.obj +./vc7/libboost_regex-vc7-s-1_40.lib : vc7/libboost_regex-vc7-s-1_40/c_regex_traits.obj vc7/libboost_regex-vc7-s-1_40/cpp_regex_traits.obj vc7/libboost_regex-vc7-s-1_40/cregex.obj vc7/libboost_regex-vc7-s-1_40/fileiter.obj vc7/libboost_regex-vc7-s-1_40/icu.obj vc7/libboost_regex-vc7-s-1_40/instances.obj vc7/libboost_regex-vc7-s-1_40/posix_api.obj vc7/libboost_regex-vc7-s-1_40/regex.obj vc7/libboost_regex-vc7-s-1_40/regex_debug.obj vc7/libboost_regex-vc7-s-1_40/regex_raw_buffer.obj vc7/libboost_regex-vc7-s-1_40/regex_traits_defaults.obj vc7/libboost_regex-vc7-s-1_40/static_mutex.obj vc7/libboost_regex-vc7-s-1_40/usinstances.obj vc7/libboost_regex-vc7-s-1_40/w32_regex_traits.obj vc7/libboost_regex-vc7-s-1_40/wc_regex_traits.obj vc7/libboost_regex-vc7-s-1_40/wide_posix_api.obj vc7/libboost_regex-vc7-s-1_40/winstances.obj + link -lib /nologo /out:vc7/libboost_regex-vc7-s-1_40.lib $(XSFLAGS) vc7/libboost_regex-vc7-s-1_40/c_regex_traits.obj vc7/libboost_regex-vc7-s-1_40/cpp_regex_traits.obj vc7/libboost_regex-vc7-s-1_40/cregex.obj vc7/libboost_regex-vc7-s-1_40/fileiter.obj vc7/libboost_regex-vc7-s-1_40/icu.obj vc7/libboost_regex-vc7-s-1_40/instances.obj vc7/libboost_regex-vc7-s-1_40/posix_api.obj vc7/libboost_regex-vc7-s-1_40/regex.obj vc7/libboost_regex-vc7-s-1_40/regex_debug.obj vc7/libboost_regex-vc7-s-1_40/regex_raw_buffer.obj vc7/libboost_regex-vc7-s-1_40/regex_traits_defaults.obj vc7/libboost_regex-vc7-s-1_40/static_mutex.obj vc7/libboost_regex-vc7-s-1_40/usinstances.obj vc7/libboost_regex-vc7-s-1_40/w32_regex_traits.obj vc7/libboost_regex-vc7-s-1_40/wc_regex_traits.obj vc7/libboost_regex-vc7-s-1_40/wide_posix_api.obj vc7/libboost_regex-vc7-s-1_40/winstances.obj ######################################################## # -# section for libboost_regex-vc7-mt-s-1_38.lib +# section for libboost_regex-vc7-mt-s-1_40.lib # ######################################################## -vc7/libboost_regex-vc7-mt-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-s-1_38.pdb ../src/c_regex_traits.cpp +vc7/libboost_regex-vc7-mt-s-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-s-1_40.pdb ../src/c_regex_traits.cpp -vc7/libboost_regex-vc7-mt-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-s-1_38.pdb ../src/cpp_regex_traits.cpp +vc7/libboost_regex-vc7-mt-s-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-s-1_40.pdb ../src/cpp_regex_traits.cpp -vc7/libboost_regex-vc7-mt-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-s-1_38.pdb ../src/cregex.cpp +vc7/libboost_regex-vc7-mt-s-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-s-1_40.pdb ../src/cregex.cpp -vc7/libboost_regex-vc7-mt-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-s-1_38.pdb ../src/fileiter.cpp +vc7/libboost_regex-vc7-mt-s-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-s-1_40.pdb ../src/fileiter.cpp -vc7/libboost_regex-vc7-mt-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-s-1_38.pdb ../src/icu.cpp +vc7/libboost_regex-vc7-mt-s-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-s-1_40.pdb ../src/icu.cpp -vc7/libboost_regex-vc7-mt-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-s-1_38.pdb ../src/instances.cpp +vc7/libboost_regex-vc7-mt-s-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-s-1_40.pdb ../src/instances.cpp -vc7/libboost_regex-vc7-mt-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-s-1_38.pdb ../src/posix_api.cpp +vc7/libboost_regex-vc7-mt-s-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-s-1_40.pdb ../src/posix_api.cpp -vc7/libboost_regex-vc7-mt-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-s-1_38.pdb ../src/regex.cpp +vc7/libboost_regex-vc7-mt-s-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-s-1_40.pdb ../src/regex.cpp -vc7/libboost_regex-vc7-mt-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-s-1_38.pdb ../src/regex_debug.cpp +vc7/libboost_regex-vc7-mt-s-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-s-1_40.pdb ../src/regex_debug.cpp -vc7/libboost_regex-vc7-mt-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-s-1_38.pdb ../src/regex_raw_buffer.cpp +vc7/libboost_regex-vc7-mt-s-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-s-1_40.pdb ../src/regex_raw_buffer.cpp -vc7/libboost_regex-vc7-mt-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-s-1_38.pdb ../src/regex_traits_defaults.cpp +vc7/libboost_regex-vc7-mt-s-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-s-1_40.pdb ../src/regex_traits_defaults.cpp -vc7/libboost_regex-vc7-mt-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-s-1_38.pdb ../src/static_mutex.cpp +vc7/libboost_regex-vc7-mt-s-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-s-1_40.pdb ../src/static_mutex.cpp -vc7/libboost_regex-vc7-mt-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-s-1_38.pdb ../src/usinstances.cpp +vc7/libboost_regex-vc7-mt-s-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-s-1_40.pdb ../src/usinstances.cpp -vc7/libboost_regex-vc7-mt-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-s-1_38.pdb ../src/w32_regex_traits.cpp +vc7/libboost_regex-vc7-mt-s-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-s-1_40.pdb ../src/w32_regex_traits.cpp -vc7/libboost_regex-vc7-mt-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-s-1_38.pdb ../src/wc_regex_traits.cpp +vc7/libboost_regex-vc7-mt-s-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-s-1_40.pdb ../src/wc_regex_traits.cpp -vc7/libboost_regex-vc7-mt-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-s-1_38.pdb ../src/wide_posix_api.cpp +vc7/libboost_regex-vc7-mt-s-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-s-1_40.pdb ../src/wide_posix_api.cpp -vc7/libboost_regex-vc7-mt-s-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-s-1_38.pdb ../src/winstances.cpp +vc7/libboost_regex-vc7-mt-s-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-s-1_40.pdb ../src/winstances.cpp -libboost_regex-vc7-mt-s-1_38_dir : - @if not exist "vc7\libboost_regex-vc7-mt-s-1_38\$(NULL)" mkdir vc7\libboost_regex-vc7-mt-s-1_38 +libboost_regex-vc7-mt-s-1_40_dir : + @if not exist "vc7\libboost_regex-vc7-mt-s-1_40\$(NULL)" mkdir vc7\libboost_regex-vc7-mt-s-1_40 -libboost_regex-vc7-mt-s-1_38_clean : - del vc7\libboost_regex-vc7-mt-s-1_38\*.obj - del vc7\libboost_regex-vc7-mt-s-1_38\*.idb - del vc7\libboost_regex-vc7-mt-s-1_38\*.exp - del vc7\libboost_regex-vc7-mt-s-1_38\*.pch +libboost_regex-vc7-mt-s-1_40_clean : + del vc7\libboost_regex-vc7-mt-s-1_40\*.obj + del vc7\libboost_regex-vc7-mt-s-1_40\*.idb + del vc7\libboost_regex-vc7-mt-s-1_40\*.exp + del vc7\libboost_regex-vc7-mt-s-1_40\*.pch -./vc7/libboost_regex-vc7-mt-s-1_38.lib : vc7/libboost_regex-vc7-mt-s-1_38/c_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_38/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_38/cregex.obj vc7/libboost_regex-vc7-mt-s-1_38/fileiter.obj vc7/libboost_regex-vc7-mt-s-1_38/icu.obj vc7/libboost_regex-vc7-mt-s-1_38/instances.obj vc7/libboost_regex-vc7-mt-s-1_38/posix_api.obj vc7/libboost_regex-vc7-mt-s-1_38/regex.obj vc7/libboost_regex-vc7-mt-s-1_38/regex_debug.obj vc7/libboost_regex-vc7-mt-s-1_38/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-s-1_38/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-s-1_38/static_mutex.obj vc7/libboost_regex-vc7-mt-s-1_38/usinstances.obj vc7/libboost_regex-vc7-mt-s-1_38/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_38/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_38/wide_posix_api.obj vc7/libboost_regex-vc7-mt-s-1_38/winstances.obj - link -lib /nologo /out:vc7/libboost_regex-vc7-mt-s-1_38.lib $(XSFLAGS) vc7/libboost_regex-vc7-mt-s-1_38/c_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_38/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_38/cregex.obj vc7/libboost_regex-vc7-mt-s-1_38/fileiter.obj vc7/libboost_regex-vc7-mt-s-1_38/icu.obj vc7/libboost_regex-vc7-mt-s-1_38/instances.obj vc7/libboost_regex-vc7-mt-s-1_38/posix_api.obj vc7/libboost_regex-vc7-mt-s-1_38/regex.obj vc7/libboost_regex-vc7-mt-s-1_38/regex_debug.obj vc7/libboost_regex-vc7-mt-s-1_38/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-s-1_38/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-s-1_38/static_mutex.obj vc7/libboost_regex-vc7-mt-s-1_38/usinstances.obj vc7/libboost_regex-vc7-mt-s-1_38/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_38/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_38/wide_posix_api.obj vc7/libboost_regex-vc7-mt-s-1_38/winstances.obj +./vc7/libboost_regex-vc7-mt-s-1_40.lib : vc7/libboost_regex-vc7-mt-s-1_40/c_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_40/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_40/cregex.obj vc7/libboost_regex-vc7-mt-s-1_40/fileiter.obj vc7/libboost_regex-vc7-mt-s-1_40/icu.obj vc7/libboost_regex-vc7-mt-s-1_40/instances.obj vc7/libboost_regex-vc7-mt-s-1_40/posix_api.obj vc7/libboost_regex-vc7-mt-s-1_40/regex.obj vc7/libboost_regex-vc7-mt-s-1_40/regex_debug.obj vc7/libboost_regex-vc7-mt-s-1_40/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-s-1_40/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-s-1_40/static_mutex.obj vc7/libboost_regex-vc7-mt-s-1_40/usinstances.obj vc7/libboost_regex-vc7-mt-s-1_40/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_40/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_40/wide_posix_api.obj vc7/libboost_regex-vc7-mt-s-1_40/winstances.obj + link -lib /nologo /out:vc7/libboost_regex-vc7-mt-s-1_40.lib $(XSFLAGS) vc7/libboost_regex-vc7-mt-s-1_40/c_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_40/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_40/cregex.obj vc7/libboost_regex-vc7-mt-s-1_40/fileiter.obj vc7/libboost_regex-vc7-mt-s-1_40/icu.obj vc7/libboost_regex-vc7-mt-s-1_40/instances.obj vc7/libboost_regex-vc7-mt-s-1_40/posix_api.obj vc7/libboost_regex-vc7-mt-s-1_40/regex.obj vc7/libboost_regex-vc7-mt-s-1_40/regex_debug.obj vc7/libboost_regex-vc7-mt-s-1_40/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-s-1_40/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-s-1_40/static_mutex.obj vc7/libboost_regex-vc7-mt-s-1_40/usinstances.obj vc7/libboost_regex-vc7-mt-s-1_40/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_40/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-s-1_40/wide_posix_api.obj vc7/libboost_regex-vc7-mt-s-1_40/winstances.obj ######################################################## # -# section for libboost_regex-vc7-sgd-1_38.lib +# section for libboost_regex-vc7-sgd-1_40.lib # ######################################################## -vc7/libboost_regex-vc7-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-sgd-1_38.pdb ../src/c_regex_traits.cpp +vc7/libboost_regex-vc7-sgd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-sgd-1_40.pdb ../src/c_regex_traits.cpp -vc7/libboost_regex-vc7-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-sgd-1_38.pdb ../src/cpp_regex_traits.cpp +vc7/libboost_regex-vc7-sgd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-sgd-1_40.pdb ../src/cpp_regex_traits.cpp -vc7/libboost_regex-vc7-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-sgd-1_38.pdb ../src/cregex.cpp +vc7/libboost_regex-vc7-sgd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-sgd-1_40.pdb ../src/cregex.cpp -vc7/libboost_regex-vc7-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-sgd-1_38.pdb ../src/fileiter.cpp +vc7/libboost_regex-vc7-sgd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-sgd-1_40.pdb ../src/fileiter.cpp -vc7/libboost_regex-vc7-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-sgd-1_38.pdb ../src/icu.cpp +vc7/libboost_regex-vc7-sgd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-sgd-1_40.pdb ../src/icu.cpp -vc7/libboost_regex-vc7-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-sgd-1_38.pdb ../src/instances.cpp +vc7/libboost_regex-vc7-sgd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-sgd-1_40.pdb ../src/instances.cpp -vc7/libboost_regex-vc7-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-sgd-1_38.pdb ../src/posix_api.cpp +vc7/libboost_regex-vc7-sgd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-sgd-1_40.pdb ../src/posix_api.cpp -vc7/libboost_regex-vc7-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-sgd-1_38.pdb ../src/regex.cpp +vc7/libboost_regex-vc7-sgd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-sgd-1_40.pdb ../src/regex.cpp -vc7/libboost_regex-vc7-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-sgd-1_38.pdb ../src/regex_debug.cpp +vc7/libboost_regex-vc7-sgd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-sgd-1_40.pdb ../src/regex_debug.cpp -vc7/libboost_regex-vc7-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-sgd-1_38.pdb ../src/regex_raw_buffer.cpp +vc7/libboost_regex-vc7-sgd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-sgd-1_40.pdb ../src/regex_raw_buffer.cpp -vc7/libboost_regex-vc7-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-sgd-1_38.pdb ../src/regex_traits_defaults.cpp +vc7/libboost_regex-vc7-sgd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-sgd-1_40.pdb ../src/regex_traits_defaults.cpp -vc7/libboost_regex-vc7-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-sgd-1_38.pdb ../src/static_mutex.cpp +vc7/libboost_regex-vc7-sgd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-sgd-1_40.pdb ../src/static_mutex.cpp -vc7/libboost_regex-vc7-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-sgd-1_38.pdb ../src/usinstances.cpp +vc7/libboost_regex-vc7-sgd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-sgd-1_40.pdb ../src/usinstances.cpp -vc7/libboost_regex-vc7-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-sgd-1_38.pdb ../src/w32_regex_traits.cpp +vc7/libboost_regex-vc7-sgd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-sgd-1_40.pdb ../src/w32_regex_traits.cpp -vc7/libboost_regex-vc7-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-sgd-1_38.pdb ../src/wc_regex_traits.cpp +vc7/libboost_regex-vc7-sgd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-sgd-1_40.pdb ../src/wc_regex_traits.cpp -vc7/libboost_regex-vc7-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-sgd-1_38.pdb ../src/wide_posix_api.cpp +vc7/libboost_regex-vc7-sgd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-sgd-1_40.pdb ../src/wide_posix_api.cpp -vc7/libboost_regex-vc7-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-sgd-1_38.pdb ../src/winstances.cpp +vc7/libboost_regex-vc7-sgd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-sgd-1_40.pdb ../src/winstances.cpp -libboost_regex-vc7-sgd-1_38_dir : - @if not exist "vc7\libboost_regex-vc7-sgd-1_38\$(NULL)" mkdir vc7\libboost_regex-vc7-sgd-1_38 +libboost_regex-vc7-sgd-1_40_dir : + @if not exist "vc7\libboost_regex-vc7-sgd-1_40\$(NULL)" mkdir vc7\libboost_regex-vc7-sgd-1_40 -libboost_regex-vc7-sgd-1_38_clean : - del vc7\libboost_regex-vc7-sgd-1_38\*.obj - del vc7\libboost_regex-vc7-sgd-1_38\*.idb - del vc7\libboost_regex-vc7-sgd-1_38\*.exp - del vc7\libboost_regex-vc7-sgd-1_38\*.pch +libboost_regex-vc7-sgd-1_40_clean : + del vc7\libboost_regex-vc7-sgd-1_40\*.obj + del vc7\libboost_regex-vc7-sgd-1_40\*.idb + del vc7\libboost_regex-vc7-sgd-1_40\*.exp + del vc7\libboost_regex-vc7-sgd-1_40\*.pch -./vc7/libboost_regex-vc7-sgd-1_38.lib : vc7/libboost_regex-vc7-sgd-1_38/c_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_38/cpp_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_38/cregex.obj vc7/libboost_regex-vc7-sgd-1_38/fileiter.obj vc7/libboost_regex-vc7-sgd-1_38/icu.obj vc7/libboost_regex-vc7-sgd-1_38/instances.obj vc7/libboost_regex-vc7-sgd-1_38/posix_api.obj vc7/libboost_regex-vc7-sgd-1_38/regex.obj vc7/libboost_regex-vc7-sgd-1_38/regex_debug.obj vc7/libboost_regex-vc7-sgd-1_38/regex_raw_buffer.obj vc7/libboost_regex-vc7-sgd-1_38/regex_traits_defaults.obj vc7/libboost_regex-vc7-sgd-1_38/static_mutex.obj vc7/libboost_regex-vc7-sgd-1_38/usinstances.obj vc7/libboost_regex-vc7-sgd-1_38/w32_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_38/wc_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_38/wide_posix_api.obj vc7/libboost_regex-vc7-sgd-1_38/winstances.obj - link -lib /nologo /out:vc7/libboost_regex-vc7-sgd-1_38.lib $(XSFLAGS) vc7/libboost_regex-vc7-sgd-1_38/c_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_38/cpp_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_38/cregex.obj vc7/libboost_regex-vc7-sgd-1_38/fileiter.obj vc7/libboost_regex-vc7-sgd-1_38/icu.obj vc7/libboost_regex-vc7-sgd-1_38/instances.obj vc7/libboost_regex-vc7-sgd-1_38/posix_api.obj vc7/libboost_regex-vc7-sgd-1_38/regex.obj vc7/libboost_regex-vc7-sgd-1_38/regex_debug.obj vc7/libboost_regex-vc7-sgd-1_38/regex_raw_buffer.obj vc7/libboost_regex-vc7-sgd-1_38/regex_traits_defaults.obj vc7/libboost_regex-vc7-sgd-1_38/static_mutex.obj vc7/libboost_regex-vc7-sgd-1_38/usinstances.obj vc7/libboost_regex-vc7-sgd-1_38/w32_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_38/wc_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_38/wide_posix_api.obj vc7/libboost_regex-vc7-sgd-1_38/winstances.obj +./vc7/libboost_regex-vc7-sgd-1_40.lib : vc7/libboost_regex-vc7-sgd-1_40/c_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_40/cpp_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_40/cregex.obj vc7/libboost_regex-vc7-sgd-1_40/fileiter.obj vc7/libboost_regex-vc7-sgd-1_40/icu.obj vc7/libboost_regex-vc7-sgd-1_40/instances.obj vc7/libboost_regex-vc7-sgd-1_40/posix_api.obj vc7/libboost_regex-vc7-sgd-1_40/regex.obj vc7/libboost_regex-vc7-sgd-1_40/regex_debug.obj vc7/libboost_regex-vc7-sgd-1_40/regex_raw_buffer.obj vc7/libboost_regex-vc7-sgd-1_40/regex_traits_defaults.obj vc7/libboost_regex-vc7-sgd-1_40/static_mutex.obj vc7/libboost_regex-vc7-sgd-1_40/usinstances.obj vc7/libboost_regex-vc7-sgd-1_40/w32_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_40/wc_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_40/wide_posix_api.obj vc7/libboost_regex-vc7-sgd-1_40/winstances.obj + link -lib /nologo /out:vc7/libboost_regex-vc7-sgd-1_40.lib $(XSFLAGS) vc7/libboost_regex-vc7-sgd-1_40/c_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_40/cpp_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_40/cregex.obj vc7/libboost_regex-vc7-sgd-1_40/fileiter.obj vc7/libboost_regex-vc7-sgd-1_40/icu.obj vc7/libboost_regex-vc7-sgd-1_40/instances.obj vc7/libboost_regex-vc7-sgd-1_40/posix_api.obj vc7/libboost_regex-vc7-sgd-1_40/regex.obj vc7/libboost_regex-vc7-sgd-1_40/regex_debug.obj vc7/libboost_regex-vc7-sgd-1_40/regex_raw_buffer.obj vc7/libboost_regex-vc7-sgd-1_40/regex_traits_defaults.obj vc7/libboost_regex-vc7-sgd-1_40/static_mutex.obj vc7/libboost_regex-vc7-sgd-1_40/usinstances.obj vc7/libboost_regex-vc7-sgd-1_40/w32_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_40/wc_regex_traits.obj vc7/libboost_regex-vc7-sgd-1_40/wide_posix_api.obj vc7/libboost_regex-vc7-sgd-1_40/winstances.obj ######################################################## # -# section for libboost_regex-vc7-mt-sgd-1_38.lib +# section for libboost_regex-vc7-mt-sgd-1_40.lib # ######################################################## -vc7/libboost_regex-vc7-mt-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_38.pdb ../src/c_regex_traits.cpp +vc7/libboost_regex-vc7-mt-sgd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_40.pdb ../src/c_regex_traits.cpp -vc7/libboost_regex-vc7-mt-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_38.pdb ../src/cpp_regex_traits.cpp +vc7/libboost_regex-vc7-mt-sgd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_40.pdb ../src/cpp_regex_traits.cpp -vc7/libboost_regex-vc7-mt-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_38.pdb ../src/cregex.cpp +vc7/libboost_regex-vc7-mt-sgd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_40.pdb ../src/cregex.cpp -vc7/libboost_regex-vc7-mt-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_38.pdb ../src/fileiter.cpp +vc7/libboost_regex-vc7-mt-sgd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_40.pdb ../src/fileiter.cpp -vc7/libboost_regex-vc7-mt-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_38.pdb ../src/icu.cpp +vc7/libboost_regex-vc7-mt-sgd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_40.pdb ../src/icu.cpp -vc7/libboost_regex-vc7-mt-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_38.pdb ../src/instances.cpp +vc7/libboost_regex-vc7-mt-sgd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_40.pdb ../src/instances.cpp -vc7/libboost_regex-vc7-mt-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_38.pdb ../src/posix_api.cpp +vc7/libboost_regex-vc7-mt-sgd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_40.pdb ../src/posix_api.cpp -vc7/libboost_regex-vc7-mt-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_38.pdb ../src/regex.cpp +vc7/libboost_regex-vc7-mt-sgd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_40.pdb ../src/regex.cpp -vc7/libboost_regex-vc7-mt-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_38.pdb ../src/regex_debug.cpp +vc7/libboost_regex-vc7-mt-sgd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_40.pdb ../src/regex_debug.cpp -vc7/libboost_regex-vc7-mt-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_38.pdb ../src/regex_raw_buffer.cpp +vc7/libboost_regex-vc7-mt-sgd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_40.pdb ../src/regex_raw_buffer.cpp -vc7/libboost_regex-vc7-mt-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_38.pdb ../src/regex_traits_defaults.cpp +vc7/libboost_regex-vc7-mt-sgd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_40.pdb ../src/regex_traits_defaults.cpp -vc7/libboost_regex-vc7-mt-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_38.pdb ../src/static_mutex.cpp +vc7/libboost_regex-vc7-mt-sgd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_40.pdb ../src/static_mutex.cpp -vc7/libboost_regex-vc7-mt-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_38.pdb ../src/usinstances.cpp +vc7/libboost_regex-vc7-mt-sgd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_40.pdb ../src/usinstances.cpp -vc7/libboost_regex-vc7-mt-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_38.pdb ../src/w32_regex_traits.cpp +vc7/libboost_regex-vc7-mt-sgd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_40.pdb ../src/w32_regex_traits.cpp -vc7/libboost_regex-vc7-mt-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_38.pdb ../src/wc_regex_traits.cpp +vc7/libboost_regex-vc7-mt-sgd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_40.pdb ../src/wc_regex_traits.cpp -vc7/libboost_regex-vc7-mt-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_38.pdb ../src/wide_posix_api.cpp +vc7/libboost_regex-vc7-mt-sgd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_40.pdb ../src/wide_posix_api.cpp -vc7/libboost_regex-vc7-mt-sgd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_38.pdb ../src/winstances.cpp +vc7/libboost_regex-vc7-mt-sgd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-sgd-1_40.pdb ../src/winstances.cpp -libboost_regex-vc7-mt-sgd-1_38_dir : - @if not exist "vc7\libboost_regex-vc7-mt-sgd-1_38\$(NULL)" mkdir vc7\libboost_regex-vc7-mt-sgd-1_38 +libboost_regex-vc7-mt-sgd-1_40_dir : + @if not exist "vc7\libboost_regex-vc7-mt-sgd-1_40\$(NULL)" mkdir vc7\libboost_regex-vc7-mt-sgd-1_40 -libboost_regex-vc7-mt-sgd-1_38_clean : - del vc7\libboost_regex-vc7-mt-sgd-1_38\*.obj - del vc7\libboost_regex-vc7-mt-sgd-1_38\*.idb - del vc7\libboost_regex-vc7-mt-sgd-1_38\*.exp - del vc7\libboost_regex-vc7-mt-sgd-1_38\*.pch +libboost_regex-vc7-mt-sgd-1_40_clean : + del vc7\libboost_regex-vc7-mt-sgd-1_40\*.obj + del vc7\libboost_regex-vc7-mt-sgd-1_40\*.idb + del vc7\libboost_regex-vc7-mt-sgd-1_40\*.exp + del vc7\libboost_regex-vc7-mt-sgd-1_40\*.pch -./vc7/libboost_regex-vc7-mt-sgd-1_38.lib : vc7/libboost_regex-vc7-mt-sgd-1_38/c_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_38/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_38/cregex.obj vc7/libboost_regex-vc7-mt-sgd-1_38/fileiter.obj vc7/libboost_regex-vc7-mt-sgd-1_38/icu.obj vc7/libboost_regex-vc7-mt-sgd-1_38/instances.obj vc7/libboost_regex-vc7-mt-sgd-1_38/posix_api.obj vc7/libboost_regex-vc7-mt-sgd-1_38/regex.obj vc7/libboost_regex-vc7-mt-sgd-1_38/regex_debug.obj vc7/libboost_regex-vc7-mt-sgd-1_38/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-sgd-1_38/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-sgd-1_38/static_mutex.obj vc7/libboost_regex-vc7-mt-sgd-1_38/usinstances.obj vc7/libboost_regex-vc7-mt-sgd-1_38/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_38/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_38/wide_posix_api.obj vc7/libboost_regex-vc7-mt-sgd-1_38/winstances.obj - link -lib /nologo /out:vc7/libboost_regex-vc7-mt-sgd-1_38.lib $(XSFLAGS) vc7/libboost_regex-vc7-mt-sgd-1_38/c_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_38/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_38/cregex.obj vc7/libboost_regex-vc7-mt-sgd-1_38/fileiter.obj vc7/libboost_regex-vc7-mt-sgd-1_38/icu.obj vc7/libboost_regex-vc7-mt-sgd-1_38/instances.obj vc7/libboost_regex-vc7-mt-sgd-1_38/posix_api.obj vc7/libboost_regex-vc7-mt-sgd-1_38/regex.obj vc7/libboost_regex-vc7-mt-sgd-1_38/regex_debug.obj vc7/libboost_regex-vc7-mt-sgd-1_38/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-sgd-1_38/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-sgd-1_38/static_mutex.obj vc7/libboost_regex-vc7-mt-sgd-1_38/usinstances.obj vc7/libboost_regex-vc7-mt-sgd-1_38/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_38/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_38/wide_posix_api.obj vc7/libboost_regex-vc7-mt-sgd-1_38/winstances.obj +./vc7/libboost_regex-vc7-mt-sgd-1_40.lib : vc7/libboost_regex-vc7-mt-sgd-1_40/c_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_40/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_40/cregex.obj vc7/libboost_regex-vc7-mt-sgd-1_40/fileiter.obj vc7/libboost_regex-vc7-mt-sgd-1_40/icu.obj vc7/libboost_regex-vc7-mt-sgd-1_40/instances.obj vc7/libboost_regex-vc7-mt-sgd-1_40/posix_api.obj vc7/libboost_regex-vc7-mt-sgd-1_40/regex.obj vc7/libboost_regex-vc7-mt-sgd-1_40/regex_debug.obj vc7/libboost_regex-vc7-mt-sgd-1_40/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-sgd-1_40/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-sgd-1_40/static_mutex.obj vc7/libboost_regex-vc7-mt-sgd-1_40/usinstances.obj vc7/libboost_regex-vc7-mt-sgd-1_40/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_40/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_40/wide_posix_api.obj vc7/libboost_regex-vc7-mt-sgd-1_40/winstances.obj + link -lib /nologo /out:vc7/libboost_regex-vc7-mt-sgd-1_40.lib $(XSFLAGS) vc7/libboost_regex-vc7-mt-sgd-1_40/c_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_40/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_40/cregex.obj vc7/libboost_regex-vc7-mt-sgd-1_40/fileiter.obj vc7/libboost_regex-vc7-mt-sgd-1_40/icu.obj vc7/libboost_regex-vc7-mt-sgd-1_40/instances.obj vc7/libboost_regex-vc7-mt-sgd-1_40/posix_api.obj vc7/libboost_regex-vc7-mt-sgd-1_40/regex.obj vc7/libboost_regex-vc7-mt-sgd-1_40/regex_debug.obj vc7/libboost_regex-vc7-mt-sgd-1_40/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-sgd-1_40/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-sgd-1_40/static_mutex.obj vc7/libboost_regex-vc7-mt-sgd-1_40/usinstances.obj vc7/libboost_regex-vc7-mt-sgd-1_40/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_40/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-sgd-1_40/wide_posix_api.obj vc7/libboost_regex-vc7-mt-sgd-1_40/winstances.obj ######################################################## # -# section for boost_regex-vc7-mt-gd-1_38.lib +# section for boost_regex-vc7-mt-gd-1_40.lib # ######################################################## -vc7/boost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-gd-1_38.pdb ../src/c_regex_traits.cpp +vc7/boost_regex-vc7-mt-gd-1_40/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_40/ -Fdvc7/boost_regex-vc7-mt-gd-1_40.pdb ../src/c_regex_traits.cpp -vc7/boost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-gd-1_38.pdb ../src/cpp_regex_traits.cpp +vc7/boost_regex-vc7-mt-gd-1_40/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_40/ -Fdvc7/boost_regex-vc7-mt-gd-1_40.pdb ../src/cpp_regex_traits.cpp -vc7/boost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-gd-1_38.pdb ../src/cregex.cpp +vc7/boost_regex-vc7-mt-gd-1_40/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_40/ -Fdvc7/boost_regex-vc7-mt-gd-1_40.pdb ../src/cregex.cpp -vc7/boost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-gd-1_38.pdb ../src/fileiter.cpp +vc7/boost_regex-vc7-mt-gd-1_40/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_40/ -Fdvc7/boost_regex-vc7-mt-gd-1_40.pdb ../src/fileiter.cpp -vc7/boost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-gd-1_38.pdb ../src/icu.cpp +vc7/boost_regex-vc7-mt-gd-1_40/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_40/ -Fdvc7/boost_regex-vc7-mt-gd-1_40.pdb ../src/icu.cpp -vc7/boost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-gd-1_38.pdb ../src/instances.cpp +vc7/boost_regex-vc7-mt-gd-1_40/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_40/ -Fdvc7/boost_regex-vc7-mt-gd-1_40.pdb ../src/instances.cpp -vc7/boost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-gd-1_38.pdb ../src/posix_api.cpp +vc7/boost_regex-vc7-mt-gd-1_40/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_40/ -Fdvc7/boost_regex-vc7-mt-gd-1_40.pdb ../src/posix_api.cpp -vc7/boost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-gd-1_38.pdb ../src/regex.cpp +vc7/boost_regex-vc7-mt-gd-1_40/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_40/ -Fdvc7/boost_regex-vc7-mt-gd-1_40.pdb ../src/regex.cpp -vc7/boost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-gd-1_38.pdb ../src/regex_debug.cpp +vc7/boost_regex-vc7-mt-gd-1_40/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_40/ -Fdvc7/boost_regex-vc7-mt-gd-1_40.pdb ../src/regex_debug.cpp -vc7/boost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-gd-1_38.pdb ../src/regex_raw_buffer.cpp +vc7/boost_regex-vc7-mt-gd-1_40/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_40/ -Fdvc7/boost_regex-vc7-mt-gd-1_40.pdb ../src/regex_raw_buffer.cpp -vc7/boost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-gd-1_38.pdb ../src/regex_traits_defaults.cpp +vc7/boost_regex-vc7-mt-gd-1_40/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_40/ -Fdvc7/boost_regex-vc7-mt-gd-1_40.pdb ../src/regex_traits_defaults.cpp -vc7/boost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-gd-1_38.pdb ../src/static_mutex.cpp +vc7/boost_regex-vc7-mt-gd-1_40/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_40/ -Fdvc7/boost_regex-vc7-mt-gd-1_40.pdb ../src/static_mutex.cpp -vc7/boost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-gd-1_38.pdb ../src/usinstances.cpp +vc7/boost_regex-vc7-mt-gd-1_40/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_40/ -Fdvc7/boost_regex-vc7-mt-gd-1_40.pdb ../src/usinstances.cpp -vc7/boost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-gd-1_38.pdb ../src/w32_regex_traits.cpp +vc7/boost_regex-vc7-mt-gd-1_40/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_40/ -Fdvc7/boost_regex-vc7-mt-gd-1_40.pdb ../src/w32_regex_traits.cpp -vc7/boost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-gd-1_38.pdb ../src/wc_regex_traits.cpp +vc7/boost_regex-vc7-mt-gd-1_40/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_40/ -Fdvc7/boost_regex-vc7-mt-gd-1_40.pdb ../src/wc_regex_traits.cpp -vc7/boost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-gd-1_38.pdb ../src/wide_posix_api.cpp +vc7/boost_regex-vc7-mt-gd-1_40/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_40/ -Fdvc7/boost_regex-vc7-mt-gd-1_40.pdb ../src/wide_posix_api.cpp -vc7/boost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-gd-1_38.pdb ../src/winstances.cpp +vc7/boost_regex-vc7-mt-gd-1_40/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_40/ -Fdvc7/boost_regex-vc7-mt-gd-1_40.pdb ../src/winstances.cpp -boost_regex-vc7-mt-gd-1_38_dir : - @if not exist "vc7\boost_regex-vc7-mt-gd-1_38\$(NULL)" mkdir vc7\boost_regex-vc7-mt-gd-1_38 +boost_regex-vc7-mt-gd-1_40_dir : + @if not exist "vc7\boost_regex-vc7-mt-gd-1_40\$(NULL)" mkdir vc7\boost_regex-vc7-mt-gd-1_40 -boost_regex-vc7-mt-gd-1_38_clean : - del vc7\boost_regex-vc7-mt-gd-1_38\*.obj - del vc7\boost_regex-vc7-mt-gd-1_38\*.idb - del vc7\boost_regex-vc7-mt-gd-1_38\*.exp - del vc7\boost_regex-vc7-mt-gd-1_38\*.pch +boost_regex-vc7-mt-gd-1_40_clean : + del vc7\boost_regex-vc7-mt-gd-1_40\*.obj + del vc7\boost_regex-vc7-mt-gd-1_40\*.idb + del vc7\boost_regex-vc7-mt-gd-1_40\*.exp + del vc7\boost_regex-vc7-mt-gd-1_40\*.pch -./vc7/boost_regex-vc7-mt-gd-1_38.lib : vc7/boost_regex-vc7-mt-gd-1_38/c_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_38/cpp_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_38/cregex.obj vc7/boost_regex-vc7-mt-gd-1_38/fileiter.obj vc7/boost_regex-vc7-mt-gd-1_38/icu.obj vc7/boost_regex-vc7-mt-gd-1_38/instances.obj vc7/boost_regex-vc7-mt-gd-1_38/posix_api.obj vc7/boost_regex-vc7-mt-gd-1_38/regex.obj vc7/boost_regex-vc7-mt-gd-1_38/regex_debug.obj vc7/boost_regex-vc7-mt-gd-1_38/regex_raw_buffer.obj vc7/boost_regex-vc7-mt-gd-1_38/regex_traits_defaults.obj vc7/boost_regex-vc7-mt-gd-1_38/static_mutex.obj vc7/boost_regex-vc7-mt-gd-1_38/usinstances.obj vc7/boost_regex-vc7-mt-gd-1_38/w32_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_38/wc_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_38/wide_posix_api.obj vc7/boost_regex-vc7-mt-gd-1_38/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_38.pdb" /debug /machine:I386 /out:"vc7/boost_regex-vc7-mt-gd-1_38.dll" /implib:"vc7/boost_regex-vc7-mt-gd-1_38.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc7/boost_regex-vc7-mt-gd-1_38/c_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_38/cpp_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_38/cregex.obj vc7/boost_regex-vc7-mt-gd-1_38/fileiter.obj vc7/boost_regex-vc7-mt-gd-1_38/icu.obj vc7/boost_regex-vc7-mt-gd-1_38/instances.obj vc7/boost_regex-vc7-mt-gd-1_38/posix_api.obj vc7/boost_regex-vc7-mt-gd-1_38/regex.obj vc7/boost_regex-vc7-mt-gd-1_38/regex_debug.obj vc7/boost_regex-vc7-mt-gd-1_38/regex_raw_buffer.obj vc7/boost_regex-vc7-mt-gd-1_38/regex_traits_defaults.obj vc7/boost_regex-vc7-mt-gd-1_38/static_mutex.obj vc7/boost_regex-vc7-mt-gd-1_38/usinstances.obj vc7/boost_regex-vc7-mt-gd-1_38/w32_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_38/wc_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_38/wide_posix_api.obj vc7/boost_regex-vc7-mt-gd-1_38/winstances.obj +./vc7/boost_regex-vc7-mt-gd-1_40.lib : vc7/boost_regex-vc7-mt-gd-1_40/c_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_40/cpp_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_40/cregex.obj vc7/boost_regex-vc7-mt-gd-1_40/fileiter.obj vc7/boost_regex-vc7-mt-gd-1_40/icu.obj vc7/boost_regex-vc7-mt-gd-1_40/instances.obj vc7/boost_regex-vc7-mt-gd-1_40/posix_api.obj vc7/boost_regex-vc7-mt-gd-1_40/regex.obj vc7/boost_regex-vc7-mt-gd-1_40/regex_debug.obj vc7/boost_regex-vc7-mt-gd-1_40/regex_raw_buffer.obj vc7/boost_regex-vc7-mt-gd-1_40/regex_traits_defaults.obj vc7/boost_regex-vc7-mt-gd-1_40/static_mutex.obj vc7/boost_regex-vc7-mt-gd-1_40/usinstances.obj vc7/boost_regex-vc7-mt-gd-1_40/w32_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_40/wc_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_40/wide_posix_api.obj vc7/boost_regex-vc7-mt-gd-1_40/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_40.pdb" /debug /machine:I386 /out:"vc7/boost_regex-vc7-mt-gd-1_40.dll" /implib:"vc7/boost_regex-vc7-mt-gd-1_40.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc7/boost_regex-vc7-mt-gd-1_40/c_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_40/cpp_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_40/cregex.obj vc7/boost_regex-vc7-mt-gd-1_40/fileiter.obj vc7/boost_regex-vc7-mt-gd-1_40/icu.obj vc7/boost_regex-vc7-mt-gd-1_40/instances.obj vc7/boost_regex-vc7-mt-gd-1_40/posix_api.obj vc7/boost_regex-vc7-mt-gd-1_40/regex.obj vc7/boost_regex-vc7-mt-gd-1_40/regex_debug.obj vc7/boost_regex-vc7-mt-gd-1_40/regex_raw_buffer.obj vc7/boost_regex-vc7-mt-gd-1_40/regex_traits_defaults.obj vc7/boost_regex-vc7-mt-gd-1_40/static_mutex.obj vc7/boost_regex-vc7-mt-gd-1_40/usinstances.obj vc7/boost_regex-vc7-mt-gd-1_40/w32_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_40/wc_regex_traits.obj vc7/boost_regex-vc7-mt-gd-1_40/wide_posix_api.obj vc7/boost_regex-vc7-mt-gd-1_40/winstances.obj ######################################################## # -# section for boost_regex-vc7-mt-1_38.lib +# section for boost_regex-vc7-mt-1_40.lib # ######################################################## -vc7/boost_regex-vc7-mt-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-1_38.pdb ../src/c_regex_traits.cpp +vc7/boost_regex-vc7-mt-1_40/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_40/ -Fdvc7/boost_regex-vc7-mt-1_40.pdb ../src/c_regex_traits.cpp -vc7/boost_regex-vc7-mt-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-1_38.pdb ../src/cpp_regex_traits.cpp +vc7/boost_regex-vc7-mt-1_40/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_40/ -Fdvc7/boost_regex-vc7-mt-1_40.pdb ../src/cpp_regex_traits.cpp -vc7/boost_regex-vc7-mt-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-1_38.pdb ../src/cregex.cpp +vc7/boost_regex-vc7-mt-1_40/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_40/ -Fdvc7/boost_regex-vc7-mt-1_40.pdb ../src/cregex.cpp -vc7/boost_regex-vc7-mt-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-1_38.pdb ../src/fileiter.cpp +vc7/boost_regex-vc7-mt-1_40/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_40/ -Fdvc7/boost_regex-vc7-mt-1_40.pdb ../src/fileiter.cpp -vc7/boost_regex-vc7-mt-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-1_38.pdb ../src/icu.cpp +vc7/boost_regex-vc7-mt-1_40/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_40/ -Fdvc7/boost_regex-vc7-mt-1_40.pdb ../src/icu.cpp -vc7/boost_regex-vc7-mt-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-1_38.pdb ../src/instances.cpp +vc7/boost_regex-vc7-mt-1_40/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_40/ -Fdvc7/boost_regex-vc7-mt-1_40.pdb ../src/instances.cpp -vc7/boost_regex-vc7-mt-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-1_38.pdb ../src/posix_api.cpp +vc7/boost_regex-vc7-mt-1_40/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_40/ -Fdvc7/boost_regex-vc7-mt-1_40.pdb ../src/posix_api.cpp -vc7/boost_regex-vc7-mt-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-1_38.pdb ../src/regex.cpp +vc7/boost_regex-vc7-mt-1_40/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_40/ -Fdvc7/boost_regex-vc7-mt-1_40.pdb ../src/regex.cpp -vc7/boost_regex-vc7-mt-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-1_38.pdb ../src/regex_debug.cpp +vc7/boost_regex-vc7-mt-1_40/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_40/ -Fdvc7/boost_regex-vc7-mt-1_40.pdb ../src/regex_debug.cpp -vc7/boost_regex-vc7-mt-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-1_38.pdb ../src/regex_raw_buffer.cpp +vc7/boost_regex-vc7-mt-1_40/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_40/ -Fdvc7/boost_regex-vc7-mt-1_40.pdb ../src/regex_raw_buffer.cpp -vc7/boost_regex-vc7-mt-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-1_38.pdb ../src/regex_traits_defaults.cpp +vc7/boost_regex-vc7-mt-1_40/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_40/ -Fdvc7/boost_regex-vc7-mt-1_40.pdb ../src/regex_traits_defaults.cpp -vc7/boost_regex-vc7-mt-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-1_38.pdb ../src/static_mutex.cpp +vc7/boost_regex-vc7-mt-1_40/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_40/ -Fdvc7/boost_regex-vc7-mt-1_40.pdb ../src/static_mutex.cpp -vc7/boost_regex-vc7-mt-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-1_38.pdb ../src/usinstances.cpp +vc7/boost_regex-vc7-mt-1_40/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_40/ -Fdvc7/boost_regex-vc7-mt-1_40.pdb ../src/usinstances.cpp -vc7/boost_regex-vc7-mt-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-1_38.pdb ../src/w32_regex_traits.cpp +vc7/boost_regex-vc7-mt-1_40/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_40/ -Fdvc7/boost_regex-vc7-mt-1_40.pdb ../src/w32_regex_traits.cpp -vc7/boost_regex-vc7-mt-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-1_38.pdb ../src/wc_regex_traits.cpp +vc7/boost_regex-vc7-mt-1_40/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_40/ -Fdvc7/boost_regex-vc7-mt-1_40.pdb ../src/wc_regex_traits.cpp -vc7/boost_regex-vc7-mt-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-1_38.pdb ../src/wide_posix_api.cpp +vc7/boost_regex-vc7-mt-1_40/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_40/ -Fdvc7/boost_regex-vc7-mt-1_40.pdb ../src/wide_posix_api.cpp -vc7/boost_regex-vc7-mt-1_38/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_38/ -Fdvc7/boost_regex-vc7-mt-1_38.pdb ../src/winstances.cpp +vc7/boost_regex-vc7-mt-1_40/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_40/ -Fdvc7/boost_regex-vc7-mt-1_40.pdb ../src/winstances.cpp -boost_regex-vc7-mt-1_38_dir : - @if not exist "vc7\boost_regex-vc7-mt-1_38\$(NULL)" mkdir vc7\boost_regex-vc7-mt-1_38 +boost_regex-vc7-mt-1_40_dir : + @if not exist "vc7\boost_regex-vc7-mt-1_40\$(NULL)" mkdir vc7\boost_regex-vc7-mt-1_40 -boost_regex-vc7-mt-1_38_clean : - del vc7\boost_regex-vc7-mt-1_38\*.obj - del vc7\boost_regex-vc7-mt-1_38\*.idb - del vc7\boost_regex-vc7-mt-1_38\*.exp - del vc7\boost_regex-vc7-mt-1_38\*.pch +boost_regex-vc7-mt-1_40_clean : + del vc7\boost_regex-vc7-mt-1_40\*.obj + del vc7\boost_regex-vc7-mt-1_40\*.idb + del vc7\boost_regex-vc7-mt-1_40\*.exp + del vc7\boost_regex-vc7-mt-1_40\*.pch -./vc7/boost_regex-vc7-mt-1_38.lib : vc7/boost_regex-vc7-mt-1_38/c_regex_traits.obj vc7/boost_regex-vc7-mt-1_38/cpp_regex_traits.obj vc7/boost_regex-vc7-mt-1_38/cregex.obj vc7/boost_regex-vc7-mt-1_38/fileiter.obj vc7/boost_regex-vc7-mt-1_38/icu.obj vc7/boost_regex-vc7-mt-1_38/instances.obj vc7/boost_regex-vc7-mt-1_38/posix_api.obj vc7/boost_regex-vc7-mt-1_38/regex.obj vc7/boost_regex-vc7-mt-1_38/regex_debug.obj vc7/boost_regex-vc7-mt-1_38/regex_raw_buffer.obj vc7/boost_regex-vc7-mt-1_38/regex_traits_defaults.obj vc7/boost_regex-vc7-mt-1_38/static_mutex.obj vc7/boost_regex-vc7-mt-1_38/usinstances.obj vc7/boost_regex-vc7-mt-1_38/w32_regex_traits.obj vc7/boost_regex-vc7-mt-1_38/wc_regex_traits.obj vc7/boost_regex-vc7-mt-1_38/wide_posix_api.obj vc7/boost_regex-vc7-mt-1_38/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_38.pdb" /debug /machine:I386 /out:"vc7/boost_regex-vc7-mt-1_38.dll" /implib:"vc7/boost_regex-vc7-mt-1_38.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc7/boost_regex-vc7-mt-1_38/c_regex_traits.obj vc7/boost_regex-vc7-mt-1_38/cpp_regex_traits.obj vc7/boost_regex-vc7-mt-1_38/cregex.obj vc7/boost_regex-vc7-mt-1_38/fileiter.obj vc7/boost_regex-vc7-mt-1_38/icu.obj vc7/boost_regex-vc7-mt-1_38/instances.obj vc7/boost_regex-vc7-mt-1_38/posix_api.obj vc7/boost_regex-vc7-mt-1_38/regex.obj vc7/boost_regex-vc7-mt-1_38/regex_debug.obj vc7/boost_regex-vc7-mt-1_38/regex_raw_buffer.obj vc7/boost_regex-vc7-mt-1_38/regex_traits_defaults.obj vc7/boost_regex-vc7-mt-1_38/static_mutex.obj vc7/boost_regex-vc7-mt-1_38/usinstances.obj vc7/boost_regex-vc7-mt-1_38/w32_regex_traits.obj vc7/boost_regex-vc7-mt-1_38/wc_regex_traits.obj vc7/boost_regex-vc7-mt-1_38/wide_posix_api.obj vc7/boost_regex-vc7-mt-1_38/winstances.obj +./vc7/boost_regex-vc7-mt-1_40.lib : vc7/boost_regex-vc7-mt-1_40/c_regex_traits.obj vc7/boost_regex-vc7-mt-1_40/cpp_regex_traits.obj vc7/boost_regex-vc7-mt-1_40/cregex.obj vc7/boost_regex-vc7-mt-1_40/fileiter.obj vc7/boost_regex-vc7-mt-1_40/icu.obj vc7/boost_regex-vc7-mt-1_40/instances.obj vc7/boost_regex-vc7-mt-1_40/posix_api.obj vc7/boost_regex-vc7-mt-1_40/regex.obj vc7/boost_regex-vc7-mt-1_40/regex_debug.obj vc7/boost_regex-vc7-mt-1_40/regex_raw_buffer.obj vc7/boost_regex-vc7-mt-1_40/regex_traits_defaults.obj vc7/boost_regex-vc7-mt-1_40/static_mutex.obj vc7/boost_regex-vc7-mt-1_40/usinstances.obj vc7/boost_regex-vc7-mt-1_40/w32_regex_traits.obj vc7/boost_regex-vc7-mt-1_40/wc_regex_traits.obj vc7/boost_regex-vc7-mt-1_40/wide_posix_api.obj vc7/boost_regex-vc7-mt-1_40/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_40.pdb" /debug /machine:I386 /out:"vc7/boost_regex-vc7-mt-1_40.dll" /implib:"vc7/boost_regex-vc7-mt-1_40.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc7/boost_regex-vc7-mt-1_40/c_regex_traits.obj vc7/boost_regex-vc7-mt-1_40/cpp_regex_traits.obj vc7/boost_regex-vc7-mt-1_40/cregex.obj vc7/boost_regex-vc7-mt-1_40/fileiter.obj vc7/boost_regex-vc7-mt-1_40/icu.obj vc7/boost_regex-vc7-mt-1_40/instances.obj vc7/boost_regex-vc7-mt-1_40/posix_api.obj vc7/boost_regex-vc7-mt-1_40/regex.obj vc7/boost_regex-vc7-mt-1_40/regex_debug.obj vc7/boost_regex-vc7-mt-1_40/regex_raw_buffer.obj vc7/boost_regex-vc7-mt-1_40/regex_traits_defaults.obj vc7/boost_regex-vc7-mt-1_40/static_mutex.obj vc7/boost_regex-vc7-mt-1_40/usinstances.obj vc7/boost_regex-vc7-mt-1_40/w32_regex_traits.obj vc7/boost_regex-vc7-mt-1_40/wc_regex_traits.obj vc7/boost_regex-vc7-mt-1_40/wide_posix_api.obj vc7/boost_regex-vc7-mt-1_40/winstances.obj ######################################################## # -# section for libboost_regex-vc7-mt-1_38.lib +# section for libboost_regex-vc7-mt-1_40.lib # ######################################################## -vc7/libboost_regex-vc7-mt-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-1_38.pdb ../src/c_regex_traits.cpp +vc7/libboost_regex-vc7-mt-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-1_40.pdb ../src/c_regex_traits.cpp -vc7/libboost_regex-vc7-mt-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-1_38.pdb ../src/cpp_regex_traits.cpp +vc7/libboost_regex-vc7-mt-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-1_40.pdb ../src/cpp_regex_traits.cpp -vc7/libboost_regex-vc7-mt-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-1_38.pdb ../src/cregex.cpp +vc7/libboost_regex-vc7-mt-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-1_40.pdb ../src/cregex.cpp -vc7/libboost_regex-vc7-mt-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-1_38.pdb ../src/fileiter.cpp +vc7/libboost_regex-vc7-mt-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-1_40.pdb ../src/fileiter.cpp -vc7/libboost_regex-vc7-mt-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-1_38.pdb ../src/icu.cpp +vc7/libboost_regex-vc7-mt-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-1_40.pdb ../src/icu.cpp -vc7/libboost_regex-vc7-mt-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-1_38.pdb ../src/instances.cpp +vc7/libboost_regex-vc7-mt-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-1_40.pdb ../src/instances.cpp -vc7/libboost_regex-vc7-mt-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-1_38.pdb ../src/posix_api.cpp +vc7/libboost_regex-vc7-mt-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-1_40.pdb ../src/posix_api.cpp -vc7/libboost_regex-vc7-mt-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-1_38.pdb ../src/regex.cpp +vc7/libboost_regex-vc7-mt-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-1_40.pdb ../src/regex.cpp -vc7/libboost_regex-vc7-mt-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-1_38.pdb ../src/regex_debug.cpp +vc7/libboost_regex-vc7-mt-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-1_40.pdb ../src/regex_debug.cpp -vc7/libboost_regex-vc7-mt-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-1_38.pdb ../src/regex_raw_buffer.cpp +vc7/libboost_regex-vc7-mt-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-1_40.pdb ../src/regex_raw_buffer.cpp -vc7/libboost_regex-vc7-mt-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-1_38.pdb ../src/regex_traits_defaults.cpp +vc7/libboost_regex-vc7-mt-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-1_40.pdb ../src/regex_traits_defaults.cpp -vc7/libboost_regex-vc7-mt-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-1_38.pdb ../src/static_mutex.cpp +vc7/libboost_regex-vc7-mt-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-1_40.pdb ../src/static_mutex.cpp -vc7/libboost_regex-vc7-mt-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-1_38.pdb ../src/usinstances.cpp +vc7/libboost_regex-vc7-mt-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-1_40.pdb ../src/usinstances.cpp -vc7/libboost_regex-vc7-mt-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-1_38.pdb ../src/w32_regex_traits.cpp +vc7/libboost_regex-vc7-mt-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-1_40.pdb ../src/w32_regex_traits.cpp -vc7/libboost_regex-vc7-mt-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-1_38.pdb ../src/wc_regex_traits.cpp +vc7/libboost_regex-vc7-mt-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-1_40.pdb ../src/wc_regex_traits.cpp -vc7/libboost_regex-vc7-mt-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-1_38.pdb ../src/wide_posix_api.cpp +vc7/libboost_regex-vc7-mt-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-1_40.pdb ../src/wide_posix_api.cpp -vc7/libboost_regex-vc7-mt-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-1_38.pdb ../src/winstances.cpp +vc7/libboost_regex-vc7-mt-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-1_40.pdb ../src/winstances.cpp -libboost_regex-vc7-mt-1_38_dir : - @if not exist "vc7\libboost_regex-vc7-mt-1_38\$(NULL)" mkdir vc7\libboost_regex-vc7-mt-1_38 +libboost_regex-vc7-mt-1_40_dir : + @if not exist "vc7\libboost_regex-vc7-mt-1_40\$(NULL)" mkdir vc7\libboost_regex-vc7-mt-1_40 -libboost_regex-vc7-mt-1_38_clean : - del vc7\libboost_regex-vc7-mt-1_38\*.obj - del vc7\libboost_regex-vc7-mt-1_38\*.idb - del vc7\libboost_regex-vc7-mt-1_38\*.exp - del vc7\libboost_regex-vc7-mt-1_38\*.pch +libboost_regex-vc7-mt-1_40_clean : + del vc7\libboost_regex-vc7-mt-1_40\*.obj + del vc7\libboost_regex-vc7-mt-1_40\*.idb + del vc7\libboost_regex-vc7-mt-1_40\*.exp + del vc7\libboost_regex-vc7-mt-1_40\*.pch -./vc7/libboost_regex-vc7-mt-1_38.lib : vc7/libboost_regex-vc7-mt-1_38/c_regex_traits.obj vc7/libboost_regex-vc7-mt-1_38/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-1_38/cregex.obj vc7/libboost_regex-vc7-mt-1_38/fileiter.obj vc7/libboost_regex-vc7-mt-1_38/icu.obj vc7/libboost_regex-vc7-mt-1_38/instances.obj vc7/libboost_regex-vc7-mt-1_38/posix_api.obj vc7/libboost_regex-vc7-mt-1_38/regex.obj vc7/libboost_regex-vc7-mt-1_38/regex_debug.obj vc7/libboost_regex-vc7-mt-1_38/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-1_38/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-1_38/static_mutex.obj vc7/libboost_regex-vc7-mt-1_38/usinstances.obj vc7/libboost_regex-vc7-mt-1_38/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-1_38/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-1_38/wide_posix_api.obj vc7/libboost_regex-vc7-mt-1_38/winstances.obj - link -lib /nologo /out:vc7/libboost_regex-vc7-mt-1_38.lib $(XSFLAGS) vc7/libboost_regex-vc7-mt-1_38/c_regex_traits.obj vc7/libboost_regex-vc7-mt-1_38/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-1_38/cregex.obj vc7/libboost_regex-vc7-mt-1_38/fileiter.obj vc7/libboost_regex-vc7-mt-1_38/icu.obj vc7/libboost_regex-vc7-mt-1_38/instances.obj vc7/libboost_regex-vc7-mt-1_38/posix_api.obj vc7/libboost_regex-vc7-mt-1_38/regex.obj vc7/libboost_regex-vc7-mt-1_38/regex_debug.obj vc7/libboost_regex-vc7-mt-1_38/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-1_38/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-1_38/static_mutex.obj vc7/libboost_regex-vc7-mt-1_38/usinstances.obj vc7/libboost_regex-vc7-mt-1_38/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-1_38/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-1_38/wide_posix_api.obj vc7/libboost_regex-vc7-mt-1_38/winstances.obj +./vc7/libboost_regex-vc7-mt-1_40.lib : vc7/libboost_regex-vc7-mt-1_40/c_regex_traits.obj vc7/libboost_regex-vc7-mt-1_40/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-1_40/cregex.obj vc7/libboost_regex-vc7-mt-1_40/fileiter.obj vc7/libboost_regex-vc7-mt-1_40/icu.obj vc7/libboost_regex-vc7-mt-1_40/instances.obj vc7/libboost_regex-vc7-mt-1_40/posix_api.obj vc7/libboost_regex-vc7-mt-1_40/regex.obj vc7/libboost_regex-vc7-mt-1_40/regex_debug.obj vc7/libboost_regex-vc7-mt-1_40/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-1_40/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-1_40/static_mutex.obj vc7/libboost_regex-vc7-mt-1_40/usinstances.obj vc7/libboost_regex-vc7-mt-1_40/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-1_40/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-1_40/wide_posix_api.obj vc7/libboost_regex-vc7-mt-1_40/winstances.obj + link -lib /nologo /out:vc7/libboost_regex-vc7-mt-1_40.lib $(XSFLAGS) vc7/libboost_regex-vc7-mt-1_40/c_regex_traits.obj vc7/libboost_regex-vc7-mt-1_40/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-1_40/cregex.obj vc7/libboost_regex-vc7-mt-1_40/fileiter.obj vc7/libboost_regex-vc7-mt-1_40/icu.obj vc7/libboost_regex-vc7-mt-1_40/instances.obj vc7/libboost_regex-vc7-mt-1_40/posix_api.obj vc7/libboost_regex-vc7-mt-1_40/regex.obj vc7/libboost_regex-vc7-mt-1_40/regex_debug.obj vc7/libboost_regex-vc7-mt-1_40/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-1_40/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-1_40/static_mutex.obj vc7/libboost_regex-vc7-mt-1_40/usinstances.obj vc7/libboost_regex-vc7-mt-1_40/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-1_40/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-1_40/wide_posix_api.obj vc7/libboost_regex-vc7-mt-1_40/winstances.obj ######################################################## # -# section for libboost_regex-vc7-mt-gd-1_38.lib +# section for libboost_regex-vc7-mt-gd-1_40.lib # ######################################################## -vc7/libboost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-gd-1_38.pdb ../src/c_regex_traits.cpp +vc7/libboost_regex-vc7-mt-gd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-gd-1_40.pdb ../src/c_regex_traits.cpp -vc7/libboost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-gd-1_38.pdb ../src/cpp_regex_traits.cpp +vc7/libboost_regex-vc7-mt-gd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-gd-1_40.pdb ../src/cpp_regex_traits.cpp -vc7/libboost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-gd-1_38.pdb ../src/cregex.cpp +vc7/libboost_regex-vc7-mt-gd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-gd-1_40.pdb ../src/cregex.cpp -vc7/libboost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-gd-1_38.pdb ../src/fileiter.cpp +vc7/libboost_regex-vc7-mt-gd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-gd-1_40.pdb ../src/fileiter.cpp -vc7/libboost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-gd-1_38.pdb ../src/icu.cpp +vc7/libboost_regex-vc7-mt-gd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-gd-1_40.pdb ../src/icu.cpp -vc7/libboost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-gd-1_38.pdb ../src/instances.cpp +vc7/libboost_regex-vc7-mt-gd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-gd-1_40.pdb ../src/instances.cpp -vc7/libboost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-gd-1_38.pdb ../src/posix_api.cpp +vc7/libboost_regex-vc7-mt-gd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-gd-1_40.pdb ../src/posix_api.cpp -vc7/libboost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-gd-1_38.pdb ../src/regex.cpp +vc7/libboost_regex-vc7-mt-gd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-gd-1_40.pdb ../src/regex.cpp -vc7/libboost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-gd-1_38.pdb ../src/regex_debug.cpp +vc7/libboost_regex-vc7-mt-gd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-gd-1_40.pdb ../src/regex_debug.cpp -vc7/libboost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-gd-1_38.pdb ../src/regex_raw_buffer.cpp +vc7/libboost_regex-vc7-mt-gd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-gd-1_40.pdb ../src/regex_raw_buffer.cpp -vc7/libboost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-gd-1_38.pdb ../src/regex_traits_defaults.cpp +vc7/libboost_regex-vc7-mt-gd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-gd-1_40.pdb ../src/regex_traits_defaults.cpp -vc7/libboost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-gd-1_38.pdb ../src/static_mutex.cpp +vc7/libboost_regex-vc7-mt-gd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-gd-1_40.pdb ../src/static_mutex.cpp -vc7/libboost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-gd-1_38.pdb ../src/usinstances.cpp +vc7/libboost_regex-vc7-mt-gd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-gd-1_40.pdb ../src/usinstances.cpp -vc7/libboost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-gd-1_38.pdb ../src/w32_regex_traits.cpp +vc7/libboost_regex-vc7-mt-gd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-gd-1_40.pdb ../src/w32_regex_traits.cpp -vc7/libboost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-gd-1_38.pdb ../src/wc_regex_traits.cpp +vc7/libboost_regex-vc7-mt-gd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-gd-1_40.pdb ../src/wc_regex_traits.cpp -vc7/libboost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-gd-1_38.pdb ../src/wide_posix_api.cpp +vc7/libboost_regex-vc7-mt-gd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-gd-1_40.pdb ../src/wide_posix_api.cpp -vc7/libboost_regex-vc7-mt-gd-1_38/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_38/ -Fdvc7/libboost_regex-vc7-mt-gd-1_38.pdb ../src/winstances.cpp +vc7/libboost_regex-vc7-mt-gd-1_40/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_40/ -Fdvc7/libboost_regex-vc7-mt-gd-1_40.pdb ../src/winstances.cpp -libboost_regex-vc7-mt-gd-1_38_dir : - @if not exist "vc7\libboost_regex-vc7-mt-gd-1_38\$(NULL)" mkdir vc7\libboost_regex-vc7-mt-gd-1_38 +libboost_regex-vc7-mt-gd-1_40_dir : + @if not exist "vc7\libboost_regex-vc7-mt-gd-1_40\$(NULL)" mkdir vc7\libboost_regex-vc7-mt-gd-1_40 -libboost_regex-vc7-mt-gd-1_38_clean : - del vc7\libboost_regex-vc7-mt-gd-1_38\*.obj - del vc7\libboost_regex-vc7-mt-gd-1_38\*.idb - del vc7\libboost_regex-vc7-mt-gd-1_38\*.exp - del vc7\libboost_regex-vc7-mt-gd-1_38\*.pch +libboost_regex-vc7-mt-gd-1_40_clean : + del vc7\libboost_regex-vc7-mt-gd-1_40\*.obj + del vc7\libboost_regex-vc7-mt-gd-1_40\*.idb + del vc7\libboost_regex-vc7-mt-gd-1_40\*.exp + del vc7\libboost_regex-vc7-mt-gd-1_40\*.pch -./vc7/libboost_regex-vc7-mt-gd-1_38.lib : vc7/libboost_regex-vc7-mt-gd-1_38/c_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_38/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_38/cregex.obj vc7/libboost_regex-vc7-mt-gd-1_38/fileiter.obj vc7/libboost_regex-vc7-mt-gd-1_38/icu.obj vc7/libboost_regex-vc7-mt-gd-1_38/instances.obj vc7/libboost_regex-vc7-mt-gd-1_38/posix_api.obj vc7/libboost_regex-vc7-mt-gd-1_38/regex.obj vc7/libboost_regex-vc7-mt-gd-1_38/regex_debug.obj vc7/libboost_regex-vc7-mt-gd-1_38/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-gd-1_38/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-gd-1_38/static_mutex.obj vc7/libboost_regex-vc7-mt-gd-1_38/usinstances.obj vc7/libboost_regex-vc7-mt-gd-1_38/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_38/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_38/wide_posix_api.obj vc7/libboost_regex-vc7-mt-gd-1_38/winstances.obj - link -lib /nologo /out:vc7/libboost_regex-vc7-mt-gd-1_38.lib $(XSFLAGS) vc7/libboost_regex-vc7-mt-gd-1_38/c_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_38/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_38/cregex.obj vc7/libboost_regex-vc7-mt-gd-1_38/fileiter.obj vc7/libboost_regex-vc7-mt-gd-1_38/icu.obj vc7/libboost_regex-vc7-mt-gd-1_38/instances.obj vc7/libboost_regex-vc7-mt-gd-1_38/posix_api.obj vc7/libboost_regex-vc7-mt-gd-1_38/regex.obj vc7/libboost_regex-vc7-mt-gd-1_38/regex_debug.obj vc7/libboost_regex-vc7-mt-gd-1_38/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-gd-1_38/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-gd-1_38/static_mutex.obj vc7/libboost_regex-vc7-mt-gd-1_38/usinstances.obj vc7/libboost_regex-vc7-mt-gd-1_38/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_38/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_38/wide_posix_api.obj vc7/libboost_regex-vc7-mt-gd-1_38/winstances.obj +./vc7/libboost_regex-vc7-mt-gd-1_40.lib : vc7/libboost_regex-vc7-mt-gd-1_40/c_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_40/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_40/cregex.obj vc7/libboost_regex-vc7-mt-gd-1_40/fileiter.obj vc7/libboost_regex-vc7-mt-gd-1_40/icu.obj vc7/libboost_regex-vc7-mt-gd-1_40/instances.obj vc7/libboost_regex-vc7-mt-gd-1_40/posix_api.obj vc7/libboost_regex-vc7-mt-gd-1_40/regex.obj vc7/libboost_regex-vc7-mt-gd-1_40/regex_debug.obj vc7/libboost_regex-vc7-mt-gd-1_40/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-gd-1_40/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-gd-1_40/static_mutex.obj vc7/libboost_regex-vc7-mt-gd-1_40/usinstances.obj vc7/libboost_regex-vc7-mt-gd-1_40/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_40/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_40/wide_posix_api.obj vc7/libboost_regex-vc7-mt-gd-1_40/winstances.obj + link -lib /nologo /out:vc7/libboost_regex-vc7-mt-gd-1_40.lib $(XSFLAGS) vc7/libboost_regex-vc7-mt-gd-1_40/c_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_40/cpp_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_40/cregex.obj vc7/libboost_regex-vc7-mt-gd-1_40/fileiter.obj vc7/libboost_regex-vc7-mt-gd-1_40/icu.obj vc7/libboost_regex-vc7-mt-gd-1_40/instances.obj vc7/libboost_regex-vc7-mt-gd-1_40/posix_api.obj vc7/libboost_regex-vc7-mt-gd-1_40/regex.obj vc7/libboost_regex-vc7-mt-gd-1_40/regex_debug.obj vc7/libboost_regex-vc7-mt-gd-1_40/regex_raw_buffer.obj vc7/libboost_regex-vc7-mt-gd-1_40/regex_traits_defaults.obj vc7/libboost_regex-vc7-mt-gd-1_40/static_mutex.obj vc7/libboost_regex-vc7-mt-gd-1_40/usinstances.obj vc7/libboost_regex-vc7-mt-gd-1_40/w32_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_40/wc_regex_traits.obj vc7/libboost_regex-vc7-mt-gd-1_40/wide_posix_api.obj vc7/libboost_regex-vc7-mt-gd-1_40/winstances.obj diff --git a/build/vc71-stlport.mak b/build/vc71-stlport.mak index 0ccb2559..7a38592b 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_38_dir ./vc71-stlport/libboost_regex-vc71-mt-sp-1_38.lib boost_regex-vc71-mt-p-1_38_dir ./vc71-stlport/boost_regex-vc71-mt-p-1_38.lib libboost_regex-vc71-mt-p-1_38_dir ./vc71-stlport/libboost_regex-vc71-mt-p-1_38.lib boost_regex-vc71-mt-gdp-1_38_dir ./vc71-stlport/boost_regex-vc71-mt-gdp-1_38.lib libboost_regex-vc71-mt-sgdp-1_38_dir ./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38.lib libboost_regex-vc71-mt-gdp-1_38_dir ./vc71-stlport/libboost_regex-vc71-mt-gdp-1_38.lib +all : main_dir libboost_regex-vc71-mt-sp-1_40_dir ./vc71-stlport/libboost_regex-vc71-mt-sp-1_40.lib boost_regex-vc71-mt-p-1_40_dir ./vc71-stlport/boost_regex-vc71-mt-p-1_40.lib libboost_regex-vc71-mt-p-1_40_dir ./vc71-stlport/libboost_regex-vc71-mt-p-1_40.lib boost_regex-vc71-mt-gdp-1_40_dir ./vc71-stlport/boost_regex-vc71-mt-gdp-1_40.lib libboost_regex-vc71-mt-sgdp-1_40_dir ./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40.lib libboost_regex-vc71-mt-gdp-1_40_dir ./vc71-stlport/libboost_regex-vc71-mt-gdp-1_40.lib -clean : libboost_regex-vc71-mt-sp-1_38_clean boost_regex-vc71-mt-p-1_38_clean libboost_regex-vc71-mt-p-1_38_clean boost_regex-vc71-mt-gdp-1_38_clean libboost_regex-vc71-mt-sgdp-1_38_clean libboost_regex-vc71-mt-gdp-1_38_clean +clean : libboost_regex-vc71-mt-sp-1_40_clean boost_regex-vc71-mt-p-1_40_clean libboost_regex-vc71-mt-p-1_40_clean boost_regex-vc71-mt-gdp-1_40_clean libboost_regex-vc71-mt-sgdp-1_40_clean libboost_regex-vc71-mt-gdp-1_40_clean install : stlport_check all - copy vc71-stlport\libboost_regex-vc71-mt-sp-1_38.lib "$(MSVCDIR)\lib" - copy vc71-stlport\boost_regex-vc71-mt-p-1_38.lib "$(MSVCDIR)\lib" - copy vc71-stlport\boost_regex-vc71-mt-p-1_38.dll "$(MSVCDIR)\bin" - copy vc71-stlport\libboost_regex-vc71-mt-p-1_38.lib "$(MSVCDIR)\lib" - copy vc71-stlport\boost_regex-vc71-mt-gdp-1_38.lib "$(MSVCDIR)\lib" - copy vc71-stlport\boost_regex-vc71-mt-gdp-1_38.dll "$(MSVCDIR)\bin" - copy vc71-stlport\boost_regex-vc71-mt-gdp-1_38.pdb "$(MSVCDIR)\lib" - copy vc71-stlport\libboost_regex-vc71-mt-sgdp-1_38.lib "$(MSVCDIR)\lib" - copy vc71-stlport\libboost_regex-vc71-mt-sgdp-1_38.pdb "$(MSVCDIR)\lib" - copy vc71-stlport\libboost_regex-vc71-mt-gdp-1_38.lib "$(MSVCDIR)\lib" - copy vc71-stlport\libboost_regex-vc71-mt-gdp-1_38.pdb "$(MSVCDIR)\lib" + copy vc71-stlport\libboost_regex-vc71-mt-sp-1_40.lib "$(MSVCDIR)\lib" + copy vc71-stlport\boost_regex-vc71-mt-p-1_40.lib "$(MSVCDIR)\lib" + copy vc71-stlport\boost_regex-vc71-mt-p-1_40.dll "$(MSVCDIR)\bin" + copy vc71-stlport\libboost_regex-vc71-mt-p-1_40.lib "$(MSVCDIR)\lib" + copy vc71-stlport\boost_regex-vc71-mt-gdp-1_40.lib "$(MSVCDIR)\lib" + copy vc71-stlport\boost_regex-vc71-mt-gdp-1_40.dll "$(MSVCDIR)\bin" + copy vc71-stlport\boost_regex-vc71-mt-gdp-1_40.pdb "$(MSVCDIR)\lib" + copy vc71-stlport\libboost_regex-vc71-mt-sgdp-1_40.lib "$(MSVCDIR)\lib" + copy vc71-stlport\libboost_regex-vc71-mt-sgdp-1_40.pdb "$(MSVCDIR)\lib" + copy vc71-stlport\libboost_regex-vc71-mt-gdp-1_40.lib "$(MSVCDIR)\lib" + copy vc71-stlport\libboost_regex-vc71-mt-gdp-1_40.pdb "$(MSVCDIR)\lib" main_dir : @if not exist "vc71-stlport\$(NULL)" mkdir vc71-stlport @@ -88,410 +88,410 @@ stlport_check : "$(STLPORT_PATH)\stlport\string" ######################################################## # -# section for libboost_regex-vc71-mt-sp-1_38.lib +# section for libboost_regex-vc71-mt-sp-1_40.lib # ######################################################## -vc71-stlport/libboost_regex-vc71-mt-sp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_38.pdb ../src/c_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_40.pdb ../src/c_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_38.pdb ../src/cpp_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_40.pdb ../src/cpp_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_38.pdb ../src/cregex.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_40.pdb ../src/cregex.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_38.pdb ../src/fileiter.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_40.pdb ../src/fileiter.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_38.pdb ../src/icu.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_40.pdb ../src/icu.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_38.pdb ../src/instances.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_40.pdb ../src/instances.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_38.pdb ../src/posix_api.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_40.pdb ../src/posix_api.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_38.pdb ../src/regex.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_40.pdb ../src/regex.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_38.pdb ../src/regex_debug.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_40.pdb ../src/regex_debug.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_38.pdb ../src/regex_raw_buffer.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_40.pdb ../src/regex_raw_buffer.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_38.pdb ../src/regex_traits_defaults.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_40.pdb ../src/regex_traits_defaults.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_38.pdb ../src/static_mutex.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_40.pdb ../src/static_mutex.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_38.pdb ../src/usinstances.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_40.pdb ../src/usinstances.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_38.pdb ../src/w32_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_40.pdb ../src/w32_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_38.pdb ../src/wc_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_40.pdb ../src/wc_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_38.pdb ../src/wide_posix_api.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_40.pdb ../src/wide_posix_api.cpp -vc71-stlport/libboost_regex-vc71-mt-sp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_38.pdb ../src/winstances.cpp +vc71-stlport/libboost_regex-vc71-mt-sp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-sp-1_40.pdb ../src/winstances.cpp -libboost_regex-vc71-mt-sp-1_38_dir : - @if not exist "vc71-stlport\libboost_regex-vc71-mt-sp-1_38\$(NULL)" mkdir vc71-stlport\libboost_regex-vc71-mt-sp-1_38 +libboost_regex-vc71-mt-sp-1_40_dir : + @if not exist "vc71-stlport\libboost_regex-vc71-mt-sp-1_40\$(NULL)" mkdir vc71-stlport\libboost_regex-vc71-mt-sp-1_40 -libboost_regex-vc71-mt-sp-1_38_clean : - del vc71-stlport\libboost_regex-vc71-mt-sp-1_38\*.obj - del vc71-stlport\libboost_regex-vc71-mt-sp-1_38\*.idb - del vc71-stlport\libboost_regex-vc71-mt-sp-1_38\*.exp - del vc71-stlport\libboost_regex-vc71-mt-sp-1_38\*.pch +libboost_regex-vc71-mt-sp-1_40_clean : + del vc71-stlport\libboost_regex-vc71-mt-sp-1_40\*.obj + del vc71-stlport\libboost_regex-vc71-mt-sp-1_40\*.idb + del vc71-stlport\libboost_regex-vc71-mt-sp-1_40\*.exp + del vc71-stlport\libboost_regex-vc71-mt-sp-1_40\*.pch -./vc71-stlport/libboost_regex-vc71-mt-sp-1_38.lib : vc71-stlport/libboost_regex-vc71-mt-sp-1_38/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/cregex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/icu.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/instances.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/regex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/winstances.obj - link -lib /nologo /out:vc71-stlport/libboost_regex-vc71-mt-sp-1_38.lib $(XSFLAGS) vc71-stlport/libboost_regex-vc71-mt-sp-1_38/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/cregex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/icu.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/instances.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/regex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_38/winstances.obj +./vc71-stlport/libboost_regex-vc71-mt-sp-1_40.lib : vc71-stlport/libboost_regex-vc71-mt-sp-1_40/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_40/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_40/cregex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_40/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_40/icu.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_40/instances.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_40/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_40/regex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_40/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_40/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_40/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_40/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_40/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_40/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_40/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_40/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_40/winstances.obj + link -lib /nologo /out:vc71-stlport/libboost_regex-vc71-mt-sp-1_40.lib $(XSFLAGS) vc71-stlport/libboost_regex-vc71-mt-sp-1_40/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_40/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_40/cregex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_40/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_40/icu.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_40/instances.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_40/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_40/regex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_40/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_40/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_40/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_40/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_40/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_40/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_40/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_40/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sp-1_40/winstances.obj ######################################################## # -# section for boost_regex-vc71-mt-p-1_38.lib +# section for boost_regex-vc71-mt-p-1_40.lib # ######################################################## -vc71-stlport/boost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_38.pdb ../src/c_regex_traits.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_40/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_40/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_40.pdb ../src/c_regex_traits.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_38.pdb ../src/cpp_regex_traits.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_40/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_40/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_40.pdb ../src/cpp_regex_traits.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_38.pdb ../src/cregex.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_40/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_40/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_40.pdb ../src/cregex.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_38.pdb ../src/fileiter.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_40/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_40/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_40.pdb ../src/fileiter.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_38.pdb ../src/icu.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_40/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_40/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_40.pdb ../src/icu.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_38.pdb ../src/instances.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_40/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_40/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_40.pdb ../src/instances.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_38.pdb ../src/posix_api.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_40/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_40/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_40.pdb ../src/posix_api.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_38.pdb ../src/regex.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_40/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_40/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_40.pdb ../src/regex.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_38.pdb ../src/regex_debug.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_40/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_40/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_40.pdb ../src/regex_debug.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_38.pdb ../src/regex_raw_buffer.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_40/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_40/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_40.pdb ../src/regex_raw_buffer.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_38.pdb ../src/regex_traits_defaults.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_40/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_40/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_40.pdb ../src/regex_traits_defaults.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_38.pdb ../src/static_mutex.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_40/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_40/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_40.pdb ../src/static_mutex.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_38.pdb ../src/usinstances.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_40/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_40/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_40.pdb ../src/usinstances.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_38.pdb ../src/w32_regex_traits.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_40/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_40/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_40.pdb ../src/w32_regex_traits.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_38.pdb ../src/wc_regex_traits.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_40/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_40/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_40.pdb ../src/wc_regex_traits.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_38.pdb ../src/wide_posix_api.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_40/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_40/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_40.pdb ../src/wide_posix_api.cpp -vc71-stlport/boost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_38.pdb ../src/winstances.cpp +vc71-stlport/boost_regex-vc71-mt-p-1_40/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_40/ -Fdvc71-stlport/boost_regex-vc71-mt-p-1_40.pdb ../src/winstances.cpp -boost_regex-vc71-mt-p-1_38_dir : - @if not exist "vc71-stlport\boost_regex-vc71-mt-p-1_38\$(NULL)" mkdir vc71-stlport\boost_regex-vc71-mt-p-1_38 +boost_regex-vc71-mt-p-1_40_dir : + @if not exist "vc71-stlport\boost_regex-vc71-mt-p-1_40\$(NULL)" mkdir vc71-stlport\boost_regex-vc71-mt-p-1_40 -boost_regex-vc71-mt-p-1_38_clean : - del vc71-stlport\boost_regex-vc71-mt-p-1_38\*.obj - del vc71-stlport\boost_regex-vc71-mt-p-1_38\*.idb - del vc71-stlport\boost_regex-vc71-mt-p-1_38\*.exp - del vc71-stlport\boost_regex-vc71-mt-p-1_38\*.pch +boost_regex-vc71-mt-p-1_40_clean : + del vc71-stlport\boost_regex-vc71-mt-p-1_40\*.obj + del vc71-stlport\boost_regex-vc71-mt-p-1_40\*.idb + del vc71-stlport\boost_regex-vc71-mt-p-1_40\*.exp + del vc71-stlport\boost_regex-vc71-mt-p-1_40\*.pch -./vc71-stlport/boost_regex-vc71-mt-p-1_38.lib : vc71-stlport/boost_regex-vc71-mt-p-1_38/c_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/cpp_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/cregex.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/fileiter.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/icu.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/instances.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/posix_api.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/regex.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/regex_debug.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/regex_raw_buffer.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/regex_traits_defaults.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/static_mutex.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/usinstances.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/w32_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/wc_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/wide_posix_api.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/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_38.pdb" /debug /machine:I386 /out:"vc71-stlport/boost_regex-vc71-mt-p-1_38.dll" /implib:"vc71-stlport/boost_regex-vc71-mt-p-1_38.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc71-stlport/boost_regex-vc71-mt-p-1_38/c_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/cpp_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/cregex.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/fileiter.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/icu.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/instances.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/posix_api.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/regex.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/regex_debug.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/regex_raw_buffer.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/regex_traits_defaults.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/static_mutex.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/usinstances.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/w32_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/wc_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/wide_posix_api.obj vc71-stlport/boost_regex-vc71-mt-p-1_38/winstances.obj +./vc71-stlport/boost_regex-vc71-mt-p-1_40.lib : vc71-stlport/boost_regex-vc71-mt-p-1_40/c_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_40/cpp_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_40/cregex.obj vc71-stlport/boost_regex-vc71-mt-p-1_40/fileiter.obj vc71-stlport/boost_regex-vc71-mt-p-1_40/icu.obj vc71-stlport/boost_regex-vc71-mt-p-1_40/instances.obj vc71-stlport/boost_regex-vc71-mt-p-1_40/posix_api.obj vc71-stlport/boost_regex-vc71-mt-p-1_40/regex.obj vc71-stlport/boost_regex-vc71-mt-p-1_40/regex_debug.obj vc71-stlport/boost_regex-vc71-mt-p-1_40/regex_raw_buffer.obj vc71-stlport/boost_regex-vc71-mt-p-1_40/regex_traits_defaults.obj vc71-stlport/boost_regex-vc71-mt-p-1_40/static_mutex.obj vc71-stlport/boost_regex-vc71-mt-p-1_40/usinstances.obj vc71-stlport/boost_regex-vc71-mt-p-1_40/w32_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_40/wc_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_40/wide_posix_api.obj vc71-stlport/boost_regex-vc71-mt-p-1_40/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_40.pdb" /debug /machine:I386 /out:"vc71-stlport/boost_regex-vc71-mt-p-1_40.dll" /implib:"vc71-stlport/boost_regex-vc71-mt-p-1_40.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc71-stlport/boost_regex-vc71-mt-p-1_40/c_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_40/cpp_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_40/cregex.obj vc71-stlport/boost_regex-vc71-mt-p-1_40/fileiter.obj vc71-stlport/boost_regex-vc71-mt-p-1_40/icu.obj vc71-stlport/boost_regex-vc71-mt-p-1_40/instances.obj vc71-stlport/boost_regex-vc71-mt-p-1_40/posix_api.obj vc71-stlport/boost_regex-vc71-mt-p-1_40/regex.obj vc71-stlport/boost_regex-vc71-mt-p-1_40/regex_debug.obj vc71-stlport/boost_regex-vc71-mt-p-1_40/regex_raw_buffer.obj vc71-stlport/boost_regex-vc71-mt-p-1_40/regex_traits_defaults.obj vc71-stlport/boost_regex-vc71-mt-p-1_40/static_mutex.obj vc71-stlport/boost_regex-vc71-mt-p-1_40/usinstances.obj vc71-stlport/boost_regex-vc71-mt-p-1_40/w32_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_40/wc_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-p-1_40/wide_posix_api.obj vc71-stlport/boost_regex-vc71-mt-p-1_40/winstances.obj ######################################################## # -# section for libboost_regex-vc71-mt-p-1_38.lib +# section for libboost_regex-vc71-mt-p-1_40.lib # ######################################################## -vc71-stlport/libboost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_38.pdb ../src/c_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_40.pdb ../src/c_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_38.pdb ../src/cpp_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_40.pdb ../src/cpp_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_38.pdb ../src/cregex.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_40.pdb ../src/cregex.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_38.pdb ../src/fileiter.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_40.pdb ../src/fileiter.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_38.pdb ../src/icu.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_40.pdb ../src/icu.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_38.pdb ../src/instances.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_40.pdb ../src/instances.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_38.pdb ../src/posix_api.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_40.pdb ../src/posix_api.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_38.pdb ../src/regex.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_40.pdb ../src/regex.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_38.pdb ../src/regex_debug.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_40.pdb ../src/regex_debug.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_38.pdb ../src/regex_raw_buffer.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_40.pdb ../src/regex_raw_buffer.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_38.pdb ../src/regex_traits_defaults.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_40.pdb ../src/regex_traits_defaults.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_38.pdb ../src/static_mutex.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_40.pdb ../src/static_mutex.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_38.pdb ../src/usinstances.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_40.pdb ../src/usinstances.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_38.pdb ../src/w32_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_40.pdb ../src/w32_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_38.pdb ../src/wc_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_40.pdb ../src/wc_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_38.pdb ../src/wide_posix_api.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_40.pdb ../src/wide_posix_api.cpp -vc71-stlport/libboost_regex-vc71-mt-p-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_38.pdb ../src/winstances.cpp +vc71-stlport/libboost_regex-vc71-mt-p-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-p-1_40.pdb ../src/winstances.cpp -libboost_regex-vc71-mt-p-1_38_dir : - @if not exist "vc71-stlport\libboost_regex-vc71-mt-p-1_38\$(NULL)" mkdir vc71-stlport\libboost_regex-vc71-mt-p-1_38 +libboost_regex-vc71-mt-p-1_40_dir : + @if not exist "vc71-stlport\libboost_regex-vc71-mt-p-1_40\$(NULL)" mkdir vc71-stlport\libboost_regex-vc71-mt-p-1_40 -libboost_regex-vc71-mt-p-1_38_clean : - del vc71-stlport\libboost_regex-vc71-mt-p-1_38\*.obj - del vc71-stlport\libboost_regex-vc71-mt-p-1_38\*.idb - del vc71-stlport\libboost_regex-vc71-mt-p-1_38\*.exp - del vc71-stlport\libboost_regex-vc71-mt-p-1_38\*.pch +libboost_regex-vc71-mt-p-1_40_clean : + del vc71-stlport\libboost_regex-vc71-mt-p-1_40\*.obj + del vc71-stlport\libboost_regex-vc71-mt-p-1_40\*.idb + del vc71-stlport\libboost_regex-vc71-mt-p-1_40\*.exp + del vc71-stlport\libboost_regex-vc71-mt-p-1_40\*.pch -./vc71-stlport/libboost_regex-vc71-mt-p-1_38.lib : vc71-stlport/libboost_regex-vc71-mt-p-1_38/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/cregex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/icu.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/instances.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/regex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/winstances.obj - link -lib /nologo /out:vc71-stlport/libboost_regex-vc71-mt-p-1_38.lib $(XSFLAGS) vc71-stlport/libboost_regex-vc71-mt-p-1_38/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/cregex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/icu.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/instances.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/regex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-p-1_38/winstances.obj +./vc71-stlport/libboost_regex-vc71-mt-p-1_40.lib : vc71-stlport/libboost_regex-vc71-mt-p-1_40/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_40/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_40/cregex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_40/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-p-1_40/icu.obj vc71-stlport/libboost_regex-vc71-mt-p-1_40/instances.obj vc71-stlport/libboost_regex-vc71-mt-p-1_40/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-p-1_40/regex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_40/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-p-1_40/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-p-1_40/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-p-1_40/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_40/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-p-1_40/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_40/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_40/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-p-1_40/winstances.obj + link -lib /nologo /out:vc71-stlport/libboost_regex-vc71-mt-p-1_40.lib $(XSFLAGS) vc71-stlport/libboost_regex-vc71-mt-p-1_40/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_40/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_40/cregex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_40/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-p-1_40/icu.obj vc71-stlport/libboost_regex-vc71-mt-p-1_40/instances.obj vc71-stlport/libboost_regex-vc71-mt-p-1_40/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-p-1_40/regex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_40/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-p-1_40/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-p-1_40/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-p-1_40/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-p-1_40/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-p-1_40/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_40/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-p-1_40/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-p-1_40/winstances.obj ######################################################## # -# section for boost_regex-vc71-mt-gdp-1_38.lib +# section for boost_regex-vc71-mt-gdp-1_40.lib # ######################################################## -vc71-stlport/boost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_38.pdb ../src/c_regex_traits.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_40/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_40/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_40.pdb ../src/c_regex_traits.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_38.pdb ../src/cpp_regex_traits.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_40/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_40/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_40.pdb ../src/cpp_regex_traits.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_38.pdb ../src/cregex.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_40/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_40/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_40.pdb ../src/cregex.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_38.pdb ../src/fileiter.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_40/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_40/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_40.pdb ../src/fileiter.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_38.pdb ../src/icu.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_40/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_40/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_40.pdb ../src/icu.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_38.pdb ../src/instances.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_40/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_40/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_40.pdb ../src/instances.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_38.pdb ../src/posix_api.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_40/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_40/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_40.pdb ../src/posix_api.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_38.pdb ../src/regex.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_40/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_40/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_40.pdb ../src/regex.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_38.pdb ../src/regex_debug.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_40/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_40/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_40.pdb ../src/regex_debug.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_38.pdb ../src/regex_raw_buffer.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_40/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_40/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_40.pdb ../src/regex_raw_buffer.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_38.pdb ../src/regex_traits_defaults.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_40/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_40/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_40.pdb ../src/regex_traits_defaults.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_38.pdb ../src/static_mutex.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_40/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_40/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_40.pdb ../src/static_mutex.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_38.pdb ../src/usinstances.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_40/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_40/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_40.pdb ../src/usinstances.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_38.pdb ../src/w32_regex_traits.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_40/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_40/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_40.pdb ../src/w32_regex_traits.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_38.pdb ../src/wc_regex_traits.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_40/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_40/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_40.pdb ../src/wc_regex_traits.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_38.pdb ../src/wide_posix_api.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_40/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_40/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_40.pdb ../src/wide_posix_api.cpp -vc71-stlport/boost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_38.pdb ../src/winstances.cpp +vc71-stlport/boost_regex-vc71-mt-gdp-1_40/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_40/ -Fdvc71-stlport/boost_regex-vc71-mt-gdp-1_40.pdb ../src/winstances.cpp -boost_regex-vc71-mt-gdp-1_38_dir : - @if not exist "vc71-stlport\boost_regex-vc71-mt-gdp-1_38\$(NULL)" mkdir vc71-stlport\boost_regex-vc71-mt-gdp-1_38 +boost_regex-vc71-mt-gdp-1_40_dir : + @if not exist "vc71-stlport\boost_regex-vc71-mt-gdp-1_40\$(NULL)" mkdir vc71-stlport\boost_regex-vc71-mt-gdp-1_40 -boost_regex-vc71-mt-gdp-1_38_clean : - del vc71-stlport\boost_regex-vc71-mt-gdp-1_38\*.obj - del vc71-stlport\boost_regex-vc71-mt-gdp-1_38\*.idb - del vc71-stlport\boost_regex-vc71-mt-gdp-1_38\*.exp - del vc71-stlport\boost_regex-vc71-mt-gdp-1_38\*.pch +boost_regex-vc71-mt-gdp-1_40_clean : + del vc71-stlport\boost_regex-vc71-mt-gdp-1_40\*.obj + del vc71-stlport\boost_regex-vc71-mt-gdp-1_40\*.idb + del vc71-stlport\boost_regex-vc71-mt-gdp-1_40\*.exp + del vc71-stlport\boost_regex-vc71-mt-gdp-1_40\*.pch -./vc71-stlport/boost_regex-vc71-mt-gdp-1_38.lib : vc71-stlport/boost_regex-vc71-mt-gdp-1_38/c_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/cpp_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/cregex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/fileiter.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/icu.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/instances.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/posix_api.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/regex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/regex_debug.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/regex_raw_buffer.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/regex_traits_defaults.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/static_mutex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/usinstances.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/w32_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/wc_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/wide_posix_api.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/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_38.pdb" /debug /machine:I386 /out:"vc71-stlport/boost_regex-vc71-mt-gdp-1_38.dll" /implib:"vc71-stlport/boost_regex-vc71-mt-gdp-1_38.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc71-stlport/boost_regex-vc71-mt-gdp-1_38/c_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/cpp_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/cregex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/fileiter.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/icu.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/instances.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/posix_api.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/regex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/regex_debug.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/regex_raw_buffer.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/regex_traits_defaults.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/static_mutex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/usinstances.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/w32_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/wc_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/wide_posix_api.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_38/winstances.obj +./vc71-stlport/boost_regex-vc71-mt-gdp-1_40.lib : vc71-stlport/boost_regex-vc71-mt-gdp-1_40/c_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_40/cpp_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_40/cregex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_40/fileiter.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_40/icu.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_40/instances.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_40/posix_api.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_40/regex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_40/regex_debug.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_40/regex_raw_buffer.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_40/regex_traits_defaults.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_40/static_mutex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_40/usinstances.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_40/w32_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_40/wc_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_40/wide_posix_api.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_40/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_40.pdb" /debug /machine:I386 /out:"vc71-stlport/boost_regex-vc71-mt-gdp-1_40.dll" /implib:"vc71-stlport/boost_regex-vc71-mt-gdp-1_40.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc71-stlport/boost_regex-vc71-mt-gdp-1_40/c_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_40/cpp_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_40/cregex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_40/fileiter.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_40/icu.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_40/instances.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_40/posix_api.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_40/regex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_40/regex_debug.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_40/regex_raw_buffer.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_40/regex_traits_defaults.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_40/static_mutex.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_40/usinstances.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_40/w32_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_40/wc_regex_traits.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_40/wide_posix_api.obj vc71-stlport/boost_regex-vc71-mt-gdp-1_40/winstances.obj ######################################################## # -# section for libboost_regex-vc71-mt-sgdp-1_38.lib +# section for libboost_regex-vc71-mt-sgdp-1_40.lib # ######################################################## -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_38.pdb ../src/c_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_40.pdb ../src/c_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_38.pdb ../src/cpp_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_40.pdb ../src/cpp_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_38.pdb ../src/cregex.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_40.pdb ../src/cregex.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_38.pdb ../src/fileiter.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_40.pdb ../src/fileiter.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_38.pdb ../src/icu.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_40.pdb ../src/icu.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_38.pdb ../src/instances.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_40.pdb ../src/instances.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_38.pdb ../src/posix_api.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_40.pdb ../src/posix_api.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_38.pdb ../src/regex.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_40.pdb ../src/regex.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_38.pdb ../src/regex_debug.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_40.pdb ../src/regex_debug.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_38.pdb ../src/regex_raw_buffer.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_40.pdb ../src/regex_raw_buffer.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_38.pdb ../src/regex_traits_defaults.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_40.pdb ../src/regex_traits_defaults.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_38.pdb ../src/static_mutex.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_40.pdb ../src/static_mutex.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_38.pdb ../src/usinstances.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_40.pdb ../src/usinstances.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_38.pdb ../src/w32_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_40.pdb ../src/w32_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_38.pdb ../src/wc_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_40.pdb ../src/wc_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_38.pdb ../src/wide_posix_api.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_40.pdb ../src/wide_posix_api.cpp -vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_38.pdb ../src/winstances.cpp +vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-sgdp-1_40.pdb ../src/winstances.cpp -libboost_regex-vc71-mt-sgdp-1_38_dir : - @if not exist "vc71-stlport\libboost_regex-vc71-mt-sgdp-1_38\$(NULL)" mkdir vc71-stlport\libboost_regex-vc71-mt-sgdp-1_38 +libboost_regex-vc71-mt-sgdp-1_40_dir : + @if not exist "vc71-stlport\libboost_regex-vc71-mt-sgdp-1_40\$(NULL)" mkdir vc71-stlport\libboost_regex-vc71-mt-sgdp-1_40 -libboost_regex-vc71-mt-sgdp-1_38_clean : - del vc71-stlport\libboost_regex-vc71-mt-sgdp-1_38\*.obj - del vc71-stlport\libboost_regex-vc71-mt-sgdp-1_38\*.idb - del vc71-stlport\libboost_regex-vc71-mt-sgdp-1_38\*.exp - del vc71-stlport\libboost_regex-vc71-mt-sgdp-1_38\*.pch +libboost_regex-vc71-mt-sgdp-1_40_clean : + del vc71-stlport\libboost_regex-vc71-mt-sgdp-1_40\*.obj + del vc71-stlport\libboost_regex-vc71-mt-sgdp-1_40\*.idb + del vc71-stlport\libboost_regex-vc71-mt-sgdp-1_40\*.exp + del vc71-stlport\libboost_regex-vc71-mt-sgdp-1_40\*.pch -./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38.lib : vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/cregex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/icu.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/instances.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/regex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/winstances.obj - link -lib /nologo /out:vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38.lib $(XSFLAGS) vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/cregex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/icu.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/instances.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/regex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_38/winstances.obj +./vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40.lib : vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/cregex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/icu.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/instances.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/regex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/winstances.obj + link -lib /nologo /out:vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40.lib $(XSFLAGS) vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/cregex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/icu.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/instances.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/regex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-sgdp-1_40/winstances.obj ######################################################## # -# section for libboost_regex-vc71-mt-gdp-1_38.lib +# section for libboost_regex-vc71-mt-gdp-1_40.lib # ######################################################## -vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_38.pdb ../src/c_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_40.pdb ../src/c_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_38.pdb ../src/cpp_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_40.pdb ../src/cpp_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_38.pdb ../src/cregex.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_40.pdb ../src/cregex.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_38.pdb ../src/fileiter.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_40.pdb ../src/fileiter.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_38.pdb ../src/icu.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_40.pdb ../src/icu.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_38.pdb ../src/instances.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_40.pdb ../src/instances.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_38.pdb ../src/posix_api.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_40.pdb ../src/posix_api.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_38.pdb ../src/regex.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_40.pdb ../src/regex.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_38.pdb ../src/regex_debug.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_40.pdb ../src/regex_debug.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_38.pdb ../src/regex_raw_buffer.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_40.pdb ../src/regex_raw_buffer.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_38.pdb ../src/regex_traits_defaults.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_40.pdb ../src/regex_traits_defaults.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_38.pdb ../src/static_mutex.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_40.pdb ../src/static_mutex.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_38.pdb ../src/usinstances.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_40.pdb ../src/usinstances.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_38.pdb ../src/w32_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_40.pdb ../src/w32_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_38.pdb ../src/wc_regex_traits.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_40.pdb ../src/wc_regex_traits.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_38.pdb ../src/wide_posix_api.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_40.pdb ../src/wide_posix_api.cpp -vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/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_38/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_38.pdb ../src/winstances.cpp +vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/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_40/ -Fdvc71-stlport/libboost_regex-vc71-mt-gdp-1_40.pdb ../src/winstances.cpp -libboost_regex-vc71-mt-gdp-1_38_dir : - @if not exist "vc71-stlport\libboost_regex-vc71-mt-gdp-1_38\$(NULL)" mkdir vc71-stlport\libboost_regex-vc71-mt-gdp-1_38 +libboost_regex-vc71-mt-gdp-1_40_dir : + @if not exist "vc71-stlport\libboost_regex-vc71-mt-gdp-1_40\$(NULL)" mkdir vc71-stlport\libboost_regex-vc71-mt-gdp-1_40 -libboost_regex-vc71-mt-gdp-1_38_clean : - del vc71-stlport\libboost_regex-vc71-mt-gdp-1_38\*.obj - del vc71-stlport\libboost_regex-vc71-mt-gdp-1_38\*.idb - del vc71-stlport\libboost_regex-vc71-mt-gdp-1_38\*.exp - del vc71-stlport\libboost_regex-vc71-mt-gdp-1_38\*.pch +libboost_regex-vc71-mt-gdp-1_40_clean : + del vc71-stlport\libboost_regex-vc71-mt-gdp-1_40\*.obj + del vc71-stlport\libboost_regex-vc71-mt-gdp-1_40\*.idb + del vc71-stlport\libboost_regex-vc71-mt-gdp-1_40\*.exp + del vc71-stlport\libboost_regex-vc71-mt-gdp-1_40\*.pch -./vc71-stlport/libboost_regex-vc71-mt-gdp-1_38.lib : vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/cregex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/icu.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/instances.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/regex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/winstances.obj - link -lib /nologo /out:vc71-stlport/libboost_regex-vc71-mt-gdp-1_38.lib $(XSFLAGS) vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/cregex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/icu.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/instances.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/regex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_38/winstances.obj +./vc71-stlport/libboost_regex-vc71-mt-gdp-1_40.lib : vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/cregex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/icu.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/instances.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/regex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/winstances.obj + link -lib /nologo /out:vc71-stlport/libboost_regex-vc71-mt-gdp-1_40.lib $(XSFLAGS) vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/c_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/cpp_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/cregex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/fileiter.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/icu.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/instances.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/posix_api.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/regex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/regex_debug.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/regex_raw_buffer.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/regex_traits_defaults.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/static_mutex.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/usinstances.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/w32_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/wc_regex_traits.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/wide_posix_api.obj vc71-stlport/libboost_regex-vc71-mt-gdp-1_40/winstances.obj diff --git a/build/vc71.mak b/build/vc71.mak index aafc9764..7fddff81 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_38_dir ./vc71/libboost_regex-vc71-s-1_38.lib libboost_regex-vc71-mt-s-1_38_dir ./vc71/libboost_regex-vc71-mt-s-1_38.lib libboost_regex-vc71-sgd-1_38_dir ./vc71/libboost_regex-vc71-sgd-1_38.lib libboost_regex-vc71-mt-sgd-1_38_dir ./vc71/libboost_regex-vc71-mt-sgd-1_38.lib boost_regex-vc71-mt-gd-1_38_dir ./vc71/boost_regex-vc71-mt-gd-1_38.lib boost_regex-vc71-mt-1_38_dir ./vc71/boost_regex-vc71-mt-1_38.lib libboost_regex-vc71-mt-1_38_dir ./vc71/libboost_regex-vc71-mt-1_38.lib libboost_regex-vc71-mt-gd-1_38_dir ./vc71/libboost_regex-vc71-mt-gd-1_38.lib +all : main_dir libboost_regex-vc71-s-1_40_dir ./vc71/libboost_regex-vc71-s-1_40.lib libboost_regex-vc71-mt-s-1_40_dir ./vc71/libboost_regex-vc71-mt-s-1_40.lib libboost_regex-vc71-sgd-1_40_dir ./vc71/libboost_regex-vc71-sgd-1_40.lib libboost_regex-vc71-mt-sgd-1_40_dir ./vc71/libboost_regex-vc71-mt-sgd-1_40.lib boost_regex-vc71-mt-gd-1_40_dir ./vc71/boost_regex-vc71-mt-gd-1_40.lib boost_regex-vc71-mt-1_40_dir ./vc71/boost_regex-vc71-mt-1_40.lib libboost_regex-vc71-mt-1_40_dir ./vc71/libboost_regex-vc71-mt-1_40.lib libboost_regex-vc71-mt-gd-1_40_dir ./vc71/libboost_regex-vc71-mt-gd-1_40.lib -clean : libboost_regex-vc71-s-1_38_clean libboost_regex-vc71-mt-s-1_38_clean libboost_regex-vc71-sgd-1_38_clean libboost_regex-vc71-mt-sgd-1_38_clean boost_regex-vc71-mt-gd-1_38_clean boost_regex-vc71-mt-1_38_clean libboost_regex-vc71-mt-1_38_clean libboost_regex-vc71-mt-gd-1_38_clean +clean : libboost_regex-vc71-s-1_40_clean libboost_regex-vc71-mt-s-1_40_clean libboost_regex-vc71-sgd-1_40_clean libboost_regex-vc71-mt-sgd-1_40_clean boost_regex-vc71-mt-gd-1_40_clean boost_regex-vc71-mt-1_40_clean libboost_regex-vc71-mt-1_40_clean libboost_regex-vc71-mt-gd-1_40_clean install : all - copy vc71\libboost_regex-vc71-s-1_38.lib "$(MSVCDIR)\lib" - copy vc71\libboost_regex-vc71-mt-s-1_38.lib "$(MSVCDIR)\lib" - copy vc71\libboost_regex-vc71-sgd-1_38.lib "$(MSVCDIR)\lib" - copy vc71\libboost_regex-vc71-sgd-1_38.pdb "$(MSVCDIR)\lib" - copy vc71\libboost_regex-vc71-mt-sgd-1_38.lib "$(MSVCDIR)\lib" - copy vc71\libboost_regex-vc71-mt-sgd-1_38.pdb "$(MSVCDIR)\lib" - copy vc71\boost_regex-vc71-mt-gd-1_38.lib "$(MSVCDIR)\lib" - copy vc71\boost_regex-vc71-mt-gd-1_38.dll "$(MSVCDIR)\bin" - copy vc71\boost_regex-vc71-mt-gd-1_38.pdb "$(MSVCDIR)\lib" - copy vc71\boost_regex-vc71-mt-1_38.lib "$(MSVCDIR)\lib" - copy vc71\boost_regex-vc71-mt-1_38.dll "$(MSVCDIR)\bin" - copy vc71\libboost_regex-vc71-mt-1_38.lib "$(MSVCDIR)\lib" - copy vc71\libboost_regex-vc71-mt-gd-1_38.lib "$(MSVCDIR)\lib" - copy vc71\libboost_regex-vc71-mt-gd-1_38.pdb "$(MSVCDIR)\lib" + copy vc71\libboost_regex-vc71-s-1_40.lib "$(MSVCDIR)\lib" + copy vc71\libboost_regex-vc71-mt-s-1_40.lib "$(MSVCDIR)\lib" + copy vc71\libboost_regex-vc71-sgd-1_40.lib "$(MSVCDIR)\lib" + copy vc71\libboost_regex-vc71-sgd-1_40.pdb "$(MSVCDIR)\lib" + copy vc71\libboost_regex-vc71-mt-sgd-1_40.lib "$(MSVCDIR)\lib" + copy vc71\libboost_regex-vc71-mt-sgd-1_40.pdb "$(MSVCDIR)\lib" + copy vc71\boost_regex-vc71-mt-gd-1_40.lib "$(MSVCDIR)\lib" + copy vc71\boost_regex-vc71-mt-gd-1_40.dll "$(MSVCDIR)\bin" + copy vc71\boost_regex-vc71-mt-gd-1_40.pdb "$(MSVCDIR)\lib" + copy vc71\boost_regex-vc71-mt-1_40.lib "$(MSVCDIR)\lib" + copy vc71\boost_regex-vc71-mt-1_40.dll "$(MSVCDIR)\bin" + copy vc71\libboost_regex-vc71-mt-1_40.lib "$(MSVCDIR)\lib" + copy vc71\libboost_regex-vc71-mt-gd-1_40.lib "$(MSVCDIR)\lib" + copy vc71\libboost_regex-vc71-mt-gd-1_40.pdb "$(MSVCDIR)\lib" main_dir : @if not exist "vc71\$(NULL)" mkdir vc71 @@ -88,546 +88,546 @@ main_dir : ######################################################## # -# section for libboost_regex-vc71-s-1_38.lib +# section for libboost_regex-vc71-s-1_40.lib # ######################################################## -vc71/libboost_regex-vc71-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-s-1_38.pdb ../src/c_regex_traits.cpp +vc71/libboost_regex-vc71-s-1_40/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_40/ -Fdvc71/libboost_regex-vc71-s-1_40.pdb ../src/c_regex_traits.cpp -vc71/libboost_regex-vc71-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-s-1_38.pdb ../src/cpp_regex_traits.cpp +vc71/libboost_regex-vc71-s-1_40/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_40/ -Fdvc71/libboost_regex-vc71-s-1_40.pdb ../src/cpp_regex_traits.cpp -vc71/libboost_regex-vc71-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-s-1_38.pdb ../src/cregex.cpp +vc71/libboost_regex-vc71-s-1_40/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_40/ -Fdvc71/libboost_regex-vc71-s-1_40.pdb ../src/cregex.cpp -vc71/libboost_regex-vc71-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-s-1_38.pdb ../src/fileiter.cpp +vc71/libboost_regex-vc71-s-1_40/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_40/ -Fdvc71/libboost_regex-vc71-s-1_40.pdb ../src/fileiter.cpp -vc71/libboost_regex-vc71-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-s-1_38.pdb ../src/icu.cpp +vc71/libboost_regex-vc71-s-1_40/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_40/ -Fdvc71/libboost_regex-vc71-s-1_40.pdb ../src/icu.cpp -vc71/libboost_regex-vc71-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-s-1_38.pdb ../src/instances.cpp +vc71/libboost_regex-vc71-s-1_40/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_40/ -Fdvc71/libboost_regex-vc71-s-1_40.pdb ../src/instances.cpp -vc71/libboost_regex-vc71-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-s-1_38.pdb ../src/posix_api.cpp +vc71/libboost_regex-vc71-s-1_40/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_40/ -Fdvc71/libboost_regex-vc71-s-1_40.pdb ../src/posix_api.cpp -vc71/libboost_regex-vc71-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-s-1_38.pdb ../src/regex.cpp +vc71/libboost_regex-vc71-s-1_40/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_40/ -Fdvc71/libboost_regex-vc71-s-1_40.pdb ../src/regex.cpp -vc71/libboost_regex-vc71-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-s-1_38.pdb ../src/regex_debug.cpp +vc71/libboost_regex-vc71-s-1_40/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_40/ -Fdvc71/libboost_regex-vc71-s-1_40.pdb ../src/regex_debug.cpp -vc71/libboost_regex-vc71-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-s-1_38.pdb ../src/regex_raw_buffer.cpp +vc71/libboost_regex-vc71-s-1_40/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_40/ -Fdvc71/libboost_regex-vc71-s-1_40.pdb ../src/regex_raw_buffer.cpp -vc71/libboost_regex-vc71-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-s-1_38.pdb ../src/regex_traits_defaults.cpp +vc71/libboost_regex-vc71-s-1_40/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_40/ -Fdvc71/libboost_regex-vc71-s-1_40.pdb ../src/regex_traits_defaults.cpp -vc71/libboost_regex-vc71-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-s-1_38.pdb ../src/static_mutex.cpp +vc71/libboost_regex-vc71-s-1_40/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_40/ -Fdvc71/libboost_regex-vc71-s-1_40.pdb ../src/static_mutex.cpp -vc71/libboost_regex-vc71-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-s-1_38.pdb ../src/usinstances.cpp +vc71/libboost_regex-vc71-s-1_40/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_40/ -Fdvc71/libboost_regex-vc71-s-1_40.pdb ../src/usinstances.cpp -vc71/libboost_regex-vc71-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-s-1_38.pdb ../src/w32_regex_traits.cpp +vc71/libboost_regex-vc71-s-1_40/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_40/ -Fdvc71/libboost_regex-vc71-s-1_40.pdb ../src/w32_regex_traits.cpp -vc71/libboost_regex-vc71-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-s-1_38.pdb ../src/wc_regex_traits.cpp +vc71/libboost_regex-vc71-s-1_40/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_40/ -Fdvc71/libboost_regex-vc71-s-1_40.pdb ../src/wc_regex_traits.cpp -vc71/libboost_regex-vc71-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-s-1_38.pdb ../src/wide_posix_api.cpp +vc71/libboost_regex-vc71-s-1_40/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_40/ -Fdvc71/libboost_regex-vc71-s-1_40.pdb ../src/wide_posix_api.cpp -vc71/libboost_regex-vc71-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-s-1_38.pdb ../src/winstances.cpp +vc71/libboost_regex-vc71-s-1_40/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_40/ -Fdvc71/libboost_regex-vc71-s-1_40.pdb ../src/winstances.cpp -libboost_regex-vc71-s-1_38_dir : - @if not exist "vc71\libboost_regex-vc71-s-1_38\$(NULL)" mkdir vc71\libboost_regex-vc71-s-1_38 +libboost_regex-vc71-s-1_40_dir : + @if not exist "vc71\libboost_regex-vc71-s-1_40\$(NULL)" mkdir vc71\libboost_regex-vc71-s-1_40 -libboost_regex-vc71-s-1_38_clean : - del vc71\libboost_regex-vc71-s-1_38\*.obj - del vc71\libboost_regex-vc71-s-1_38\*.idb - del vc71\libboost_regex-vc71-s-1_38\*.exp - del vc71\libboost_regex-vc71-s-1_38\*.pch +libboost_regex-vc71-s-1_40_clean : + del vc71\libboost_regex-vc71-s-1_40\*.obj + del vc71\libboost_regex-vc71-s-1_40\*.idb + del vc71\libboost_regex-vc71-s-1_40\*.exp + del vc71\libboost_regex-vc71-s-1_40\*.pch -./vc71/libboost_regex-vc71-s-1_38.lib : vc71/libboost_regex-vc71-s-1_38/c_regex_traits.obj vc71/libboost_regex-vc71-s-1_38/cpp_regex_traits.obj vc71/libboost_regex-vc71-s-1_38/cregex.obj vc71/libboost_regex-vc71-s-1_38/fileiter.obj vc71/libboost_regex-vc71-s-1_38/icu.obj vc71/libboost_regex-vc71-s-1_38/instances.obj vc71/libboost_regex-vc71-s-1_38/posix_api.obj vc71/libboost_regex-vc71-s-1_38/regex.obj vc71/libboost_regex-vc71-s-1_38/regex_debug.obj vc71/libboost_regex-vc71-s-1_38/regex_raw_buffer.obj vc71/libboost_regex-vc71-s-1_38/regex_traits_defaults.obj vc71/libboost_regex-vc71-s-1_38/static_mutex.obj vc71/libboost_regex-vc71-s-1_38/usinstances.obj vc71/libboost_regex-vc71-s-1_38/w32_regex_traits.obj vc71/libboost_regex-vc71-s-1_38/wc_regex_traits.obj vc71/libboost_regex-vc71-s-1_38/wide_posix_api.obj vc71/libboost_regex-vc71-s-1_38/winstances.obj - link -lib /nologo /out:vc71/libboost_regex-vc71-s-1_38.lib $(XSFLAGS) vc71/libboost_regex-vc71-s-1_38/c_regex_traits.obj vc71/libboost_regex-vc71-s-1_38/cpp_regex_traits.obj vc71/libboost_regex-vc71-s-1_38/cregex.obj vc71/libboost_regex-vc71-s-1_38/fileiter.obj vc71/libboost_regex-vc71-s-1_38/icu.obj vc71/libboost_regex-vc71-s-1_38/instances.obj vc71/libboost_regex-vc71-s-1_38/posix_api.obj vc71/libboost_regex-vc71-s-1_38/regex.obj vc71/libboost_regex-vc71-s-1_38/regex_debug.obj vc71/libboost_regex-vc71-s-1_38/regex_raw_buffer.obj vc71/libboost_regex-vc71-s-1_38/regex_traits_defaults.obj vc71/libboost_regex-vc71-s-1_38/static_mutex.obj vc71/libboost_regex-vc71-s-1_38/usinstances.obj vc71/libboost_regex-vc71-s-1_38/w32_regex_traits.obj vc71/libboost_regex-vc71-s-1_38/wc_regex_traits.obj vc71/libboost_regex-vc71-s-1_38/wide_posix_api.obj vc71/libboost_regex-vc71-s-1_38/winstances.obj +./vc71/libboost_regex-vc71-s-1_40.lib : vc71/libboost_regex-vc71-s-1_40/c_regex_traits.obj vc71/libboost_regex-vc71-s-1_40/cpp_regex_traits.obj vc71/libboost_regex-vc71-s-1_40/cregex.obj vc71/libboost_regex-vc71-s-1_40/fileiter.obj vc71/libboost_regex-vc71-s-1_40/icu.obj vc71/libboost_regex-vc71-s-1_40/instances.obj vc71/libboost_regex-vc71-s-1_40/posix_api.obj vc71/libboost_regex-vc71-s-1_40/regex.obj vc71/libboost_regex-vc71-s-1_40/regex_debug.obj vc71/libboost_regex-vc71-s-1_40/regex_raw_buffer.obj vc71/libboost_regex-vc71-s-1_40/regex_traits_defaults.obj vc71/libboost_regex-vc71-s-1_40/static_mutex.obj vc71/libboost_regex-vc71-s-1_40/usinstances.obj vc71/libboost_regex-vc71-s-1_40/w32_regex_traits.obj vc71/libboost_regex-vc71-s-1_40/wc_regex_traits.obj vc71/libboost_regex-vc71-s-1_40/wide_posix_api.obj vc71/libboost_regex-vc71-s-1_40/winstances.obj + link -lib /nologo /out:vc71/libboost_regex-vc71-s-1_40.lib $(XSFLAGS) vc71/libboost_regex-vc71-s-1_40/c_regex_traits.obj vc71/libboost_regex-vc71-s-1_40/cpp_regex_traits.obj vc71/libboost_regex-vc71-s-1_40/cregex.obj vc71/libboost_regex-vc71-s-1_40/fileiter.obj vc71/libboost_regex-vc71-s-1_40/icu.obj vc71/libboost_regex-vc71-s-1_40/instances.obj vc71/libboost_regex-vc71-s-1_40/posix_api.obj vc71/libboost_regex-vc71-s-1_40/regex.obj vc71/libboost_regex-vc71-s-1_40/regex_debug.obj vc71/libboost_regex-vc71-s-1_40/regex_raw_buffer.obj vc71/libboost_regex-vc71-s-1_40/regex_traits_defaults.obj vc71/libboost_regex-vc71-s-1_40/static_mutex.obj vc71/libboost_regex-vc71-s-1_40/usinstances.obj vc71/libboost_regex-vc71-s-1_40/w32_regex_traits.obj vc71/libboost_regex-vc71-s-1_40/wc_regex_traits.obj vc71/libboost_regex-vc71-s-1_40/wide_posix_api.obj vc71/libboost_regex-vc71-s-1_40/winstances.obj ######################################################## # -# section for libboost_regex-vc71-mt-s-1_38.lib +# section for libboost_regex-vc71-mt-s-1_40.lib # ######################################################## -vc71/libboost_regex-vc71-mt-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-s-1_38.pdb ../src/c_regex_traits.cpp +vc71/libboost_regex-vc71-mt-s-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-s-1_40.pdb ../src/c_regex_traits.cpp -vc71/libboost_regex-vc71-mt-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-s-1_38.pdb ../src/cpp_regex_traits.cpp +vc71/libboost_regex-vc71-mt-s-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-s-1_40.pdb ../src/cpp_regex_traits.cpp -vc71/libboost_regex-vc71-mt-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-s-1_38.pdb ../src/cregex.cpp +vc71/libboost_regex-vc71-mt-s-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-s-1_40.pdb ../src/cregex.cpp -vc71/libboost_regex-vc71-mt-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-s-1_38.pdb ../src/fileiter.cpp +vc71/libboost_regex-vc71-mt-s-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-s-1_40.pdb ../src/fileiter.cpp -vc71/libboost_regex-vc71-mt-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-s-1_38.pdb ../src/icu.cpp +vc71/libboost_regex-vc71-mt-s-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-s-1_40.pdb ../src/icu.cpp -vc71/libboost_regex-vc71-mt-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-s-1_38.pdb ../src/instances.cpp +vc71/libboost_regex-vc71-mt-s-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-s-1_40.pdb ../src/instances.cpp -vc71/libboost_regex-vc71-mt-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-s-1_38.pdb ../src/posix_api.cpp +vc71/libboost_regex-vc71-mt-s-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-s-1_40.pdb ../src/posix_api.cpp -vc71/libboost_regex-vc71-mt-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-s-1_38.pdb ../src/regex.cpp +vc71/libboost_regex-vc71-mt-s-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-s-1_40.pdb ../src/regex.cpp -vc71/libboost_regex-vc71-mt-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-s-1_38.pdb ../src/regex_debug.cpp +vc71/libboost_regex-vc71-mt-s-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-s-1_40.pdb ../src/regex_debug.cpp -vc71/libboost_regex-vc71-mt-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-s-1_38.pdb ../src/regex_raw_buffer.cpp +vc71/libboost_regex-vc71-mt-s-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-s-1_40.pdb ../src/regex_raw_buffer.cpp -vc71/libboost_regex-vc71-mt-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-s-1_38.pdb ../src/regex_traits_defaults.cpp +vc71/libboost_regex-vc71-mt-s-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-s-1_40.pdb ../src/regex_traits_defaults.cpp -vc71/libboost_regex-vc71-mt-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-s-1_38.pdb ../src/static_mutex.cpp +vc71/libboost_regex-vc71-mt-s-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-s-1_40.pdb ../src/static_mutex.cpp -vc71/libboost_regex-vc71-mt-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-s-1_38.pdb ../src/usinstances.cpp +vc71/libboost_regex-vc71-mt-s-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-s-1_40.pdb ../src/usinstances.cpp -vc71/libboost_regex-vc71-mt-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-s-1_38.pdb ../src/w32_regex_traits.cpp +vc71/libboost_regex-vc71-mt-s-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-s-1_40.pdb ../src/w32_regex_traits.cpp -vc71/libboost_regex-vc71-mt-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-s-1_38.pdb ../src/wc_regex_traits.cpp +vc71/libboost_regex-vc71-mt-s-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-s-1_40.pdb ../src/wc_regex_traits.cpp -vc71/libboost_regex-vc71-mt-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-s-1_38.pdb ../src/wide_posix_api.cpp +vc71/libboost_regex-vc71-mt-s-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-s-1_40.pdb ../src/wide_posix_api.cpp -vc71/libboost_regex-vc71-mt-s-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-s-1_38.pdb ../src/winstances.cpp +vc71/libboost_regex-vc71-mt-s-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-s-1_40.pdb ../src/winstances.cpp -libboost_regex-vc71-mt-s-1_38_dir : - @if not exist "vc71\libboost_regex-vc71-mt-s-1_38\$(NULL)" mkdir vc71\libboost_regex-vc71-mt-s-1_38 +libboost_regex-vc71-mt-s-1_40_dir : + @if not exist "vc71\libboost_regex-vc71-mt-s-1_40\$(NULL)" mkdir vc71\libboost_regex-vc71-mt-s-1_40 -libboost_regex-vc71-mt-s-1_38_clean : - del vc71\libboost_regex-vc71-mt-s-1_38\*.obj - del vc71\libboost_regex-vc71-mt-s-1_38\*.idb - del vc71\libboost_regex-vc71-mt-s-1_38\*.exp - del vc71\libboost_regex-vc71-mt-s-1_38\*.pch +libboost_regex-vc71-mt-s-1_40_clean : + del vc71\libboost_regex-vc71-mt-s-1_40\*.obj + del vc71\libboost_regex-vc71-mt-s-1_40\*.idb + del vc71\libboost_regex-vc71-mt-s-1_40\*.exp + del vc71\libboost_regex-vc71-mt-s-1_40\*.pch -./vc71/libboost_regex-vc71-mt-s-1_38.lib : vc71/libboost_regex-vc71-mt-s-1_38/c_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_38/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_38/cregex.obj vc71/libboost_regex-vc71-mt-s-1_38/fileiter.obj vc71/libboost_regex-vc71-mt-s-1_38/icu.obj vc71/libboost_regex-vc71-mt-s-1_38/instances.obj vc71/libboost_regex-vc71-mt-s-1_38/posix_api.obj vc71/libboost_regex-vc71-mt-s-1_38/regex.obj vc71/libboost_regex-vc71-mt-s-1_38/regex_debug.obj vc71/libboost_regex-vc71-mt-s-1_38/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-s-1_38/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-s-1_38/static_mutex.obj vc71/libboost_regex-vc71-mt-s-1_38/usinstances.obj vc71/libboost_regex-vc71-mt-s-1_38/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_38/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_38/wide_posix_api.obj vc71/libboost_regex-vc71-mt-s-1_38/winstances.obj - link -lib /nologo /out:vc71/libboost_regex-vc71-mt-s-1_38.lib $(XSFLAGS) vc71/libboost_regex-vc71-mt-s-1_38/c_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_38/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_38/cregex.obj vc71/libboost_regex-vc71-mt-s-1_38/fileiter.obj vc71/libboost_regex-vc71-mt-s-1_38/icu.obj vc71/libboost_regex-vc71-mt-s-1_38/instances.obj vc71/libboost_regex-vc71-mt-s-1_38/posix_api.obj vc71/libboost_regex-vc71-mt-s-1_38/regex.obj vc71/libboost_regex-vc71-mt-s-1_38/regex_debug.obj vc71/libboost_regex-vc71-mt-s-1_38/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-s-1_38/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-s-1_38/static_mutex.obj vc71/libboost_regex-vc71-mt-s-1_38/usinstances.obj vc71/libboost_regex-vc71-mt-s-1_38/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_38/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_38/wide_posix_api.obj vc71/libboost_regex-vc71-mt-s-1_38/winstances.obj +./vc71/libboost_regex-vc71-mt-s-1_40.lib : vc71/libboost_regex-vc71-mt-s-1_40/c_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_40/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_40/cregex.obj vc71/libboost_regex-vc71-mt-s-1_40/fileiter.obj vc71/libboost_regex-vc71-mt-s-1_40/icu.obj vc71/libboost_regex-vc71-mt-s-1_40/instances.obj vc71/libboost_regex-vc71-mt-s-1_40/posix_api.obj vc71/libboost_regex-vc71-mt-s-1_40/regex.obj vc71/libboost_regex-vc71-mt-s-1_40/regex_debug.obj vc71/libboost_regex-vc71-mt-s-1_40/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-s-1_40/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-s-1_40/static_mutex.obj vc71/libboost_regex-vc71-mt-s-1_40/usinstances.obj vc71/libboost_regex-vc71-mt-s-1_40/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_40/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_40/wide_posix_api.obj vc71/libboost_regex-vc71-mt-s-1_40/winstances.obj + link -lib /nologo /out:vc71/libboost_regex-vc71-mt-s-1_40.lib $(XSFLAGS) vc71/libboost_regex-vc71-mt-s-1_40/c_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_40/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_40/cregex.obj vc71/libboost_regex-vc71-mt-s-1_40/fileiter.obj vc71/libboost_regex-vc71-mt-s-1_40/icu.obj vc71/libboost_regex-vc71-mt-s-1_40/instances.obj vc71/libboost_regex-vc71-mt-s-1_40/posix_api.obj vc71/libboost_regex-vc71-mt-s-1_40/regex.obj vc71/libboost_regex-vc71-mt-s-1_40/regex_debug.obj vc71/libboost_regex-vc71-mt-s-1_40/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-s-1_40/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-s-1_40/static_mutex.obj vc71/libboost_regex-vc71-mt-s-1_40/usinstances.obj vc71/libboost_regex-vc71-mt-s-1_40/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_40/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-s-1_40/wide_posix_api.obj vc71/libboost_regex-vc71-mt-s-1_40/winstances.obj ######################################################## # -# section for libboost_regex-vc71-sgd-1_38.lib +# section for libboost_regex-vc71-sgd-1_40.lib # ######################################################## -vc71/libboost_regex-vc71-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-sgd-1_38.pdb ../src/c_regex_traits.cpp +vc71/libboost_regex-vc71-sgd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-sgd-1_40.pdb ../src/c_regex_traits.cpp -vc71/libboost_regex-vc71-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-sgd-1_38.pdb ../src/cpp_regex_traits.cpp +vc71/libboost_regex-vc71-sgd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-sgd-1_40.pdb ../src/cpp_regex_traits.cpp -vc71/libboost_regex-vc71-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-sgd-1_38.pdb ../src/cregex.cpp +vc71/libboost_regex-vc71-sgd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-sgd-1_40.pdb ../src/cregex.cpp -vc71/libboost_regex-vc71-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-sgd-1_38.pdb ../src/fileiter.cpp +vc71/libboost_regex-vc71-sgd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-sgd-1_40.pdb ../src/fileiter.cpp -vc71/libboost_regex-vc71-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-sgd-1_38.pdb ../src/icu.cpp +vc71/libboost_regex-vc71-sgd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-sgd-1_40.pdb ../src/icu.cpp -vc71/libboost_regex-vc71-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-sgd-1_38.pdb ../src/instances.cpp +vc71/libboost_regex-vc71-sgd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-sgd-1_40.pdb ../src/instances.cpp -vc71/libboost_regex-vc71-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-sgd-1_38.pdb ../src/posix_api.cpp +vc71/libboost_regex-vc71-sgd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-sgd-1_40.pdb ../src/posix_api.cpp -vc71/libboost_regex-vc71-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-sgd-1_38.pdb ../src/regex.cpp +vc71/libboost_regex-vc71-sgd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-sgd-1_40.pdb ../src/regex.cpp -vc71/libboost_regex-vc71-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-sgd-1_38.pdb ../src/regex_debug.cpp +vc71/libboost_regex-vc71-sgd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-sgd-1_40.pdb ../src/regex_debug.cpp -vc71/libboost_regex-vc71-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-sgd-1_38.pdb ../src/regex_raw_buffer.cpp +vc71/libboost_regex-vc71-sgd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-sgd-1_40.pdb ../src/regex_raw_buffer.cpp -vc71/libboost_regex-vc71-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-sgd-1_38.pdb ../src/regex_traits_defaults.cpp +vc71/libboost_regex-vc71-sgd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-sgd-1_40.pdb ../src/regex_traits_defaults.cpp -vc71/libboost_regex-vc71-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-sgd-1_38.pdb ../src/static_mutex.cpp +vc71/libboost_regex-vc71-sgd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-sgd-1_40.pdb ../src/static_mutex.cpp -vc71/libboost_regex-vc71-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-sgd-1_38.pdb ../src/usinstances.cpp +vc71/libboost_regex-vc71-sgd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-sgd-1_40.pdb ../src/usinstances.cpp -vc71/libboost_regex-vc71-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-sgd-1_38.pdb ../src/w32_regex_traits.cpp +vc71/libboost_regex-vc71-sgd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-sgd-1_40.pdb ../src/w32_regex_traits.cpp -vc71/libboost_regex-vc71-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-sgd-1_38.pdb ../src/wc_regex_traits.cpp +vc71/libboost_regex-vc71-sgd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-sgd-1_40.pdb ../src/wc_regex_traits.cpp -vc71/libboost_regex-vc71-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-sgd-1_38.pdb ../src/wide_posix_api.cpp +vc71/libboost_regex-vc71-sgd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-sgd-1_40.pdb ../src/wide_posix_api.cpp -vc71/libboost_regex-vc71-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-sgd-1_38.pdb ../src/winstances.cpp +vc71/libboost_regex-vc71-sgd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-sgd-1_40.pdb ../src/winstances.cpp -libboost_regex-vc71-sgd-1_38_dir : - @if not exist "vc71\libboost_regex-vc71-sgd-1_38\$(NULL)" mkdir vc71\libboost_regex-vc71-sgd-1_38 +libboost_regex-vc71-sgd-1_40_dir : + @if not exist "vc71\libboost_regex-vc71-sgd-1_40\$(NULL)" mkdir vc71\libboost_regex-vc71-sgd-1_40 -libboost_regex-vc71-sgd-1_38_clean : - del vc71\libboost_regex-vc71-sgd-1_38\*.obj - del vc71\libboost_regex-vc71-sgd-1_38\*.idb - del vc71\libboost_regex-vc71-sgd-1_38\*.exp - del vc71\libboost_regex-vc71-sgd-1_38\*.pch +libboost_regex-vc71-sgd-1_40_clean : + del vc71\libboost_regex-vc71-sgd-1_40\*.obj + del vc71\libboost_regex-vc71-sgd-1_40\*.idb + del vc71\libboost_regex-vc71-sgd-1_40\*.exp + del vc71\libboost_regex-vc71-sgd-1_40\*.pch -./vc71/libboost_regex-vc71-sgd-1_38.lib : vc71/libboost_regex-vc71-sgd-1_38/c_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_38/cpp_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_38/cregex.obj vc71/libboost_regex-vc71-sgd-1_38/fileiter.obj vc71/libboost_regex-vc71-sgd-1_38/icu.obj vc71/libboost_regex-vc71-sgd-1_38/instances.obj vc71/libboost_regex-vc71-sgd-1_38/posix_api.obj vc71/libboost_regex-vc71-sgd-1_38/regex.obj vc71/libboost_regex-vc71-sgd-1_38/regex_debug.obj vc71/libboost_regex-vc71-sgd-1_38/regex_raw_buffer.obj vc71/libboost_regex-vc71-sgd-1_38/regex_traits_defaults.obj vc71/libboost_regex-vc71-sgd-1_38/static_mutex.obj vc71/libboost_regex-vc71-sgd-1_38/usinstances.obj vc71/libboost_regex-vc71-sgd-1_38/w32_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_38/wc_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_38/wide_posix_api.obj vc71/libboost_regex-vc71-sgd-1_38/winstances.obj - link -lib /nologo /out:vc71/libboost_regex-vc71-sgd-1_38.lib $(XSFLAGS) vc71/libboost_regex-vc71-sgd-1_38/c_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_38/cpp_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_38/cregex.obj vc71/libboost_regex-vc71-sgd-1_38/fileiter.obj vc71/libboost_regex-vc71-sgd-1_38/icu.obj vc71/libboost_regex-vc71-sgd-1_38/instances.obj vc71/libboost_regex-vc71-sgd-1_38/posix_api.obj vc71/libboost_regex-vc71-sgd-1_38/regex.obj vc71/libboost_regex-vc71-sgd-1_38/regex_debug.obj vc71/libboost_regex-vc71-sgd-1_38/regex_raw_buffer.obj vc71/libboost_regex-vc71-sgd-1_38/regex_traits_defaults.obj vc71/libboost_regex-vc71-sgd-1_38/static_mutex.obj vc71/libboost_regex-vc71-sgd-1_38/usinstances.obj vc71/libboost_regex-vc71-sgd-1_38/w32_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_38/wc_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_38/wide_posix_api.obj vc71/libboost_regex-vc71-sgd-1_38/winstances.obj +./vc71/libboost_regex-vc71-sgd-1_40.lib : vc71/libboost_regex-vc71-sgd-1_40/c_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_40/cpp_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_40/cregex.obj vc71/libboost_regex-vc71-sgd-1_40/fileiter.obj vc71/libboost_regex-vc71-sgd-1_40/icu.obj vc71/libboost_regex-vc71-sgd-1_40/instances.obj vc71/libboost_regex-vc71-sgd-1_40/posix_api.obj vc71/libboost_regex-vc71-sgd-1_40/regex.obj vc71/libboost_regex-vc71-sgd-1_40/regex_debug.obj vc71/libboost_regex-vc71-sgd-1_40/regex_raw_buffer.obj vc71/libboost_regex-vc71-sgd-1_40/regex_traits_defaults.obj vc71/libboost_regex-vc71-sgd-1_40/static_mutex.obj vc71/libboost_regex-vc71-sgd-1_40/usinstances.obj vc71/libboost_regex-vc71-sgd-1_40/w32_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_40/wc_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_40/wide_posix_api.obj vc71/libboost_regex-vc71-sgd-1_40/winstances.obj + link -lib /nologo /out:vc71/libboost_regex-vc71-sgd-1_40.lib $(XSFLAGS) vc71/libboost_regex-vc71-sgd-1_40/c_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_40/cpp_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_40/cregex.obj vc71/libboost_regex-vc71-sgd-1_40/fileiter.obj vc71/libboost_regex-vc71-sgd-1_40/icu.obj vc71/libboost_regex-vc71-sgd-1_40/instances.obj vc71/libboost_regex-vc71-sgd-1_40/posix_api.obj vc71/libboost_regex-vc71-sgd-1_40/regex.obj vc71/libboost_regex-vc71-sgd-1_40/regex_debug.obj vc71/libboost_regex-vc71-sgd-1_40/regex_raw_buffer.obj vc71/libboost_regex-vc71-sgd-1_40/regex_traits_defaults.obj vc71/libboost_regex-vc71-sgd-1_40/static_mutex.obj vc71/libboost_regex-vc71-sgd-1_40/usinstances.obj vc71/libboost_regex-vc71-sgd-1_40/w32_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_40/wc_regex_traits.obj vc71/libboost_regex-vc71-sgd-1_40/wide_posix_api.obj vc71/libboost_regex-vc71-sgd-1_40/winstances.obj ######################################################## # -# section for libboost_regex-vc71-mt-sgd-1_38.lib +# section for libboost_regex-vc71-mt-sgd-1_40.lib # ######################################################## -vc71/libboost_regex-vc71-mt-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_38.pdb ../src/c_regex_traits.cpp +vc71/libboost_regex-vc71-mt-sgd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_40.pdb ../src/c_regex_traits.cpp -vc71/libboost_regex-vc71-mt-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_38.pdb ../src/cpp_regex_traits.cpp +vc71/libboost_regex-vc71-mt-sgd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_40.pdb ../src/cpp_regex_traits.cpp -vc71/libboost_regex-vc71-mt-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_38.pdb ../src/cregex.cpp +vc71/libboost_regex-vc71-mt-sgd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_40.pdb ../src/cregex.cpp -vc71/libboost_regex-vc71-mt-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_38.pdb ../src/fileiter.cpp +vc71/libboost_regex-vc71-mt-sgd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_40.pdb ../src/fileiter.cpp -vc71/libboost_regex-vc71-mt-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_38.pdb ../src/icu.cpp +vc71/libboost_regex-vc71-mt-sgd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_40.pdb ../src/icu.cpp -vc71/libboost_regex-vc71-mt-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_38.pdb ../src/instances.cpp +vc71/libboost_regex-vc71-mt-sgd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_40.pdb ../src/instances.cpp -vc71/libboost_regex-vc71-mt-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_38.pdb ../src/posix_api.cpp +vc71/libboost_regex-vc71-mt-sgd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_40.pdb ../src/posix_api.cpp -vc71/libboost_regex-vc71-mt-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_38.pdb ../src/regex.cpp +vc71/libboost_regex-vc71-mt-sgd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_40.pdb ../src/regex.cpp -vc71/libboost_regex-vc71-mt-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_38.pdb ../src/regex_debug.cpp +vc71/libboost_regex-vc71-mt-sgd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_40.pdb ../src/regex_debug.cpp -vc71/libboost_regex-vc71-mt-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_38.pdb ../src/regex_raw_buffer.cpp +vc71/libboost_regex-vc71-mt-sgd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_40.pdb ../src/regex_raw_buffer.cpp -vc71/libboost_regex-vc71-mt-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_38.pdb ../src/regex_traits_defaults.cpp +vc71/libboost_regex-vc71-mt-sgd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_40.pdb ../src/regex_traits_defaults.cpp -vc71/libboost_regex-vc71-mt-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_38.pdb ../src/static_mutex.cpp +vc71/libboost_regex-vc71-mt-sgd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_40.pdb ../src/static_mutex.cpp -vc71/libboost_regex-vc71-mt-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_38.pdb ../src/usinstances.cpp +vc71/libboost_regex-vc71-mt-sgd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_40.pdb ../src/usinstances.cpp -vc71/libboost_regex-vc71-mt-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_38.pdb ../src/w32_regex_traits.cpp +vc71/libboost_regex-vc71-mt-sgd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_40.pdb ../src/w32_regex_traits.cpp -vc71/libboost_regex-vc71-mt-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_38.pdb ../src/wc_regex_traits.cpp +vc71/libboost_regex-vc71-mt-sgd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_40.pdb ../src/wc_regex_traits.cpp -vc71/libboost_regex-vc71-mt-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_38.pdb ../src/wide_posix_api.cpp +vc71/libboost_regex-vc71-mt-sgd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_40.pdb ../src/wide_posix_api.cpp -vc71/libboost_regex-vc71-mt-sgd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_38.pdb ../src/winstances.cpp +vc71/libboost_regex-vc71-mt-sgd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-sgd-1_40.pdb ../src/winstances.cpp -libboost_regex-vc71-mt-sgd-1_38_dir : - @if not exist "vc71\libboost_regex-vc71-mt-sgd-1_38\$(NULL)" mkdir vc71\libboost_regex-vc71-mt-sgd-1_38 +libboost_regex-vc71-mt-sgd-1_40_dir : + @if not exist "vc71\libboost_regex-vc71-mt-sgd-1_40\$(NULL)" mkdir vc71\libboost_regex-vc71-mt-sgd-1_40 -libboost_regex-vc71-mt-sgd-1_38_clean : - del vc71\libboost_regex-vc71-mt-sgd-1_38\*.obj - del vc71\libboost_regex-vc71-mt-sgd-1_38\*.idb - del vc71\libboost_regex-vc71-mt-sgd-1_38\*.exp - del vc71\libboost_regex-vc71-mt-sgd-1_38\*.pch +libboost_regex-vc71-mt-sgd-1_40_clean : + del vc71\libboost_regex-vc71-mt-sgd-1_40\*.obj + del vc71\libboost_regex-vc71-mt-sgd-1_40\*.idb + del vc71\libboost_regex-vc71-mt-sgd-1_40\*.exp + del vc71\libboost_regex-vc71-mt-sgd-1_40\*.pch -./vc71/libboost_regex-vc71-mt-sgd-1_38.lib : vc71/libboost_regex-vc71-mt-sgd-1_38/c_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_38/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_38/cregex.obj vc71/libboost_regex-vc71-mt-sgd-1_38/fileiter.obj vc71/libboost_regex-vc71-mt-sgd-1_38/icu.obj vc71/libboost_regex-vc71-mt-sgd-1_38/instances.obj vc71/libboost_regex-vc71-mt-sgd-1_38/posix_api.obj vc71/libboost_regex-vc71-mt-sgd-1_38/regex.obj vc71/libboost_regex-vc71-mt-sgd-1_38/regex_debug.obj vc71/libboost_regex-vc71-mt-sgd-1_38/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-sgd-1_38/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-sgd-1_38/static_mutex.obj vc71/libboost_regex-vc71-mt-sgd-1_38/usinstances.obj vc71/libboost_regex-vc71-mt-sgd-1_38/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_38/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_38/wide_posix_api.obj vc71/libboost_regex-vc71-mt-sgd-1_38/winstances.obj - link -lib /nologo /out:vc71/libboost_regex-vc71-mt-sgd-1_38.lib $(XSFLAGS) vc71/libboost_regex-vc71-mt-sgd-1_38/c_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_38/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_38/cregex.obj vc71/libboost_regex-vc71-mt-sgd-1_38/fileiter.obj vc71/libboost_regex-vc71-mt-sgd-1_38/icu.obj vc71/libboost_regex-vc71-mt-sgd-1_38/instances.obj vc71/libboost_regex-vc71-mt-sgd-1_38/posix_api.obj vc71/libboost_regex-vc71-mt-sgd-1_38/regex.obj vc71/libboost_regex-vc71-mt-sgd-1_38/regex_debug.obj vc71/libboost_regex-vc71-mt-sgd-1_38/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-sgd-1_38/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-sgd-1_38/static_mutex.obj vc71/libboost_regex-vc71-mt-sgd-1_38/usinstances.obj vc71/libboost_regex-vc71-mt-sgd-1_38/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_38/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_38/wide_posix_api.obj vc71/libboost_regex-vc71-mt-sgd-1_38/winstances.obj +./vc71/libboost_regex-vc71-mt-sgd-1_40.lib : vc71/libboost_regex-vc71-mt-sgd-1_40/c_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_40/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_40/cregex.obj vc71/libboost_regex-vc71-mt-sgd-1_40/fileiter.obj vc71/libboost_regex-vc71-mt-sgd-1_40/icu.obj vc71/libboost_regex-vc71-mt-sgd-1_40/instances.obj vc71/libboost_regex-vc71-mt-sgd-1_40/posix_api.obj vc71/libboost_regex-vc71-mt-sgd-1_40/regex.obj vc71/libboost_regex-vc71-mt-sgd-1_40/regex_debug.obj vc71/libboost_regex-vc71-mt-sgd-1_40/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-sgd-1_40/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-sgd-1_40/static_mutex.obj vc71/libboost_regex-vc71-mt-sgd-1_40/usinstances.obj vc71/libboost_regex-vc71-mt-sgd-1_40/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_40/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_40/wide_posix_api.obj vc71/libboost_regex-vc71-mt-sgd-1_40/winstances.obj + link -lib /nologo /out:vc71/libboost_regex-vc71-mt-sgd-1_40.lib $(XSFLAGS) vc71/libboost_regex-vc71-mt-sgd-1_40/c_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_40/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_40/cregex.obj vc71/libboost_regex-vc71-mt-sgd-1_40/fileiter.obj vc71/libboost_regex-vc71-mt-sgd-1_40/icu.obj vc71/libboost_regex-vc71-mt-sgd-1_40/instances.obj vc71/libboost_regex-vc71-mt-sgd-1_40/posix_api.obj vc71/libboost_regex-vc71-mt-sgd-1_40/regex.obj vc71/libboost_regex-vc71-mt-sgd-1_40/regex_debug.obj vc71/libboost_regex-vc71-mt-sgd-1_40/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-sgd-1_40/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-sgd-1_40/static_mutex.obj vc71/libboost_regex-vc71-mt-sgd-1_40/usinstances.obj vc71/libboost_regex-vc71-mt-sgd-1_40/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_40/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-sgd-1_40/wide_posix_api.obj vc71/libboost_regex-vc71-mt-sgd-1_40/winstances.obj ######################################################## # -# section for boost_regex-vc71-mt-gd-1_38.lib +# section for boost_regex-vc71-mt-gd-1_40.lib # ######################################################## -vc71/boost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-gd-1_38.pdb ../src/c_regex_traits.cpp +vc71/boost_regex-vc71-mt-gd-1_40/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_40/ -Fdvc71/boost_regex-vc71-mt-gd-1_40.pdb ../src/c_regex_traits.cpp -vc71/boost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-gd-1_38.pdb ../src/cpp_regex_traits.cpp +vc71/boost_regex-vc71-mt-gd-1_40/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_40/ -Fdvc71/boost_regex-vc71-mt-gd-1_40.pdb ../src/cpp_regex_traits.cpp -vc71/boost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-gd-1_38.pdb ../src/cregex.cpp +vc71/boost_regex-vc71-mt-gd-1_40/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_40/ -Fdvc71/boost_regex-vc71-mt-gd-1_40.pdb ../src/cregex.cpp -vc71/boost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-gd-1_38.pdb ../src/fileiter.cpp +vc71/boost_regex-vc71-mt-gd-1_40/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_40/ -Fdvc71/boost_regex-vc71-mt-gd-1_40.pdb ../src/fileiter.cpp -vc71/boost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-gd-1_38.pdb ../src/icu.cpp +vc71/boost_regex-vc71-mt-gd-1_40/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_40/ -Fdvc71/boost_regex-vc71-mt-gd-1_40.pdb ../src/icu.cpp -vc71/boost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-gd-1_38.pdb ../src/instances.cpp +vc71/boost_regex-vc71-mt-gd-1_40/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_40/ -Fdvc71/boost_regex-vc71-mt-gd-1_40.pdb ../src/instances.cpp -vc71/boost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-gd-1_38.pdb ../src/posix_api.cpp +vc71/boost_regex-vc71-mt-gd-1_40/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_40/ -Fdvc71/boost_regex-vc71-mt-gd-1_40.pdb ../src/posix_api.cpp -vc71/boost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-gd-1_38.pdb ../src/regex.cpp +vc71/boost_regex-vc71-mt-gd-1_40/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_40/ -Fdvc71/boost_regex-vc71-mt-gd-1_40.pdb ../src/regex.cpp -vc71/boost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-gd-1_38.pdb ../src/regex_debug.cpp +vc71/boost_regex-vc71-mt-gd-1_40/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_40/ -Fdvc71/boost_regex-vc71-mt-gd-1_40.pdb ../src/regex_debug.cpp -vc71/boost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-gd-1_38.pdb ../src/regex_raw_buffer.cpp +vc71/boost_regex-vc71-mt-gd-1_40/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_40/ -Fdvc71/boost_regex-vc71-mt-gd-1_40.pdb ../src/regex_raw_buffer.cpp -vc71/boost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-gd-1_38.pdb ../src/regex_traits_defaults.cpp +vc71/boost_regex-vc71-mt-gd-1_40/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_40/ -Fdvc71/boost_regex-vc71-mt-gd-1_40.pdb ../src/regex_traits_defaults.cpp -vc71/boost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-gd-1_38.pdb ../src/static_mutex.cpp +vc71/boost_regex-vc71-mt-gd-1_40/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_40/ -Fdvc71/boost_regex-vc71-mt-gd-1_40.pdb ../src/static_mutex.cpp -vc71/boost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-gd-1_38.pdb ../src/usinstances.cpp +vc71/boost_regex-vc71-mt-gd-1_40/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_40/ -Fdvc71/boost_regex-vc71-mt-gd-1_40.pdb ../src/usinstances.cpp -vc71/boost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-gd-1_38.pdb ../src/w32_regex_traits.cpp +vc71/boost_regex-vc71-mt-gd-1_40/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_40/ -Fdvc71/boost_regex-vc71-mt-gd-1_40.pdb ../src/w32_regex_traits.cpp -vc71/boost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-gd-1_38.pdb ../src/wc_regex_traits.cpp +vc71/boost_regex-vc71-mt-gd-1_40/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_40/ -Fdvc71/boost_regex-vc71-mt-gd-1_40.pdb ../src/wc_regex_traits.cpp -vc71/boost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-gd-1_38.pdb ../src/wide_posix_api.cpp +vc71/boost_regex-vc71-mt-gd-1_40/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_40/ -Fdvc71/boost_regex-vc71-mt-gd-1_40.pdb ../src/wide_posix_api.cpp -vc71/boost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-gd-1_38.pdb ../src/winstances.cpp +vc71/boost_regex-vc71-mt-gd-1_40/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_40/ -Fdvc71/boost_regex-vc71-mt-gd-1_40.pdb ../src/winstances.cpp -boost_regex-vc71-mt-gd-1_38_dir : - @if not exist "vc71\boost_regex-vc71-mt-gd-1_38\$(NULL)" mkdir vc71\boost_regex-vc71-mt-gd-1_38 +boost_regex-vc71-mt-gd-1_40_dir : + @if not exist "vc71\boost_regex-vc71-mt-gd-1_40\$(NULL)" mkdir vc71\boost_regex-vc71-mt-gd-1_40 -boost_regex-vc71-mt-gd-1_38_clean : - del vc71\boost_regex-vc71-mt-gd-1_38\*.obj - del vc71\boost_regex-vc71-mt-gd-1_38\*.idb - del vc71\boost_regex-vc71-mt-gd-1_38\*.exp - del vc71\boost_regex-vc71-mt-gd-1_38\*.pch +boost_regex-vc71-mt-gd-1_40_clean : + del vc71\boost_regex-vc71-mt-gd-1_40\*.obj + del vc71\boost_regex-vc71-mt-gd-1_40\*.idb + del vc71\boost_regex-vc71-mt-gd-1_40\*.exp + del vc71\boost_regex-vc71-mt-gd-1_40\*.pch -./vc71/boost_regex-vc71-mt-gd-1_38.lib : vc71/boost_regex-vc71-mt-gd-1_38/c_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_38/cpp_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_38/cregex.obj vc71/boost_regex-vc71-mt-gd-1_38/fileiter.obj vc71/boost_regex-vc71-mt-gd-1_38/icu.obj vc71/boost_regex-vc71-mt-gd-1_38/instances.obj vc71/boost_regex-vc71-mt-gd-1_38/posix_api.obj vc71/boost_regex-vc71-mt-gd-1_38/regex.obj vc71/boost_regex-vc71-mt-gd-1_38/regex_debug.obj vc71/boost_regex-vc71-mt-gd-1_38/regex_raw_buffer.obj vc71/boost_regex-vc71-mt-gd-1_38/regex_traits_defaults.obj vc71/boost_regex-vc71-mt-gd-1_38/static_mutex.obj vc71/boost_regex-vc71-mt-gd-1_38/usinstances.obj vc71/boost_regex-vc71-mt-gd-1_38/w32_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_38/wc_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_38/wide_posix_api.obj vc71/boost_regex-vc71-mt-gd-1_38/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_38.pdb" /debug /machine:I386 /out:"vc71/boost_regex-vc71-mt-gd-1_38.dll" /implib:"vc71/boost_regex-vc71-mt-gd-1_38.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc71/boost_regex-vc71-mt-gd-1_38/c_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_38/cpp_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_38/cregex.obj vc71/boost_regex-vc71-mt-gd-1_38/fileiter.obj vc71/boost_regex-vc71-mt-gd-1_38/icu.obj vc71/boost_regex-vc71-mt-gd-1_38/instances.obj vc71/boost_regex-vc71-mt-gd-1_38/posix_api.obj vc71/boost_regex-vc71-mt-gd-1_38/regex.obj vc71/boost_regex-vc71-mt-gd-1_38/regex_debug.obj vc71/boost_regex-vc71-mt-gd-1_38/regex_raw_buffer.obj vc71/boost_regex-vc71-mt-gd-1_38/regex_traits_defaults.obj vc71/boost_regex-vc71-mt-gd-1_38/static_mutex.obj vc71/boost_regex-vc71-mt-gd-1_38/usinstances.obj vc71/boost_regex-vc71-mt-gd-1_38/w32_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_38/wc_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_38/wide_posix_api.obj vc71/boost_regex-vc71-mt-gd-1_38/winstances.obj +./vc71/boost_regex-vc71-mt-gd-1_40.lib : vc71/boost_regex-vc71-mt-gd-1_40/c_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_40/cpp_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_40/cregex.obj vc71/boost_regex-vc71-mt-gd-1_40/fileiter.obj vc71/boost_regex-vc71-mt-gd-1_40/icu.obj vc71/boost_regex-vc71-mt-gd-1_40/instances.obj vc71/boost_regex-vc71-mt-gd-1_40/posix_api.obj vc71/boost_regex-vc71-mt-gd-1_40/regex.obj vc71/boost_regex-vc71-mt-gd-1_40/regex_debug.obj vc71/boost_regex-vc71-mt-gd-1_40/regex_raw_buffer.obj vc71/boost_regex-vc71-mt-gd-1_40/regex_traits_defaults.obj vc71/boost_regex-vc71-mt-gd-1_40/static_mutex.obj vc71/boost_regex-vc71-mt-gd-1_40/usinstances.obj vc71/boost_regex-vc71-mt-gd-1_40/w32_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_40/wc_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_40/wide_posix_api.obj vc71/boost_regex-vc71-mt-gd-1_40/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_40.pdb" /debug /machine:I386 /out:"vc71/boost_regex-vc71-mt-gd-1_40.dll" /implib:"vc71/boost_regex-vc71-mt-gd-1_40.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc71/boost_regex-vc71-mt-gd-1_40/c_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_40/cpp_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_40/cregex.obj vc71/boost_regex-vc71-mt-gd-1_40/fileiter.obj vc71/boost_regex-vc71-mt-gd-1_40/icu.obj vc71/boost_regex-vc71-mt-gd-1_40/instances.obj vc71/boost_regex-vc71-mt-gd-1_40/posix_api.obj vc71/boost_regex-vc71-mt-gd-1_40/regex.obj vc71/boost_regex-vc71-mt-gd-1_40/regex_debug.obj vc71/boost_regex-vc71-mt-gd-1_40/regex_raw_buffer.obj vc71/boost_regex-vc71-mt-gd-1_40/regex_traits_defaults.obj vc71/boost_regex-vc71-mt-gd-1_40/static_mutex.obj vc71/boost_regex-vc71-mt-gd-1_40/usinstances.obj vc71/boost_regex-vc71-mt-gd-1_40/w32_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_40/wc_regex_traits.obj vc71/boost_regex-vc71-mt-gd-1_40/wide_posix_api.obj vc71/boost_regex-vc71-mt-gd-1_40/winstances.obj ######################################################## # -# section for boost_regex-vc71-mt-1_38.lib +# section for boost_regex-vc71-mt-1_40.lib # ######################################################## -vc71/boost_regex-vc71-mt-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-1_38.pdb ../src/c_regex_traits.cpp +vc71/boost_regex-vc71-mt-1_40/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_40/ -Fdvc71/boost_regex-vc71-mt-1_40.pdb ../src/c_regex_traits.cpp -vc71/boost_regex-vc71-mt-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-1_38.pdb ../src/cpp_regex_traits.cpp +vc71/boost_regex-vc71-mt-1_40/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_40/ -Fdvc71/boost_regex-vc71-mt-1_40.pdb ../src/cpp_regex_traits.cpp -vc71/boost_regex-vc71-mt-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-1_38.pdb ../src/cregex.cpp +vc71/boost_regex-vc71-mt-1_40/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_40/ -Fdvc71/boost_regex-vc71-mt-1_40.pdb ../src/cregex.cpp -vc71/boost_regex-vc71-mt-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-1_38.pdb ../src/fileiter.cpp +vc71/boost_regex-vc71-mt-1_40/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_40/ -Fdvc71/boost_regex-vc71-mt-1_40.pdb ../src/fileiter.cpp -vc71/boost_regex-vc71-mt-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-1_38.pdb ../src/icu.cpp +vc71/boost_regex-vc71-mt-1_40/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_40/ -Fdvc71/boost_regex-vc71-mt-1_40.pdb ../src/icu.cpp -vc71/boost_regex-vc71-mt-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-1_38.pdb ../src/instances.cpp +vc71/boost_regex-vc71-mt-1_40/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_40/ -Fdvc71/boost_regex-vc71-mt-1_40.pdb ../src/instances.cpp -vc71/boost_regex-vc71-mt-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-1_38.pdb ../src/posix_api.cpp +vc71/boost_regex-vc71-mt-1_40/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_40/ -Fdvc71/boost_regex-vc71-mt-1_40.pdb ../src/posix_api.cpp -vc71/boost_regex-vc71-mt-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-1_38.pdb ../src/regex.cpp +vc71/boost_regex-vc71-mt-1_40/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_40/ -Fdvc71/boost_regex-vc71-mt-1_40.pdb ../src/regex.cpp -vc71/boost_regex-vc71-mt-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-1_38.pdb ../src/regex_debug.cpp +vc71/boost_regex-vc71-mt-1_40/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_40/ -Fdvc71/boost_regex-vc71-mt-1_40.pdb ../src/regex_debug.cpp -vc71/boost_regex-vc71-mt-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-1_38.pdb ../src/regex_raw_buffer.cpp +vc71/boost_regex-vc71-mt-1_40/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_40/ -Fdvc71/boost_regex-vc71-mt-1_40.pdb ../src/regex_raw_buffer.cpp -vc71/boost_regex-vc71-mt-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-1_38.pdb ../src/regex_traits_defaults.cpp +vc71/boost_regex-vc71-mt-1_40/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_40/ -Fdvc71/boost_regex-vc71-mt-1_40.pdb ../src/regex_traits_defaults.cpp -vc71/boost_regex-vc71-mt-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-1_38.pdb ../src/static_mutex.cpp +vc71/boost_regex-vc71-mt-1_40/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_40/ -Fdvc71/boost_regex-vc71-mt-1_40.pdb ../src/static_mutex.cpp -vc71/boost_regex-vc71-mt-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-1_38.pdb ../src/usinstances.cpp +vc71/boost_regex-vc71-mt-1_40/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_40/ -Fdvc71/boost_regex-vc71-mt-1_40.pdb ../src/usinstances.cpp -vc71/boost_regex-vc71-mt-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-1_38.pdb ../src/w32_regex_traits.cpp +vc71/boost_regex-vc71-mt-1_40/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_40/ -Fdvc71/boost_regex-vc71-mt-1_40.pdb ../src/w32_regex_traits.cpp -vc71/boost_regex-vc71-mt-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-1_38.pdb ../src/wc_regex_traits.cpp +vc71/boost_regex-vc71-mt-1_40/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_40/ -Fdvc71/boost_regex-vc71-mt-1_40.pdb ../src/wc_regex_traits.cpp -vc71/boost_regex-vc71-mt-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-1_38.pdb ../src/wide_posix_api.cpp +vc71/boost_regex-vc71-mt-1_40/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_40/ -Fdvc71/boost_regex-vc71-mt-1_40.pdb ../src/wide_posix_api.cpp -vc71/boost_regex-vc71-mt-1_38/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_38/ -Fdvc71/boost_regex-vc71-mt-1_38.pdb ../src/winstances.cpp +vc71/boost_regex-vc71-mt-1_40/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_40/ -Fdvc71/boost_regex-vc71-mt-1_40.pdb ../src/winstances.cpp -boost_regex-vc71-mt-1_38_dir : - @if not exist "vc71\boost_regex-vc71-mt-1_38\$(NULL)" mkdir vc71\boost_regex-vc71-mt-1_38 +boost_regex-vc71-mt-1_40_dir : + @if not exist "vc71\boost_regex-vc71-mt-1_40\$(NULL)" mkdir vc71\boost_regex-vc71-mt-1_40 -boost_regex-vc71-mt-1_38_clean : - del vc71\boost_regex-vc71-mt-1_38\*.obj - del vc71\boost_regex-vc71-mt-1_38\*.idb - del vc71\boost_regex-vc71-mt-1_38\*.exp - del vc71\boost_regex-vc71-mt-1_38\*.pch +boost_regex-vc71-mt-1_40_clean : + del vc71\boost_regex-vc71-mt-1_40\*.obj + del vc71\boost_regex-vc71-mt-1_40\*.idb + del vc71\boost_regex-vc71-mt-1_40\*.exp + del vc71\boost_regex-vc71-mt-1_40\*.pch -./vc71/boost_regex-vc71-mt-1_38.lib : vc71/boost_regex-vc71-mt-1_38/c_regex_traits.obj vc71/boost_regex-vc71-mt-1_38/cpp_regex_traits.obj vc71/boost_regex-vc71-mt-1_38/cregex.obj vc71/boost_regex-vc71-mt-1_38/fileiter.obj vc71/boost_regex-vc71-mt-1_38/icu.obj vc71/boost_regex-vc71-mt-1_38/instances.obj vc71/boost_regex-vc71-mt-1_38/posix_api.obj vc71/boost_regex-vc71-mt-1_38/regex.obj vc71/boost_regex-vc71-mt-1_38/regex_debug.obj vc71/boost_regex-vc71-mt-1_38/regex_raw_buffer.obj vc71/boost_regex-vc71-mt-1_38/regex_traits_defaults.obj vc71/boost_regex-vc71-mt-1_38/static_mutex.obj vc71/boost_regex-vc71-mt-1_38/usinstances.obj vc71/boost_regex-vc71-mt-1_38/w32_regex_traits.obj vc71/boost_regex-vc71-mt-1_38/wc_regex_traits.obj vc71/boost_regex-vc71-mt-1_38/wide_posix_api.obj vc71/boost_regex-vc71-mt-1_38/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_38.pdb" /debug /machine:I386 /out:"vc71/boost_regex-vc71-mt-1_38.dll" /implib:"vc71/boost_regex-vc71-mt-1_38.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc71/boost_regex-vc71-mt-1_38/c_regex_traits.obj vc71/boost_regex-vc71-mt-1_38/cpp_regex_traits.obj vc71/boost_regex-vc71-mt-1_38/cregex.obj vc71/boost_regex-vc71-mt-1_38/fileiter.obj vc71/boost_regex-vc71-mt-1_38/icu.obj vc71/boost_regex-vc71-mt-1_38/instances.obj vc71/boost_regex-vc71-mt-1_38/posix_api.obj vc71/boost_regex-vc71-mt-1_38/regex.obj vc71/boost_regex-vc71-mt-1_38/regex_debug.obj vc71/boost_regex-vc71-mt-1_38/regex_raw_buffer.obj vc71/boost_regex-vc71-mt-1_38/regex_traits_defaults.obj vc71/boost_regex-vc71-mt-1_38/static_mutex.obj vc71/boost_regex-vc71-mt-1_38/usinstances.obj vc71/boost_regex-vc71-mt-1_38/w32_regex_traits.obj vc71/boost_regex-vc71-mt-1_38/wc_regex_traits.obj vc71/boost_regex-vc71-mt-1_38/wide_posix_api.obj vc71/boost_regex-vc71-mt-1_38/winstances.obj +./vc71/boost_regex-vc71-mt-1_40.lib : vc71/boost_regex-vc71-mt-1_40/c_regex_traits.obj vc71/boost_regex-vc71-mt-1_40/cpp_regex_traits.obj vc71/boost_regex-vc71-mt-1_40/cregex.obj vc71/boost_regex-vc71-mt-1_40/fileiter.obj vc71/boost_regex-vc71-mt-1_40/icu.obj vc71/boost_regex-vc71-mt-1_40/instances.obj vc71/boost_regex-vc71-mt-1_40/posix_api.obj vc71/boost_regex-vc71-mt-1_40/regex.obj vc71/boost_regex-vc71-mt-1_40/regex_debug.obj vc71/boost_regex-vc71-mt-1_40/regex_raw_buffer.obj vc71/boost_regex-vc71-mt-1_40/regex_traits_defaults.obj vc71/boost_regex-vc71-mt-1_40/static_mutex.obj vc71/boost_regex-vc71-mt-1_40/usinstances.obj vc71/boost_regex-vc71-mt-1_40/w32_regex_traits.obj vc71/boost_regex-vc71-mt-1_40/wc_regex_traits.obj vc71/boost_regex-vc71-mt-1_40/wide_posix_api.obj vc71/boost_regex-vc71-mt-1_40/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_40.pdb" /debug /machine:I386 /out:"vc71/boost_regex-vc71-mt-1_40.dll" /implib:"vc71/boost_regex-vc71-mt-1_40.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc71/boost_regex-vc71-mt-1_40/c_regex_traits.obj vc71/boost_regex-vc71-mt-1_40/cpp_regex_traits.obj vc71/boost_regex-vc71-mt-1_40/cregex.obj vc71/boost_regex-vc71-mt-1_40/fileiter.obj vc71/boost_regex-vc71-mt-1_40/icu.obj vc71/boost_regex-vc71-mt-1_40/instances.obj vc71/boost_regex-vc71-mt-1_40/posix_api.obj vc71/boost_regex-vc71-mt-1_40/regex.obj vc71/boost_regex-vc71-mt-1_40/regex_debug.obj vc71/boost_regex-vc71-mt-1_40/regex_raw_buffer.obj vc71/boost_regex-vc71-mt-1_40/regex_traits_defaults.obj vc71/boost_regex-vc71-mt-1_40/static_mutex.obj vc71/boost_regex-vc71-mt-1_40/usinstances.obj vc71/boost_regex-vc71-mt-1_40/w32_regex_traits.obj vc71/boost_regex-vc71-mt-1_40/wc_regex_traits.obj vc71/boost_regex-vc71-mt-1_40/wide_posix_api.obj vc71/boost_regex-vc71-mt-1_40/winstances.obj ######################################################## # -# section for libboost_regex-vc71-mt-1_38.lib +# section for libboost_regex-vc71-mt-1_40.lib # ######################################################## -vc71/libboost_regex-vc71-mt-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-1_38.pdb ../src/c_regex_traits.cpp +vc71/libboost_regex-vc71-mt-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-1_40.pdb ../src/c_regex_traits.cpp -vc71/libboost_regex-vc71-mt-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-1_38.pdb ../src/cpp_regex_traits.cpp +vc71/libboost_regex-vc71-mt-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-1_40.pdb ../src/cpp_regex_traits.cpp -vc71/libboost_regex-vc71-mt-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-1_38.pdb ../src/cregex.cpp +vc71/libboost_regex-vc71-mt-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-1_40.pdb ../src/cregex.cpp -vc71/libboost_regex-vc71-mt-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-1_38.pdb ../src/fileiter.cpp +vc71/libboost_regex-vc71-mt-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-1_40.pdb ../src/fileiter.cpp -vc71/libboost_regex-vc71-mt-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-1_38.pdb ../src/icu.cpp +vc71/libboost_regex-vc71-mt-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-1_40.pdb ../src/icu.cpp -vc71/libboost_regex-vc71-mt-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-1_38.pdb ../src/instances.cpp +vc71/libboost_regex-vc71-mt-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-1_40.pdb ../src/instances.cpp -vc71/libboost_regex-vc71-mt-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-1_38.pdb ../src/posix_api.cpp +vc71/libboost_regex-vc71-mt-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-1_40.pdb ../src/posix_api.cpp -vc71/libboost_regex-vc71-mt-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-1_38.pdb ../src/regex.cpp +vc71/libboost_regex-vc71-mt-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-1_40.pdb ../src/regex.cpp -vc71/libboost_regex-vc71-mt-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-1_38.pdb ../src/regex_debug.cpp +vc71/libboost_regex-vc71-mt-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-1_40.pdb ../src/regex_debug.cpp -vc71/libboost_regex-vc71-mt-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-1_38.pdb ../src/regex_raw_buffer.cpp +vc71/libboost_regex-vc71-mt-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-1_40.pdb ../src/regex_raw_buffer.cpp -vc71/libboost_regex-vc71-mt-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-1_38.pdb ../src/regex_traits_defaults.cpp +vc71/libboost_regex-vc71-mt-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-1_40.pdb ../src/regex_traits_defaults.cpp -vc71/libboost_regex-vc71-mt-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-1_38.pdb ../src/static_mutex.cpp +vc71/libboost_regex-vc71-mt-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-1_40.pdb ../src/static_mutex.cpp -vc71/libboost_regex-vc71-mt-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-1_38.pdb ../src/usinstances.cpp +vc71/libboost_regex-vc71-mt-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-1_40.pdb ../src/usinstances.cpp -vc71/libboost_regex-vc71-mt-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-1_38.pdb ../src/w32_regex_traits.cpp +vc71/libboost_regex-vc71-mt-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-1_40.pdb ../src/w32_regex_traits.cpp -vc71/libboost_regex-vc71-mt-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-1_38.pdb ../src/wc_regex_traits.cpp +vc71/libboost_regex-vc71-mt-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-1_40.pdb ../src/wc_regex_traits.cpp -vc71/libboost_regex-vc71-mt-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-1_38.pdb ../src/wide_posix_api.cpp +vc71/libboost_regex-vc71-mt-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-1_40.pdb ../src/wide_posix_api.cpp -vc71/libboost_regex-vc71-mt-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-1_38.pdb ../src/winstances.cpp +vc71/libboost_regex-vc71-mt-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-1_40.pdb ../src/winstances.cpp -libboost_regex-vc71-mt-1_38_dir : - @if not exist "vc71\libboost_regex-vc71-mt-1_38\$(NULL)" mkdir vc71\libboost_regex-vc71-mt-1_38 +libboost_regex-vc71-mt-1_40_dir : + @if not exist "vc71\libboost_regex-vc71-mt-1_40\$(NULL)" mkdir vc71\libboost_regex-vc71-mt-1_40 -libboost_regex-vc71-mt-1_38_clean : - del vc71\libboost_regex-vc71-mt-1_38\*.obj - del vc71\libboost_regex-vc71-mt-1_38\*.idb - del vc71\libboost_regex-vc71-mt-1_38\*.exp - del vc71\libboost_regex-vc71-mt-1_38\*.pch +libboost_regex-vc71-mt-1_40_clean : + del vc71\libboost_regex-vc71-mt-1_40\*.obj + del vc71\libboost_regex-vc71-mt-1_40\*.idb + del vc71\libboost_regex-vc71-mt-1_40\*.exp + del vc71\libboost_regex-vc71-mt-1_40\*.pch -./vc71/libboost_regex-vc71-mt-1_38.lib : vc71/libboost_regex-vc71-mt-1_38/c_regex_traits.obj vc71/libboost_regex-vc71-mt-1_38/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-1_38/cregex.obj vc71/libboost_regex-vc71-mt-1_38/fileiter.obj vc71/libboost_regex-vc71-mt-1_38/icu.obj vc71/libboost_regex-vc71-mt-1_38/instances.obj vc71/libboost_regex-vc71-mt-1_38/posix_api.obj vc71/libboost_regex-vc71-mt-1_38/regex.obj vc71/libboost_regex-vc71-mt-1_38/regex_debug.obj vc71/libboost_regex-vc71-mt-1_38/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-1_38/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-1_38/static_mutex.obj vc71/libboost_regex-vc71-mt-1_38/usinstances.obj vc71/libboost_regex-vc71-mt-1_38/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-1_38/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-1_38/wide_posix_api.obj vc71/libboost_regex-vc71-mt-1_38/winstances.obj - link -lib /nologo /out:vc71/libboost_regex-vc71-mt-1_38.lib $(XSFLAGS) vc71/libboost_regex-vc71-mt-1_38/c_regex_traits.obj vc71/libboost_regex-vc71-mt-1_38/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-1_38/cregex.obj vc71/libboost_regex-vc71-mt-1_38/fileiter.obj vc71/libboost_regex-vc71-mt-1_38/icu.obj vc71/libboost_regex-vc71-mt-1_38/instances.obj vc71/libboost_regex-vc71-mt-1_38/posix_api.obj vc71/libboost_regex-vc71-mt-1_38/regex.obj vc71/libboost_regex-vc71-mt-1_38/regex_debug.obj vc71/libboost_regex-vc71-mt-1_38/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-1_38/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-1_38/static_mutex.obj vc71/libboost_regex-vc71-mt-1_38/usinstances.obj vc71/libboost_regex-vc71-mt-1_38/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-1_38/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-1_38/wide_posix_api.obj vc71/libboost_regex-vc71-mt-1_38/winstances.obj +./vc71/libboost_regex-vc71-mt-1_40.lib : vc71/libboost_regex-vc71-mt-1_40/c_regex_traits.obj vc71/libboost_regex-vc71-mt-1_40/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-1_40/cregex.obj vc71/libboost_regex-vc71-mt-1_40/fileiter.obj vc71/libboost_regex-vc71-mt-1_40/icu.obj vc71/libboost_regex-vc71-mt-1_40/instances.obj vc71/libboost_regex-vc71-mt-1_40/posix_api.obj vc71/libboost_regex-vc71-mt-1_40/regex.obj vc71/libboost_regex-vc71-mt-1_40/regex_debug.obj vc71/libboost_regex-vc71-mt-1_40/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-1_40/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-1_40/static_mutex.obj vc71/libboost_regex-vc71-mt-1_40/usinstances.obj vc71/libboost_regex-vc71-mt-1_40/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-1_40/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-1_40/wide_posix_api.obj vc71/libboost_regex-vc71-mt-1_40/winstances.obj + link -lib /nologo /out:vc71/libboost_regex-vc71-mt-1_40.lib $(XSFLAGS) vc71/libboost_regex-vc71-mt-1_40/c_regex_traits.obj vc71/libboost_regex-vc71-mt-1_40/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-1_40/cregex.obj vc71/libboost_regex-vc71-mt-1_40/fileiter.obj vc71/libboost_regex-vc71-mt-1_40/icu.obj vc71/libboost_regex-vc71-mt-1_40/instances.obj vc71/libboost_regex-vc71-mt-1_40/posix_api.obj vc71/libboost_regex-vc71-mt-1_40/regex.obj vc71/libboost_regex-vc71-mt-1_40/regex_debug.obj vc71/libboost_regex-vc71-mt-1_40/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-1_40/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-1_40/static_mutex.obj vc71/libboost_regex-vc71-mt-1_40/usinstances.obj vc71/libboost_regex-vc71-mt-1_40/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-1_40/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-1_40/wide_posix_api.obj vc71/libboost_regex-vc71-mt-1_40/winstances.obj ######################################################## # -# section for libboost_regex-vc71-mt-gd-1_38.lib +# section for libboost_regex-vc71-mt-gd-1_40.lib # ######################################################## -vc71/libboost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-gd-1_38.pdb ../src/c_regex_traits.cpp +vc71/libboost_regex-vc71-mt-gd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-gd-1_40.pdb ../src/c_regex_traits.cpp -vc71/libboost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-gd-1_38.pdb ../src/cpp_regex_traits.cpp +vc71/libboost_regex-vc71-mt-gd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-gd-1_40.pdb ../src/cpp_regex_traits.cpp -vc71/libboost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-gd-1_38.pdb ../src/cregex.cpp +vc71/libboost_regex-vc71-mt-gd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-gd-1_40.pdb ../src/cregex.cpp -vc71/libboost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-gd-1_38.pdb ../src/fileiter.cpp +vc71/libboost_regex-vc71-mt-gd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-gd-1_40.pdb ../src/fileiter.cpp -vc71/libboost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-gd-1_38.pdb ../src/icu.cpp +vc71/libboost_regex-vc71-mt-gd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-gd-1_40.pdb ../src/icu.cpp -vc71/libboost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-gd-1_38.pdb ../src/instances.cpp +vc71/libboost_regex-vc71-mt-gd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-gd-1_40.pdb ../src/instances.cpp -vc71/libboost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-gd-1_38.pdb ../src/posix_api.cpp +vc71/libboost_regex-vc71-mt-gd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-gd-1_40.pdb ../src/posix_api.cpp -vc71/libboost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-gd-1_38.pdb ../src/regex.cpp +vc71/libboost_regex-vc71-mt-gd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-gd-1_40.pdb ../src/regex.cpp -vc71/libboost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-gd-1_38.pdb ../src/regex_debug.cpp +vc71/libboost_regex-vc71-mt-gd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-gd-1_40.pdb ../src/regex_debug.cpp -vc71/libboost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-gd-1_38.pdb ../src/regex_raw_buffer.cpp +vc71/libboost_regex-vc71-mt-gd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-gd-1_40.pdb ../src/regex_raw_buffer.cpp -vc71/libboost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-gd-1_38.pdb ../src/regex_traits_defaults.cpp +vc71/libboost_regex-vc71-mt-gd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-gd-1_40.pdb ../src/regex_traits_defaults.cpp -vc71/libboost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-gd-1_38.pdb ../src/static_mutex.cpp +vc71/libboost_regex-vc71-mt-gd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-gd-1_40.pdb ../src/static_mutex.cpp -vc71/libboost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-gd-1_38.pdb ../src/usinstances.cpp +vc71/libboost_regex-vc71-mt-gd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-gd-1_40.pdb ../src/usinstances.cpp -vc71/libboost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-gd-1_38.pdb ../src/w32_regex_traits.cpp +vc71/libboost_regex-vc71-mt-gd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-gd-1_40.pdb ../src/w32_regex_traits.cpp -vc71/libboost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-gd-1_38.pdb ../src/wc_regex_traits.cpp +vc71/libboost_regex-vc71-mt-gd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-gd-1_40.pdb ../src/wc_regex_traits.cpp -vc71/libboost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-gd-1_38.pdb ../src/wide_posix_api.cpp +vc71/libboost_regex-vc71-mt-gd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-gd-1_40.pdb ../src/wide_posix_api.cpp -vc71/libboost_regex-vc71-mt-gd-1_38/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_38/ -Fdvc71/libboost_regex-vc71-mt-gd-1_38.pdb ../src/winstances.cpp +vc71/libboost_regex-vc71-mt-gd-1_40/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_40/ -Fdvc71/libboost_regex-vc71-mt-gd-1_40.pdb ../src/winstances.cpp -libboost_regex-vc71-mt-gd-1_38_dir : - @if not exist "vc71\libboost_regex-vc71-mt-gd-1_38\$(NULL)" mkdir vc71\libboost_regex-vc71-mt-gd-1_38 +libboost_regex-vc71-mt-gd-1_40_dir : + @if not exist "vc71\libboost_regex-vc71-mt-gd-1_40\$(NULL)" mkdir vc71\libboost_regex-vc71-mt-gd-1_40 -libboost_regex-vc71-mt-gd-1_38_clean : - del vc71\libboost_regex-vc71-mt-gd-1_38\*.obj - del vc71\libboost_regex-vc71-mt-gd-1_38\*.idb - del vc71\libboost_regex-vc71-mt-gd-1_38\*.exp - del vc71\libboost_regex-vc71-mt-gd-1_38\*.pch +libboost_regex-vc71-mt-gd-1_40_clean : + del vc71\libboost_regex-vc71-mt-gd-1_40\*.obj + del vc71\libboost_regex-vc71-mt-gd-1_40\*.idb + del vc71\libboost_regex-vc71-mt-gd-1_40\*.exp + del vc71\libboost_regex-vc71-mt-gd-1_40\*.pch -./vc71/libboost_regex-vc71-mt-gd-1_38.lib : vc71/libboost_regex-vc71-mt-gd-1_38/c_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_38/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_38/cregex.obj vc71/libboost_regex-vc71-mt-gd-1_38/fileiter.obj vc71/libboost_regex-vc71-mt-gd-1_38/icu.obj vc71/libboost_regex-vc71-mt-gd-1_38/instances.obj vc71/libboost_regex-vc71-mt-gd-1_38/posix_api.obj vc71/libboost_regex-vc71-mt-gd-1_38/regex.obj vc71/libboost_regex-vc71-mt-gd-1_38/regex_debug.obj vc71/libboost_regex-vc71-mt-gd-1_38/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-gd-1_38/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-gd-1_38/static_mutex.obj vc71/libboost_regex-vc71-mt-gd-1_38/usinstances.obj vc71/libboost_regex-vc71-mt-gd-1_38/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_38/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_38/wide_posix_api.obj vc71/libboost_regex-vc71-mt-gd-1_38/winstances.obj - link -lib /nologo /out:vc71/libboost_regex-vc71-mt-gd-1_38.lib $(XSFLAGS) vc71/libboost_regex-vc71-mt-gd-1_38/c_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_38/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_38/cregex.obj vc71/libboost_regex-vc71-mt-gd-1_38/fileiter.obj vc71/libboost_regex-vc71-mt-gd-1_38/icu.obj vc71/libboost_regex-vc71-mt-gd-1_38/instances.obj vc71/libboost_regex-vc71-mt-gd-1_38/posix_api.obj vc71/libboost_regex-vc71-mt-gd-1_38/regex.obj vc71/libboost_regex-vc71-mt-gd-1_38/regex_debug.obj vc71/libboost_regex-vc71-mt-gd-1_38/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-gd-1_38/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-gd-1_38/static_mutex.obj vc71/libboost_regex-vc71-mt-gd-1_38/usinstances.obj vc71/libboost_regex-vc71-mt-gd-1_38/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_38/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_38/wide_posix_api.obj vc71/libboost_regex-vc71-mt-gd-1_38/winstances.obj +./vc71/libboost_regex-vc71-mt-gd-1_40.lib : vc71/libboost_regex-vc71-mt-gd-1_40/c_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_40/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_40/cregex.obj vc71/libboost_regex-vc71-mt-gd-1_40/fileiter.obj vc71/libboost_regex-vc71-mt-gd-1_40/icu.obj vc71/libboost_regex-vc71-mt-gd-1_40/instances.obj vc71/libboost_regex-vc71-mt-gd-1_40/posix_api.obj vc71/libboost_regex-vc71-mt-gd-1_40/regex.obj vc71/libboost_regex-vc71-mt-gd-1_40/regex_debug.obj vc71/libboost_regex-vc71-mt-gd-1_40/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-gd-1_40/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-gd-1_40/static_mutex.obj vc71/libboost_regex-vc71-mt-gd-1_40/usinstances.obj vc71/libboost_regex-vc71-mt-gd-1_40/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_40/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_40/wide_posix_api.obj vc71/libboost_regex-vc71-mt-gd-1_40/winstances.obj + link -lib /nologo /out:vc71/libboost_regex-vc71-mt-gd-1_40.lib $(XSFLAGS) vc71/libboost_regex-vc71-mt-gd-1_40/c_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_40/cpp_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_40/cregex.obj vc71/libboost_regex-vc71-mt-gd-1_40/fileiter.obj vc71/libboost_regex-vc71-mt-gd-1_40/icu.obj vc71/libboost_regex-vc71-mt-gd-1_40/instances.obj vc71/libboost_regex-vc71-mt-gd-1_40/posix_api.obj vc71/libboost_regex-vc71-mt-gd-1_40/regex.obj vc71/libboost_regex-vc71-mt-gd-1_40/regex_debug.obj vc71/libboost_regex-vc71-mt-gd-1_40/regex_raw_buffer.obj vc71/libboost_regex-vc71-mt-gd-1_40/regex_traits_defaults.obj vc71/libboost_regex-vc71-mt-gd-1_40/static_mutex.obj vc71/libboost_regex-vc71-mt-gd-1_40/usinstances.obj vc71/libboost_regex-vc71-mt-gd-1_40/w32_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_40/wc_regex_traits.obj vc71/libboost_regex-vc71-mt-gd-1_40/wide_posix_api.obj vc71/libboost_regex-vc71-mt-gd-1_40/winstances.obj diff --git a/build/vc8.mak b/build/vc8.mak index e35a62ec..58d6a311 100644 --- a/build/vc8.mak +++ b/build/vc8.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-vc80-mt-s-1_38_dir ./vc80/libboost_regex-vc80-mt-s-1_38.lib libboost_regex-vc80-mt-sgd-1_38_dir ./vc80/libboost_regex-vc80-mt-sgd-1_38.lib boost_regex-vc80-mt-gd-1_38_dir ./vc80/boost_regex-vc80-mt-gd-1_38.lib boost_regex-vc80-mt-1_38_dir ./vc80/boost_regex-vc80-mt-1_38.lib libboost_regex-vc80-mt-1_38_dir ./vc80/libboost_regex-vc80-mt-1_38.lib libboost_regex-vc80-mt-gd-1_38_dir ./vc80/libboost_regex-vc80-mt-gd-1_38.lib +all : main_dir libboost_regex-vc80-mt-s-1_40_dir ./vc80/libboost_regex-vc80-mt-s-1_40.lib libboost_regex-vc80-mt-sgd-1_40_dir ./vc80/libboost_regex-vc80-mt-sgd-1_40.lib boost_regex-vc80-mt-gd-1_40_dir ./vc80/boost_regex-vc80-mt-gd-1_40.lib boost_regex-vc80-mt-1_40_dir ./vc80/boost_regex-vc80-mt-1_40.lib libboost_regex-vc80-mt-1_40_dir ./vc80/libboost_regex-vc80-mt-1_40.lib libboost_regex-vc80-mt-gd-1_40_dir ./vc80/libboost_regex-vc80-mt-gd-1_40.lib -clean : libboost_regex-vc80-mt-s-1_38_clean libboost_regex-vc80-mt-sgd-1_38_clean boost_regex-vc80-mt-gd-1_38_clean boost_regex-vc80-mt-1_38_clean libboost_regex-vc80-mt-1_38_clean libboost_regex-vc80-mt-gd-1_38_clean +clean : libboost_regex-vc80-mt-s-1_40_clean libboost_regex-vc80-mt-sgd-1_40_clean boost_regex-vc80-mt-gd-1_40_clean boost_regex-vc80-mt-1_40_clean libboost_regex-vc80-mt-1_40_clean libboost_regex-vc80-mt-gd-1_40_clean install : all - copy vc80\libboost_regex-vc80-mt-s-1_38.lib "$(MSVCDIR)\lib" - copy vc80\libboost_regex-vc80-mt-sgd-1_38.lib "$(MSVCDIR)\lib" - copy vc80\boost_regex-vc80-mt-gd-1_38.lib "$(MSVCDIR)\lib" - copy vc80\boost_regex-vc80-mt-gd-1_38.dll "$(MSVCDIR)\bin" - copy vc80\boost_regex-vc80-mt-1_38.lib "$(MSVCDIR)\lib" - copy vc80\boost_regex-vc80-mt-1_38.dll "$(MSVCDIR)\bin" - copy vc80\libboost_regex-vc80-mt-1_38.lib "$(MSVCDIR)\lib" - copy vc80\libboost_regex-vc80-mt-gd-1_38.lib "$(MSVCDIR)\lib" - copy vc80\libboost_regex-vc80-mt-gd-1_38.pdb "$(MSVCDIR)\lib" + copy vc80\libboost_regex-vc80-mt-s-1_40.lib "$(MSVCDIR)\lib" + copy vc80\libboost_regex-vc80-mt-sgd-1_40.lib "$(MSVCDIR)\lib" + copy vc80\boost_regex-vc80-mt-gd-1_40.lib "$(MSVCDIR)\lib" + copy vc80\boost_regex-vc80-mt-gd-1_40.dll "$(MSVCDIR)\bin" + copy vc80\boost_regex-vc80-mt-1_40.lib "$(MSVCDIR)\lib" + copy vc80\boost_regex-vc80-mt-1_40.dll "$(MSVCDIR)\bin" + copy vc80\libboost_regex-vc80-mt-1_40.lib "$(MSVCDIR)\lib" + copy vc80\libboost_regex-vc80-mt-gd-1_40.lib "$(MSVCDIR)\lib" + copy vc80\libboost_regex-vc80-mt-gd-1_40.pdb "$(MSVCDIR)\lib" main_dir : @if not exist "vc80\$(NULL)" mkdir vc80 @@ -83,410 +83,410 @@ main_dir : ######################################################## # -# section for libboost_regex-vc80-mt-s-1_38.lib +# section for libboost_regex-vc80-mt-s-1_40.lib # ######################################################## -vc80/libboost_regex-vc80-mt-s-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-s-1_38.pdb ../src/c_regex_traits.cpp +vc80/libboost_regex-vc80-mt-s-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-s-1_40.pdb ../src/c_regex_traits.cpp -vc80/libboost_regex-vc80-mt-s-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-s-1_38.pdb ../src/cpp_regex_traits.cpp +vc80/libboost_regex-vc80-mt-s-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-s-1_40.pdb ../src/cpp_regex_traits.cpp -vc80/libboost_regex-vc80-mt-s-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-s-1_38.pdb ../src/cregex.cpp +vc80/libboost_regex-vc80-mt-s-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-s-1_40.pdb ../src/cregex.cpp -vc80/libboost_regex-vc80-mt-s-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-s-1_38.pdb ../src/fileiter.cpp +vc80/libboost_regex-vc80-mt-s-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-s-1_40.pdb ../src/fileiter.cpp -vc80/libboost_regex-vc80-mt-s-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-s-1_38.pdb ../src/icu.cpp +vc80/libboost_regex-vc80-mt-s-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-s-1_40.pdb ../src/icu.cpp -vc80/libboost_regex-vc80-mt-s-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-s-1_38.pdb ../src/instances.cpp +vc80/libboost_regex-vc80-mt-s-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-s-1_40.pdb ../src/instances.cpp -vc80/libboost_regex-vc80-mt-s-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-s-1_38.pdb ../src/posix_api.cpp +vc80/libboost_regex-vc80-mt-s-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-s-1_40.pdb ../src/posix_api.cpp -vc80/libboost_regex-vc80-mt-s-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-s-1_38.pdb ../src/regex.cpp +vc80/libboost_regex-vc80-mt-s-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-s-1_40.pdb ../src/regex.cpp -vc80/libboost_regex-vc80-mt-s-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-s-1_38.pdb ../src/regex_debug.cpp +vc80/libboost_regex-vc80-mt-s-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-s-1_40.pdb ../src/regex_debug.cpp -vc80/libboost_regex-vc80-mt-s-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-s-1_38.pdb ../src/regex_raw_buffer.cpp +vc80/libboost_regex-vc80-mt-s-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-s-1_40.pdb ../src/regex_raw_buffer.cpp -vc80/libboost_regex-vc80-mt-s-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-s-1_38.pdb ../src/regex_traits_defaults.cpp +vc80/libboost_regex-vc80-mt-s-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-s-1_40.pdb ../src/regex_traits_defaults.cpp -vc80/libboost_regex-vc80-mt-s-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-s-1_38.pdb ../src/static_mutex.cpp +vc80/libboost_regex-vc80-mt-s-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-s-1_40.pdb ../src/static_mutex.cpp -vc80/libboost_regex-vc80-mt-s-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-s-1_38.pdb ../src/usinstances.cpp +vc80/libboost_regex-vc80-mt-s-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-s-1_40.pdb ../src/usinstances.cpp -vc80/libboost_regex-vc80-mt-s-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-s-1_38.pdb ../src/w32_regex_traits.cpp +vc80/libboost_regex-vc80-mt-s-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-s-1_40.pdb ../src/w32_regex_traits.cpp -vc80/libboost_regex-vc80-mt-s-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-s-1_38.pdb ../src/wc_regex_traits.cpp +vc80/libboost_regex-vc80-mt-s-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-s-1_40.pdb ../src/wc_regex_traits.cpp -vc80/libboost_regex-vc80-mt-s-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-s-1_38.pdb ../src/wide_posix_api.cpp +vc80/libboost_regex-vc80-mt-s-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-s-1_40.pdb ../src/wide_posix_api.cpp -vc80/libboost_regex-vc80-mt-s-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-s-1_38.pdb ../src/winstances.cpp +vc80/libboost_regex-vc80-mt-s-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-s-1_40.pdb ../src/winstances.cpp -libboost_regex-vc80-mt-s-1_38_dir : - @if not exist "vc80\libboost_regex-vc80-mt-s-1_38\$(NULL)" mkdir vc80\libboost_regex-vc80-mt-s-1_38 +libboost_regex-vc80-mt-s-1_40_dir : + @if not exist "vc80\libboost_regex-vc80-mt-s-1_40\$(NULL)" mkdir vc80\libboost_regex-vc80-mt-s-1_40 -libboost_regex-vc80-mt-s-1_38_clean : - del vc80\libboost_regex-vc80-mt-s-1_38\*.obj - del vc80\libboost_regex-vc80-mt-s-1_38\*.idb - del vc80\libboost_regex-vc80-mt-s-1_38\*.exp - del vc80\libboost_regex-vc80-mt-s-1_38\*.pch +libboost_regex-vc80-mt-s-1_40_clean : + del vc80\libboost_regex-vc80-mt-s-1_40\*.obj + del vc80\libboost_regex-vc80-mt-s-1_40\*.idb + del vc80\libboost_regex-vc80-mt-s-1_40\*.exp + del vc80\libboost_regex-vc80-mt-s-1_40\*.pch -./vc80/libboost_regex-vc80-mt-s-1_38.lib : vc80/libboost_regex-vc80-mt-s-1_38/c_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_38/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_38/cregex.obj vc80/libboost_regex-vc80-mt-s-1_38/fileiter.obj vc80/libboost_regex-vc80-mt-s-1_38/icu.obj vc80/libboost_regex-vc80-mt-s-1_38/instances.obj vc80/libboost_regex-vc80-mt-s-1_38/posix_api.obj vc80/libboost_regex-vc80-mt-s-1_38/regex.obj vc80/libboost_regex-vc80-mt-s-1_38/regex_debug.obj vc80/libboost_regex-vc80-mt-s-1_38/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-s-1_38/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-s-1_38/static_mutex.obj vc80/libboost_regex-vc80-mt-s-1_38/usinstances.obj vc80/libboost_regex-vc80-mt-s-1_38/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_38/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_38/wide_posix_api.obj vc80/libboost_regex-vc80-mt-s-1_38/winstances.obj - link -lib /nologo /out:vc80/libboost_regex-vc80-mt-s-1_38.lib $(XSFLAGS) vc80/libboost_regex-vc80-mt-s-1_38/c_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_38/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_38/cregex.obj vc80/libboost_regex-vc80-mt-s-1_38/fileiter.obj vc80/libboost_regex-vc80-mt-s-1_38/icu.obj vc80/libboost_regex-vc80-mt-s-1_38/instances.obj vc80/libboost_regex-vc80-mt-s-1_38/posix_api.obj vc80/libboost_regex-vc80-mt-s-1_38/regex.obj vc80/libboost_regex-vc80-mt-s-1_38/regex_debug.obj vc80/libboost_regex-vc80-mt-s-1_38/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-s-1_38/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-s-1_38/static_mutex.obj vc80/libboost_regex-vc80-mt-s-1_38/usinstances.obj vc80/libboost_regex-vc80-mt-s-1_38/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_38/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_38/wide_posix_api.obj vc80/libboost_regex-vc80-mt-s-1_38/winstances.obj +./vc80/libboost_regex-vc80-mt-s-1_40.lib : vc80/libboost_regex-vc80-mt-s-1_40/c_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_40/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_40/cregex.obj vc80/libboost_regex-vc80-mt-s-1_40/fileiter.obj vc80/libboost_regex-vc80-mt-s-1_40/icu.obj vc80/libboost_regex-vc80-mt-s-1_40/instances.obj vc80/libboost_regex-vc80-mt-s-1_40/posix_api.obj vc80/libboost_regex-vc80-mt-s-1_40/regex.obj vc80/libboost_regex-vc80-mt-s-1_40/regex_debug.obj vc80/libboost_regex-vc80-mt-s-1_40/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-s-1_40/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-s-1_40/static_mutex.obj vc80/libboost_regex-vc80-mt-s-1_40/usinstances.obj vc80/libboost_regex-vc80-mt-s-1_40/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_40/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_40/wide_posix_api.obj vc80/libboost_regex-vc80-mt-s-1_40/winstances.obj + link -lib /nologo /out:vc80/libboost_regex-vc80-mt-s-1_40.lib $(XSFLAGS) vc80/libboost_regex-vc80-mt-s-1_40/c_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_40/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_40/cregex.obj vc80/libboost_regex-vc80-mt-s-1_40/fileiter.obj vc80/libboost_regex-vc80-mt-s-1_40/icu.obj vc80/libboost_regex-vc80-mt-s-1_40/instances.obj vc80/libboost_regex-vc80-mt-s-1_40/posix_api.obj vc80/libboost_regex-vc80-mt-s-1_40/regex.obj vc80/libboost_regex-vc80-mt-s-1_40/regex_debug.obj vc80/libboost_regex-vc80-mt-s-1_40/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-s-1_40/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-s-1_40/static_mutex.obj vc80/libboost_regex-vc80-mt-s-1_40/usinstances.obj vc80/libboost_regex-vc80-mt-s-1_40/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_40/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-s-1_40/wide_posix_api.obj vc80/libboost_regex-vc80-mt-s-1_40/winstances.obj ######################################################## # -# section for libboost_regex-vc80-mt-sgd-1_38.lib +# section for libboost_regex-vc80-mt-sgd-1_40.lib # ######################################################## -vc80/libboost_regex-vc80-mt-sgd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_38.pdb ../src/c_regex_traits.cpp +vc80/libboost_regex-vc80-mt-sgd-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_40.pdb ../src/c_regex_traits.cpp -vc80/libboost_regex-vc80-mt-sgd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_38.pdb ../src/cpp_regex_traits.cpp +vc80/libboost_regex-vc80-mt-sgd-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_40.pdb ../src/cpp_regex_traits.cpp -vc80/libboost_regex-vc80-mt-sgd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_38.pdb ../src/cregex.cpp +vc80/libboost_regex-vc80-mt-sgd-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_40.pdb ../src/cregex.cpp -vc80/libboost_regex-vc80-mt-sgd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_38.pdb ../src/fileiter.cpp +vc80/libboost_regex-vc80-mt-sgd-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_40.pdb ../src/fileiter.cpp -vc80/libboost_regex-vc80-mt-sgd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_38.pdb ../src/icu.cpp +vc80/libboost_regex-vc80-mt-sgd-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_40.pdb ../src/icu.cpp -vc80/libboost_regex-vc80-mt-sgd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_38.pdb ../src/instances.cpp +vc80/libboost_regex-vc80-mt-sgd-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_40.pdb ../src/instances.cpp -vc80/libboost_regex-vc80-mt-sgd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_38.pdb ../src/posix_api.cpp +vc80/libboost_regex-vc80-mt-sgd-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_40.pdb ../src/posix_api.cpp -vc80/libboost_regex-vc80-mt-sgd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_38.pdb ../src/regex.cpp +vc80/libboost_regex-vc80-mt-sgd-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_40.pdb ../src/regex.cpp -vc80/libboost_regex-vc80-mt-sgd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_38.pdb ../src/regex_debug.cpp +vc80/libboost_regex-vc80-mt-sgd-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_40.pdb ../src/regex_debug.cpp -vc80/libboost_regex-vc80-mt-sgd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_38.pdb ../src/regex_raw_buffer.cpp +vc80/libboost_regex-vc80-mt-sgd-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_40.pdb ../src/regex_raw_buffer.cpp -vc80/libboost_regex-vc80-mt-sgd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_38.pdb ../src/regex_traits_defaults.cpp +vc80/libboost_regex-vc80-mt-sgd-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_40.pdb ../src/regex_traits_defaults.cpp -vc80/libboost_regex-vc80-mt-sgd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_38.pdb ../src/static_mutex.cpp +vc80/libboost_regex-vc80-mt-sgd-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_40.pdb ../src/static_mutex.cpp -vc80/libboost_regex-vc80-mt-sgd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_38.pdb ../src/usinstances.cpp +vc80/libboost_regex-vc80-mt-sgd-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_40.pdb ../src/usinstances.cpp -vc80/libboost_regex-vc80-mt-sgd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_38.pdb ../src/w32_regex_traits.cpp +vc80/libboost_regex-vc80-mt-sgd-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_40.pdb ../src/w32_regex_traits.cpp -vc80/libboost_regex-vc80-mt-sgd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_38.pdb ../src/wc_regex_traits.cpp +vc80/libboost_regex-vc80-mt-sgd-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_40.pdb ../src/wc_regex_traits.cpp -vc80/libboost_regex-vc80-mt-sgd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_38.pdb ../src/wide_posix_api.cpp +vc80/libboost_regex-vc80-mt-sgd-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_40.pdb ../src/wide_posix_api.cpp -vc80/libboost_regex-vc80-mt-sgd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_38.pdb ../src/winstances.cpp +vc80/libboost_regex-vc80-mt-sgd-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-sgd-1_40.pdb ../src/winstances.cpp -libboost_regex-vc80-mt-sgd-1_38_dir : - @if not exist "vc80\libboost_regex-vc80-mt-sgd-1_38\$(NULL)" mkdir vc80\libboost_regex-vc80-mt-sgd-1_38 +libboost_regex-vc80-mt-sgd-1_40_dir : + @if not exist "vc80\libboost_regex-vc80-mt-sgd-1_40\$(NULL)" mkdir vc80\libboost_regex-vc80-mt-sgd-1_40 -libboost_regex-vc80-mt-sgd-1_38_clean : - del vc80\libboost_regex-vc80-mt-sgd-1_38\*.obj - del vc80\libboost_regex-vc80-mt-sgd-1_38\*.idb - del vc80\libboost_regex-vc80-mt-sgd-1_38\*.exp - del vc80\libboost_regex-vc80-mt-sgd-1_38\*.pch +libboost_regex-vc80-mt-sgd-1_40_clean : + del vc80\libboost_regex-vc80-mt-sgd-1_40\*.obj + del vc80\libboost_regex-vc80-mt-sgd-1_40\*.idb + del vc80\libboost_regex-vc80-mt-sgd-1_40\*.exp + del vc80\libboost_regex-vc80-mt-sgd-1_40\*.pch -./vc80/libboost_regex-vc80-mt-sgd-1_38.lib : vc80/libboost_regex-vc80-mt-sgd-1_38/c_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_38/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_38/cregex.obj vc80/libboost_regex-vc80-mt-sgd-1_38/fileiter.obj vc80/libboost_regex-vc80-mt-sgd-1_38/icu.obj vc80/libboost_regex-vc80-mt-sgd-1_38/instances.obj vc80/libboost_regex-vc80-mt-sgd-1_38/posix_api.obj vc80/libboost_regex-vc80-mt-sgd-1_38/regex.obj vc80/libboost_regex-vc80-mt-sgd-1_38/regex_debug.obj vc80/libboost_regex-vc80-mt-sgd-1_38/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-sgd-1_38/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-sgd-1_38/static_mutex.obj vc80/libboost_regex-vc80-mt-sgd-1_38/usinstances.obj vc80/libboost_regex-vc80-mt-sgd-1_38/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_38/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_38/wide_posix_api.obj vc80/libboost_regex-vc80-mt-sgd-1_38/winstances.obj - link -lib /nologo /out:vc80/libboost_regex-vc80-mt-sgd-1_38.lib $(XSFLAGS) vc80/libboost_regex-vc80-mt-sgd-1_38/c_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_38/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_38/cregex.obj vc80/libboost_regex-vc80-mt-sgd-1_38/fileiter.obj vc80/libboost_regex-vc80-mt-sgd-1_38/icu.obj vc80/libboost_regex-vc80-mt-sgd-1_38/instances.obj vc80/libboost_regex-vc80-mt-sgd-1_38/posix_api.obj vc80/libboost_regex-vc80-mt-sgd-1_38/regex.obj vc80/libboost_regex-vc80-mt-sgd-1_38/regex_debug.obj vc80/libboost_regex-vc80-mt-sgd-1_38/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-sgd-1_38/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-sgd-1_38/static_mutex.obj vc80/libboost_regex-vc80-mt-sgd-1_38/usinstances.obj vc80/libboost_regex-vc80-mt-sgd-1_38/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_38/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_38/wide_posix_api.obj vc80/libboost_regex-vc80-mt-sgd-1_38/winstances.obj +./vc80/libboost_regex-vc80-mt-sgd-1_40.lib : vc80/libboost_regex-vc80-mt-sgd-1_40/c_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_40/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_40/cregex.obj vc80/libboost_regex-vc80-mt-sgd-1_40/fileiter.obj vc80/libboost_regex-vc80-mt-sgd-1_40/icu.obj vc80/libboost_regex-vc80-mt-sgd-1_40/instances.obj vc80/libboost_regex-vc80-mt-sgd-1_40/posix_api.obj vc80/libboost_regex-vc80-mt-sgd-1_40/regex.obj vc80/libboost_regex-vc80-mt-sgd-1_40/regex_debug.obj vc80/libboost_regex-vc80-mt-sgd-1_40/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-sgd-1_40/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-sgd-1_40/static_mutex.obj vc80/libboost_regex-vc80-mt-sgd-1_40/usinstances.obj vc80/libboost_regex-vc80-mt-sgd-1_40/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_40/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_40/wide_posix_api.obj vc80/libboost_regex-vc80-mt-sgd-1_40/winstances.obj + link -lib /nologo /out:vc80/libboost_regex-vc80-mt-sgd-1_40.lib $(XSFLAGS) vc80/libboost_regex-vc80-mt-sgd-1_40/c_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_40/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_40/cregex.obj vc80/libboost_regex-vc80-mt-sgd-1_40/fileiter.obj vc80/libboost_regex-vc80-mt-sgd-1_40/icu.obj vc80/libboost_regex-vc80-mt-sgd-1_40/instances.obj vc80/libboost_regex-vc80-mt-sgd-1_40/posix_api.obj vc80/libboost_regex-vc80-mt-sgd-1_40/regex.obj vc80/libboost_regex-vc80-mt-sgd-1_40/regex_debug.obj vc80/libboost_regex-vc80-mt-sgd-1_40/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-sgd-1_40/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-sgd-1_40/static_mutex.obj vc80/libboost_regex-vc80-mt-sgd-1_40/usinstances.obj vc80/libboost_regex-vc80-mt-sgd-1_40/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_40/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-sgd-1_40/wide_posix_api.obj vc80/libboost_regex-vc80-mt-sgd-1_40/winstances.obj ######################################################## # -# section for boost_regex-vc80-mt-gd-1_38.lib +# section for boost_regex-vc80-mt-gd-1_40.lib # ######################################################## -vc80/boost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-gd-1_38.pdb ../src/c_regex_traits.cpp +vc80/boost_regex-vc80-mt-gd-1_40/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_40/ -Fdvc80/boost_regex-vc80-mt-gd-1_40.pdb ../src/c_regex_traits.cpp -vc80/boost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-gd-1_38.pdb ../src/cpp_regex_traits.cpp +vc80/boost_regex-vc80-mt-gd-1_40/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_40/ -Fdvc80/boost_regex-vc80-mt-gd-1_40.pdb ../src/cpp_regex_traits.cpp -vc80/boost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-gd-1_38.pdb ../src/cregex.cpp +vc80/boost_regex-vc80-mt-gd-1_40/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_40/ -Fdvc80/boost_regex-vc80-mt-gd-1_40.pdb ../src/cregex.cpp -vc80/boost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-gd-1_38.pdb ../src/fileiter.cpp +vc80/boost_regex-vc80-mt-gd-1_40/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_40/ -Fdvc80/boost_regex-vc80-mt-gd-1_40.pdb ../src/fileiter.cpp -vc80/boost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-gd-1_38.pdb ../src/icu.cpp +vc80/boost_regex-vc80-mt-gd-1_40/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_40/ -Fdvc80/boost_regex-vc80-mt-gd-1_40.pdb ../src/icu.cpp -vc80/boost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-gd-1_38.pdb ../src/instances.cpp +vc80/boost_regex-vc80-mt-gd-1_40/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_40/ -Fdvc80/boost_regex-vc80-mt-gd-1_40.pdb ../src/instances.cpp -vc80/boost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-gd-1_38.pdb ../src/posix_api.cpp +vc80/boost_regex-vc80-mt-gd-1_40/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_40/ -Fdvc80/boost_regex-vc80-mt-gd-1_40.pdb ../src/posix_api.cpp -vc80/boost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-gd-1_38.pdb ../src/regex.cpp +vc80/boost_regex-vc80-mt-gd-1_40/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_40/ -Fdvc80/boost_regex-vc80-mt-gd-1_40.pdb ../src/regex.cpp -vc80/boost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-gd-1_38.pdb ../src/regex_debug.cpp +vc80/boost_regex-vc80-mt-gd-1_40/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_40/ -Fdvc80/boost_regex-vc80-mt-gd-1_40.pdb ../src/regex_debug.cpp -vc80/boost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-gd-1_38.pdb ../src/regex_raw_buffer.cpp +vc80/boost_regex-vc80-mt-gd-1_40/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_40/ -Fdvc80/boost_regex-vc80-mt-gd-1_40.pdb ../src/regex_raw_buffer.cpp -vc80/boost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-gd-1_38.pdb ../src/regex_traits_defaults.cpp +vc80/boost_regex-vc80-mt-gd-1_40/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_40/ -Fdvc80/boost_regex-vc80-mt-gd-1_40.pdb ../src/regex_traits_defaults.cpp -vc80/boost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-gd-1_38.pdb ../src/static_mutex.cpp +vc80/boost_regex-vc80-mt-gd-1_40/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_40/ -Fdvc80/boost_regex-vc80-mt-gd-1_40.pdb ../src/static_mutex.cpp -vc80/boost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-gd-1_38.pdb ../src/usinstances.cpp +vc80/boost_regex-vc80-mt-gd-1_40/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_40/ -Fdvc80/boost_regex-vc80-mt-gd-1_40.pdb ../src/usinstances.cpp -vc80/boost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-gd-1_38.pdb ../src/w32_regex_traits.cpp +vc80/boost_regex-vc80-mt-gd-1_40/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_40/ -Fdvc80/boost_regex-vc80-mt-gd-1_40.pdb ../src/w32_regex_traits.cpp -vc80/boost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-gd-1_38.pdb ../src/wc_regex_traits.cpp +vc80/boost_regex-vc80-mt-gd-1_40/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_40/ -Fdvc80/boost_regex-vc80-mt-gd-1_40.pdb ../src/wc_regex_traits.cpp -vc80/boost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-gd-1_38.pdb ../src/wide_posix_api.cpp +vc80/boost_regex-vc80-mt-gd-1_40/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_40/ -Fdvc80/boost_regex-vc80-mt-gd-1_40.pdb ../src/wide_posix_api.cpp -vc80/boost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-gd-1_38.pdb ../src/winstances.cpp +vc80/boost_regex-vc80-mt-gd-1_40/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_40/ -Fdvc80/boost_regex-vc80-mt-gd-1_40.pdb ../src/winstances.cpp -boost_regex-vc80-mt-gd-1_38_dir : - @if not exist "vc80\boost_regex-vc80-mt-gd-1_38\$(NULL)" mkdir vc80\boost_regex-vc80-mt-gd-1_38 +boost_regex-vc80-mt-gd-1_40_dir : + @if not exist "vc80\boost_regex-vc80-mt-gd-1_40\$(NULL)" mkdir vc80\boost_regex-vc80-mt-gd-1_40 -boost_regex-vc80-mt-gd-1_38_clean : - del vc80\boost_regex-vc80-mt-gd-1_38\*.obj - del vc80\boost_regex-vc80-mt-gd-1_38\*.idb - del vc80\boost_regex-vc80-mt-gd-1_38\*.exp - del vc80\boost_regex-vc80-mt-gd-1_38\*.pch +boost_regex-vc80-mt-gd-1_40_clean : + del vc80\boost_regex-vc80-mt-gd-1_40\*.obj + del vc80\boost_regex-vc80-mt-gd-1_40\*.idb + del vc80\boost_regex-vc80-mt-gd-1_40\*.exp + del vc80\boost_regex-vc80-mt-gd-1_40\*.pch -./vc80/boost_regex-vc80-mt-gd-1_38.lib : vc80/boost_regex-vc80-mt-gd-1_38/c_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_38/cpp_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_38/cregex.obj vc80/boost_regex-vc80-mt-gd-1_38/fileiter.obj vc80/boost_regex-vc80-mt-gd-1_38/icu.obj vc80/boost_regex-vc80-mt-gd-1_38/instances.obj vc80/boost_regex-vc80-mt-gd-1_38/posix_api.obj vc80/boost_regex-vc80-mt-gd-1_38/regex.obj vc80/boost_regex-vc80-mt-gd-1_38/regex_debug.obj vc80/boost_regex-vc80-mt-gd-1_38/regex_raw_buffer.obj vc80/boost_regex-vc80-mt-gd-1_38/regex_traits_defaults.obj vc80/boost_regex-vc80-mt-gd-1_38/static_mutex.obj vc80/boost_regex-vc80-mt-gd-1_38/usinstances.obj vc80/boost_regex-vc80-mt-gd-1_38/w32_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_38/wc_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_38/wide_posix_api.obj vc80/boost_regex-vc80-mt-gd-1_38/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_38.pdb" /debug /machine:I386 /out:"vc80/boost_regex-vc80-mt-gd-1_38.dll" /implib:"vc80/boost_regex-vc80-mt-gd-1_38.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc80/boost_regex-vc80-mt-gd-1_38/c_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_38/cpp_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_38/cregex.obj vc80/boost_regex-vc80-mt-gd-1_38/fileiter.obj vc80/boost_regex-vc80-mt-gd-1_38/icu.obj vc80/boost_regex-vc80-mt-gd-1_38/instances.obj vc80/boost_regex-vc80-mt-gd-1_38/posix_api.obj vc80/boost_regex-vc80-mt-gd-1_38/regex.obj vc80/boost_regex-vc80-mt-gd-1_38/regex_debug.obj vc80/boost_regex-vc80-mt-gd-1_38/regex_raw_buffer.obj vc80/boost_regex-vc80-mt-gd-1_38/regex_traits_defaults.obj vc80/boost_regex-vc80-mt-gd-1_38/static_mutex.obj vc80/boost_regex-vc80-mt-gd-1_38/usinstances.obj vc80/boost_regex-vc80-mt-gd-1_38/w32_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_38/wc_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_38/wide_posix_api.obj vc80/boost_regex-vc80-mt-gd-1_38/winstances.obj +./vc80/boost_regex-vc80-mt-gd-1_40.lib : vc80/boost_regex-vc80-mt-gd-1_40/c_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_40/cpp_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_40/cregex.obj vc80/boost_regex-vc80-mt-gd-1_40/fileiter.obj vc80/boost_regex-vc80-mt-gd-1_40/icu.obj vc80/boost_regex-vc80-mt-gd-1_40/instances.obj vc80/boost_regex-vc80-mt-gd-1_40/posix_api.obj vc80/boost_regex-vc80-mt-gd-1_40/regex.obj vc80/boost_regex-vc80-mt-gd-1_40/regex_debug.obj vc80/boost_regex-vc80-mt-gd-1_40/regex_raw_buffer.obj vc80/boost_regex-vc80-mt-gd-1_40/regex_traits_defaults.obj vc80/boost_regex-vc80-mt-gd-1_40/static_mutex.obj vc80/boost_regex-vc80-mt-gd-1_40/usinstances.obj vc80/boost_regex-vc80-mt-gd-1_40/w32_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_40/wc_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_40/wide_posix_api.obj vc80/boost_regex-vc80-mt-gd-1_40/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_40.pdb" /debug /machine:I386 /out:"vc80/boost_regex-vc80-mt-gd-1_40.dll" /implib:"vc80/boost_regex-vc80-mt-gd-1_40.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc80/boost_regex-vc80-mt-gd-1_40/c_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_40/cpp_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_40/cregex.obj vc80/boost_regex-vc80-mt-gd-1_40/fileiter.obj vc80/boost_regex-vc80-mt-gd-1_40/icu.obj vc80/boost_regex-vc80-mt-gd-1_40/instances.obj vc80/boost_regex-vc80-mt-gd-1_40/posix_api.obj vc80/boost_regex-vc80-mt-gd-1_40/regex.obj vc80/boost_regex-vc80-mt-gd-1_40/regex_debug.obj vc80/boost_regex-vc80-mt-gd-1_40/regex_raw_buffer.obj vc80/boost_regex-vc80-mt-gd-1_40/regex_traits_defaults.obj vc80/boost_regex-vc80-mt-gd-1_40/static_mutex.obj vc80/boost_regex-vc80-mt-gd-1_40/usinstances.obj vc80/boost_regex-vc80-mt-gd-1_40/w32_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_40/wc_regex_traits.obj vc80/boost_regex-vc80-mt-gd-1_40/wide_posix_api.obj vc80/boost_regex-vc80-mt-gd-1_40/winstances.obj ######################################################## # -# section for boost_regex-vc80-mt-1_38.lib +# section for boost_regex-vc80-mt-1_40.lib # ######################################################## -vc80/boost_regex-vc80-mt-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-1_38.pdb ../src/c_regex_traits.cpp +vc80/boost_regex-vc80-mt-1_40/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_40/ -Fdvc80/boost_regex-vc80-mt-1_40.pdb ../src/c_regex_traits.cpp -vc80/boost_regex-vc80-mt-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-1_38.pdb ../src/cpp_regex_traits.cpp +vc80/boost_regex-vc80-mt-1_40/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_40/ -Fdvc80/boost_regex-vc80-mt-1_40.pdb ../src/cpp_regex_traits.cpp -vc80/boost_regex-vc80-mt-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-1_38.pdb ../src/cregex.cpp +vc80/boost_regex-vc80-mt-1_40/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_40/ -Fdvc80/boost_regex-vc80-mt-1_40.pdb ../src/cregex.cpp -vc80/boost_regex-vc80-mt-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-1_38.pdb ../src/fileiter.cpp +vc80/boost_regex-vc80-mt-1_40/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_40/ -Fdvc80/boost_regex-vc80-mt-1_40.pdb ../src/fileiter.cpp -vc80/boost_regex-vc80-mt-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-1_38.pdb ../src/icu.cpp +vc80/boost_regex-vc80-mt-1_40/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_40/ -Fdvc80/boost_regex-vc80-mt-1_40.pdb ../src/icu.cpp -vc80/boost_regex-vc80-mt-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-1_38.pdb ../src/instances.cpp +vc80/boost_regex-vc80-mt-1_40/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_40/ -Fdvc80/boost_regex-vc80-mt-1_40.pdb ../src/instances.cpp -vc80/boost_regex-vc80-mt-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-1_38.pdb ../src/posix_api.cpp +vc80/boost_regex-vc80-mt-1_40/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_40/ -Fdvc80/boost_regex-vc80-mt-1_40.pdb ../src/posix_api.cpp -vc80/boost_regex-vc80-mt-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-1_38.pdb ../src/regex.cpp +vc80/boost_regex-vc80-mt-1_40/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_40/ -Fdvc80/boost_regex-vc80-mt-1_40.pdb ../src/regex.cpp -vc80/boost_regex-vc80-mt-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-1_38.pdb ../src/regex_debug.cpp +vc80/boost_regex-vc80-mt-1_40/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_40/ -Fdvc80/boost_regex-vc80-mt-1_40.pdb ../src/regex_debug.cpp -vc80/boost_regex-vc80-mt-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-1_38.pdb ../src/regex_raw_buffer.cpp +vc80/boost_regex-vc80-mt-1_40/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_40/ -Fdvc80/boost_regex-vc80-mt-1_40.pdb ../src/regex_raw_buffer.cpp -vc80/boost_regex-vc80-mt-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-1_38.pdb ../src/regex_traits_defaults.cpp +vc80/boost_regex-vc80-mt-1_40/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_40/ -Fdvc80/boost_regex-vc80-mt-1_40.pdb ../src/regex_traits_defaults.cpp -vc80/boost_regex-vc80-mt-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-1_38.pdb ../src/static_mutex.cpp +vc80/boost_regex-vc80-mt-1_40/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_40/ -Fdvc80/boost_regex-vc80-mt-1_40.pdb ../src/static_mutex.cpp -vc80/boost_regex-vc80-mt-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-1_38.pdb ../src/usinstances.cpp +vc80/boost_regex-vc80-mt-1_40/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_40/ -Fdvc80/boost_regex-vc80-mt-1_40.pdb ../src/usinstances.cpp -vc80/boost_regex-vc80-mt-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-1_38.pdb ../src/w32_regex_traits.cpp +vc80/boost_regex-vc80-mt-1_40/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_40/ -Fdvc80/boost_regex-vc80-mt-1_40.pdb ../src/w32_regex_traits.cpp -vc80/boost_regex-vc80-mt-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-1_38.pdb ../src/wc_regex_traits.cpp +vc80/boost_regex-vc80-mt-1_40/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_40/ -Fdvc80/boost_regex-vc80-mt-1_40.pdb ../src/wc_regex_traits.cpp -vc80/boost_regex-vc80-mt-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-1_38.pdb ../src/wide_posix_api.cpp +vc80/boost_regex-vc80-mt-1_40/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_40/ -Fdvc80/boost_regex-vc80-mt-1_40.pdb ../src/wide_posix_api.cpp -vc80/boost_regex-vc80-mt-1_38/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_38/ -Fdvc80/boost_regex-vc80-mt-1_38.pdb ../src/winstances.cpp +vc80/boost_regex-vc80-mt-1_40/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_40/ -Fdvc80/boost_regex-vc80-mt-1_40.pdb ../src/winstances.cpp -boost_regex-vc80-mt-1_38_dir : - @if not exist "vc80\boost_regex-vc80-mt-1_38\$(NULL)" mkdir vc80\boost_regex-vc80-mt-1_38 +boost_regex-vc80-mt-1_40_dir : + @if not exist "vc80\boost_regex-vc80-mt-1_40\$(NULL)" mkdir vc80\boost_regex-vc80-mt-1_40 -boost_regex-vc80-mt-1_38_clean : - del vc80\boost_regex-vc80-mt-1_38\*.obj - del vc80\boost_regex-vc80-mt-1_38\*.idb - del vc80\boost_regex-vc80-mt-1_38\*.exp - del vc80\boost_regex-vc80-mt-1_38\*.pch +boost_regex-vc80-mt-1_40_clean : + del vc80\boost_regex-vc80-mt-1_40\*.obj + del vc80\boost_regex-vc80-mt-1_40\*.idb + del vc80\boost_regex-vc80-mt-1_40\*.exp + del vc80\boost_regex-vc80-mt-1_40\*.pch -./vc80/boost_regex-vc80-mt-1_38.lib : vc80/boost_regex-vc80-mt-1_38/c_regex_traits.obj vc80/boost_regex-vc80-mt-1_38/cpp_regex_traits.obj vc80/boost_regex-vc80-mt-1_38/cregex.obj vc80/boost_regex-vc80-mt-1_38/fileiter.obj vc80/boost_regex-vc80-mt-1_38/icu.obj vc80/boost_regex-vc80-mt-1_38/instances.obj vc80/boost_regex-vc80-mt-1_38/posix_api.obj vc80/boost_regex-vc80-mt-1_38/regex.obj vc80/boost_regex-vc80-mt-1_38/regex_debug.obj vc80/boost_regex-vc80-mt-1_38/regex_raw_buffer.obj vc80/boost_regex-vc80-mt-1_38/regex_traits_defaults.obj vc80/boost_regex-vc80-mt-1_38/static_mutex.obj vc80/boost_regex-vc80-mt-1_38/usinstances.obj vc80/boost_regex-vc80-mt-1_38/w32_regex_traits.obj vc80/boost_regex-vc80-mt-1_38/wc_regex_traits.obj vc80/boost_regex-vc80-mt-1_38/wide_posix_api.obj vc80/boost_regex-vc80-mt-1_38/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_38.pdb" /debug /machine:I386 /out:"vc80/boost_regex-vc80-mt-1_38.dll" /implib:"vc80/boost_regex-vc80-mt-1_38.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc80/boost_regex-vc80-mt-1_38/c_regex_traits.obj vc80/boost_regex-vc80-mt-1_38/cpp_regex_traits.obj vc80/boost_regex-vc80-mt-1_38/cregex.obj vc80/boost_regex-vc80-mt-1_38/fileiter.obj vc80/boost_regex-vc80-mt-1_38/icu.obj vc80/boost_regex-vc80-mt-1_38/instances.obj vc80/boost_regex-vc80-mt-1_38/posix_api.obj vc80/boost_regex-vc80-mt-1_38/regex.obj vc80/boost_regex-vc80-mt-1_38/regex_debug.obj vc80/boost_regex-vc80-mt-1_38/regex_raw_buffer.obj vc80/boost_regex-vc80-mt-1_38/regex_traits_defaults.obj vc80/boost_regex-vc80-mt-1_38/static_mutex.obj vc80/boost_regex-vc80-mt-1_38/usinstances.obj vc80/boost_regex-vc80-mt-1_38/w32_regex_traits.obj vc80/boost_regex-vc80-mt-1_38/wc_regex_traits.obj vc80/boost_regex-vc80-mt-1_38/wide_posix_api.obj vc80/boost_regex-vc80-mt-1_38/winstances.obj +./vc80/boost_regex-vc80-mt-1_40.lib : vc80/boost_regex-vc80-mt-1_40/c_regex_traits.obj vc80/boost_regex-vc80-mt-1_40/cpp_regex_traits.obj vc80/boost_regex-vc80-mt-1_40/cregex.obj vc80/boost_regex-vc80-mt-1_40/fileiter.obj vc80/boost_regex-vc80-mt-1_40/icu.obj vc80/boost_regex-vc80-mt-1_40/instances.obj vc80/boost_regex-vc80-mt-1_40/posix_api.obj vc80/boost_regex-vc80-mt-1_40/regex.obj vc80/boost_regex-vc80-mt-1_40/regex_debug.obj vc80/boost_regex-vc80-mt-1_40/regex_raw_buffer.obj vc80/boost_regex-vc80-mt-1_40/regex_traits_defaults.obj vc80/boost_regex-vc80-mt-1_40/static_mutex.obj vc80/boost_regex-vc80-mt-1_40/usinstances.obj vc80/boost_regex-vc80-mt-1_40/w32_regex_traits.obj vc80/boost_regex-vc80-mt-1_40/wc_regex_traits.obj vc80/boost_regex-vc80-mt-1_40/wide_posix_api.obj vc80/boost_regex-vc80-mt-1_40/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_40.pdb" /debug /machine:I386 /out:"vc80/boost_regex-vc80-mt-1_40.dll" /implib:"vc80/boost_regex-vc80-mt-1_40.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc80/boost_regex-vc80-mt-1_40/c_regex_traits.obj vc80/boost_regex-vc80-mt-1_40/cpp_regex_traits.obj vc80/boost_regex-vc80-mt-1_40/cregex.obj vc80/boost_regex-vc80-mt-1_40/fileiter.obj vc80/boost_regex-vc80-mt-1_40/icu.obj vc80/boost_regex-vc80-mt-1_40/instances.obj vc80/boost_regex-vc80-mt-1_40/posix_api.obj vc80/boost_regex-vc80-mt-1_40/regex.obj vc80/boost_regex-vc80-mt-1_40/regex_debug.obj vc80/boost_regex-vc80-mt-1_40/regex_raw_buffer.obj vc80/boost_regex-vc80-mt-1_40/regex_traits_defaults.obj vc80/boost_regex-vc80-mt-1_40/static_mutex.obj vc80/boost_regex-vc80-mt-1_40/usinstances.obj vc80/boost_regex-vc80-mt-1_40/w32_regex_traits.obj vc80/boost_regex-vc80-mt-1_40/wc_regex_traits.obj vc80/boost_regex-vc80-mt-1_40/wide_posix_api.obj vc80/boost_regex-vc80-mt-1_40/winstances.obj ######################################################## # -# section for libboost_regex-vc80-mt-1_38.lib +# section for libboost_regex-vc80-mt-1_40.lib # ######################################################## -vc80/libboost_regex-vc80-mt-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-1_38.pdb ../src/c_regex_traits.cpp +vc80/libboost_regex-vc80-mt-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-1_40.pdb ../src/c_regex_traits.cpp -vc80/libboost_regex-vc80-mt-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-1_38.pdb ../src/cpp_regex_traits.cpp +vc80/libboost_regex-vc80-mt-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-1_40.pdb ../src/cpp_regex_traits.cpp -vc80/libboost_regex-vc80-mt-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-1_38.pdb ../src/cregex.cpp +vc80/libboost_regex-vc80-mt-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-1_40.pdb ../src/cregex.cpp -vc80/libboost_regex-vc80-mt-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-1_38.pdb ../src/fileiter.cpp +vc80/libboost_regex-vc80-mt-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-1_40.pdb ../src/fileiter.cpp -vc80/libboost_regex-vc80-mt-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-1_38.pdb ../src/icu.cpp +vc80/libboost_regex-vc80-mt-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-1_40.pdb ../src/icu.cpp -vc80/libboost_regex-vc80-mt-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-1_38.pdb ../src/instances.cpp +vc80/libboost_regex-vc80-mt-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-1_40.pdb ../src/instances.cpp -vc80/libboost_regex-vc80-mt-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-1_38.pdb ../src/posix_api.cpp +vc80/libboost_regex-vc80-mt-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-1_40.pdb ../src/posix_api.cpp -vc80/libboost_regex-vc80-mt-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-1_38.pdb ../src/regex.cpp +vc80/libboost_regex-vc80-mt-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-1_40.pdb ../src/regex.cpp -vc80/libboost_regex-vc80-mt-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-1_38.pdb ../src/regex_debug.cpp +vc80/libboost_regex-vc80-mt-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-1_40.pdb ../src/regex_debug.cpp -vc80/libboost_regex-vc80-mt-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-1_38.pdb ../src/regex_raw_buffer.cpp +vc80/libboost_regex-vc80-mt-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-1_40.pdb ../src/regex_raw_buffer.cpp -vc80/libboost_regex-vc80-mt-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-1_38.pdb ../src/regex_traits_defaults.cpp +vc80/libboost_regex-vc80-mt-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-1_40.pdb ../src/regex_traits_defaults.cpp -vc80/libboost_regex-vc80-mt-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-1_38.pdb ../src/static_mutex.cpp +vc80/libboost_regex-vc80-mt-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-1_40.pdb ../src/static_mutex.cpp -vc80/libboost_regex-vc80-mt-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-1_38.pdb ../src/usinstances.cpp +vc80/libboost_regex-vc80-mt-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-1_40.pdb ../src/usinstances.cpp -vc80/libboost_regex-vc80-mt-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-1_38.pdb ../src/w32_regex_traits.cpp +vc80/libboost_regex-vc80-mt-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-1_40.pdb ../src/w32_regex_traits.cpp -vc80/libboost_regex-vc80-mt-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-1_38.pdb ../src/wc_regex_traits.cpp +vc80/libboost_regex-vc80-mt-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-1_40.pdb ../src/wc_regex_traits.cpp -vc80/libboost_regex-vc80-mt-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-1_38.pdb ../src/wide_posix_api.cpp +vc80/libboost_regex-vc80-mt-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-1_40.pdb ../src/wide_posix_api.cpp -vc80/libboost_regex-vc80-mt-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-1_38.pdb ../src/winstances.cpp +vc80/libboost_regex-vc80-mt-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-1_40.pdb ../src/winstances.cpp -libboost_regex-vc80-mt-1_38_dir : - @if not exist "vc80\libboost_regex-vc80-mt-1_38\$(NULL)" mkdir vc80\libboost_regex-vc80-mt-1_38 +libboost_regex-vc80-mt-1_40_dir : + @if not exist "vc80\libboost_regex-vc80-mt-1_40\$(NULL)" mkdir vc80\libboost_regex-vc80-mt-1_40 -libboost_regex-vc80-mt-1_38_clean : - del vc80\libboost_regex-vc80-mt-1_38\*.obj - del vc80\libboost_regex-vc80-mt-1_38\*.idb - del vc80\libboost_regex-vc80-mt-1_38\*.exp - del vc80\libboost_regex-vc80-mt-1_38\*.pch +libboost_regex-vc80-mt-1_40_clean : + del vc80\libboost_regex-vc80-mt-1_40\*.obj + del vc80\libboost_regex-vc80-mt-1_40\*.idb + del vc80\libboost_regex-vc80-mt-1_40\*.exp + del vc80\libboost_regex-vc80-mt-1_40\*.pch -./vc80/libboost_regex-vc80-mt-1_38.lib : vc80/libboost_regex-vc80-mt-1_38/c_regex_traits.obj vc80/libboost_regex-vc80-mt-1_38/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-1_38/cregex.obj vc80/libboost_regex-vc80-mt-1_38/fileiter.obj vc80/libboost_regex-vc80-mt-1_38/icu.obj vc80/libboost_regex-vc80-mt-1_38/instances.obj vc80/libboost_regex-vc80-mt-1_38/posix_api.obj vc80/libboost_regex-vc80-mt-1_38/regex.obj vc80/libboost_regex-vc80-mt-1_38/regex_debug.obj vc80/libboost_regex-vc80-mt-1_38/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-1_38/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-1_38/static_mutex.obj vc80/libboost_regex-vc80-mt-1_38/usinstances.obj vc80/libboost_regex-vc80-mt-1_38/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-1_38/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-1_38/wide_posix_api.obj vc80/libboost_regex-vc80-mt-1_38/winstances.obj - link -lib /nologo /out:vc80/libboost_regex-vc80-mt-1_38.lib $(XSFLAGS) vc80/libboost_regex-vc80-mt-1_38/c_regex_traits.obj vc80/libboost_regex-vc80-mt-1_38/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-1_38/cregex.obj vc80/libboost_regex-vc80-mt-1_38/fileiter.obj vc80/libboost_regex-vc80-mt-1_38/icu.obj vc80/libboost_regex-vc80-mt-1_38/instances.obj vc80/libboost_regex-vc80-mt-1_38/posix_api.obj vc80/libboost_regex-vc80-mt-1_38/regex.obj vc80/libboost_regex-vc80-mt-1_38/regex_debug.obj vc80/libboost_regex-vc80-mt-1_38/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-1_38/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-1_38/static_mutex.obj vc80/libboost_regex-vc80-mt-1_38/usinstances.obj vc80/libboost_regex-vc80-mt-1_38/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-1_38/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-1_38/wide_posix_api.obj vc80/libboost_regex-vc80-mt-1_38/winstances.obj +./vc80/libboost_regex-vc80-mt-1_40.lib : vc80/libboost_regex-vc80-mt-1_40/c_regex_traits.obj vc80/libboost_regex-vc80-mt-1_40/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-1_40/cregex.obj vc80/libboost_regex-vc80-mt-1_40/fileiter.obj vc80/libboost_regex-vc80-mt-1_40/icu.obj vc80/libboost_regex-vc80-mt-1_40/instances.obj vc80/libboost_regex-vc80-mt-1_40/posix_api.obj vc80/libboost_regex-vc80-mt-1_40/regex.obj vc80/libboost_regex-vc80-mt-1_40/regex_debug.obj vc80/libboost_regex-vc80-mt-1_40/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-1_40/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-1_40/static_mutex.obj vc80/libboost_regex-vc80-mt-1_40/usinstances.obj vc80/libboost_regex-vc80-mt-1_40/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-1_40/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-1_40/wide_posix_api.obj vc80/libboost_regex-vc80-mt-1_40/winstances.obj + link -lib /nologo /out:vc80/libboost_regex-vc80-mt-1_40.lib $(XSFLAGS) vc80/libboost_regex-vc80-mt-1_40/c_regex_traits.obj vc80/libboost_regex-vc80-mt-1_40/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-1_40/cregex.obj vc80/libboost_regex-vc80-mt-1_40/fileiter.obj vc80/libboost_regex-vc80-mt-1_40/icu.obj vc80/libboost_regex-vc80-mt-1_40/instances.obj vc80/libboost_regex-vc80-mt-1_40/posix_api.obj vc80/libboost_regex-vc80-mt-1_40/regex.obj vc80/libboost_regex-vc80-mt-1_40/regex_debug.obj vc80/libboost_regex-vc80-mt-1_40/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-1_40/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-1_40/static_mutex.obj vc80/libboost_regex-vc80-mt-1_40/usinstances.obj vc80/libboost_regex-vc80-mt-1_40/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-1_40/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-1_40/wide_posix_api.obj vc80/libboost_regex-vc80-mt-1_40/winstances.obj ######################################################## # -# section for libboost_regex-vc80-mt-gd-1_38.lib +# section for libboost_regex-vc80-mt-gd-1_40.lib # ######################################################## -vc80/libboost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-gd-1_38.pdb ../src/c_regex_traits.cpp +vc80/libboost_regex-vc80-mt-gd-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-gd-1_40.pdb ../src/c_regex_traits.cpp -vc80/libboost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-gd-1_38.pdb ../src/cpp_regex_traits.cpp +vc80/libboost_regex-vc80-mt-gd-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-gd-1_40.pdb ../src/cpp_regex_traits.cpp -vc80/libboost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-gd-1_38.pdb ../src/cregex.cpp +vc80/libboost_regex-vc80-mt-gd-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-gd-1_40.pdb ../src/cregex.cpp -vc80/libboost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-gd-1_38.pdb ../src/fileiter.cpp +vc80/libboost_regex-vc80-mt-gd-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-gd-1_40.pdb ../src/fileiter.cpp -vc80/libboost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-gd-1_38.pdb ../src/icu.cpp +vc80/libboost_regex-vc80-mt-gd-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-gd-1_40.pdb ../src/icu.cpp -vc80/libboost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-gd-1_38.pdb ../src/instances.cpp +vc80/libboost_regex-vc80-mt-gd-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-gd-1_40.pdb ../src/instances.cpp -vc80/libboost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-gd-1_38.pdb ../src/posix_api.cpp +vc80/libboost_regex-vc80-mt-gd-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-gd-1_40.pdb ../src/posix_api.cpp -vc80/libboost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-gd-1_38.pdb ../src/regex.cpp +vc80/libboost_regex-vc80-mt-gd-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-gd-1_40.pdb ../src/regex.cpp -vc80/libboost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-gd-1_38.pdb ../src/regex_debug.cpp +vc80/libboost_regex-vc80-mt-gd-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-gd-1_40.pdb ../src/regex_debug.cpp -vc80/libboost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-gd-1_38.pdb ../src/regex_raw_buffer.cpp +vc80/libboost_regex-vc80-mt-gd-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-gd-1_40.pdb ../src/regex_raw_buffer.cpp -vc80/libboost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-gd-1_38.pdb ../src/regex_traits_defaults.cpp +vc80/libboost_regex-vc80-mt-gd-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-gd-1_40.pdb ../src/regex_traits_defaults.cpp -vc80/libboost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-gd-1_38.pdb ../src/static_mutex.cpp +vc80/libboost_regex-vc80-mt-gd-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-gd-1_40.pdb ../src/static_mutex.cpp -vc80/libboost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-gd-1_38.pdb ../src/usinstances.cpp +vc80/libboost_regex-vc80-mt-gd-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-gd-1_40.pdb ../src/usinstances.cpp -vc80/libboost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-gd-1_38.pdb ../src/w32_regex_traits.cpp +vc80/libboost_regex-vc80-mt-gd-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-gd-1_40.pdb ../src/w32_regex_traits.cpp -vc80/libboost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-gd-1_38.pdb ../src/wc_regex_traits.cpp +vc80/libboost_regex-vc80-mt-gd-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-gd-1_40.pdb ../src/wc_regex_traits.cpp -vc80/libboost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-gd-1_38.pdb ../src/wide_posix_api.cpp +vc80/libboost_regex-vc80-mt-gd-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-gd-1_40.pdb ../src/wide_posix_api.cpp -vc80/libboost_regex-vc80-mt-gd-1_38/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_38/ -Fdvc80/libboost_regex-vc80-mt-gd-1_38.pdb ../src/winstances.cpp +vc80/libboost_regex-vc80-mt-gd-1_40/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_40/ -Fdvc80/libboost_regex-vc80-mt-gd-1_40.pdb ../src/winstances.cpp -libboost_regex-vc80-mt-gd-1_38_dir : - @if not exist "vc80\libboost_regex-vc80-mt-gd-1_38\$(NULL)" mkdir vc80\libboost_regex-vc80-mt-gd-1_38 +libboost_regex-vc80-mt-gd-1_40_dir : + @if not exist "vc80\libboost_regex-vc80-mt-gd-1_40\$(NULL)" mkdir vc80\libboost_regex-vc80-mt-gd-1_40 -libboost_regex-vc80-mt-gd-1_38_clean : - del vc80\libboost_regex-vc80-mt-gd-1_38\*.obj - del vc80\libboost_regex-vc80-mt-gd-1_38\*.idb - del vc80\libboost_regex-vc80-mt-gd-1_38\*.exp - del vc80\libboost_regex-vc80-mt-gd-1_38\*.pch +libboost_regex-vc80-mt-gd-1_40_clean : + del vc80\libboost_regex-vc80-mt-gd-1_40\*.obj + del vc80\libboost_regex-vc80-mt-gd-1_40\*.idb + del vc80\libboost_regex-vc80-mt-gd-1_40\*.exp + del vc80\libboost_regex-vc80-mt-gd-1_40\*.pch -./vc80/libboost_regex-vc80-mt-gd-1_38.lib : vc80/libboost_regex-vc80-mt-gd-1_38/c_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_38/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_38/cregex.obj vc80/libboost_regex-vc80-mt-gd-1_38/fileiter.obj vc80/libboost_regex-vc80-mt-gd-1_38/icu.obj vc80/libboost_regex-vc80-mt-gd-1_38/instances.obj vc80/libboost_regex-vc80-mt-gd-1_38/posix_api.obj vc80/libboost_regex-vc80-mt-gd-1_38/regex.obj vc80/libboost_regex-vc80-mt-gd-1_38/regex_debug.obj vc80/libboost_regex-vc80-mt-gd-1_38/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-gd-1_38/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-gd-1_38/static_mutex.obj vc80/libboost_regex-vc80-mt-gd-1_38/usinstances.obj vc80/libboost_regex-vc80-mt-gd-1_38/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_38/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_38/wide_posix_api.obj vc80/libboost_regex-vc80-mt-gd-1_38/winstances.obj - link -lib /nologo /out:vc80/libboost_regex-vc80-mt-gd-1_38.lib $(XSFLAGS) vc80/libboost_regex-vc80-mt-gd-1_38/c_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_38/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_38/cregex.obj vc80/libboost_regex-vc80-mt-gd-1_38/fileiter.obj vc80/libboost_regex-vc80-mt-gd-1_38/icu.obj vc80/libboost_regex-vc80-mt-gd-1_38/instances.obj vc80/libboost_regex-vc80-mt-gd-1_38/posix_api.obj vc80/libboost_regex-vc80-mt-gd-1_38/regex.obj vc80/libboost_regex-vc80-mt-gd-1_38/regex_debug.obj vc80/libboost_regex-vc80-mt-gd-1_38/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-gd-1_38/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-gd-1_38/static_mutex.obj vc80/libboost_regex-vc80-mt-gd-1_38/usinstances.obj vc80/libboost_regex-vc80-mt-gd-1_38/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_38/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_38/wide_posix_api.obj vc80/libboost_regex-vc80-mt-gd-1_38/winstances.obj +./vc80/libboost_regex-vc80-mt-gd-1_40.lib : vc80/libboost_regex-vc80-mt-gd-1_40/c_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_40/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_40/cregex.obj vc80/libboost_regex-vc80-mt-gd-1_40/fileiter.obj vc80/libboost_regex-vc80-mt-gd-1_40/icu.obj vc80/libboost_regex-vc80-mt-gd-1_40/instances.obj vc80/libboost_regex-vc80-mt-gd-1_40/posix_api.obj vc80/libboost_regex-vc80-mt-gd-1_40/regex.obj vc80/libboost_regex-vc80-mt-gd-1_40/regex_debug.obj vc80/libboost_regex-vc80-mt-gd-1_40/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-gd-1_40/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-gd-1_40/static_mutex.obj vc80/libboost_regex-vc80-mt-gd-1_40/usinstances.obj vc80/libboost_regex-vc80-mt-gd-1_40/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_40/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_40/wide_posix_api.obj vc80/libboost_regex-vc80-mt-gd-1_40/winstances.obj + link -lib /nologo /out:vc80/libboost_regex-vc80-mt-gd-1_40.lib $(XSFLAGS) vc80/libboost_regex-vc80-mt-gd-1_40/c_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_40/cpp_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_40/cregex.obj vc80/libboost_regex-vc80-mt-gd-1_40/fileiter.obj vc80/libboost_regex-vc80-mt-gd-1_40/icu.obj vc80/libboost_regex-vc80-mt-gd-1_40/instances.obj vc80/libboost_regex-vc80-mt-gd-1_40/posix_api.obj vc80/libboost_regex-vc80-mt-gd-1_40/regex.obj vc80/libboost_regex-vc80-mt-gd-1_40/regex_debug.obj vc80/libboost_regex-vc80-mt-gd-1_40/regex_raw_buffer.obj vc80/libboost_regex-vc80-mt-gd-1_40/regex_traits_defaults.obj vc80/libboost_regex-vc80-mt-gd-1_40/static_mutex.obj vc80/libboost_regex-vc80-mt-gd-1_40/usinstances.obj vc80/libboost_regex-vc80-mt-gd-1_40/w32_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_40/wc_regex_traits.obj vc80/libboost_regex-vc80-mt-gd-1_40/wide_posix_api.obj vc80/libboost_regex-vc80-mt-gd-1_40/winstances.obj diff --git a/build/vc9.mak b/build/vc9.mak index 8d682e0b..e4e7dc22 100644 --- a/build/vc9.mak +++ b/build/vc9.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-vc90-s-1_38_dir ./vc90/libboost_regex-vc90-s-1_38.lib libboost_regex-vc90-mt-s-1_38_dir ./vc90/libboost_regex-vc90-mt-s-1_38.lib libboost_regex-vc90-sgd-1_38_dir ./vc90/libboost_regex-vc90-sgd-1_38.lib libboost_regex-vc90-mt-sgd-1_38_dir ./vc90/libboost_regex-vc90-mt-sgd-1_38.lib boost_regex-vc90-mt-gd-1_38_dir ./vc90/boost_regex-vc90-mt-gd-1_38.lib boost_regex-vc90-mt-1_38_dir ./vc90/boost_regex-vc90-mt-1_38.lib libboost_regex-vc90-mt-1_38_dir ./vc90/libboost_regex-vc90-mt-1_38.lib libboost_regex-vc90-mt-gd-1_38_dir ./vc90/libboost_regex-vc90-mt-gd-1_38.lib +all : main_dir libboost_regex-vc90-s-1_40_dir ./vc90/libboost_regex-vc90-s-1_40.lib libboost_regex-vc90-mt-s-1_40_dir ./vc90/libboost_regex-vc90-mt-s-1_40.lib libboost_regex-vc90-sgd-1_40_dir ./vc90/libboost_regex-vc90-sgd-1_40.lib libboost_regex-vc90-mt-sgd-1_40_dir ./vc90/libboost_regex-vc90-mt-sgd-1_40.lib boost_regex-vc90-mt-gd-1_40_dir ./vc90/boost_regex-vc90-mt-gd-1_40.lib boost_regex-vc90-mt-1_40_dir ./vc90/boost_regex-vc90-mt-1_40.lib libboost_regex-vc90-mt-1_40_dir ./vc90/libboost_regex-vc90-mt-1_40.lib libboost_regex-vc90-mt-gd-1_40_dir ./vc90/libboost_regex-vc90-mt-gd-1_40.lib -clean : libboost_regex-vc90-s-1_38_clean libboost_regex-vc90-mt-s-1_38_clean libboost_regex-vc90-sgd-1_38_clean libboost_regex-vc90-mt-sgd-1_38_clean boost_regex-vc90-mt-gd-1_38_clean boost_regex-vc90-mt-1_38_clean libboost_regex-vc90-mt-1_38_clean libboost_regex-vc90-mt-gd-1_38_clean +clean : libboost_regex-vc90-s-1_40_clean libboost_regex-vc90-mt-s-1_40_clean libboost_regex-vc90-sgd-1_40_clean libboost_regex-vc90-mt-sgd-1_40_clean boost_regex-vc90-mt-gd-1_40_clean boost_regex-vc90-mt-1_40_clean libboost_regex-vc90-mt-1_40_clean libboost_regex-vc90-mt-gd-1_40_clean install : all - copy vc90\libboost_regex-vc90-s-1_38.lib "$(MSVCDIR)\lib" - copy vc90\libboost_regex-vc90-mt-s-1_38.lib "$(MSVCDIR)\lib" - copy vc90\libboost_regex-vc90-sgd-1_38.lib "$(MSVCDIR)\lib" - copy vc90\libboost_regex-vc90-sgd-1_38.pdb "$(MSVCDIR)\lib" - copy vc90\libboost_regex-vc90-mt-sgd-1_38.lib "$(MSVCDIR)\lib" - copy vc90\libboost_regex-vc90-mt-sgd-1_38.pdb "$(MSVCDIR)\lib" - copy vc90\boost_regex-vc90-mt-gd-1_38.lib "$(MSVCDIR)\lib" - copy vc90\boost_regex-vc90-mt-gd-1_38.dll "$(MSVCDIR)\bin" - copy vc90\boost_regex-vc90-mt-gd-1_38.pdb "$(MSVCDIR)\lib" - copy vc90\boost_regex-vc90-mt-1_38.lib "$(MSVCDIR)\lib" - copy vc90\boost_regex-vc90-mt-1_38.dll "$(MSVCDIR)\bin" - copy vc90\libboost_regex-vc90-mt-1_38.lib "$(MSVCDIR)\lib" - copy vc90\libboost_regex-vc90-mt-gd-1_38.lib "$(MSVCDIR)\lib" - copy vc90\libboost_regex-vc90-mt-gd-1_38.pdb "$(MSVCDIR)\lib" + copy vc90\libboost_regex-vc90-s-1_40.lib "$(MSVCDIR)\lib" + copy vc90\libboost_regex-vc90-mt-s-1_40.lib "$(MSVCDIR)\lib" + copy vc90\libboost_regex-vc90-sgd-1_40.lib "$(MSVCDIR)\lib" + copy vc90\libboost_regex-vc90-sgd-1_40.pdb "$(MSVCDIR)\lib" + copy vc90\libboost_regex-vc90-mt-sgd-1_40.lib "$(MSVCDIR)\lib" + copy vc90\libboost_regex-vc90-mt-sgd-1_40.pdb "$(MSVCDIR)\lib" + copy vc90\boost_regex-vc90-mt-gd-1_40.lib "$(MSVCDIR)\lib" + copy vc90\boost_regex-vc90-mt-gd-1_40.dll "$(MSVCDIR)\bin" + copy vc90\boost_regex-vc90-mt-gd-1_40.pdb "$(MSVCDIR)\lib" + copy vc90\boost_regex-vc90-mt-1_40.lib "$(MSVCDIR)\lib" + copy vc90\boost_regex-vc90-mt-1_40.dll "$(MSVCDIR)\bin" + copy vc90\libboost_regex-vc90-mt-1_40.lib "$(MSVCDIR)\lib" + copy vc90\libboost_regex-vc90-mt-gd-1_40.lib "$(MSVCDIR)\lib" + copy vc90\libboost_regex-vc90-mt-gd-1_40.pdb "$(MSVCDIR)\lib" main_dir : @if not exist "vc90\$(NULL)" mkdir vc90 @@ -88,546 +88,546 @@ main_dir : ######################################################## # -# section for libboost_regex-vc90-s-1_38.lib +# section for libboost_regex-vc90-s-1_40.lib # ######################################################## -vc90/libboost_regex-vc90-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-s-1_38.pdb ../src/c_regex_traits.cpp +vc90/libboost_regex-vc90-s-1_40/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_40/ -Fdvc90/libboost_regex-vc90-s-1_40.pdb ../src/c_regex_traits.cpp -vc90/libboost_regex-vc90-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-s-1_38.pdb ../src/cpp_regex_traits.cpp +vc90/libboost_regex-vc90-s-1_40/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_40/ -Fdvc90/libboost_regex-vc90-s-1_40.pdb ../src/cpp_regex_traits.cpp -vc90/libboost_regex-vc90-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-s-1_38.pdb ../src/cregex.cpp +vc90/libboost_regex-vc90-s-1_40/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_40/ -Fdvc90/libboost_regex-vc90-s-1_40.pdb ../src/cregex.cpp -vc90/libboost_regex-vc90-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-s-1_38.pdb ../src/fileiter.cpp +vc90/libboost_regex-vc90-s-1_40/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_40/ -Fdvc90/libboost_regex-vc90-s-1_40.pdb ../src/fileiter.cpp -vc90/libboost_regex-vc90-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-s-1_38.pdb ../src/icu.cpp +vc90/libboost_regex-vc90-s-1_40/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_40/ -Fdvc90/libboost_regex-vc90-s-1_40.pdb ../src/icu.cpp -vc90/libboost_regex-vc90-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-s-1_38.pdb ../src/instances.cpp +vc90/libboost_regex-vc90-s-1_40/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_40/ -Fdvc90/libboost_regex-vc90-s-1_40.pdb ../src/instances.cpp -vc90/libboost_regex-vc90-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-s-1_38.pdb ../src/posix_api.cpp +vc90/libboost_regex-vc90-s-1_40/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_40/ -Fdvc90/libboost_regex-vc90-s-1_40.pdb ../src/posix_api.cpp -vc90/libboost_regex-vc90-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-s-1_38.pdb ../src/regex.cpp +vc90/libboost_regex-vc90-s-1_40/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_40/ -Fdvc90/libboost_regex-vc90-s-1_40.pdb ../src/regex.cpp -vc90/libboost_regex-vc90-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-s-1_38.pdb ../src/regex_debug.cpp +vc90/libboost_regex-vc90-s-1_40/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_40/ -Fdvc90/libboost_regex-vc90-s-1_40.pdb ../src/regex_debug.cpp -vc90/libboost_regex-vc90-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-s-1_38.pdb ../src/regex_raw_buffer.cpp +vc90/libboost_regex-vc90-s-1_40/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_40/ -Fdvc90/libboost_regex-vc90-s-1_40.pdb ../src/regex_raw_buffer.cpp -vc90/libboost_regex-vc90-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-s-1_38.pdb ../src/regex_traits_defaults.cpp +vc90/libboost_regex-vc90-s-1_40/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_40/ -Fdvc90/libboost_regex-vc90-s-1_40.pdb ../src/regex_traits_defaults.cpp -vc90/libboost_regex-vc90-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-s-1_38.pdb ../src/static_mutex.cpp +vc90/libboost_regex-vc90-s-1_40/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_40/ -Fdvc90/libboost_regex-vc90-s-1_40.pdb ../src/static_mutex.cpp -vc90/libboost_regex-vc90-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-s-1_38.pdb ../src/usinstances.cpp +vc90/libboost_regex-vc90-s-1_40/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_40/ -Fdvc90/libboost_regex-vc90-s-1_40.pdb ../src/usinstances.cpp -vc90/libboost_regex-vc90-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-s-1_38.pdb ../src/w32_regex_traits.cpp +vc90/libboost_regex-vc90-s-1_40/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_40/ -Fdvc90/libboost_regex-vc90-s-1_40.pdb ../src/w32_regex_traits.cpp -vc90/libboost_regex-vc90-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-s-1_38.pdb ../src/wc_regex_traits.cpp +vc90/libboost_regex-vc90-s-1_40/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_40/ -Fdvc90/libboost_regex-vc90-s-1_40.pdb ../src/wc_regex_traits.cpp -vc90/libboost_regex-vc90-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-s-1_38.pdb ../src/wide_posix_api.cpp +vc90/libboost_regex-vc90-s-1_40/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_40/ -Fdvc90/libboost_regex-vc90-s-1_40.pdb ../src/wide_posix_api.cpp -vc90/libboost_regex-vc90-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-s-1_38.pdb ../src/winstances.cpp +vc90/libboost_regex-vc90-s-1_40/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_40/ -Fdvc90/libboost_regex-vc90-s-1_40.pdb ../src/winstances.cpp -libboost_regex-vc90-s-1_38_dir : - @if not exist "vc90\libboost_regex-vc90-s-1_38\$(NULL)" mkdir vc90\libboost_regex-vc90-s-1_38 +libboost_regex-vc90-s-1_40_dir : + @if not exist "vc90\libboost_regex-vc90-s-1_40\$(NULL)" mkdir vc90\libboost_regex-vc90-s-1_40 -libboost_regex-vc90-s-1_38_clean : - del vc90\libboost_regex-vc90-s-1_38\*.obj - del vc90\libboost_regex-vc90-s-1_38\*.idb - del vc90\libboost_regex-vc90-s-1_38\*.exp - del vc90\libboost_regex-vc90-s-1_38\*.pch +libboost_regex-vc90-s-1_40_clean : + del vc90\libboost_regex-vc90-s-1_40\*.obj + del vc90\libboost_regex-vc90-s-1_40\*.idb + del vc90\libboost_regex-vc90-s-1_40\*.exp + del vc90\libboost_regex-vc90-s-1_40\*.pch -./vc90/libboost_regex-vc90-s-1_38.lib : vc90/libboost_regex-vc90-s-1_38/c_regex_traits.obj vc90/libboost_regex-vc90-s-1_38/cpp_regex_traits.obj vc90/libboost_regex-vc90-s-1_38/cregex.obj vc90/libboost_regex-vc90-s-1_38/fileiter.obj vc90/libboost_regex-vc90-s-1_38/icu.obj vc90/libboost_regex-vc90-s-1_38/instances.obj vc90/libboost_regex-vc90-s-1_38/posix_api.obj vc90/libboost_regex-vc90-s-1_38/regex.obj vc90/libboost_regex-vc90-s-1_38/regex_debug.obj vc90/libboost_regex-vc90-s-1_38/regex_raw_buffer.obj vc90/libboost_regex-vc90-s-1_38/regex_traits_defaults.obj vc90/libboost_regex-vc90-s-1_38/static_mutex.obj vc90/libboost_regex-vc90-s-1_38/usinstances.obj vc90/libboost_regex-vc90-s-1_38/w32_regex_traits.obj vc90/libboost_regex-vc90-s-1_38/wc_regex_traits.obj vc90/libboost_regex-vc90-s-1_38/wide_posix_api.obj vc90/libboost_regex-vc90-s-1_38/winstances.obj - link -lib /nologo /out:vc90/libboost_regex-vc90-s-1_38.lib $(XSFLAGS) vc90/libboost_regex-vc90-s-1_38/c_regex_traits.obj vc90/libboost_regex-vc90-s-1_38/cpp_regex_traits.obj vc90/libboost_regex-vc90-s-1_38/cregex.obj vc90/libboost_regex-vc90-s-1_38/fileiter.obj vc90/libboost_regex-vc90-s-1_38/icu.obj vc90/libboost_regex-vc90-s-1_38/instances.obj vc90/libboost_regex-vc90-s-1_38/posix_api.obj vc90/libboost_regex-vc90-s-1_38/regex.obj vc90/libboost_regex-vc90-s-1_38/regex_debug.obj vc90/libboost_regex-vc90-s-1_38/regex_raw_buffer.obj vc90/libboost_regex-vc90-s-1_38/regex_traits_defaults.obj vc90/libboost_regex-vc90-s-1_38/static_mutex.obj vc90/libboost_regex-vc90-s-1_38/usinstances.obj vc90/libboost_regex-vc90-s-1_38/w32_regex_traits.obj vc90/libboost_regex-vc90-s-1_38/wc_regex_traits.obj vc90/libboost_regex-vc90-s-1_38/wide_posix_api.obj vc90/libboost_regex-vc90-s-1_38/winstances.obj +./vc90/libboost_regex-vc90-s-1_40.lib : vc90/libboost_regex-vc90-s-1_40/c_regex_traits.obj vc90/libboost_regex-vc90-s-1_40/cpp_regex_traits.obj vc90/libboost_regex-vc90-s-1_40/cregex.obj vc90/libboost_regex-vc90-s-1_40/fileiter.obj vc90/libboost_regex-vc90-s-1_40/icu.obj vc90/libboost_regex-vc90-s-1_40/instances.obj vc90/libboost_regex-vc90-s-1_40/posix_api.obj vc90/libboost_regex-vc90-s-1_40/regex.obj vc90/libboost_regex-vc90-s-1_40/regex_debug.obj vc90/libboost_regex-vc90-s-1_40/regex_raw_buffer.obj vc90/libboost_regex-vc90-s-1_40/regex_traits_defaults.obj vc90/libboost_regex-vc90-s-1_40/static_mutex.obj vc90/libboost_regex-vc90-s-1_40/usinstances.obj vc90/libboost_regex-vc90-s-1_40/w32_regex_traits.obj vc90/libboost_regex-vc90-s-1_40/wc_regex_traits.obj vc90/libboost_regex-vc90-s-1_40/wide_posix_api.obj vc90/libboost_regex-vc90-s-1_40/winstances.obj + link -lib /nologo /out:vc90/libboost_regex-vc90-s-1_40.lib $(XSFLAGS) vc90/libboost_regex-vc90-s-1_40/c_regex_traits.obj vc90/libboost_regex-vc90-s-1_40/cpp_regex_traits.obj vc90/libboost_regex-vc90-s-1_40/cregex.obj vc90/libboost_regex-vc90-s-1_40/fileiter.obj vc90/libboost_regex-vc90-s-1_40/icu.obj vc90/libboost_regex-vc90-s-1_40/instances.obj vc90/libboost_regex-vc90-s-1_40/posix_api.obj vc90/libboost_regex-vc90-s-1_40/regex.obj vc90/libboost_regex-vc90-s-1_40/regex_debug.obj vc90/libboost_regex-vc90-s-1_40/regex_raw_buffer.obj vc90/libboost_regex-vc90-s-1_40/regex_traits_defaults.obj vc90/libboost_regex-vc90-s-1_40/static_mutex.obj vc90/libboost_regex-vc90-s-1_40/usinstances.obj vc90/libboost_regex-vc90-s-1_40/w32_regex_traits.obj vc90/libboost_regex-vc90-s-1_40/wc_regex_traits.obj vc90/libboost_regex-vc90-s-1_40/wide_posix_api.obj vc90/libboost_regex-vc90-s-1_40/winstances.obj ######################################################## # -# section for libboost_regex-vc90-mt-s-1_38.lib +# section for libboost_regex-vc90-mt-s-1_40.lib # ######################################################## -vc90/libboost_regex-vc90-mt-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-s-1_38.pdb ../src/c_regex_traits.cpp +vc90/libboost_regex-vc90-mt-s-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-s-1_40.pdb ../src/c_regex_traits.cpp -vc90/libboost_regex-vc90-mt-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-s-1_38.pdb ../src/cpp_regex_traits.cpp +vc90/libboost_regex-vc90-mt-s-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-s-1_40.pdb ../src/cpp_regex_traits.cpp -vc90/libboost_regex-vc90-mt-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-s-1_38.pdb ../src/cregex.cpp +vc90/libboost_regex-vc90-mt-s-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-s-1_40.pdb ../src/cregex.cpp -vc90/libboost_regex-vc90-mt-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-s-1_38.pdb ../src/fileiter.cpp +vc90/libboost_regex-vc90-mt-s-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-s-1_40.pdb ../src/fileiter.cpp -vc90/libboost_regex-vc90-mt-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-s-1_38.pdb ../src/icu.cpp +vc90/libboost_regex-vc90-mt-s-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-s-1_40.pdb ../src/icu.cpp -vc90/libboost_regex-vc90-mt-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-s-1_38.pdb ../src/instances.cpp +vc90/libboost_regex-vc90-mt-s-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-s-1_40.pdb ../src/instances.cpp -vc90/libboost_regex-vc90-mt-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-s-1_38.pdb ../src/posix_api.cpp +vc90/libboost_regex-vc90-mt-s-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-s-1_40.pdb ../src/posix_api.cpp -vc90/libboost_regex-vc90-mt-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-s-1_38.pdb ../src/regex.cpp +vc90/libboost_regex-vc90-mt-s-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-s-1_40.pdb ../src/regex.cpp -vc90/libboost_regex-vc90-mt-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-s-1_38.pdb ../src/regex_debug.cpp +vc90/libboost_regex-vc90-mt-s-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-s-1_40.pdb ../src/regex_debug.cpp -vc90/libboost_regex-vc90-mt-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-s-1_38.pdb ../src/regex_raw_buffer.cpp +vc90/libboost_regex-vc90-mt-s-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-s-1_40.pdb ../src/regex_raw_buffer.cpp -vc90/libboost_regex-vc90-mt-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-s-1_38.pdb ../src/regex_traits_defaults.cpp +vc90/libboost_regex-vc90-mt-s-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-s-1_40.pdb ../src/regex_traits_defaults.cpp -vc90/libboost_regex-vc90-mt-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-s-1_38.pdb ../src/static_mutex.cpp +vc90/libboost_regex-vc90-mt-s-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-s-1_40.pdb ../src/static_mutex.cpp -vc90/libboost_regex-vc90-mt-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-s-1_38.pdb ../src/usinstances.cpp +vc90/libboost_regex-vc90-mt-s-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-s-1_40.pdb ../src/usinstances.cpp -vc90/libboost_regex-vc90-mt-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-s-1_38.pdb ../src/w32_regex_traits.cpp +vc90/libboost_regex-vc90-mt-s-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-s-1_40.pdb ../src/w32_regex_traits.cpp -vc90/libboost_regex-vc90-mt-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-s-1_38.pdb ../src/wc_regex_traits.cpp +vc90/libboost_regex-vc90-mt-s-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-s-1_40.pdb ../src/wc_regex_traits.cpp -vc90/libboost_regex-vc90-mt-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-s-1_38.pdb ../src/wide_posix_api.cpp +vc90/libboost_regex-vc90-mt-s-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-s-1_40.pdb ../src/wide_posix_api.cpp -vc90/libboost_regex-vc90-mt-s-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-s-1_38.pdb ../src/winstances.cpp +vc90/libboost_regex-vc90-mt-s-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-s-1_40.pdb ../src/winstances.cpp -libboost_regex-vc90-mt-s-1_38_dir : - @if not exist "vc90\libboost_regex-vc90-mt-s-1_38\$(NULL)" mkdir vc90\libboost_regex-vc90-mt-s-1_38 +libboost_regex-vc90-mt-s-1_40_dir : + @if not exist "vc90\libboost_regex-vc90-mt-s-1_40\$(NULL)" mkdir vc90\libboost_regex-vc90-mt-s-1_40 -libboost_regex-vc90-mt-s-1_38_clean : - del vc90\libboost_regex-vc90-mt-s-1_38\*.obj - del vc90\libboost_regex-vc90-mt-s-1_38\*.idb - del vc90\libboost_regex-vc90-mt-s-1_38\*.exp - del vc90\libboost_regex-vc90-mt-s-1_38\*.pch +libboost_regex-vc90-mt-s-1_40_clean : + del vc90\libboost_regex-vc90-mt-s-1_40\*.obj + del vc90\libboost_regex-vc90-mt-s-1_40\*.idb + del vc90\libboost_regex-vc90-mt-s-1_40\*.exp + del vc90\libboost_regex-vc90-mt-s-1_40\*.pch -./vc90/libboost_regex-vc90-mt-s-1_38.lib : vc90/libboost_regex-vc90-mt-s-1_38/c_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_38/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_38/cregex.obj vc90/libboost_regex-vc90-mt-s-1_38/fileiter.obj vc90/libboost_regex-vc90-mt-s-1_38/icu.obj vc90/libboost_regex-vc90-mt-s-1_38/instances.obj vc90/libboost_regex-vc90-mt-s-1_38/posix_api.obj vc90/libboost_regex-vc90-mt-s-1_38/regex.obj vc90/libboost_regex-vc90-mt-s-1_38/regex_debug.obj vc90/libboost_regex-vc90-mt-s-1_38/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-s-1_38/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-s-1_38/static_mutex.obj vc90/libboost_regex-vc90-mt-s-1_38/usinstances.obj vc90/libboost_regex-vc90-mt-s-1_38/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_38/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_38/wide_posix_api.obj vc90/libboost_regex-vc90-mt-s-1_38/winstances.obj - link -lib /nologo /out:vc90/libboost_regex-vc90-mt-s-1_38.lib $(XSFLAGS) vc90/libboost_regex-vc90-mt-s-1_38/c_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_38/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_38/cregex.obj vc90/libboost_regex-vc90-mt-s-1_38/fileiter.obj vc90/libboost_regex-vc90-mt-s-1_38/icu.obj vc90/libboost_regex-vc90-mt-s-1_38/instances.obj vc90/libboost_regex-vc90-mt-s-1_38/posix_api.obj vc90/libboost_regex-vc90-mt-s-1_38/regex.obj vc90/libboost_regex-vc90-mt-s-1_38/regex_debug.obj vc90/libboost_regex-vc90-mt-s-1_38/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-s-1_38/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-s-1_38/static_mutex.obj vc90/libboost_regex-vc90-mt-s-1_38/usinstances.obj vc90/libboost_regex-vc90-mt-s-1_38/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_38/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_38/wide_posix_api.obj vc90/libboost_regex-vc90-mt-s-1_38/winstances.obj +./vc90/libboost_regex-vc90-mt-s-1_40.lib : vc90/libboost_regex-vc90-mt-s-1_40/c_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_40/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_40/cregex.obj vc90/libboost_regex-vc90-mt-s-1_40/fileiter.obj vc90/libboost_regex-vc90-mt-s-1_40/icu.obj vc90/libboost_regex-vc90-mt-s-1_40/instances.obj vc90/libboost_regex-vc90-mt-s-1_40/posix_api.obj vc90/libboost_regex-vc90-mt-s-1_40/regex.obj vc90/libboost_regex-vc90-mt-s-1_40/regex_debug.obj vc90/libboost_regex-vc90-mt-s-1_40/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-s-1_40/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-s-1_40/static_mutex.obj vc90/libboost_regex-vc90-mt-s-1_40/usinstances.obj vc90/libboost_regex-vc90-mt-s-1_40/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_40/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_40/wide_posix_api.obj vc90/libboost_regex-vc90-mt-s-1_40/winstances.obj + link -lib /nologo /out:vc90/libboost_regex-vc90-mt-s-1_40.lib $(XSFLAGS) vc90/libboost_regex-vc90-mt-s-1_40/c_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_40/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_40/cregex.obj vc90/libboost_regex-vc90-mt-s-1_40/fileiter.obj vc90/libboost_regex-vc90-mt-s-1_40/icu.obj vc90/libboost_regex-vc90-mt-s-1_40/instances.obj vc90/libboost_regex-vc90-mt-s-1_40/posix_api.obj vc90/libboost_regex-vc90-mt-s-1_40/regex.obj vc90/libboost_regex-vc90-mt-s-1_40/regex_debug.obj vc90/libboost_regex-vc90-mt-s-1_40/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-s-1_40/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-s-1_40/static_mutex.obj vc90/libboost_regex-vc90-mt-s-1_40/usinstances.obj vc90/libboost_regex-vc90-mt-s-1_40/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_40/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-s-1_40/wide_posix_api.obj vc90/libboost_regex-vc90-mt-s-1_40/winstances.obj ######################################################## # -# section for libboost_regex-vc90-sgd-1_38.lib +# section for libboost_regex-vc90-sgd-1_40.lib # ######################################################## -vc90/libboost_regex-vc90-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-sgd-1_38.pdb ../src/c_regex_traits.cpp +vc90/libboost_regex-vc90-sgd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-sgd-1_40.pdb ../src/c_regex_traits.cpp -vc90/libboost_regex-vc90-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-sgd-1_38.pdb ../src/cpp_regex_traits.cpp +vc90/libboost_regex-vc90-sgd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-sgd-1_40.pdb ../src/cpp_regex_traits.cpp -vc90/libboost_regex-vc90-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-sgd-1_38.pdb ../src/cregex.cpp +vc90/libboost_regex-vc90-sgd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-sgd-1_40.pdb ../src/cregex.cpp -vc90/libboost_regex-vc90-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-sgd-1_38.pdb ../src/fileiter.cpp +vc90/libboost_regex-vc90-sgd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-sgd-1_40.pdb ../src/fileiter.cpp -vc90/libboost_regex-vc90-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-sgd-1_38.pdb ../src/icu.cpp +vc90/libboost_regex-vc90-sgd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-sgd-1_40.pdb ../src/icu.cpp -vc90/libboost_regex-vc90-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-sgd-1_38.pdb ../src/instances.cpp +vc90/libboost_regex-vc90-sgd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-sgd-1_40.pdb ../src/instances.cpp -vc90/libboost_regex-vc90-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-sgd-1_38.pdb ../src/posix_api.cpp +vc90/libboost_regex-vc90-sgd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-sgd-1_40.pdb ../src/posix_api.cpp -vc90/libboost_regex-vc90-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-sgd-1_38.pdb ../src/regex.cpp +vc90/libboost_regex-vc90-sgd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-sgd-1_40.pdb ../src/regex.cpp -vc90/libboost_regex-vc90-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-sgd-1_38.pdb ../src/regex_debug.cpp +vc90/libboost_regex-vc90-sgd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-sgd-1_40.pdb ../src/regex_debug.cpp -vc90/libboost_regex-vc90-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-sgd-1_38.pdb ../src/regex_raw_buffer.cpp +vc90/libboost_regex-vc90-sgd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-sgd-1_40.pdb ../src/regex_raw_buffer.cpp -vc90/libboost_regex-vc90-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-sgd-1_38.pdb ../src/regex_traits_defaults.cpp +vc90/libboost_regex-vc90-sgd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-sgd-1_40.pdb ../src/regex_traits_defaults.cpp -vc90/libboost_regex-vc90-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-sgd-1_38.pdb ../src/static_mutex.cpp +vc90/libboost_regex-vc90-sgd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-sgd-1_40.pdb ../src/static_mutex.cpp -vc90/libboost_regex-vc90-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-sgd-1_38.pdb ../src/usinstances.cpp +vc90/libboost_regex-vc90-sgd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-sgd-1_40.pdb ../src/usinstances.cpp -vc90/libboost_regex-vc90-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-sgd-1_38.pdb ../src/w32_regex_traits.cpp +vc90/libboost_regex-vc90-sgd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-sgd-1_40.pdb ../src/w32_regex_traits.cpp -vc90/libboost_regex-vc90-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-sgd-1_38.pdb ../src/wc_regex_traits.cpp +vc90/libboost_regex-vc90-sgd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-sgd-1_40.pdb ../src/wc_regex_traits.cpp -vc90/libboost_regex-vc90-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-sgd-1_38.pdb ../src/wide_posix_api.cpp +vc90/libboost_regex-vc90-sgd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-sgd-1_40.pdb ../src/wide_posix_api.cpp -vc90/libboost_regex-vc90-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-sgd-1_38.pdb ../src/winstances.cpp +vc90/libboost_regex-vc90-sgd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-sgd-1_40.pdb ../src/winstances.cpp -libboost_regex-vc90-sgd-1_38_dir : - @if not exist "vc90\libboost_regex-vc90-sgd-1_38\$(NULL)" mkdir vc90\libboost_regex-vc90-sgd-1_38 +libboost_regex-vc90-sgd-1_40_dir : + @if not exist "vc90\libboost_regex-vc90-sgd-1_40\$(NULL)" mkdir vc90\libboost_regex-vc90-sgd-1_40 -libboost_regex-vc90-sgd-1_38_clean : - del vc90\libboost_regex-vc90-sgd-1_38\*.obj - del vc90\libboost_regex-vc90-sgd-1_38\*.idb - del vc90\libboost_regex-vc90-sgd-1_38\*.exp - del vc90\libboost_regex-vc90-sgd-1_38\*.pch +libboost_regex-vc90-sgd-1_40_clean : + del vc90\libboost_regex-vc90-sgd-1_40\*.obj + del vc90\libboost_regex-vc90-sgd-1_40\*.idb + del vc90\libboost_regex-vc90-sgd-1_40\*.exp + del vc90\libboost_regex-vc90-sgd-1_40\*.pch -./vc90/libboost_regex-vc90-sgd-1_38.lib : vc90/libboost_regex-vc90-sgd-1_38/c_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_38/cpp_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_38/cregex.obj vc90/libboost_regex-vc90-sgd-1_38/fileiter.obj vc90/libboost_regex-vc90-sgd-1_38/icu.obj vc90/libboost_regex-vc90-sgd-1_38/instances.obj vc90/libboost_regex-vc90-sgd-1_38/posix_api.obj vc90/libboost_regex-vc90-sgd-1_38/regex.obj vc90/libboost_regex-vc90-sgd-1_38/regex_debug.obj vc90/libboost_regex-vc90-sgd-1_38/regex_raw_buffer.obj vc90/libboost_regex-vc90-sgd-1_38/regex_traits_defaults.obj vc90/libboost_regex-vc90-sgd-1_38/static_mutex.obj vc90/libboost_regex-vc90-sgd-1_38/usinstances.obj vc90/libboost_regex-vc90-sgd-1_38/w32_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_38/wc_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_38/wide_posix_api.obj vc90/libboost_regex-vc90-sgd-1_38/winstances.obj - link -lib /nologo /out:vc90/libboost_regex-vc90-sgd-1_38.lib $(XSFLAGS) vc90/libboost_regex-vc90-sgd-1_38/c_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_38/cpp_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_38/cregex.obj vc90/libboost_regex-vc90-sgd-1_38/fileiter.obj vc90/libboost_regex-vc90-sgd-1_38/icu.obj vc90/libboost_regex-vc90-sgd-1_38/instances.obj vc90/libboost_regex-vc90-sgd-1_38/posix_api.obj vc90/libboost_regex-vc90-sgd-1_38/regex.obj vc90/libboost_regex-vc90-sgd-1_38/regex_debug.obj vc90/libboost_regex-vc90-sgd-1_38/regex_raw_buffer.obj vc90/libboost_regex-vc90-sgd-1_38/regex_traits_defaults.obj vc90/libboost_regex-vc90-sgd-1_38/static_mutex.obj vc90/libboost_regex-vc90-sgd-1_38/usinstances.obj vc90/libboost_regex-vc90-sgd-1_38/w32_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_38/wc_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_38/wide_posix_api.obj vc90/libboost_regex-vc90-sgd-1_38/winstances.obj +./vc90/libboost_regex-vc90-sgd-1_40.lib : vc90/libboost_regex-vc90-sgd-1_40/c_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_40/cpp_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_40/cregex.obj vc90/libboost_regex-vc90-sgd-1_40/fileiter.obj vc90/libboost_regex-vc90-sgd-1_40/icu.obj vc90/libboost_regex-vc90-sgd-1_40/instances.obj vc90/libboost_regex-vc90-sgd-1_40/posix_api.obj vc90/libboost_regex-vc90-sgd-1_40/regex.obj vc90/libboost_regex-vc90-sgd-1_40/regex_debug.obj vc90/libboost_regex-vc90-sgd-1_40/regex_raw_buffer.obj vc90/libboost_regex-vc90-sgd-1_40/regex_traits_defaults.obj vc90/libboost_regex-vc90-sgd-1_40/static_mutex.obj vc90/libboost_regex-vc90-sgd-1_40/usinstances.obj vc90/libboost_regex-vc90-sgd-1_40/w32_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_40/wc_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_40/wide_posix_api.obj vc90/libboost_regex-vc90-sgd-1_40/winstances.obj + link -lib /nologo /out:vc90/libboost_regex-vc90-sgd-1_40.lib $(XSFLAGS) vc90/libboost_regex-vc90-sgd-1_40/c_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_40/cpp_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_40/cregex.obj vc90/libboost_regex-vc90-sgd-1_40/fileiter.obj vc90/libboost_regex-vc90-sgd-1_40/icu.obj vc90/libboost_regex-vc90-sgd-1_40/instances.obj vc90/libboost_regex-vc90-sgd-1_40/posix_api.obj vc90/libboost_regex-vc90-sgd-1_40/regex.obj vc90/libboost_regex-vc90-sgd-1_40/regex_debug.obj vc90/libboost_regex-vc90-sgd-1_40/regex_raw_buffer.obj vc90/libboost_regex-vc90-sgd-1_40/regex_traits_defaults.obj vc90/libboost_regex-vc90-sgd-1_40/static_mutex.obj vc90/libboost_regex-vc90-sgd-1_40/usinstances.obj vc90/libboost_regex-vc90-sgd-1_40/w32_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_40/wc_regex_traits.obj vc90/libboost_regex-vc90-sgd-1_40/wide_posix_api.obj vc90/libboost_regex-vc90-sgd-1_40/winstances.obj ######################################################## # -# section for libboost_regex-vc90-mt-sgd-1_38.lib +# section for libboost_regex-vc90-mt-sgd-1_40.lib # ######################################################## -vc90/libboost_regex-vc90-mt-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_38.pdb ../src/c_regex_traits.cpp +vc90/libboost_regex-vc90-mt-sgd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_40.pdb ../src/c_regex_traits.cpp -vc90/libboost_regex-vc90-mt-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_38.pdb ../src/cpp_regex_traits.cpp +vc90/libboost_regex-vc90-mt-sgd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_40.pdb ../src/cpp_regex_traits.cpp -vc90/libboost_regex-vc90-mt-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_38.pdb ../src/cregex.cpp +vc90/libboost_regex-vc90-mt-sgd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_40.pdb ../src/cregex.cpp -vc90/libboost_regex-vc90-mt-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_38.pdb ../src/fileiter.cpp +vc90/libboost_regex-vc90-mt-sgd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_40.pdb ../src/fileiter.cpp -vc90/libboost_regex-vc90-mt-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_38.pdb ../src/icu.cpp +vc90/libboost_regex-vc90-mt-sgd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_40.pdb ../src/icu.cpp -vc90/libboost_regex-vc90-mt-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_38.pdb ../src/instances.cpp +vc90/libboost_regex-vc90-mt-sgd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_40.pdb ../src/instances.cpp -vc90/libboost_regex-vc90-mt-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_38.pdb ../src/posix_api.cpp +vc90/libboost_regex-vc90-mt-sgd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_40.pdb ../src/posix_api.cpp -vc90/libboost_regex-vc90-mt-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_38.pdb ../src/regex.cpp +vc90/libboost_regex-vc90-mt-sgd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_40.pdb ../src/regex.cpp -vc90/libboost_regex-vc90-mt-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_38.pdb ../src/regex_debug.cpp +vc90/libboost_regex-vc90-mt-sgd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_40.pdb ../src/regex_debug.cpp -vc90/libboost_regex-vc90-mt-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_38.pdb ../src/regex_raw_buffer.cpp +vc90/libboost_regex-vc90-mt-sgd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_40.pdb ../src/regex_raw_buffer.cpp -vc90/libboost_regex-vc90-mt-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_38.pdb ../src/regex_traits_defaults.cpp +vc90/libboost_regex-vc90-mt-sgd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_40.pdb ../src/regex_traits_defaults.cpp -vc90/libboost_regex-vc90-mt-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_38.pdb ../src/static_mutex.cpp +vc90/libboost_regex-vc90-mt-sgd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_40.pdb ../src/static_mutex.cpp -vc90/libboost_regex-vc90-mt-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_38.pdb ../src/usinstances.cpp +vc90/libboost_regex-vc90-mt-sgd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_40.pdb ../src/usinstances.cpp -vc90/libboost_regex-vc90-mt-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_38.pdb ../src/w32_regex_traits.cpp +vc90/libboost_regex-vc90-mt-sgd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_40.pdb ../src/w32_regex_traits.cpp -vc90/libboost_regex-vc90-mt-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_38.pdb ../src/wc_regex_traits.cpp +vc90/libboost_regex-vc90-mt-sgd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_40.pdb ../src/wc_regex_traits.cpp -vc90/libboost_regex-vc90-mt-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_38.pdb ../src/wide_posix_api.cpp +vc90/libboost_regex-vc90-mt-sgd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_40.pdb ../src/wide_posix_api.cpp -vc90/libboost_regex-vc90-mt-sgd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_38.pdb ../src/winstances.cpp +vc90/libboost_regex-vc90-mt-sgd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-sgd-1_40.pdb ../src/winstances.cpp -libboost_regex-vc90-mt-sgd-1_38_dir : - @if not exist "vc90\libboost_regex-vc90-mt-sgd-1_38\$(NULL)" mkdir vc90\libboost_regex-vc90-mt-sgd-1_38 +libboost_regex-vc90-mt-sgd-1_40_dir : + @if not exist "vc90\libboost_regex-vc90-mt-sgd-1_40\$(NULL)" mkdir vc90\libboost_regex-vc90-mt-sgd-1_40 -libboost_regex-vc90-mt-sgd-1_38_clean : - del vc90\libboost_regex-vc90-mt-sgd-1_38\*.obj - del vc90\libboost_regex-vc90-mt-sgd-1_38\*.idb - del vc90\libboost_regex-vc90-mt-sgd-1_38\*.exp - del vc90\libboost_regex-vc90-mt-sgd-1_38\*.pch +libboost_regex-vc90-mt-sgd-1_40_clean : + del vc90\libboost_regex-vc90-mt-sgd-1_40\*.obj + del vc90\libboost_regex-vc90-mt-sgd-1_40\*.idb + del vc90\libboost_regex-vc90-mt-sgd-1_40\*.exp + del vc90\libboost_regex-vc90-mt-sgd-1_40\*.pch -./vc90/libboost_regex-vc90-mt-sgd-1_38.lib : vc90/libboost_regex-vc90-mt-sgd-1_38/c_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_38/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_38/cregex.obj vc90/libboost_regex-vc90-mt-sgd-1_38/fileiter.obj vc90/libboost_regex-vc90-mt-sgd-1_38/icu.obj vc90/libboost_regex-vc90-mt-sgd-1_38/instances.obj vc90/libboost_regex-vc90-mt-sgd-1_38/posix_api.obj vc90/libboost_regex-vc90-mt-sgd-1_38/regex.obj vc90/libboost_regex-vc90-mt-sgd-1_38/regex_debug.obj vc90/libboost_regex-vc90-mt-sgd-1_38/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-sgd-1_38/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-sgd-1_38/static_mutex.obj vc90/libboost_regex-vc90-mt-sgd-1_38/usinstances.obj vc90/libboost_regex-vc90-mt-sgd-1_38/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_38/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_38/wide_posix_api.obj vc90/libboost_regex-vc90-mt-sgd-1_38/winstances.obj - link -lib /nologo /out:vc90/libboost_regex-vc90-mt-sgd-1_38.lib $(XSFLAGS) vc90/libboost_regex-vc90-mt-sgd-1_38/c_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_38/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_38/cregex.obj vc90/libboost_regex-vc90-mt-sgd-1_38/fileiter.obj vc90/libboost_regex-vc90-mt-sgd-1_38/icu.obj vc90/libboost_regex-vc90-mt-sgd-1_38/instances.obj vc90/libboost_regex-vc90-mt-sgd-1_38/posix_api.obj vc90/libboost_regex-vc90-mt-sgd-1_38/regex.obj vc90/libboost_regex-vc90-mt-sgd-1_38/regex_debug.obj vc90/libboost_regex-vc90-mt-sgd-1_38/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-sgd-1_38/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-sgd-1_38/static_mutex.obj vc90/libboost_regex-vc90-mt-sgd-1_38/usinstances.obj vc90/libboost_regex-vc90-mt-sgd-1_38/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_38/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_38/wide_posix_api.obj vc90/libboost_regex-vc90-mt-sgd-1_38/winstances.obj +./vc90/libboost_regex-vc90-mt-sgd-1_40.lib : vc90/libboost_regex-vc90-mt-sgd-1_40/c_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_40/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_40/cregex.obj vc90/libboost_regex-vc90-mt-sgd-1_40/fileiter.obj vc90/libboost_regex-vc90-mt-sgd-1_40/icu.obj vc90/libboost_regex-vc90-mt-sgd-1_40/instances.obj vc90/libboost_regex-vc90-mt-sgd-1_40/posix_api.obj vc90/libboost_regex-vc90-mt-sgd-1_40/regex.obj vc90/libboost_regex-vc90-mt-sgd-1_40/regex_debug.obj vc90/libboost_regex-vc90-mt-sgd-1_40/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-sgd-1_40/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-sgd-1_40/static_mutex.obj vc90/libboost_regex-vc90-mt-sgd-1_40/usinstances.obj vc90/libboost_regex-vc90-mt-sgd-1_40/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_40/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_40/wide_posix_api.obj vc90/libboost_regex-vc90-mt-sgd-1_40/winstances.obj + link -lib /nologo /out:vc90/libboost_regex-vc90-mt-sgd-1_40.lib $(XSFLAGS) vc90/libboost_regex-vc90-mt-sgd-1_40/c_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_40/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_40/cregex.obj vc90/libboost_regex-vc90-mt-sgd-1_40/fileiter.obj vc90/libboost_regex-vc90-mt-sgd-1_40/icu.obj vc90/libboost_regex-vc90-mt-sgd-1_40/instances.obj vc90/libboost_regex-vc90-mt-sgd-1_40/posix_api.obj vc90/libboost_regex-vc90-mt-sgd-1_40/regex.obj vc90/libboost_regex-vc90-mt-sgd-1_40/regex_debug.obj vc90/libboost_regex-vc90-mt-sgd-1_40/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-sgd-1_40/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-sgd-1_40/static_mutex.obj vc90/libboost_regex-vc90-mt-sgd-1_40/usinstances.obj vc90/libboost_regex-vc90-mt-sgd-1_40/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_40/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-sgd-1_40/wide_posix_api.obj vc90/libboost_regex-vc90-mt-sgd-1_40/winstances.obj ######################################################## # -# section for boost_regex-vc90-mt-gd-1_38.lib +# section for boost_regex-vc90-mt-gd-1_40.lib # ######################################################## -vc90/boost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-gd-1_38.pdb ../src/c_regex_traits.cpp +vc90/boost_regex-vc90-mt-gd-1_40/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_40/ -Fdvc90/boost_regex-vc90-mt-gd-1_40.pdb ../src/c_regex_traits.cpp -vc90/boost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-gd-1_38.pdb ../src/cpp_regex_traits.cpp +vc90/boost_regex-vc90-mt-gd-1_40/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_40/ -Fdvc90/boost_regex-vc90-mt-gd-1_40.pdb ../src/cpp_regex_traits.cpp -vc90/boost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-gd-1_38.pdb ../src/cregex.cpp +vc90/boost_regex-vc90-mt-gd-1_40/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_40/ -Fdvc90/boost_regex-vc90-mt-gd-1_40.pdb ../src/cregex.cpp -vc90/boost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-gd-1_38.pdb ../src/fileiter.cpp +vc90/boost_regex-vc90-mt-gd-1_40/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_40/ -Fdvc90/boost_regex-vc90-mt-gd-1_40.pdb ../src/fileiter.cpp -vc90/boost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-gd-1_38.pdb ../src/icu.cpp +vc90/boost_regex-vc90-mt-gd-1_40/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_40/ -Fdvc90/boost_regex-vc90-mt-gd-1_40.pdb ../src/icu.cpp -vc90/boost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-gd-1_38.pdb ../src/instances.cpp +vc90/boost_regex-vc90-mt-gd-1_40/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_40/ -Fdvc90/boost_regex-vc90-mt-gd-1_40.pdb ../src/instances.cpp -vc90/boost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-gd-1_38.pdb ../src/posix_api.cpp +vc90/boost_regex-vc90-mt-gd-1_40/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_40/ -Fdvc90/boost_regex-vc90-mt-gd-1_40.pdb ../src/posix_api.cpp -vc90/boost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-gd-1_38.pdb ../src/regex.cpp +vc90/boost_regex-vc90-mt-gd-1_40/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_40/ -Fdvc90/boost_regex-vc90-mt-gd-1_40.pdb ../src/regex.cpp -vc90/boost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-gd-1_38.pdb ../src/regex_debug.cpp +vc90/boost_regex-vc90-mt-gd-1_40/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_40/ -Fdvc90/boost_regex-vc90-mt-gd-1_40.pdb ../src/regex_debug.cpp -vc90/boost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-gd-1_38.pdb ../src/regex_raw_buffer.cpp +vc90/boost_regex-vc90-mt-gd-1_40/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_40/ -Fdvc90/boost_regex-vc90-mt-gd-1_40.pdb ../src/regex_raw_buffer.cpp -vc90/boost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-gd-1_38.pdb ../src/regex_traits_defaults.cpp +vc90/boost_regex-vc90-mt-gd-1_40/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_40/ -Fdvc90/boost_regex-vc90-mt-gd-1_40.pdb ../src/regex_traits_defaults.cpp -vc90/boost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-gd-1_38.pdb ../src/static_mutex.cpp +vc90/boost_regex-vc90-mt-gd-1_40/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_40/ -Fdvc90/boost_regex-vc90-mt-gd-1_40.pdb ../src/static_mutex.cpp -vc90/boost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-gd-1_38.pdb ../src/usinstances.cpp +vc90/boost_regex-vc90-mt-gd-1_40/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_40/ -Fdvc90/boost_regex-vc90-mt-gd-1_40.pdb ../src/usinstances.cpp -vc90/boost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-gd-1_38.pdb ../src/w32_regex_traits.cpp +vc90/boost_regex-vc90-mt-gd-1_40/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_40/ -Fdvc90/boost_regex-vc90-mt-gd-1_40.pdb ../src/w32_regex_traits.cpp -vc90/boost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-gd-1_38.pdb ../src/wc_regex_traits.cpp +vc90/boost_regex-vc90-mt-gd-1_40/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_40/ -Fdvc90/boost_regex-vc90-mt-gd-1_40.pdb ../src/wc_regex_traits.cpp -vc90/boost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-gd-1_38.pdb ../src/wide_posix_api.cpp +vc90/boost_regex-vc90-mt-gd-1_40/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_40/ -Fdvc90/boost_regex-vc90-mt-gd-1_40.pdb ../src/wide_posix_api.cpp -vc90/boost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-gd-1_38.pdb ../src/winstances.cpp +vc90/boost_regex-vc90-mt-gd-1_40/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_40/ -Fdvc90/boost_regex-vc90-mt-gd-1_40.pdb ../src/winstances.cpp -boost_regex-vc90-mt-gd-1_38_dir : - @if not exist "vc90\boost_regex-vc90-mt-gd-1_38\$(NULL)" mkdir vc90\boost_regex-vc90-mt-gd-1_38 +boost_regex-vc90-mt-gd-1_40_dir : + @if not exist "vc90\boost_regex-vc90-mt-gd-1_40\$(NULL)" mkdir vc90\boost_regex-vc90-mt-gd-1_40 -boost_regex-vc90-mt-gd-1_38_clean : - del vc90\boost_regex-vc90-mt-gd-1_38\*.obj - del vc90\boost_regex-vc90-mt-gd-1_38\*.idb - del vc90\boost_regex-vc90-mt-gd-1_38\*.exp - del vc90\boost_regex-vc90-mt-gd-1_38\*.pch +boost_regex-vc90-mt-gd-1_40_clean : + del vc90\boost_regex-vc90-mt-gd-1_40\*.obj + del vc90\boost_regex-vc90-mt-gd-1_40\*.idb + del vc90\boost_regex-vc90-mt-gd-1_40\*.exp + del vc90\boost_regex-vc90-mt-gd-1_40\*.pch -./vc90/boost_regex-vc90-mt-gd-1_38.lib : vc90/boost_regex-vc90-mt-gd-1_38/c_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_38/cpp_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_38/cregex.obj vc90/boost_regex-vc90-mt-gd-1_38/fileiter.obj vc90/boost_regex-vc90-mt-gd-1_38/icu.obj vc90/boost_regex-vc90-mt-gd-1_38/instances.obj vc90/boost_regex-vc90-mt-gd-1_38/posix_api.obj vc90/boost_regex-vc90-mt-gd-1_38/regex.obj vc90/boost_regex-vc90-mt-gd-1_38/regex_debug.obj vc90/boost_regex-vc90-mt-gd-1_38/regex_raw_buffer.obj vc90/boost_regex-vc90-mt-gd-1_38/regex_traits_defaults.obj vc90/boost_regex-vc90-mt-gd-1_38/static_mutex.obj vc90/boost_regex-vc90-mt-gd-1_38/usinstances.obj vc90/boost_regex-vc90-mt-gd-1_38/w32_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_38/wc_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_38/wide_posix_api.obj vc90/boost_regex-vc90-mt-gd-1_38/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_38.pdb" /debug /machine:I386 /out:"vc90/boost_regex-vc90-mt-gd-1_38.dll" /implib:"vc90/boost_regex-vc90-mt-gd-1_38.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc90/boost_regex-vc90-mt-gd-1_38/c_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_38/cpp_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_38/cregex.obj vc90/boost_regex-vc90-mt-gd-1_38/fileiter.obj vc90/boost_regex-vc90-mt-gd-1_38/icu.obj vc90/boost_regex-vc90-mt-gd-1_38/instances.obj vc90/boost_regex-vc90-mt-gd-1_38/posix_api.obj vc90/boost_regex-vc90-mt-gd-1_38/regex.obj vc90/boost_regex-vc90-mt-gd-1_38/regex_debug.obj vc90/boost_regex-vc90-mt-gd-1_38/regex_raw_buffer.obj vc90/boost_regex-vc90-mt-gd-1_38/regex_traits_defaults.obj vc90/boost_regex-vc90-mt-gd-1_38/static_mutex.obj vc90/boost_regex-vc90-mt-gd-1_38/usinstances.obj vc90/boost_regex-vc90-mt-gd-1_38/w32_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_38/wc_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_38/wide_posix_api.obj vc90/boost_regex-vc90-mt-gd-1_38/winstances.obj +./vc90/boost_regex-vc90-mt-gd-1_40.lib : vc90/boost_regex-vc90-mt-gd-1_40/c_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_40/cpp_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_40/cregex.obj vc90/boost_regex-vc90-mt-gd-1_40/fileiter.obj vc90/boost_regex-vc90-mt-gd-1_40/icu.obj vc90/boost_regex-vc90-mt-gd-1_40/instances.obj vc90/boost_regex-vc90-mt-gd-1_40/posix_api.obj vc90/boost_regex-vc90-mt-gd-1_40/regex.obj vc90/boost_regex-vc90-mt-gd-1_40/regex_debug.obj vc90/boost_regex-vc90-mt-gd-1_40/regex_raw_buffer.obj vc90/boost_regex-vc90-mt-gd-1_40/regex_traits_defaults.obj vc90/boost_regex-vc90-mt-gd-1_40/static_mutex.obj vc90/boost_regex-vc90-mt-gd-1_40/usinstances.obj vc90/boost_regex-vc90-mt-gd-1_40/w32_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_40/wc_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_40/wide_posix_api.obj vc90/boost_regex-vc90-mt-gd-1_40/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_40.pdb" /debug /machine:I386 /out:"vc90/boost_regex-vc90-mt-gd-1_40.dll" /implib:"vc90/boost_regex-vc90-mt-gd-1_40.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc90/boost_regex-vc90-mt-gd-1_40/c_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_40/cpp_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_40/cregex.obj vc90/boost_regex-vc90-mt-gd-1_40/fileiter.obj vc90/boost_regex-vc90-mt-gd-1_40/icu.obj vc90/boost_regex-vc90-mt-gd-1_40/instances.obj vc90/boost_regex-vc90-mt-gd-1_40/posix_api.obj vc90/boost_regex-vc90-mt-gd-1_40/regex.obj vc90/boost_regex-vc90-mt-gd-1_40/regex_debug.obj vc90/boost_regex-vc90-mt-gd-1_40/regex_raw_buffer.obj vc90/boost_regex-vc90-mt-gd-1_40/regex_traits_defaults.obj vc90/boost_regex-vc90-mt-gd-1_40/static_mutex.obj vc90/boost_regex-vc90-mt-gd-1_40/usinstances.obj vc90/boost_regex-vc90-mt-gd-1_40/w32_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_40/wc_regex_traits.obj vc90/boost_regex-vc90-mt-gd-1_40/wide_posix_api.obj vc90/boost_regex-vc90-mt-gd-1_40/winstances.obj ######################################################## # -# section for boost_regex-vc90-mt-1_38.lib +# section for boost_regex-vc90-mt-1_40.lib # ######################################################## -vc90/boost_regex-vc90-mt-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-1_38.pdb ../src/c_regex_traits.cpp +vc90/boost_regex-vc90-mt-1_40/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_40/ -Fdvc90/boost_regex-vc90-mt-1_40.pdb ../src/c_regex_traits.cpp -vc90/boost_regex-vc90-mt-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-1_38.pdb ../src/cpp_regex_traits.cpp +vc90/boost_regex-vc90-mt-1_40/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_40/ -Fdvc90/boost_regex-vc90-mt-1_40.pdb ../src/cpp_regex_traits.cpp -vc90/boost_regex-vc90-mt-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-1_38.pdb ../src/cregex.cpp +vc90/boost_regex-vc90-mt-1_40/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_40/ -Fdvc90/boost_regex-vc90-mt-1_40.pdb ../src/cregex.cpp -vc90/boost_regex-vc90-mt-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-1_38.pdb ../src/fileiter.cpp +vc90/boost_regex-vc90-mt-1_40/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_40/ -Fdvc90/boost_regex-vc90-mt-1_40.pdb ../src/fileiter.cpp -vc90/boost_regex-vc90-mt-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-1_38.pdb ../src/icu.cpp +vc90/boost_regex-vc90-mt-1_40/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_40/ -Fdvc90/boost_regex-vc90-mt-1_40.pdb ../src/icu.cpp -vc90/boost_regex-vc90-mt-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-1_38.pdb ../src/instances.cpp +vc90/boost_regex-vc90-mt-1_40/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_40/ -Fdvc90/boost_regex-vc90-mt-1_40.pdb ../src/instances.cpp -vc90/boost_regex-vc90-mt-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-1_38.pdb ../src/posix_api.cpp +vc90/boost_regex-vc90-mt-1_40/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_40/ -Fdvc90/boost_regex-vc90-mt-1_40.pdb ../src/posix_api.cpp -vc90/boost_regex-vc90-mt-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-1_38.pdb ../src/regex.cpp +vc90/boost_regex-vc90-mt-1_40/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_40/ -Fdvc90/boost_regex-vc90-mt-1_40.pdb ../src/regex.cpp -vc90/boost_regex-vc90-mt-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-1_38.pdb ../src/regex_debug.cpp +vc90/boost_regex-vc90-mt-1_40/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_40/ -Fdvc90/boost_regex-vc90-mt-1_40.pdb ../src/regex_debug.cpp -vc90/boost_regex-vc90-mt-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-1_38.pdb ../src/regex_raw_buffer.cpp +vc90/boost_regex-vc90-mt-1_40/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_40/ -Fdvc90/boost_regex-vc90-mt-1_40.pdb ../src/regex_raw_buffer.cpp -vc90/boost_regex-vc90-mt-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-1_38.pdb ../src/regex_traits_defaults.cpp +vc90/boost_regex-vc90-mt-1_40/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_40/ -Fdvc90/boost_regex-vc90-mt-1_40.pdb ../src/regex_traits_defaults.cpp -vc90/boost_regex-vc90-mt-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-1_38.pdb ../src/static_mutex.cpp +vc90/boost_regex-vc90-mt-1_40/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_40/ -Fdvc90/boost_regex-vc90-mt-1_40.pdb ../src/static_mutex.cpp -vc90/boost_regex-vc90-mt-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-1_38.pdb ../src/usinstances.cpp +vc90/boost_regex-vc90-mt-1_40/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_40/ -Fdvc90/boost_regex-vc90-mt-1_40.pdb ../src/usinstances.cpp -vc90/boost_regex-vc90-mt-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-1_38.pdb ../src/w32_regex_traits.cpp +vc90/boost_regex-vc90-mt-1_40/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_40/ -Fdvc90/boost_regex-vc90-mt-1_40.pdb ../src/w32_regex_traits.cpp -vc90/boost_regex-vc90-mt-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-1_38.pdb ../src/wc_regex_traits.cpp +vc90/boost_regex-vc90-mt-1_40/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_40/ -Fdvc90/boost_regex-vc90-mt-1_40.pdb ../src/wc_regex_traits.cpp -vc90/boost_regex-vc90-mt-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-1_38.pdb ../src/wide_posix_api.cpp +vc90/boost_regex-vc90-mt-1_40/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_40/ -Fdvc90/boost_regex-vc90-mt-1_40.pdb ../src/wide_posix_api.cpp -vc90/boost_regex-vc90-mt-1_38/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_38/ -Fdvc90/boost_regex-vc90-mt-1_38.pdb ../src/winstances.cpp +vc90/boost_regex-vc90-mt-1_40/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_40/ -Fdvc90/boost_regex-vc90-mt-1_40.pdb ../src/winstances.cpp -boost_regex-vc90-mt-1_38_dir : - @if not exist "vc90\boost_regex-vc90-mt-1_38\$(NULL)" mkdir vc90\boost_regex-vc90-mt-1_38 +boost_regex-vc90-mt-1_40_dir : + @if not exist "vc90\boost_regex-vc90-mt-1_40\$(NULL)" mkdir vc90\boost_regex-vc90-mt-1_40 -boost_regex-vc90-mt-1_38_clean : - del vc90\boost_regex-vc90-mt-1_38\*.obj - del vc90\boost_regex-vc90-mt-1_38\*.idb - del vc90\boost_regex-vc90-mt-1_38\*.exp - del vc90\boost_regex-vc90-mt-1_38\*.pch +boost_regex-vc90-mt-1_40_clean : + del vc90\boost_regex-vc90-mt-1_40\*.obj + del vc90\boost_regex-vc90-mt-1_40\*.idb + del vc90\boost_regex-vc90-mt-1_40\*.exp + del vc90\boost_regex-vc90-mt-1_40\*.pch -./vc90/boost_regex-vc90-mt-1_38.lib : vc90/boost_regex-vc90-mt-1_38/c_regex_traits.obj vc90/boost_regex-vc90-mt-1_38/cpp_regex_traits.obj vc90/boost_regex-vc90-mt-1_38/cregex.obj vc90/boost_regex-vc90-mt-1_38/fileiter.obj vc90/boost_regex-vc90-mt-1_38/icu.obj vc90/boost_regex-vc90-mt-1_38/instances.obj vc90/boost_regex-vc90-mt-1_38/posix_api.obj vc90/boost_regex-vc90-mt-1_38/regex.obj vc90/boost_regex-vc90-mt-1_38/regex_debug.obj vc90/boost_regex-vc90-mt-1_38/regex_raw_buffer.obj vc90/boost_regex-vc90-mt-1_38/regex_traits_defaults.obj vc90/boost_regex-vc90-mt-1_38/static_mutex.obj vc90/boost_regex-vc90-mt-1_38/usinstances.obj vc90/boost_regex-vc90-mt-1_38/w32_regex_traits.obj vc90/boost_regex-vc90-mt-1_38/wc_regex_traits.obj vc90/boost_regex-vc90-mt-1_38/wide_posix_api.obj vc90/boost_regex-vc90-mt-1_38/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_38.pdb" /debug /machine:I386 /out:"vc90/boost_regex-vc90-mt-1_38.dll" /implib:"vc90/boost_regex-vc90-mt-1_38.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc90/boost_regex-vc90-mt-1_38/c_regex_traits.obj vc90/boost_regex-vc90-mt-1_38/cpp_regex_traits.obj vc90/boost_regex-vc90-mt-1_38/cregex.obj vc90/boost_regex-vc90-mt-1_38/fileiter.obj vc90/boost_regex-vc90-mt-1_38/icu.obj vc90/boost_regex-vc90-mt-1_38/instances.obj vc90/boost_regex-vc90-mt-1_38/posix_api.obj vc90/boost_regex-vc90-mt-1_38/regex.obj vc90/boost_regex-vc90-mt-1_38/regex_debug.obj vc90/boost_regex-vc90-mt-1_38/regex_raw_buffer.obj vc90/boost_regex-vc90-mt-1_38/regex_traits_defaults.obj vc90/boost_regex-vc90-mt-1_38/static_mutex.obj vc90/boost_regex-vc90-mt-1_38/usinstances.obj vc90/boost_regex-vc90-mt-1_38/w32_regex_traits.obj vc90/boost_regex-vc90-mt-1_38/wc_regex_traits.obj vc90/boost_regex-vc90-mt-1_38/wide_posix_api.obj vc90/boost_regex-vc90-mt-1_38/winstances.obj +./vc90/boost_regex-vc90-mt-1_40.lib : vc90/boost_regex-vc90-mt-1_40/c_regex_traits.obj vc90/boost_regex-vc90-mt-1_40/cpp_regex_traits.obj vc90/boost_regex-vc90-mt-1_40/cregex.obj vc90/boost_regex-vc90-mt-1_40/fileiter.obj vc90/boost_regex-vc90-mt-1_40/icu.obj vc90/boost_regex-vc90-mt-1_40/instances.obj vc90/boost_regex-vc90-mt-1_40/posix_api.obj vc90/boost_regex-vc90-mt-1_40/regex.obj vc90/boost_regex-vc90-mt-1_40/regex_debug.obj vc90/boost_regex-vc90-mt-1_40/regex_raw_buffer.obj vc90/boost_regex-vc90-mt-1_40/regex_traits_defaults.obj vc90/boost_regex-vc90-mt-1_40/static_mutex.obj vc90/boost_regex-vc90-mt-1_40/usinstances.obj vc90/boost_regex-vc90-mt-1_40/w32_regex_traits.obj vc90/boost_regex-vc90-mt-1_40/wc_regex_traits.obj vc90/boost_regex-vc90-mt-1_40/wide_posix_api.obj vc90/boost_regex-vc90-mt-1_40/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_40.pdb" /debug /machine:I386 /out:"vc90/boost_regex-vc90-mt-1_40.dll" /implib:"vc90/boost_regex-vc90-mt-1_40.lib" /LIBPATH:"$(STLPORT_PATH)\lib" $(XLFLAGS) $(ICU_LINK_OPTS) vc90/boost_regex-vc90-mt-1_40/c_regex_traits.obj vc90/boost_regex-vc90-mt-1_40/cpp_regex_traits.obj vc90/boost_regex-vc90-mt-1_40/cregex.obj vc90/boost_regex-vc90-mt-1_40/fileiter.obj vc90/boost_regex-vc90-mt-1_40/icu.obj vc90/boost_regex-vc90-mt-1_40/instances.obj vc90/boost_regex-vc90-mt-1_40/posix_api.obj vc90/boost_regex-vc90-mt-1_40/regex.obj vc90/boost_regex-vc90-mt-1_40/regex_debug.obj vc90/boost_regex-vc90-mt-1_40/regex_raw_buffer.obj vc90/boost_regex-vc90-mt-1_40/regex_traits_defaults.obj vc90/boost_regex-vc90-mt-1_40/static_mutex.obj vc90/boost_regex-vc90-mt-1_40/usinstances.obj vc90/boost_regex-vc90-mt-1_40/w32_regex_traits.obj vc90/boost_regex-vc90-mt-1_40/wc_regex_traits.obj vc90/boost_regex-vc90-mt-1_40/wide_posix_api.obj vc90/boost_regex-vc90-mt-1_40/winstances.obj ######################################################## # -# section for libboost_regex-vc90-mt-1_38.lib +# section for libboost_regex-vc90-mt-1_40.lib # ######################################################## -vc90/libboost_regex-vc90-mt-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-1_38.pdb ../src/c_regex_traits.cpp +vc90/libboost_regex-vc90-mt-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-1_40.pdb ../src/c_regex_traits.cpp -vc90/libboost_regex-vc90-mt-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-1_38.pdb ../src/cpp_regex_traits.cpp +vc90/libboost_regex-vc90-mt-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-1_40.pdb ../src/cpp_regex_traits.cpp -vc90/libboost_regex-vc90-mt-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-1_38.pdb ../src/cregex.cpp +vc90/libboost_regex-vc90-mt-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-1_40.pdb ../src/cregex.cpp -vc90/libboost_regex-vc90-mt-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-1_38.pdb ../src/fileiter.cpp +vc90/libboost_regex-vc90-mt-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-1_40.pdb ../src/fileiter.cpp -vc90/libboost_regex-vc90-mt-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-1_38.pdb ../src/icu.cpp +vc90/libboost_regex-vc90-mt-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-1_40.pdb ../src/icu.cpp -vc90/libboost_regex-vc90-mt-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-1_38.pdb ../src/instances.cpp +vc90/libboost_regex-vc90-mt-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-1_40.pdb ../src/instances.cpp -vc90/libboost_regex-vc90-mt-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-1_38.pdb ../src/posix_api.cpp +vc90/libboost_regex-vc90-mt-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-1_40.pdb ../src/posix_api.cpp -vc90/libboost_regex-vc90-mt-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-1_38.pdb ../src/regex.cpp +vc90/libboost_regex-vc90-mt-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-1_40.pdb ../src/regex.cpp -vc90/libboost_regex-vc90-mt-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-1_38.pdb ../src/regex_debug.cpp +vc90/libboost_regex-vc90-mt-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-1_40.pdb ../src/regex_debug.cpp -vc90/libboost_regex-vc90-mt-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-1_38.pdb ../src/regex_raw_buffer.cpp +vc90/libboost_regex-vc90-mt-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-1_40.pdb ../src/regex_raw_buffer.cpp -vc90/libboost_regex-vc90-mt-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-1_38.pdb ../src/regex_traits_defaults.cpp +vc90/libboost_regex-vc90-mt-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-1_40.pdb ../src/regex_traits_defaults.cpp -vc90/libboost_regex-vc90-mt-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-1_38.pdb ../src/static_mutex.cpp +vc90/libboost_regex-vc90-mt-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-1_40.pdb ../src/static_mutex.cpp -vc90/libboost_regex-vc90-mt-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-1_38.pdb ../src/usinstances.cpp +vc90/libboost_regex-vc90-mt-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-1_40.pdb ../src/usinstances.cpp -vc90/libboost_regex-vc90-mt-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-1_38.pdb ../src/w32_regex_traits.cpp +vc90/libboost_regex-vc90-mt-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-1_40.pdb ../src/w32_regex_traits.cpp -vc90/libboost_regex-vc90-mt-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-1_38.pdb ../src/wc_regex_traits.cpp +vc90/libboost_regex-vc90-mt-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-1_40.pdb ../src/wc_regex_traits.cpp -vc90/libboost_regex-vc90-mt-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-1_38.pdb ../src/wide_posix_api.cpp +vc90/libboost_regex-vc90-mt-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-1_40.pdb ../src/wide_posix_api.cpp -vc90/libboost_regex-vc90-mt-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-1_38.pdb ../src/winstances.cpp +vc90/libboost_regex-vc90-mt-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-1_40.pdb ../src/winstances.cpp -libboost_regex-vc90-mt-1_38_dir : - @if not exist "vc90\libboost_regex-vc90-mt-1_38\$(NULL)" mkdir vc90\libboost_regex-vc90-mt-1_38 +libboost_regex-vc90-mt-1_40_dir : + @if not exist "vc90\libboost_regex-vc90-mt-1_40\$(NULL)" mkdir vc90\libboost_regex-vc90-mt-1_40 -libboost_regex-vc90-mt-1_38_clean : - del vc90\libboost_regex-vc90-mt-1_38\*.obj - del vc90\libboost_regex-vc90-mt-1_38\*.idb - del vc90\libboost_regex-vc90-mt-1_38\*.exp - del vc90\libboost_regex-vc90-mt-1_38\*.pch +libboost_regex-vc90-mt-1_40_clean : + del vc90\libboost_regex-vc90-mt-1_40\*.obj + del vc90\libboost_regex-vc90-mt-1_40\*.idb + del vc90\libboost_regex-vc90-mt-1_40\*.exp + del vc90\libboost_regex-vc90-mt-1_40\*.pch -./vc90/libboost_regex-vc90-mt-1_38.lib : vc90/libboost_regex-vc90-mt-1_38/c_regex_traits.obj vc90/libboost_regex-vc90-mt-1_38/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-1_38/cregex.obj vc90/libboost_regex-vc90-mt-1_38/fileiter.obj vc90/libboost_regex-vc90-mt-1_38/icu.obj vc90/libboost_regex-vc90-mt-1_38/instances.obj vc90/libboost_regex-vc90-mt-1_38/posix_api.obj vc90/libboost_regex-vc90-mt-1_38/regex.obj vc90/libboost_regex-vc90-mt-1_38/regex_debug.obj vc90/libboost_regex-vc90-mt-1_38/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-1_38/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-1_38/static_mutex.obj vc90/libboost_regex-vc90-mt-1_38/usinstances.obj vc90/libboost_regex-vc90-mt-1_38/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-1_38/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-1_38/wide_posix_api.obj vc90/libboost_regex-vc90-mt-1_38/winstances.obj - link -lib /nologo /out:vc90/libboost_regex-vc90-mt-1_38.lib $(XSFLAGS) vc90/libboost_regex-vc90-mt-1_38/c_regex_traits.obj vc90/libboost_regex-vc90-mt-1_38/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-1_38/cregex.obj vc90/libboost_regex-vc90-mt-1_38/fileiter.obj vc90/libboost_regex-vc90-mt-1_38/icu.obj vc90/libboost_regex-vc90-mt-1_38/instances.obj vc90/libboost_regex-vc90-mt-1_38/posix_api.obj vc90/libboost_regex-vc90-mt-1_38/regex.obj vc90/libboost_regex-vc90-mt-1_38/regex_debug.obj vc90/libboost_regex-vc90-mt-1_38/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-1_38/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-1_38/static_mutex.obj vc90/libboost_regex-vc90-mt-1_38/usinstances.obj vc90/libboost_regex-vc90-mt-1_38/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-1_38/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-1_38/wide_posix_api.obj vc90/libboost_regex-vc90-mt-1_38/winstances.obj +./vc90/libboost_regex-vc90-mt-1_40.lib : vc90/libboost_regex-vc90-mt-1_40/c_regex_traits.obj vc90/libboost_regex-vc90-mt-1_40/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-1_40/cregex.obj vc90/libboost_regex-vc90-mt-1_40/fileiter.obj vc90/libboost_regex-vc90-mt-1_40/icu.obj vc90/libboost_regex-vc90-mt-1_40/instances.obj vc90/libboost_regex-vc90-mt-1_40/posix_api.obj vc90/libboost_regex-vc90-mt-1_40/regex.obj vc90/libboost_regex-vc90-mt-1_40/regex_debug.obj vc90/libboost_regex-vc90-mt-1_40/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-1_40/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-1_40/static_mutex.obj vc90/libboost_regex-vc90-mt-1_40/usinstances.obj vc90/libboost_regex-vc90-mt-1_40/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-1_40/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-1_40/wide_posix_api.obj vc90/libboost_regex-vc90-mt-1_40/winstances.obj + link -lib /nologo /out:vc90/libboost_regex-vc90-mt-1_40.lib $(XSFLAGS) vc90/libboost_regex-vc90-mt-1_40/c_regex_traits.obj vc90/libboost_regex-vc90-mt-1_40/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-1_40/cregex.obj vc90/libboost_regex-vc90-mt-1_40/fileiter.obj vc90/libboost_regex-vc90-mt-1_40/icu.obj vc90/libboost_regex-vc90-mt-1_40/instances.obj vc90/libboost_regex-vc90-mt-1_40/posix_api.obj vc90/libboost_regex-vc90-mt-1_40/regex.obj vc90/libboost_regex-vc90-mt-1_40/regex_debug.obj vc90/libboost_regex-vc90-mt-1_40/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-1_40/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-1_40/static_mutex.obj vc90/libboost_regex-vc90-mt-1_40/usinstances.obj vc90/libboost_regex-vc90-mt-1_40/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-1_40/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-1_40/wide_posix_api.obj vc90/libboost_regex-vc90-mt-1_40/winstances.obj ######################################################## # -# section for libboost_regex-vc90-mt-gd-1_38.lib +# section for libboost_regex-vc90-mt-gd-1_40.lib # ######################################################## -vc90/libboost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-gd-1_38.pdb ../src/c_regex_traits.cpp +vc90/libboost_regex-vc90-mt-gd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-gd-1_40.pdb ../src/c_regex_traits.cpp -vc90/libboost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-gd-1_38.pdb ../src/cpp_regex_traits.cpp +vc90/libboost_regex-vc90-mt-gd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-gd-1_40.pdb ../src/cpp_regex_traits.cpp -vc90/libboost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-gd-1_38.pdb ../src/cregex.cpp +vc90/libboost_regex-vc90-mt-gd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-gd-1_40.pdb ../src/cregex.cpp -vc90/libboost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-gd-1_38.pdb ../src/fileiter.cpp +vc90/libboost_regex-vc90-mt-gd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-gd-1_40.pdb ../src/fileiter.cpp -vc90/libboost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-gd-1_38.pdb ../src/icu.cpp +vc90/libboost_regex-vc90-mt-gd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-gd-1_40.pdb ../src/icu.cpp -vc90/libboost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-gd-1_38.pdb ../src/instances.cpp +vc90/libboost_regex-vc90-mt-gd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-gd-1_40.pdb ../src/instances.cpp -vc90/libboost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-gd-1_38.pdb ../src/posix_api.cpp +vc90/libboost_regex-vc90-mt-gd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-gd-1_40.pdb ../src/posix_api.cpp -vc90/libboost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-gd-1_38.pdb ../src/regex.cpp +vc90/libboost_regex-vc90-mt-gd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-gd-1_40.pdb ../src/regex.cpp -vc90/libboost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-gd-1_38.pdb ../src/regex_debug.cpp +vc90/libboost_regex-vc90-mt-gd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-gd-1_40.pdb ../src/regex_debug.cpp -vc90/libboost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-gd-1_38.pdb ../src/regex_raw_buffer.cpp +vc90/libboost_regex-vc90-mt-gd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-gd-1_40.pdb ../src/regex_raw_buffer.cpp -vc90/libboost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-gd-1_38.pdb ../src/regex_traits_defaults.cpp +vc90/libboost_regex-vc90-mt-gd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-gd-1_40.pdb ../src/regex_traits_defaults.cpp -vc90/libboost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-gd-1_38.pdb ../src/static_mutex.cpp +vc90/libboost_regex-vc90-mt-gd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-gd-1_40.pdb ../src/static_mutex.cpp -vc90/libboost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-gd-1_38.pdb ../src/usinstances.cpp +vc90/libboost_regex-vc90-mt-gd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-gd-1_40.pdb ../src/usinstances.cpp -vc90/libboost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-gd-1_38.pdb ../src/w32_regex_traits.cpp +vc90/libboost_regex-vc90-mt-gd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-gd-1_40.pdb ../src/w32_regex_traits.cpp -vc90/libboost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-gd-1_38.pdb ../src/wc_regex_traits.cpp +vc90/libboost_regex-vc90-mt-gd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-gd-1_40.pdb ../src/wc_regex_traits.cpp -vc90/libboost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-gd-1_38.pdb ../src/wide_posix_api.cpp +vc90/libboost_regex-vc90-mt-gd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-gd-1_40.pdb ../src/wide_posix_api.cpp -vc90/libboost_regex-vc90-mt-gd-1_38/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_38/ -Fdvc90/libboost_regex-vc90-mt-gd-1_38.pdb ../src/winstances.cpp +vc90/libboost_regex-vc90-mt-gd-1_40/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_40/ -Fdvc90/libboost_regex-vc90-mt-gd-1_40.pdb ../src/winstances.cpp -libboost_regex-vc90-mt-gd-1_38_dir : - @if not exist "vc90\libboost_regex-vc90-mt-gd-1_38\$(NULL)" mkdir vc90\libboost_regex-vc90-mt-gd-1_38 +libboost_regex-vc90-mt-gd-1_40_dir : + @if not exist "vc90\libboost_regex-vc90-mt-gd-1_40\$(NULL)" mkdir vc90\libboost_regex-vc90-mt-gd-1_40 -libboost_regex-vc90-mt-gd-1_38_clean : - del vc90\libboost_regex-vc90-mt-gd-1_38\*.obj - del vc90\libboost_regex-vc90-mt-gd-1_38\*.idb - del vc90\libboost_regex-vc90-mt-gd-1_38\*.exp - del vc90\libboost_regex-vc90-mt-gd-1_38\*.pch +libboost_regex-vc90-mt-gd-1_40_clean : + del vc90\libboost_regex-vc90-mt-gd-1_40\*.obj + del vc90\libboost_regex-vc90-mt-gd-1_40\*.idb + del vc90\libboost_regex-vc90-mt-gd-1_40\*.exp + del vc90\libboost_regex-vc90-mt-gd-1_40\*.pch -./vc90/libboost_regex-vc90-mt-gd-1_38.lib : vc90/libboost_regex-vc90-mt-gd-1_38/c_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_38/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_38/cregex.obj vc90/libboost_regex-vc90-mt-gd-1_38/fileiter.obj vc90/libboost_regex-vc90-mt-gd-1_38/icu.obj vc90/libboost_regex-vc90-mt-gd-1_38/instances.obj vc90/libboost_regex-vc90-mt-gd-1_38/posix_api.obj vc90/libboost_regex-vc90-mt-gd-1_38/regex.obj vc90/libboost_regex-vc90-mt-gd-1_38/regex_debug.obj vc90/libboost_regex-vc90-mt-gd-1_38/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-gd-1_38/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-gd-1_38/static_mutex.obj vc90/libboost_regex-vc90-mt-gd-1_38/usinstances.obj vc90/libboost_regex-vc90-mt-gd-1_38/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_38/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_38/wide_posix_api.obj vc90/libboost_regex-vc90-mt-gd-1_38/winstances.obj - link -lib /nologo /out:vc90/libboost_regex-vc90-mt-gd-1_38.lib $(XSFLAGS) vc90/libboost_regex-vc90-mt-gd-1_38/c_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_38/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_38/cregex.obj vc90/libboost_regex-vc90-mt-gd-1_38/fileiter.obj vc90/libboost_regex-vc90-mt-gd-1_38/icu.obj vc90/libboost_regex-vc90-mt-gd-1_38/instances.obj vc90/libboost_regex-vc90-mt-gd-1_38/posix_api.obj vc90/libboost_regex-vc90-mt-gd-1_38/regex.obj vc90/libboost_regex-vc90-mt-gd-1_38/regex_debug.obj vc90/libboost_regex-vc90-mt-gd-1_38/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-gd-1_38/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-gd-1_38/static_mutex.obj vc90/libboost_regex-vc90-mt-gd-1_38/usinstances.obj vc90/libboost_regex-vc90-mt-gd-1_38/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_38/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_38/wide_posix_api.obj vc90/libboost_regex-vc90-mt-gd-1_38/winstances.obj +./vc90/libboost_regex-vc90-mt-gd-1_40.lib : vc90/libboost_regex-vc90-mt-gd-1_40/c_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_40/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_40/cregex.obj vc90/libboost_regex-vc90-mt-gd-1_40/fileiter.obj vc90/libboost_regex-vc90-mt-gd-1_40/icu.obj vc90/libboost_regex-vc90-mt-gd-1_40/instances.obj vc90/libboost_regex-vc90-mt-gd-1_40/posix_api.obj vc90/libboost_regex-vc90-mt-gd-1_40/regex.obj vc90/libboost_regex-vc90-mt-gd-1_40/regex_debug.obj vc90/libboost_regex-vc90-mt-gd-1_40/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-gd-1_40/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-gd-1_40/static_mutex.obj vc90/libboost_regex-vc90-mt-gd-1_40/usinstances.obj vc90/libboost_regex-vc90-mt-gd-1_40/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_40/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_40/wide_posix_api.obj vc90/libboost_regex-vc90-mt-gd-1_40/winstances.obj + link -lib /nologo /out:vc90/libboost_regex-vc90-mt-gd-1_40.lib $(XSFLAGS) vc90/libboost_regex-vc90-mt-gd-1_40/c_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_40/cpp_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_40/cregex.obj vc90/libboost_regex-vc90-mt-gd-1_40/fileiter.obj vc90/libboost_regex-vc90-mt-gd-1_40/icu.obj vc90/libboost_regex-vc90-mt-gd-1_40/instances.obj vc90/libboost_regex-vc90-mt-gd-1_40/posix_api.obj vc90/libboost_regex-vc90-mt-gd-1_40/regex.obj vc90/libboost_regex-vc90-mt-gd-1_40/regex_debug.obj vc90/libboost_regex-vc90-mt-gd-1_40/regex_raw_buffer.obj vc90/libboost_regex-vc90-mt-gd-1_40/regex_traits_defaults.obj vc90/libboost_regex-vc90-mt-gd-1_40/static_mutex.obj vc90/libboost_regex-vc90-mt-gd-1_40/usinstances.obj vc90/libboost_regex-vc90-mt-gd-1_40/w32_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_40/wc_regex_traits.obj vc90/libboost_regex-vc90-mt-gd-1_40/wide_posix_api.obj vc90/libboost_regex-vc90-mt-gd-1_40/winstances.obj From 1ac89c0a5464eb67db91b1c86008bc427f65a91f Mon Sep 17 00:00:00 2001 From: John Maddock Date: Thu, 30 Jul 2009 10:47:28 +0000 Subject: [PATCH 72/72] Allow the Jamfile to work correctly when both HAVE_ICU and ICU_PATH are set. [SVN r55279] --- build/Jamfile.v2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Jamfile.v2 b/build/Jamfile.v2 index a914ad5b..8943a3f9 100644 --- a/build/Jamfile.v2 +++ b/build/Jamfile.v2 @@ -22,7 +22,7 @@ rule check-icu-config ( ) if ! $(gICU_CONFIG_CHECKED) { - if $(HAVE_ICU) + if $(HAVE_ICU) && ! $(ICU_PATH) { gHAS_ICU = true ; gICU_CORE_LIB = icuuc ;