107 lines
3.2 KiB
Makefile
107 lines
3.2 KiB
Makefile
# Copyright (c) 2010-2025, Lawrence Livermore National Security, LLC. Produced
|
|
# at the Lawrence Livermore National Laboratory. All Rights reserved. See files
|
|
# LICENSE and NOTICE for details. LLNL-CODE-806117.
|
|
#
|
|
# This file is part of the MFEM library. For more information and source code
|
|
# availability visit https://mfem.org.
|
|
#
|
|
# MFEM is free software; you can redistribute it and/or modify it under the
|
|
# terms of the BSD-3 license. We welcome feedback and contributions, see file
|
|
# CONTRIBUTING.md for details.
|
|
|
|
# Use the MFEM build directory
|
|
MFEM_DIR ?= ../..
|
|
MFEM_BUILD_DIR ?= ../..
|
|
MFEM_INSTALL_DIR ?= ../../mfem
|
|
SRC = $(if $(MFEM_DIR:../..=),$(MFEM_DIR)/miniapps/solvers/,)
|
|
CONFIG_MK = $(or $(wildcard $(MFEM_BUILD_DIR)/config/config.mk),\
|
|
$(wildcard $(MFEM_INSTALL_DIR)/share/mfem/config.mk))
|
|
|
|
MFEM_LIB_FILE = mfem_is_not_built
|
|
-include $(CONFIG_MK)
|
|
|
|
BLOCK_SOLVERS_SRC = block-solvers.cpp darcy_solver.cpp bramble_pasciak.cpp div_free_solver.cpp
|
|
BLOCK_SOLVERS_OBJ = $(BLOCK_SOLVERS_SRC:.cpp=.o)
|
|
|
|
LOR_ELAST_SRC = block_fespace_operator.cpp lor_elast.cpp
|
|
LOR_ELAST_OBJ = $(LOR_ELAST_SRC:.cpp=.o)
|
|
|
|
SEQ_MINIAPPS = lor_solvers
|
|
PAR_MINIAPPS = block-solvers plor_solvers lor_elast
|
|
|
|
ifeq ($(MFEM_USE_MPI),NO)
|
|
MINIAPPS = $(SEQ_MINIAPPS)
|
|
else
|
|
MINIAPPS = $(PAR_MINIAPPS) $(SEQ_MINIAPPS)
|
|
endif
|
|
|
|
.SUFFIXES:
|
|
.SUFFIXES: .o .cpp .mk
|
|
.PHONY: all clean clean-build clean-exec
|
|
# .PRECIOUS: %.o
|
|
|
|
all: $(MINIAPPS)
|
|
|
|
# Remove built-in rules
|
|
%: %.cpp
|
|
%.o: %.cpp
|
|
|
|
lor_solvers.o: $(SRC)lor_mms.hpp
|
|
plor_solvers.o: $(SRC)lor_mms.hpp
|
|
|
|
%: %.o
|
|
$(MFEM_CXX) $(MFEM_LINK_FLAGS) $< -o $@ $(MFEM_LIBS)
|
|
|
|
block-solvers: $(BLOCK_SOLVERS_OBJ)
|
|
$(MFEM_CXX) $(MFEM_LINK_FLAGS) -o $@ $(BLOCK_SOLVERS_OBJ) $(MFEM_LIBS)
|
|
|
|
lor_elast: $(LOR_ELAST_OBJ)
|
|
$(MFEM_CXX) $(MFEM_LINK_FLAGS) -o $@ $(LOR_ELAST_OBJ) $(MFEM_LIBS)
|
|
|
|
%.o: $(SRC)%.cpp $(MFEM_LIB_FILE) $(CONFIG_MK)
|
|
$(MFEM_CXX) $(MFEM_FLAGS) -c $< -o $@
|
|
|
|
MFEM_TESTS = MINIAPPS
|
|
include $(MFEM_TEST_MK)
|
|
|
|
# Testing: Specific execution options
|
|
RUN_MPI = $(MFEM_MPIEXEC) $(MFEM_MPIEXEC_NP) $(MFEM_MPI_NP)
|
|
|
|
# Block solvers miniapp tests
|
|
block-solvers-test-par: block-solvers-constant block-solvers-anisotropic
|
|
block-solvers-constant: block-solvers
|
|
@$(call mfem-test,$<, $(RUN_MPI), BlockSolver miniapp,-rs 1 -rp 1)
|
|
block-solvers-anisotropic: block-solvers
|
|
@$(call mfem-test,$<, $(RUN_MPI), BlockSolver miniapp,-rs 1 -rp 1\
|
|
-m $(SRC)anisotropic.mesh -c $(SRC)anisotropic.coeff\
|
|
-eb $(SRC)anisotropic.bdr)
|
|
|
|
# LOR solvers miniapp tests
|
|
lor_solvers-test-seq: lor_solvers
|
|
@$(call mfem-test,$<,, LOR solvers miniapp,-fe n)
|
|
plor_solvers-test-par: plor_solvers
|
|
@$(call mfem-test,$<, $(RUN_MPI), Parallel LOR solvers miniapp,-fe n\
|
|
-m ../../data/fichera.mesh)
|
|
|
|
# LOR elasticity miniapp tests
|
|
lor_elast-test-par: lor_elast-tri lor_elast-hex
|
|
lor_elast-tri: lor_elast
|
|
@$(call mfem-test,$<, $(RUN_MPI), Elasticity LOR miniapp,-l 2 -ca -pa -ss\
|
|
-m ../../data/beam-tri.mesh -o 2)
|
|
lor_elast-hex: lor_elast
|
|
@$(call mfem-test,$<, $(RUN_MPI), Elasticity LOR miniapp,-l 1 -pa -o 2\
|
|
-m ../../data/beam-hex.mesh)
|
|
|
|
# Generate an error message if the MFEM library is not built and exit
|
|
$(MFEM_LIB_FILE):
|
|
$(error The MFEM library is not built)
|
|
|
|
clean: clean-build clean-exec
|
|
|
|
clean-build:
|
|
rm -f *.o *~ $(MINIAPPS)
|
|
rm -rf *.dSYM *.TVD.*breakpoints
|
|
|
|
clean-exec:
|
|
@rm -rf mesh.* sol.* ParaView
|