14 lines
401 B
Bash
Executable file
14 lines
401 B
Bash
Executable file
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # run from this directory
|
|
makeType=${1:-libso}
|
|
set -x
|
|
|
|
wmake $makeType regionModel
|
|
wmake $makeType pyrolysisModels
|
|
wmake $makeType surfaceFilmModels
|
|
wmake $makeType surfaceFilmModels/derivedFvPatchFields/wallFunctions
|
|
wmake $makeType thermalBaffleModels
|
|
wmake $makeType regionCoupling
|
|
|
|
|
|
# ----------------------------------------------------------------- end-of-file
|