From d99707facdd67c0e6de7c79258929ee813717f4b Mon Sep 17 00:00:00 2001 From: mattijs <mattijs> Date: Thu, 2 Aug 2018 10:18:59 +0100 Subject: [PATCH] COMP: Allwmake: pass through targetType --- applications/utilities/postProcessing/noise/Allwmake | 3 ++- applications/utilities/preProcessing/boxTurb/Allwmake | 3 ++- applications/utilities/surface/surfaceBooleanFeatures/Allwmake | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/applications/utilities/postProcessing/noise/Allwmake b/applications/utilities/postProcessing/noise/Allwmake index 7452621cd23..2c9d265a5d5 100755 --- a/applications/utilities/postProcessing/noise/Allwmake +++ b/applications/utilities/postProcessing/noise/Allwmake @@ -1,12 +1,13 @@ #!/bin/sh cd ${0%/*} || exit 1 # Run from this directory +. $WM_PROJECT_DIR/wmake/scripts/AllwmakeParseArguments # (for error catching) . $WM_PROJECT_DIR/wmake/scripts/have_fftw #------------------------------------------------------------------------------ if have_fftw then - wmake + wmake $targetType else echo "==> skip noise utility (no FFTW)" fi diff --git a/applications/utilities/preProcessing/boxTurb/Allwmake b/applications/utilities/preProcessing/boxTurb/Allwmake index 21e6762b4ae..820f2da5524 100755 --- a/applications/utilities/preProcessing/boxTurb/Allwmake +++ b/applications/utilities/preProcessing/boxTurb/Allwmake @@ -1,12 +1,13 @@ #!/bin/sh cd ${0%/*} || exit 1 # Run from this directory +. $WM_PROJECT_DIR/wmake/scripts/AllwmakeParseArguments # (for error catching) . $WM_PROJECT_DIR/wmake/scripts/have_fftw #------------------------------------------------------------------------------ if have_fftw then - wmake + wmake $targetType else echo "==> skip boxTurb utility (no FFTW)" fi diff --git a/applications/utilities/surface/surfaceBooleanFeatures/Allwmake b/applications/utilities/surface/surfaceBooleanFeatures/Allwmake index 0aae5a7cfb8..933ee039b98 100755 --- a/applications/utilities/surface/surfaceBooleanFeatures/Allwmake +++ b/applications/utilities/surface/surfaceBooleanFeatures/Allwmake @@ -1,5 +1,6 @@ #!/bin/sh cd ${0%/*} || exit 1 # Run from this directory +. $WM_PROJECT_DIR/wmake/scripts/AllwmakeParseArguments # (for error catching) . $WM_PROJECT_DIR/wmake/scripts/have_cgal #------------------------------------------------------------------------------ @@ -14,6 +15,6 @@ else export COMP_FLAGS="-DNO_CGAL" fi -wmake +wmake $targetType #------------------------------------------------------------------------------ -- GitLab