diff options
Diffstat (limited to 'build/bin')
-rw-r--r-- | build/bin/module.cxx | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/build/bin/module.cxx b/build/bin/module.cxx index 63f602c..760c90d 100644 --- a/build/bin/module.cxx +++ b/build/bin/module.cxx @@ -57,11 +57,15 @@ namespace build { auto& rs (b.rules); - rs.insert<obj> (perform_id, update_id, "bin.obj", obj_); - rs.insert<obj> (perform_id, clean_id, "bin.obj", obj_); + rs.insert<obj> (perform_id, update_id, "bin", obj_); + rs.insert<obj> (perform_id, clean_id, "bin", obj_); - rs.insert<lib> (perform_id, update_id, "bin.lib", lib_); - rs.insert<lib> (perform_id, clean_id, "bin.lib", lib_); + rs.insert<lib> (perform_id, update_id, "bin", lib_); + rs.insert<lib> (perform_id, clean_id, "bin", lib_); + + // Configure members. + // + rs.insert<lib> (configure_id, update_id, "lib", lib_); //@@ Should we check if the install module was loaded // (by checking if install operation is registered @@ -70,7 +74,7 @@ namespace build // should enforce loading of all operation-defining // modules before all others? // - rs.insert<lib> (perform_id, install_id, "bin.lib", lib_); + rs.insert<lib> (perform_id, install_id, "bin", lib_); } // Enter module variables. |