mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
- ensures that subsequent Allwmake scripts know about it. ENH: add bin/tools/query-detect wrapper for wmake have_* scripts CONFIG: use project/ThirdParty without additional sanity checks - no need to test for Allwmake or platforms/ if ThirdParty is located within the project directory itself. COMP: add simple mpi test to 00-dummy - for testing library linkage, etc.
18 lines
387 B
Plaintext
18 lines
387 B
Plaintext
/* Disable normal project defaults */
|
|
PROJECT_INC =
|
|
PROJECT_LIBS =
|
|
|
|
sinclude $(GENERAL_RULES)/mplib$(WM_MPLIB)
|
|
sinclude $(DEFAULT_RULES)/mplib$(WM_MPLIB)
|
|
|
|
/* Default is PROJECT LIB/mpi target */
|
|
ifeq (,$(FOAM_MPI_LIBBIN))
|
|
FOAM_MPI_LIBBIN := $(FOAM_LIBBIN)/$(FOAM_MPI)
|
|
endif
|
|
|
|
EXE_INC = \
|
|
-I.. \
|
|
$(PFLAGS) $(PINC) $(c++LESSWARN) -DFOAM_MPI=\"$(FOAM_MPI)\"
|
|
|
|
LIB_LIBS = $(PLIBS)
|