https://github.com/CGAL/cgal
Raw File
Tip revision: bad69afeab9bf80e86953d3dd69bbba81148f940 authored by Laurent Rineau on 22 December 2009, 11:11:38 UTC
Release CGAL-3.5.1, which is /branches/CGAL-3.5-branch@53508
Tip revision: bad69af
clean_tree.csh
#! /usr/local/bin/zsh -f

find . -name "*.o" -exec rm {} \;
find . -name "*.exe" -exec rm {} \;
find . -name "*~" -exec rm {} \;
find . -name "\#*" -exec rm {} \;
find . -name "*.old" -exec rm {} \;
find . -name "*.bak" -exec rm {} \;
back to top