aboutsummaryrefslogtreecommitdiff
path: root/build/target.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-07-01 10:45:14 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-07-01 10:47:13 +0200
commitf7e9830c0c413f05737002dcc8d06e73cb379980 (patch)
treed5195010b6ca66a270ead105302ef918bff07f0f /build/target.cxx
parent17b3a78696f0b1fd6f0f60d53ec568cf3b9e32b4 (diff)
Group state support
Diffstat (limited to 'build/target.cxx')
-rw-r--r--build/target.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/build/target.cxx b/build/target.cxx
index 7958a85..f692a5e 100644
--- a/build/target.cxx
+++ b/build/target.cxx
@@ -32,7 +32,7 @@ namespace build
// target_state
//
static const char* target_state_[] = {
- "unknown", "postponed", "unchanged", "changed", "failed"};
+ "group", "unknown", "postponed", "unchanged", "changed", "failed"};
ostream&
operator<< (ostream& os, target_state ts)
@@ -45,6 +45,7 @@ namespace build
const recipe empty_recipe;
const recipe noop_recipe (&noop_action);
const recipe default_recipe (&default_action);
+ const recipe group_recipe (&group_action);
// target
//