Skip to content
Snippets Groups Projects
Commit 6ef9dc55 authored by Thomas Witkowski's avatar Thomas Witkowski
Browse files

Added USE_REINIT parameter to Makefile.

parent 227b90b8
No related branches found
No related tags found
No related merge requests found
......@@ -17,8 +17,9 @@ AMDIS_INCLUDE = -I$(AMDIS_DIR)/src -I$(AMDIS_DIR)/compositeFEM/src -I$(AMDIS_DIR
MPCCI_INCLUDE = -I$(MPCCI_DIR)/include
PARMETIS_INCLUDE = -I$(PARMETIS_DIR)
PARALLEL_INCLUDE = -I$(AMDIS_DIR)/src/parallel
REINIT_INCLUDE = -I$(AMDIS_DIR)/Reinit/src
INCLUDES = -I. $(AMDIS_INCLUDE) $(MPCCI_INCLUDE) $(PARALLEL_INCLUDE)
INCLUDES = -I. $(AMDIS_INCLUDE) $(MPCCI_INCLUDE) $(REINIT_INCLUDE) $(PARALLEL_INCLUDE)
# ============================================================================
# ===== libraries ============================================================
......@@ -67,6 +68,9 @@ ifeq ($(strip $(USE_MPCCI)), 1)
LIBS += $(MPCCI_LIB)
endif
ifeq ($(strip $(USE_REINIT)), 1)
LIBS += -L$(AMDIS_DIR)/Reinit/lib -lreinit
endif
# ============================================================================
# ===== parallel or sequential ? =============================================
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment