2 #------------------------------------------------------------------------------
4 # \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
6 # \\ / A nd | Copyright (C) 2004-2011 OpenCFD Ltd.
8 #-------------------------------------------------------------------------------
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
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/>.
29 # touch all .dep files
30 #------------------------------------------------------------------------------
33 while [ "$#" -ge 1 ]; do echo "$1"; shift; done
36 Usage: ${0##*/} [OPTION] [dir1] .. [dirN]
38 -make limit selection to 'Make/\$WM_OPTIONS*' (Make/$WM_OPTIONS*)
41 Find and touch all .dep files in the specified directories.
42 Uses the cwd by default if no directories are specified.
44 Current value of WM_OPTIONS=$WM_OPTIONS
47 NOTE The '-make' is a future feature.
48 This is currently no separation of .dep files by platforms.
65 [ -n "$WM_OPTIONS" ] || usage
"Error: -make option only valid when \$WM_OPTIONS is set"
70 usage
"unknown option: '$*'"
79 # no directories specified: default is pwd
80 [ "$#" -gt 0 ] ||
set -- .
86 if [ "$restrictOpt" = true
]
88 echo "touching all .dep files under Make/$WM_OPTIONS* : $i"
89 find $i -depth -name Make
-type d
-print | \
90 xargs -i find '{}' -depth -name "$WM_OPTIONS*" -type d
-print | \
91 xargs -i find '{}' -name '*.dep' -type f
-print | \
94 echo "touching all .dep files: $i"
95 find $i -name '*.dep' -type f
-print |
xargs -t touch
98 echo "no directory: $i"
101 #------------------------------------------------------------------------------