47 lines
1.2 KiB
Bash
Executable File
47 lines
1.2 KiB
Bash
Executable File
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # Run from this directory
|
|
|
|
# Parse arguments for library compilation without documentation by default
|
|
genDoc=0
|
|
targetType=libso
|
|
. $WM_PROJECT_DIR/wmake/scripts/AllwmakeParseArguments
|
|
|
|
wmakeCheckPwd "$WM_PROJECT_DIR" || {
|
|
echo "Allwmake error: Current directory is not \$WM_PROJECT_DIR"
|
|
echo " The environment variables are inconsistent with the installation."
|
|
echo " Check the OpenFOAM entries in your dot-files and source them."
|
|
exit 1
|
|
}
|
|
|
|
[ -n "$FOAM_EXT_LIBBIN" ] || {
|
|
echo "Allwmake error: FOAM_EXT_LIBBIN not set"
|
|
echo " Check the OpenFOAM entries in your dot-files and source them."
|
|
exit 1
|
|
}
|
|
|
|
# Compile wmake support applications
|
|
(cd wmake/src && make)
|
|
|
|
# Compile ThirdParty libraries and applications
|
|
if [ -d "$WM_THIRD_PARTY_DIR" ]
|
|
then
|
|
$WM_THIRD_PARTY_DIR/Allwmake
|
|
else
|
|
echo "Allwmake: no ThirdParty directory found - skipping"
|
|
fi
|
|
|
|
# Compile OpenFOAM libraries and applications
|
|
src/Allwmake $targetType $*
|
|
|
|
# Compile OpenFOAM libraries and applications
|
|
applications/Allwmake $targetType $*
|
|
|
|
# Optionally build OpenFOAM Doxygen documentation
|
|
if [ $genDoc -eq 1 ]
|
|
then
|
|
doc/Allwmake
|
|
fi
|
|
|
|
|
|
#------------------------------------------------------------------------------
|