From f88e5c349ff0107ac4a13ae00180f767741f88d1 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Tue, 24 Apr 2007 15:43:35 +0000 Subject: 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. --- src/build.y | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/build.y') 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 bld.addCommand( Action::actClean ); } | TOK_CHECK TOK_GROUP STRING + { + bld.addGrpCommand( $3, Action::actCheck ); + } | TOK_CLEAN TOK_GROUP STRING + { + bld.addGrpCommand( $3, Action::actClean ); + } ; // Target interpretation -- cgit v1.2.3