Given that the number of solid solver modules is currently 1 and unlikely to exceed 3 it is not very useful to maintain solid and fluid sub-directories and easier to see the correspondence between the solver modules and tutorial cases without.
17 lines
508 B
Bash
Executable File
17 lines
508 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 fluidSolver
|
|
wmake $targetType incompressibleFluid
|
|
wmake $targetType isothermalFluid
|
|
wmake $targetType fluid
|
|
wmake $targetType multicomponentFluid
|
|
compressibleVoF/Allwmake $targetType $*
|
|
multiphaseEuler/Allwmake $targetType $*
|
|
wmake $targetType solid
|
|
|
|
#------------------------------------------------------------------------------
|