How to 'catkin_make clean' just one package?
Hello,
How can we completely remove a single catkin package from our catkin workspace? The commands:
$ cd ~/catkin_ws
$ catkin_make clean package_name
appears to also remove shared objects from all other packages in the workspace so that a subsequent "catkin_make" has to rebuild stuff in those packages. I would like a way to remove all build objects from a package without affecting other packages and so that subsequently removing the source tree of the package in question would remove all traces of it from the workspace.
Thanks!
patrick
Your command invokes
catkin_make clean
and thancatkin_make package_name
which cleans everything and than builds only the executable/library package_name.