2 #------------------------------------------------------------------------------
4 # \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
6 # \\ / A nd | Copyright held by original author
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
52 The '-f' option forces an update when the lnInclude directory already exists
53 and also changes the default linking from 'ln -s' to 'ln -sf'.
59 #------------------------------------------------------------------------------
61 # simple option parsing
68 # simple parse options
72 -h |
-help) # provide immediate help
81 usage
"unknown option: '$*'"
97 usage
"ERROR: incorrect number of arguments"
101 # convert incorrect path/dir/lnInclude to something sensible
102 while [ "${baseDir##*/}" = lnInclude
]
104 baseDir
="${baseDir%/*}"
105 if [ "$baseDir" = lnInclude
]
110 incDir
=$baseDir/lnInclude
115 echo "$Script error: base directory $baseDir does not exist" 1>&2
121 if [ ! "$forceUpdate" ]
123 # echo "$Script error: include directory $incDir already exists" 1>&2
132 echo "$Script error: failed to create include directory $incDir" 1>&2
141 echo "$Script: linking include files to $incDir"
144 # remove any broken links first (this helps when file locations have moved)
146 find -L .
-type l
-exec rm {} \
;
149 # create links, avoid recreating links unless necessary
150 # things placed in the 'noLink' directory are skipped
153 \
( -name lnInclude
-o -name Make
-o -name config
-o -name noLink \
) -prune \
154 -o \
( -name '*.[CHh]' -o -name '*.[ch]xx' -o -name '*.[ch]pp' -o -name '*.type' \
) \
155 -exec ln $lnOpt {} . \
;
157 #------------------------------------------------------------------------------