From 17b3a78696f0b1fd6f0f60d53ec568cf3b9e32b4 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 1 Jul 2015 09:11:31 +0200 Subject: Cleanup group "see through" design --- build/bin/rule.cxx | 2 +- build/bin/target.cxx | 21 ++++++++++++++------- 2 files changed, 15 insertions(+), 8 deletions(-) (limited to 'build/bin') diff --git a/build/bin/rule.cxx b/build/bin/rule.cxx index d2928ca..0fc0e40 100644 --- a/build/bin/rule.cxx +++ b/build/bin/rule.cxx @@ -34,7 +34,7 @@ namespace build // lib // // The whole logic is pretty much as if we had our two group - // members as prerequisites. + // members as our prerequisites. // match_result lib_rule:: match (action, target& t, const std::string&) const diff --git a/build/bin/target.cxx b/build/bin/target.cxx index 66eadb7..1190bfc 100644 --- a/build/bin/target.cxx +++ b/build/bin/target.cxx @@ -29,7 +29,8 @@ namespace build &file::static_type, &obja_factory, nullptr, - &search_file + &search_file, + false }; static target* @@ -51,7 +52,8 @@ namespace build &file::static_type, &objso_factory, nullptr, - &search_file + &search_file, + false }; static target* @@ -77,7 +79,8 @@ namespace build &target::static_type, &obj_factory, nullptr, - &search_target + &search_target, + false }; const target_type exe::static_type @@ -87,7 +90,8 @@ namespace build &file::static_type, &target_factory, nullptr, - &search_file + &search_file, + false }; static target* @@ -109,7 +113,8 @@ namespace build &file::static_type, &liba_factory, nullptr, - &search_file + &search_file, + false }; static target* @@ -131,7 +136,8 @@ namespace build &file::static_type, &libso_factory, nullptr, - &search_file + &search_file, + false }; static target* @@ -157,7 +163,8 @@ namespace build &target::static_type, &lib_factory, nullptr, - &search_target + &search_target, + false }; } } -- cgit v1.1