![]() | 1 | initial version |
rosmake --target=clean
![]() | 2 | No.2 Revision |
rosmake --target=clean
for i in $(find . -maxdepth 1 -mindepth 1 -type d); do cd $i; make clean; cd -; done
![]() | 3 | No.3 Revision |
rosmake --target=clean
For any directory this should work:
for i in $(find . -maxdepth 1 -mindepth 1 -type d); do cd $i; make clean; cd -; done