mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
34 lines
673 B
Bash
Executable File
34 lines
673 B
Bash
Executable File
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # run from this directory
|
|
|
|
# get SCOTCH_VERSION, SCOTCH_ARCH_PATH, SCOTCH_MPI_INCLUDE
|
|
settings=`$WM_PROJECT_DIR/bin/foamEtcFile apps/scotch/bashrc`
|
|
if [ -f "$settings" ]
|
|
then
|
|
. $settings
|
|
echo "using SCOTCH_ARCH_PATH=$SCOTCH_ARCH_PATH"
|
|
else
|
|
echo
|
|
echo "Error: no apps/scotch/bashrc settings"
|
|
echo
|
|
fi
|
|
set -x
|
|
|
|
wmakeLnInclude decompositionMethods
|
|
|
|
wmake libso scotchDecomp
|
|
wmake libso metisDecomp
|
|
|
|
if [ -d "$FOAM_MPI_LIBBIN" ]
|
|
then
|
|
(
|
|
WM_OPTIONS=${WM_OPTIONS}$WM_MPLIB
|
|
wmake libso ptscotchDecomp
|
|
)
|
|
fi
|
|
|
|
wmake libso decompositionMethods
|
|
|
|
|
|
# ----------------------------------------------------------------- end-of-file
|