56 lines
1.6 KiB
Makefile
56 lines
1.6 KiB
Makefile
# Copyright (c) 2010, Lawrence Livermore National Security, LLC. Produced at the
|
|
# Lawrence Livermore National Laboratory. LLNL-CODE-443211. All Rights reserved.
|
|
# See file COPYRIGHT for details.
|
|
#
|
|
# This file is part of the MFEM library. For more information and source code
|
|
# availability see http://mfem.org.
|
|
#
|
|
# MFEM is free software; you can redistribute it and/or modify it under the
|
|
# terms of the GNU Lesser General Public License (as published by the Free
|
|
# Software Foundation) version 2.1 dated February 1999.
|
|
|
|
# Use the MFEM build directory
|
|
MFEM_DIR ?= ../..
|
|
MFEM_BUILD_DIR ?= ../..
|
|
SRC = $(if $(MFEM_DIR:../..=),$(MFEM_DIR)/miniapps/common/,)
|
|
CONFIG_MK = $(MFEM_BUILD_DIR)/config/config.mk
|
|
# Use the MFEM install directory
|
|
# MFEM_INSTALL_DIR = ../../mfem
|
|
# CONFIG_MK = $(MFEM_INSTALL_DIR)/share/mfem/config.mk
|
|
|
|
MFEM_LIB_FILE = mfem_is_not_built
|
|
ifneq (clean,$(MAKECMDGOALS))
|
|
-include $(CONFIG_MK)
|
|
endif
|
|
|
|
SEQ_MINIOBJS = mesh_extras.o fem_extras.o
|
|
ifeq ($(MFEM_USE_MPI),NO)
|
|
MINIOBJS = $(SEQ_MINIOBJS)
|
|
else
|
|
MINIOBJS = $(SEQ_MINIOBJS) pfem_extras.o
|
|
endif
|
|
|
|
.SUFFIXES:
|
|
.SUFFIXES: .o .cpp .mk
|
|
.PHONY: all clean
|
|
|
|
# Remove built-in rule
|
|
%.o: %.cpp
|
|
|
|
# Replace the default implicit rule for *.cpp files
|
|
%.o: $(SRC)%.cpp $(CONFIG_MK)
|
|
$(MFEM_CXX) $(MFEM_FLAGS) -c $(<) -o $(@)
|
|
|
|
all: $(MINIOBJS)
|
|
|
|
# Generate an error message if the MFEM library is not configured and exit
|
|
$(CONFIG_MK):
|
|
$(error The MFEM library is not configured)
|
|
|
|
# Generate an error message if the MFEM library is not built and exit
|
|
$(MFEM_LIB_FILE):
|
|
$(error The MFEM library is not built)
|
|
clean:
|
|
rm -f *.o *~
|
|
rm -rf *.dSYM *.TVD.*breakpoints
|