diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-12-03 17:20:15 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-12-03 17:20:15 +0200 |
commit | 6298f309bddaf3f279a724034e2d1d3ce58e0e1a (patch) | |
tree | c41d46641fbc8789cb851a9f08649b0381c96b64 /build/operation | |
parent | e6126827072270ab41efd91741f4c22f3eac4bc8 (diff) |
Clean up rule names
Diffstat (limited to 'build/operation')
-rw-r--r-- | build/operation | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/build/operation b/build/operation index 8aeede6..d8cbd07 100644 --- a/build/operation +++ b/build/operation @@ -105,10 +105,8 @@ namespace build // Id constants for build-in and pre-defined meta/operations. // const meta_operation_id perform_id = 1; - const meta_operation_id configure_id = 2; const meta_operation_id disfigure_id = 3; - const meta_operation_id dist_id = 4; // The default operation is a special marker that can be used to @@ -117,7 +115,6 @@ namespace build const operation_id default_id = 1; // Shall be first. const operation_id update_id = 2; const operation_id clean_id = 3; - const operation_id test_id = 4; const operation_id install_id = 5; @@ -126,6 +123,8 @@ namespace build const action_id perform_test_id = (perform_id << 4) | test_id; const action_id perform_install_id = (perform_id << 4) | install_id; + const action_id configure_update_id = (configure_id << 4) | update_id; + // Recipe execution mode. // // When a target is a prerequisite of another target, its recipe can be |