From 855df4757fe22b0e80d0cb4f5cafe91fd36c485c Mon Sep 17 00:00:00 2001 From: mattijs Date: Thu, 21 Apr 2011 15:55:33 +0100 Subject: [PATCH] ENH: Allwmake: pass through build option --- src/fvAgglomerationMethods/Allwmake | 2 +- src/regionModels/Allwmake | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/src/fvAgglomerationMethods/Allwmake b/src/fvAgglomerationMethods/Allwmake index c4313c1a47..aa039078e9 100755 --- a/src/fvAgglomerationMethods/Allwmake +++ b/src/fvAgglomerationMethods/Allwmake @@ -10,6 +10,6 @@ then wmake $makeType MGridGenGamgAgglomeration fi -wmake libso pairPatchAgglomeration +wmake $makeType pairPatchAgglomeration # ----------------------------------------------------------------- end-of-file diff --git a/src/regionModels/Allwmake b/src/regionModels/Allwmake index 7713ded586..b8b7bce119 100755 --- a/src/regionModels/Allwmake +++ b/src/regionModels/Allwmake @@ -1,11 +1,12 @@ #!/bin/sh cd ${0%/*} || exit 1 # run from this directory +makeType=${1:-libso} set -x -wmake libso regionModel -#wmake libso pyrolysisModels -wmake libso surfaceFilmModels -#wmake libso regionCoupling +wmake $makeType regionModel +#wmake $makeType pyrolysisModels +wmake $makeType surfaceFilmModels +#wmake $makeType regionCoupling # ----------------------------------------------------------------- end-of-file