72 lines
2.1 KiB
Makefile
72 lines
2.1 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.
|
|
|
|
MFEM_DIR ?= ../..
|
|
MFEM_BUILD_DIR ?= ../..
|
|
SRC = $(if $(MFEM_DIR:../..=),$(MFEM_DIR)/tests/unit/,)
|
|
CONFIG_MK = $(MFEM_BUILD_DIR)/config/config.mk
|
|
|
|
MFEM_LIB_FILE = mfem_is_not_built
|
|
-include $(CONFIG_MK)
|
|
|
|
CC = $(MFEM_CXX)
|
|
CCOPTS = -g
|
|
CCC = $(CC) $(CCOPTS)
|
|
|
|
# -I$(MFEM_DIR) is needed by some tests, e.g. to #include "general/text.hpp"
|
|
INCLUDES = -I$(or $(SRC:%/=%),.) -I$(MFEM_DIR)
|
|
|
|
SOURCE_FILES = $(SRC)unit_test_main.cpp $(sort $(wildcard $(SRC)*/*.cpp))
|
|
HEADER_FILES = $(SRC)catch.hpp
|
|
OBJECT_FILES = $(SOURCE_FILES:$(SRC)%.cpp=%.o)
|
|
DATA_DIR = data
|
|
|
|
SEQ_UNIT_TESTS = unit_tests
|
|
PAR_UNIT_TESTS =
|
|
ifeq ($(MFEM_USE_MPI),NO)
|
|
UNIT_TESTS = $(SEQ_UNIT_TESTS)
|
|
else
|
|
UNIT_TESTS = $(PAR_UNIT_TESTS) $(SEQ_UNIT_TESTS)
|
|
endif
|
|
|
|
all: $(UNIT_TESTS)
|
|
|
|
.SUFFIXES:
|
|
.SUFFIXES: .cpp .o
|
|
.PHONY: all clean
|
|
|
|
unit_tests: $(OBJECT_FILES) $(MFEM_LIB_FILE) $(CONFIG_MK) $(DATA_DIR)
|
|
$(CCC) $(OBJECT_FILES) $(INCLUDES) $(MFEM_LINK_FLAGS) $(MFEM_LIBS) -o $(@)
|
|
|
|
# Note: in this rule, we always use the full path to the source file as a
|
|
# workaround for an issue with coveralls.
|
|
$(OBJECT_FILES): %.o: $(SRC)%.cpp $(HEADER_FILES) $(CONFIG_MK)
|
|
@mkdir -p $(@D)
|
|
$(CCC) -c $(abspath $(<)) $(INCLUDES) $(MFEM_FLAGS) -o $(@)
|
|
|
|
$(DATA_DIR):
|
|
ln -s $(SRC)$(DATA_DIR) .
|
|
|
|
# Testing
|
|
MFEM_TESTS = UNIT_TESTS
|
|
include $(MFEM_TEST_MK)
|
|
|
|
%-test-seq: %
|
|
@$(call mfem-test,$<,, Unit tests,,SKIP-NO-VIS)
|
|
|
|
# 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 $(SEQ_UNIT_TESTS) $(PAR_UNIT_TESTS) *.o */*.o */*~ *~
|
|
rm -rf *.dSYM output_meshes
|