ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

You can just do roscd your_package_name && make clean to clean out all the generated files from just that package.

You can just do roscd your_package_name && make clean to clean out all the generated files from just that package.package. I typically use rosmake only when building new package the first time to make sure all dependencies are built or when dependencies change. After that initial rosmake, plain make command is much faster and does the same thing.

You can just do roscd your_package_name && make clean to clean out all the generated files from just that package. I typically use rosmake only when building new package the first time to make sure all dependencies are built or when dependencies change. After that the initial rosmake, plain make command is much faster and does only builds the same thing.package I am currently developing.