Skip to content
Snippets Groups Projects
Allwmake 665 B
Newer Older
cd ${0%/*} || exit 1    # run from this directory
if [ "$PWD" != "$WM_PROJECT_DIR" ]
then
    echo "Error: Current directory in not \$WM_PROJECT_DIR"
    echo "    The environment variable are not consistent with the installation."
    echo "    Check the OpenFOAM entries in your dot-files and source them."
    exit 1
fi

# wmake is required for subsequent targets
( cd wmake/src && make )
$WM_THIRD_PARTY_DIR/Allwmake
# build OpenFOAM libraries and applications

# ----------------------------------------------------------------- end-of-file