aboutsummaryrefslogtreecommitdiff
path: root/build/target.cxx
diff options
context:
space:
mode:
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
//