Now lnInclude are created as required by the presence of entries in the EXE_INC variable in the Make/options file. This removes the need for calling wmakeLnInclude in various Allwmake files to ensure the existence of the lnInclude directories prior to compilation of dependent libraries.
13 lines
379 B
Bash
Executable File
13 lines
379 B
Bash
Executable File
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # Run from this directory
|
|
|
|
# Parse arguments for library compilation
|
|
. $WM_PROJECT_DIR/wmake/scripts/AllwmakeParseArguments
|
|
|
|
wmake $targetType twoPhaseSystem
|
|
wmake $targetType interfacialModels
|
|
wmake $targetType phaseCompressibleTurbulenceModels
|
|
wmake $targetType
|
|
|
|
#------------------------------------------------------------------------------
|