33 lines
709 B
Bash
Executable file
33 lines
709 B
Bash
Executable file
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # run from this directory
|
|
makeType=${1:-libso}
|
|
set -x
|
|
|
|
export ParMGridGen=$WM_THIRD_PARTY_DIR/ParMGridGen-1.0
|
|
|
|
if [ -e "$FOAM_LIBBIN/libMGridGen.so" ]
|
|
then
|
|
wmake $makeType MGridGenGamgAgglomeration
|
|
fi
|
|
|
|
wmake $makeType pairPatchAgglomeration
|
|
|
|
|
|
## get SCOTCH_VERSION, SCOTCH_ARCH_PATH
|
|
#if settings=`$WM_PROJECT_DIR/bin/foamEtcFile config/scotch.sh`
|
|
#then
|
|
# . $settings
|
|
# echo "using SCOTCH_ARCH_PATH=$SCOTCH_ARCH_PATH"
|
|
#else
|
|
# echo
|
|
# echo "Error: no config/scotch.sh settings"
|
|
# echo
|
|
#fi
|
|
#
|
|
#if [ -n "$SCOTCH_ARCH_PATH" ]
|
|
#then
|
|
# wmake $makeType scotchGamgAgglomeration
|
|
#fi
|
|
|
|
|
|
# ----------------------------------------------------------------- end-of-file
|