COMP: Allwmake: feed through 'objects' targer for wmakeCollect

This commit is contained in:
mattijs 2018-05-17 08:39:57 +01:00
parent a33b6aa447
commit d469bbae4b
4 changed files with 6 additions and 7 deletions

View File

@ -3,7 +3,7 @@ cd ${0%/*} || exit 1 # Run from this directory
#------------------------------------------------------------------------------
wmake libso CompressibleTwoPhaseMixtureTurbulenceModels
wmake
wmake $targetType CompressibleTwoPhaseMixtureTurbulenceModels
wmake $targetType
#------------------------------------------------------------------------------

View File

@ -1,11 +1,10 @@
#!/bin/sh
cd ${0%/*} || exit 1 # Run from this directory
targetType=libso # Preferred library type
. $WM_PROJECT_DIR/wmake/scripts/AllwmakeParseArguments
#------------------------------------------------------------------------------
wmake $targetType temperaturePhaseChangeTwoPhaseMixtures
wmake
wmake $targetType
#------------------------------------------------------------------------------

View File

@ -12,8 +12,8 @@ if have_cgal
then
wmake $targetType conformalVoronoiMesh
wmake $targetType conformalVoronoi2DMesh
wmake foamyQuadMesh
wmake foamyHexMesh
wmake $targetType foamyQuadMesh
wmake $targetType foamyHexMesh
# wmake foamyHexMeshBackgroundMesh
# (cd foamyHexMeshSurfaceSimplify && ./Allwmake)
# wmake cellSizeAndAlignmentGrid

View File

@ -2,6 +2,6 @@
cd ${0%/*} || exit 1 # Run from this directory
. $WM_PROJECT_DIR/wmake/scripts/AllwmakeParseArguments
(wmake libso extractionMethod && wmake)
(wmake $targetType extractionMethod && wmake $targetType)
#------------------------------------------------------------------------------