13 lines
316 B
Bash
Executable file
13 lines
316 B
Bash
Executable file
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # run from this directory
|
|
set -x
|
|
|
|
wmake libso conjugateHeatTransfer
|
|
|
|
wmake blockCoupledScalarTransportFoam
|
|
wmake conjugateHeatFoam
|
|
wmake conjugateHeatSimpleFoam
|
|
wmake pUCoupledFoam
|
|
wmake MRFPorousFoam
|
|
|
|
# ----------------------------------------------------------------- end-of-file
|