diff options
Diffstat (limited to '')
-rw-r--r-- | src/build.y | 6 |
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 |