Formatting
[foam-extend-3.2.git] / wmake / wcleanAll
blob5f48f62bbdf1c40384d25e18be6e5ce143693221
1 #!/bin/sh
2 #------------------------------------------------------------------------------
3 # ========= |
4 # \\ / F ield | foam-extend: Open Source CFD
5 # \\ / O peration | Version: 3.2
6 # \\ / A nd | Web: http://www.foam-extend.org
7 # \\/ M anipulation | For copyright notice see file Copyright
8 #------------------------------------------------------------------------------
9 # License
10 # This file is part of foam-extend.
12 # foam-extend is free software: you can redistribute it and/or modify it
13 # under the terms of the GNU General Public License as published by the
14 # Free Software Foundation, either version 3 of the License, or (at your
15 # option) any later version.
17 # foam-extend is distributed in the hope that it will be useful, but
18 # WITHOUT ANY WARRANTY; without even the implied warranty of
19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 # General Public License for more details.
22 # You should have received a copy of the GNU General Public License
23 # along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
25 # Script
26 # wcleanAll
28 # Description
29 # search all the directories below the current for the object file
30 # directories of all machines and delete them.
32 #------------------------------------------------------------------------------
33 if [ "$1" = "-h" -o "$1" = "-help" ]
34 then
35 echo "Usage: ${0##*/}"
36 echo
37 echo " Remove all object files and *.dep files"
38 exit 1
41 [ -d bin -a -d src ] || {
42 echo "${0##*/}: not in the project top level directory"
43 exit 1
46 for dir in lib applications/bin
48 echo "Removing $dir/"
49 [ -d $dir ] && rm -rf $dir/*
50 done
52 echo "Removing *.dep files"
53 find . -name '*.dep' -exec rm {} \;
55 echo "Cleaning Make subdirectories"
56 find `find . -depth \( -name "Make.[A-Za-z]*" -o -name Make \) -type d -print` -depth \( -type d ! -name "*Make.[A-Za-z]*" ! -name "*Make" \( ! -path '*.svn*' \) \) -exec rm -rf {} \;
58 echo "Removing lnInclude and intermediate directories"
59 find . -depth -type d \( -name lnInclude -o -name ii_files -o -name Templates.DB \) -exec rm -rf {} \;
61 echo "Removing misc files"
62 find . \( -name exe -o -name log -o -name so_locations \) -exec rm {} \;
64 ( cd tutorials && ./Allclean )
66 #------------------------------------------------------------------------------