- handling of dead links (find -L -delete unsupported) - remove ignore case flag on 's/../../i' used in have_scotch script. It is unneeded and not tolerated by Darwin's sed. - avoid embedded comments in EXE_INC (Make/options files), which do not work well with the OSX LLVM cpp. It strips out the comments but also removes the continuation char. STYLE: adjust notes about paraview library locations
26 lines
717 B
Plaintext
26 lines
717 B
Plaintext
/* Add to EXE_INC as required:
|
|
-DFULLDEBUG -g -O0
|
|
*/
|
|
|
|
EXE_INC = \
|
|
${COMP_FLAGS} \
|
|
-I$(LIB_SRC)/meshTools/lnInclude \
|
|
-I$(LIB_SRC)/dynamicMesh/lnInclude \
|
|
-I$(LIB_SRC)/finiteVolume/lnInclude \
|
|
-I$(LIB_SRC)/renumber/renumberMethods/lnInclude \
|
|
-I$(LIB_SRC)/renumber/zoltanRenumber/lnInclude \
|
|
-I$(LIB_SRC)/parallel/decompose/decompositionMethods/lnInclude \
|
|
-I$(LIB_SRC)/parallel/reconstruct/reconstruct/lnInclude
|
|
|
|
EXE_LIBS = \
|
|
-lmeshTools \
|
|
-ldynamicMesh \
|
|
-lfiniteVolume \
|
|
-lgenericPatchFields \
|
|
-lrenumberMethods \
|
|
-lreconstruct \
|
|
$(LINK_FLAGS) \
|
|
-ldecompositionMethods \
|
|
-L$(FOAM_LIBBIN)/dummy \
|
|
-lkahipDecomp -lmetisDecomp -lscotchDecomp
|