mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Introduced Makefile variable 'THIRD_PARTY'
This commit is contained in:
@ -1,10 +1,8 @@
|
||||
thirdParty=$(WM_PROJECT_INST_DIR)/ThirdParty
|
||||
|
||||
EXE_INC = \
|
||||
-I$(LIB_SRC)/finiteVolume/lnInclude \
|
||||
-I$(LIB_SRC)/meshTools/lnInclude \
|
||||
-I$(thirdParty)/libccmio \
|
||||
-I$(thirdParty)/libccmio/lnInclude
|
||||
-I$(THIRD_PARTY)/libccmio \
|
||||
-I$(THIRD_PARTY)/libccmio/lnInclude
|
||||
|
||||
EXE_LIBS = \
|
||||
-lfiniteVolume \
|
||||
|
||||
@ -3,12 +3,11 @@ set -x
|
||||
|
||||
wmake libso decompositionMethods
|
||||
|
||||
if [ -d $FOAM_MPI_LIBBIN ]
|
||||
if [ -d "$FOAM_MPI_LIBBIN" ]
|
||||
then
|
||||
wmake libso parMetisDecomp
|
||||
fi
|
||||
|
||||
( cd MGridGenGamgAgglomeration && ./Allwmake )
|
||||
|
||||
wmake libso MGridGenGamgAgglomeration
|
||||
|
||||
# ----------------------------------------------------------------- end-of-file
|
||||
|
||||
@ -1 +0,0 @@
|
||||
wmake libso MGridGenGAMGAgglomeration
|
||||
@ -1,4 +1,4 @@
|
||||
ParMGridGen = ${WM_PROJECT_INST_DIR}/ThirdParty/ParMGridGen-1.0
|
||||
ParMGridGen = $(THIRD_PARTY)/ParMGridGen-1.0
|
||||
|
||||
TYPE_REAL=
|
||||
#if defined(SP)
|
||||
@ -1,5 +1,5 @@
|
||||
EXE_INC = \
|
||||
-I${WM_PROJECT_INST_DIR}/ThirdParty/metis-5.0pre2/include
|
||||
-I$(THIRD_PARTY)/metis-5.0pre2/include
|
||||
|
||||
LIB_LIBS = \
|
||||
-lmetis \
|
||||
|
||||
@ -2,8 +2,8 @@ include $(RULES)/mplib$(WM_MPLIB)
|
||||
|
||||
EXE_INC = \
|
||||
$(PFLAGS) $(PINC) \
|
||||
-I${WM_PROJECT_INST_DIR}/ThirdParty/ParMetis-3.1/ParMETISLib \
|
||||
-I${WM_PROJECT_INST_DIR}/ThirdParty/ParMetis-3.1 \
|
||||
-I$(THIRD_PARTY)/ParMetis-3.1/ParMETISLib \
|
||||
-I$(THIRD_PARTY)/ParMetis-3.1 \
|
||||
-I../decompositionMethods/lnInclude
|
||||
|
||||
LIB_LIBS = \
|
||||
|
||||
@ -59,6 +59,7 @@ LIB_DIR = $(WM_PROJECT_DIR)/lib
|
||||
LIB_WM_OPTIONS_DIR = $(LIB_DIR)/$(WM_OPTIONS)
|
||||
OBJECTS_DIR = $(MAKE_DIR)/$(WM_OPTIONS)
|
||||
CLASSES_DIR = $(MAKE_DIR)/classes
|
||||
THIRD_PARTY = $(WM_PROJECT_INST_DIR)/ThirdParty
|
||||
|
||||
SYS_INC =
|
||||
SYS_LIBS =
|
||||
|
||||
Reference in New Issue
Block a user