Files
openfoam/src/postProcessing/functionObjects/Allwmake
Mark Olesen e0311539fc STYLE: change makeOption to makeType internally
- also simplify setting makeType in the Allwmake scripts
2011-03-08 08:58:44 +01:00

14 lines
314 B
Bash
Executable File

#!/bin/sh
cd ${0%/*} || exit 1 # run from this directory
makeType=${1:-libso}
set -x
wmake $makeType field
wmake $makeType forces
wmake $makeType IO
wmake $makeType utilities
wmake $makeType jobControl
wmake $makeType systemCall
# ----------------------------------------------------------------- end-of-file