STYLE: updated license version in header
[OpenFOAM-1.7.x.git] / wmake / wcleanAll
blob79493f11022d704a38f9287cd3574004d2557a5a
1 #!/bin/sh
2 #---------------------------------*- sh -*-------------------------------------
3 # ========= |
4 # \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 # \\ / O peration |
6 # \\ / A nd | Copyright (C) 1991-2010 OpenCFD Ltd.
7 # \\/ M anipulation |
8 #------------------------------------------------------------------------------
9 # License
10 # This file is part of OpenFOAM.
12 # OpenFOAM is free software: you can redistribute it and/or modify it
13 # under the terms of the GNU General Public License as published by
14 # the Free Software Foundation, either version 3 of the License, or
15 # (at your option) any later version.
17 # OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
18 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 # for more details.
22 # You should have received a copy of the GNU General Public License
23 # along with OpenFOAM. 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" \) -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 #------------------------------------------------------------------------------