mirror of
https://github.com/OpenFOAM/OpenFOAM-6.git
synced 2025-12-08 06:57:46 +00:00
16 lines
360 B
Bash
Executable File
16 lines
360 B
Bash
Executable File
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # run from this directory
|
|
makeType=${1:-libso}
|
|
set -x
|
|
|
|
wmake $makeType cloud
|
|
wmake $makeType field
|
|
wmake $makeType forces
|
|
wmake $makeType fvTools
|
|
wmake $makeType IO
|
|
wmake $makeType jobControl
|
|
wmake $makeType systemCall
|
|
wmake $makeType utilities
|
|
|
|
# ----------------------------------------------------------------- end-of-file
|