2 #------------------------------------------------------------------------------
4 # \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
6 # \\ / A nd | Copyright (C) 1991-2008 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 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
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
30 # Link all the source files in the <dir> directory into <dir>/lnInclude
32 # Usage: wmakeLnInclude [-f] <dir> [-lnOption]
34 # The desired source files:
35 # *.C *.H *.h *.cpp *.cxx *.hpp *.hxx
39 # .#* (cvs recovered files)
40 #------------------------------------------------------------------------------
44 while [ "$#" -ge 1 ]; do echo "$1"; shift; done
47 usage: $Script [-f] <dir> [-lnOption]
49 Link all the source files in the <dir> into <dir>/lnInclude
50 * Use '-f' to force an update when the lnInclude directory already exists.
56 #------------------------------------------------------------------------------
58 # simple option parsing
62 # simple parse options
66 -h |
-help) # provide immediate help
74 usage
"unknown option/argument: '$*'"
83 # convert incorrect path/dir/lnInclude to something sensible
84 while [ "${baseDir##*/}" = lnInclude
]
86 baseDir
="${baseDir%/*}"
87 if [ "$baseDir" = lnInclude
]
92 incDir
=$baseDir/lnInclude
102 usage
"ERROR: incorrect number of arguments"
108 echo "$Script error: base directory $baseDir does not exist" 1>&2
114 if [ ! "$forceUpdate" ]
116 # echo "$Script error: include directory $incDir already exists" 1>&2
125 echo "$Script error: failed to create include directory $incDir" 1>&2
134 echo "$Script: linking include files to $incDir"
137 # remove any broken links first (this helps when file locations have moved)
139 find -L .
-type l
-exec rm \
{\
} \
;
142 # create links, avoid recreating links unless necessary
145 \
( -name lnInclude
-o -name Make
-o -name config \
) -prune \
146 -o \
( -name '*.[CHh]' -o -name '*.[ch]xx' -o -name '*.[ch]pp' -o -name '*.type' \
) \
151 link
=$
(readlink
${src##*/})
152 if [ "$link" != "$src" ]
159 #------------------------------------------------------------------------------