aboutsummaryrefslogtreecommitdiff
path: root/src/build.y
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2007-04-24 15:43:35 +0000
committerMike Buland <eichlan@xagasoft.com>2007-04-24 15:43:35 +0000
commitf88e5c349ff0107ac4a13ae00180f767741f88d1 (patch)
tree26ecb2afe254f23ae9f57f701b67d41801c40c87 /src/build.y
parentff938b977db21378a1f016f65e7345c50e71ef8f (diff)
downloadbuild-f88e5c349ff0107ac4a13ae00180f767741f88d1.tar.gz
build-f88e5c349ff0107ac4a13ae00180f767741f88d1.tar.bz2
build-f88e5c349ff0107ac4a13ae00180f767741f88d1.tar.xz
build-f88e5c349ff0107ac4a13ae00180f767741f88d1.zip
Build groups are finished, there may be more we could do with them, but they
work just fine for what I want. They're cute though, you can put each target in as many groups as you'd like.
Diffstat (limited to 'src/build.y')
-rw-r--r--src/build.y6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/build.y b/src/build.y
index bfda4b4..55940e8 100644
--- a/src/build.y
+++ b/src/build.y
@@ -125,7 +125,13 @@ actioncmd: TOK_CHECK list
125 bld.addCommand( Action::actClean ); 125 bld.addCommand( Action::actClean );
126 } 126 }
127 | TOK_CHECK TOK_GROUP STRING 127 | TOK_CHECK TOK_GROUP STRING
128 {
129 bld.addGrpCommand( $3, Action::actCheck );
130 }
128 | TOK_CLEAN TOK_GROUP STRING 131 | TOK_CLEAN TOK_GROUP STRING
132 {
133 bld.addGrpCommand( $3, Action::actClean );
134 }
129 ; 135 ;
130 136
131// Target interpretation 137// Target interpretation