Merge branch 'master' of ssh://opencfd@repo.or.cz/srv/git/OpenFOAM-1.5.x
[OpenFOAM-1.5.x.git] / wmake / wcleanMachine
blob9dacf643eab30e64a2a47c3734e125f78c018600
1 #!/bin/sh
2 #------------------------------------------------------------------------------
3 # ========= |
4 # \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 # \\ / O peration |
6 # \\ / A nd | Copyright (C) 1991-2008 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 the
14 # Free Software Foundation; either version 2 of the License, or (at your
15 # 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, write to the Free Software Foundation,
24 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
26 # Script
27 # wcleanMachine
29 # Description
30 # Searches the directories below the current directory for the object
31 # file directories of the specified machine type(s) and deletes them
33 # Usage: wcleanMachine <machineType> [ .. <machineTypeN> ]
35 #------------------------------------------------------------------------------
36 usage() {
37 while [ "$#" -ge 1 ]; do echo "$1"; shift; done
38 cat<<USAGE
39 usage: ${0##*/} machineType [... machineTypeN]
41 Searches the directories below the current directory for the object file
42 directories of the specified machine type(s) and deletes them
44 USAGE
45 exit 1
48 # needs some machine types ... or provide immediate help
49 if [ "$#" -lt 1 -o "$1" = "-h" -o "$1" = "-help" ]
50 then
51 usage
54 [ -d lib -a -d src ] || usage "not in the project top level directory"
57 for machType
59 echo "Cleaning machine type: $machType"
61 find `find . -depth \( -name "Make.[A-Za-z]*" -o -name Make \) -type d -print` \
62 -depth \( -type d -name "*$machType" -o -name "*$machType$WM_MPLIB" \) -exec rm -r {} \;
64 # find . -depth -type d \( -name ii_files -o -name Templates.DB \) -exec rm -rf {} \;
66 for dir in lib/$machType applications/bin/$machType
68 [ -d $dir ] && rm -rf $dir
69 done
71 done
73 #------------------------------------------------------------------------------