xref: /libCEED/Makefile (revision db52d626815692990e7f35f74cd22482d9f89e76)
10c784865Scamierjs# Copyright (c) 2017-2018, Lawrence Livermore National Security, LLC.
20c784865Scamierjs# Produced at the Lawrence Livermore National Laboratory. LLNL-CODE-734707.
30c784865Scamierjs# All Rights reserved. See files LICENSE and NOTICE for details.
40d9661cdSTzanio#
50d9661cdSTzanio# This file is part of CEED, a collection of benchmarks, miniapps, software
60d9661cdSTzanio# libraries and APIs for efficient high-order finite element and spectral
70d9661cdSTzanio# element discretizations for exascale applications. For more information and
80d9661cdSTzanio# source code availability see http://github.com/ceed.
90d9661cdSTzanio#
100d9661cdSTzanio# The CEED research is supported by the Exascale Computing Project 17-SC-20-SC,
110d9661cdSTzanio# a collaborative effort of two U.S. Department of Energy organizations (Office
120d9661cdSTzanio# of Science and the National Nuclear Security Administration) responsible for
130d9661cdSTzanio# the planning and preparation of a capable exascale ecosystem, including
140d9661cdSTzanio# software, applications, hardware, advanced system engineering and early
150d9661cdSTzanio# testbed platforms, in support of the nation's exascale computing imperative.
160d9661cdSTzanio
17b0ab70ddSJed BrownCONFIG ?= config.mk
18b0ab70ddSJed Brown-include $(CONFIG)
19777ff853SJeremy L ThompsonCOMMON ?= common.mk
20777ff853SJeremy L Thompson-include $(COMMON)
211571c99dSValeria Barra
22dc753d40SJed Brownifeq (,$(filter-out undefined default,$(origin CC)))
236ed738d9SJed Brown  CC = gcc
24dc753d40SJed Brownendif
25241a4b83SYohannifeq (,$(filter-out undefined default,$(origin CXX)))
26241a4b83SYohann  CXX = g++
27241a4b83SYohannendif
28dc753d40SJed Brownifeq (,$(filter-out undefined default,$(origin FC)))
2981c9eb91SStan Tomov  FC = gfortran
30dc753d40SJed Brownendif
31241a4b83SYohannifeq (,$(filter-out undefined default,$(origin LINK)))
32241a4b83SYohann  LINK = $(CC)
33241a4b83SYohannendif
341d013790SJed Brownifeq (,$(filter-out undefined default,$(origin AR)))
351d013790SJed Brown  AR = ar
361d013790SJed Brownendif
371d013790SJed Brownifeq (,$(filter-out undefined default,$(origin ARFLAGS)))
381d013790SJed Brown  ARFLAGS = crD
391d013790SJed Brownendif
40196a75e4SJed BrownNVCC ?= $(CUDA_DIR)/bin/nvcc
413c83ce1dSJed BrownNVCC_CXX ?= $(CXX)
4230f4f45fSnbeamsHIPCC ?= $(HIP_DIR)/bin/hipcc
431d013790SJed BrownSED ?= sed
44e86995feScamierjs
453b56482dScamierjs# ASAN must be left empty if you don't want to use it
460a7eccc5ScamierjsASAN ?=
476850bcb5Scamierjs
48e86995feScamierjsLDFLAGS ?=
4932d74c32SThilina RathnayakeUNDERSCORE ?= 1
501b58aefaScamierjs
518df0376fSJeremy L Thompson# Verbose mode, V or VERBOSE
528df0376fSJeremy L ThompsonV ?= $(VERBOSE)
538df0376fSJeremy L Thompson
54f9fa8c39Sjeremylt# MFEM_DIR env variable should point to sibling directory
55bf3e26f6SVeselin Dobrevifneq ($(wildcard ../mfem/libmfem.*),)
569ba53df8Sjeremylt  MFEM_DIR ?= ../mfem
57f9fa8c39Sjeremyltendif
58f9fa8c39Sjeremylt
594d1cd9fcSJeremy L Thompson# NEK5K_DIR env variable should point to sibling directory
604d1cd9fcSJeremy L Thompsonifneq ($(wildcard ../Nek5000/*),)
6186a4271fSThilina Rathnayake  NEK5K_DIR ?= $(abspath ../Nek5000)
624d1cd9fcSJeremy L Thompsonendif
6386a4271fSThilina Rathnayakeexport NEK5K_DIR
6486a4271fSThilina RathnayakeMPI ?= 1
6586a4271fSThilina Rathnayake
6686a4271fSThilina Rathnayake# CEED_DIR env for NEK5K testing
6786a4271fSThilina Rathnayakeexport CEED_DIR = $(abspath .)
684d1cd9fcSJeremy L Thompson
698d713cf6Sjeremylt# XSMM_DIR env variable should point to XSMM master (github.com/hfp/libxsmm)
708d713cf6SjeremyltXSMM_DIR ?= ../libxsmm
718d713cf6Sjeremylt
7212123fd5Scamierjs# OCCA_DIR env variable should point to OCCA master (github.com/libocca/occa)
737f5ff99bSVeselin DobrevOCCA_DIR ?= ../occa
74f797d7b2Scamierjs
755a9ca9adSVeselin Dobrev# env variable MAGMA_DIR can be used too
76ab352fbeSnbeamsMAGMA_DIR ?= ../magma
7796f2f974SJed Brown
78952aa241SJed Brown# Often /opt/cuda or /usr/local/cuda, but sometimes present on machines that don't support CUDA
7996f2f974SJed BrownCUDA_DIR  ?=
80bd057117SnbeamsCUDA_ARCH ?=
8196f2f974SJed Brown
8296f2f974SJed Brown# Often /opt/rocm, but sometimes present on machines that don't support HIP
8396f2f974SJed BrownHIP_DIR ?=
84bd057117SnbeamsHIP_ARCH ?=
8582b77998SStan Tomov
862f4d9adbSJeremy L Thompson# Check for PETSc in ../petsc
872f4d9adbSJeremy L Thompsonifneq ($(wildcard ../petsc/lib/libpetsc.*),)
882f4d9adbSJeremy L Thompson  PETSC_DIR ?= ../petsc
892f4d9adbSJeremy L Thompsonendif
902f4d9adbSJeremy L Thompson
91bf000209STzanio# Warning: SANTIZ options still don't run with /gpu/occa
9212123fd5Scamierjs# export LSAN_OPTIONS=suppressions=.asanignore
93c12ddcb5ScamierjsAFLAGS = -fsanitize=address #-fsanitize=undefined -fno-omit-frame-pointer
9432d74c32SThilina Rathnayake
958ca0bbaeSjeremylt# Note: Intel oneAPI C/C++ compiler is now icx/icpx
96f0d101d5SJed BrownCC_VENDOR := $(subst oneAPI,icc,$(firstword $(filter gcc clang icc oneAPI XL,$(subst -, ,$(shell $(CC) --version)))))
9780a9ef05SNatalie BeamsFC_VENDOR := $(if $(FC),$(firstword $(filter GNU ifort XL,$(shell $(FC) --version 2>&1 || $(FC) -qversion))))
9813d950b4SJed Brown
9913d950b4SJed Brown# Default extra flags by vendor
10013d950b4SJed BrownMARCHFLAG.gcc           := -march=native
10113d950b4SJed BrownMARCHFLAG.clang         := $(MARCHFLAG.gcc)
10213d950b4SJed BrownMARCHFLAG.icc           :=
10313d950b4SJed BrownOMP_SIMD_FLAG.gcc       := -fopenmp-simd
10413d950b4SJed BrownOMP_SIMD_FLAG.clang     := $(OMP_SIMD_FLAG.gcc)
10513d950b4SJed BrownOMP_SIMD_FLAG.icc       := -qopenmp-simd
10613d950b4SJed BrownOPT.gcc                 := -ffp-contract=fast
10713d950b4SJed BrownOPT.clang               := $(OPT.gcc)
108a52c4238SnbeamsCFLAGS.gcc              := -fPIC -std=c99 -Wall -Wextra -Wno-unused-parameter -MMD -MP
1098b45a169SnbeamsCFLAGS.clang            := $(CFLAGS.gcc)
11013d950b4SJed BrownCFLAGS.icc              := $(CFLAGS.gcc)
11113d950b4SJed BrownCFLAGS.XL               := -qpic -MMD
112a52c4238SnbeamsCXXFLAGS.gcc            := -fPIC -std=c++11 -Wall -Wextra -Wno-unused-parameter -MMD -MP
1138b45a169SnbeamsCXXFLAGS.clang          := $(CXXFLAGS.gcc)
11413d950b4SJed BrownCXXFLAGS.icc            := $(CXXFLAGS.gcc)
115a76e5e8dSVeselin DobrevCXXFLAGS.XL             := -qpic -std=c++11 -MMD
11613d950b4SJed BrownFFLAGS.GNU              := -fPIC -cpp -Wall -Wextra -Wno-unused-parameter -Wno-unused-dummy-argument -MMD -MP
11713d950b4SJed BrownFFLAGS.ifort            := -fPIC -cpp
11813d950b4SJed BrownFFLAGS.XL               := -qpic -ffree-form -qpreprocess -qextname -MMD
119cf4a56afSJed Brown
120d9bc9eefSJed Brown# This check works with compilers that use gcc and clang.  It fails with some
121d9bc9eefSJed Brown# compilers; e.g., xlc apparently ignores all options when -E is passed, thus
122d9bc9eefSJed Brown# succeeds with any flags.  Users can pass MARCHFLAG=... if desired.
123d9bc9eefSJed Browncc_check_flag = $(shell $(CC) -E -Werror $(1) -x c /dev/null > /dev/null 2>&1 && echo 1)
12413d950b4SJed BrownMARCHFLAG := $(MARCHFLAG.$(CC_VENDOR))
125f766a8abSJed BrownMARCHFLAG := $(if $(call cc_check_flag,$(MARCHFLAG)),$(MARCHFLAG),-mcpu=native)
126f766a8abSJed BrownMARCHFLAG := $(if $(call cc_check_flag,$(MARCHFLAG)),$(MARCHFLAG))
127b9c05c73SJed Brown
12813d950b4SJed BrownOMP_SIMD_FLAG := $(OMP_SIMD_FLAG.$(CC_VENDOR))
129f766a8abSJed BrownOMP_SIMD_FLAG := $(if $(call cc_check_flag,$(OMP_SIMD_FLAG)),$(OMP_SIMD_FLAG))
130cf4a56afSJed Brown
13113d950b4SJed BrownOPT    ?= -O -g $(MARCHFLAG) $(OPT.$(CC_VENDOR)) $(OMP_SIMD_FLAG)
13213d950b4SJed BrownCFLAGS ?= $(OPT) $(CFLAGS.$(CC_VENDOR))
13313d950b4SJed BrownCXXFLAGS ?= $(OPT) $(CXXFLAGS.$(CC_VENDOR))
1341d013790SJed BrownLIBCXX ?= -lstdc++
135b0ab70ddSJed BrownNVCCFLAGS ?= -ccbin $(CXX) -Xcompiler "$(OPT)" -Xcompiler -fPIC
136bd057117Snbeamsifneq ($(CUDA_ARCH),)
137bd057117Snbeams  NVCCFLAGS += -arch=$(CUDA_ARCH)
138bd057117Snbeamsendif
1395c862d68SjeremyltHIPCCFLAGS ?= $(filter-out $(OMP_SIMD_FLAG),$(OPT)) -fPIC
140bd057117Snbeamsifneq ($(HIP_ARCH),)
141bd057117Snbeams  HIPCCFLAGS += --amdgpu-target=$(HIP_ARCH)
142bd057117Snbeamsendif
14313d950b4SJed BrownFFLAGS ?= $(OPT) $(FFLAGS.$(FC_VENDOR))
14432d74c32SThilina Rathnayake
145a6f4783aSJed Brownifeq ($(COVERAGE), 1)
146a6f4783aSJed Brown  CFLAGS += --coverage
147568410ffSJeremy L Thompson  CXXFLAGS += --coverage
148a6f4783aSJed Brown  LDFLAGS += --coverage
149a6f4783aSJed Brownendif
150a6f4783aSJed Brown
1514dd6f121ScamierjsCFLAGS += $(if $(ASAN),$(AFLAGS))
1524dd6f121ScamierjsFFLAGS += $(if $(ASAN),$(AFLAGS))
1534dd6f121ScamierjsLDFLAGS += $(if $(ASAN),$(AFLAGS))
15441a90898SJed BrownCPPFLAGS += -I./include
155582447c9SJed BrownLDLIBS = -lm
15691b7489eSJed BrownOBJDIR := build
1576ea7c6c1SJed BrownLIBDIR := lib
1586ea7c6c1SJed Brown
159d5217624SJed Brown# Installation variables
160d5217624SJed Brownprefix ?= /usr/local
161d5217624SJed Brownbindir = $(prefix)/bin
162d5217624SJed Brownlibdir = $(prefix)/lib
163d5217624SJed Brownincludedir = $(prefix)/include
164d5217624SJed Brownpkgconfigdir = $(libdir)/pkgconfig
165d5217624SJed BrownINSTALL = install
166d5217624SJed BrownINSTALL_PROGRAM = $(INSTALL)
167d5217624SJed BrownINSTALL_DATA = $(INSTALL) -m644
168d5217624SJed Brown
1693b56482dScamierjs# Get number of processors of the machine
17069762e1fScamierjsNPROCS := $(shell getconf _NPROCESSORS_ONLN)
1713b56482dScamierjs# prepare make options to run in parallel
17282985883ScamierjsMFLAGS := -j $(NPROCS) --warn-undefined-variables \
17321ae6867Scamierjs                       --no-print-directory --no-keep-going
17487e762eaSJed Brown
1758ec9d54bSJed BrownPYTHON ?= python3
176bfa078e6SJed BrownPROVE ?= prove
1773a1ec3cdSJed BrownPROVE_OPTS ?= -j $(NPROCS)
1785c719ab0SJed BrownDARWIN := $(filter Darwin,$(shell uname -s))
1795c719ab0SJed BrownSO_EXT := $(if $(DARWIN),dylib,so)
1809df38c42SVeselin Dobrev
1816ea7c6c1SJed Brownceed.pc := $(LIBDIR)/pkgconfig/ceed.pc
1821d013790SJed Brownlibceed.so := $(LIBDIR)/libceed.$(SO_EXT)
1831d013790SJed Brownlibceed.a := $(LIBDIR)/libceed.a
1841d013790SJed Brownlibceed := $(if $(STATIC),$(libceed.a),$(libceed.so))
1857e68d260SJed BrownCEED_LIBS = -lceed
1861d013790SJed Brownlibceed.c := $(filter-out interface/ceed-cuda.c interface/ceed-hip.c, $(wildcard interface/ceed*.c backends/*.c gallery/*.c))
187288c0443SJeremy L Thompsongallery.c := $(wildcard gallery/*/ceed*.c)
188288c0443SJeremy L Thompsonlibceed.c += $(gallery.c)
1898e3e54ccSjeremyltlibceeds = $(libceed)
190265be9c8SjeremyltBACKENDS_BUILTIN := /cpu/self/ref/serial /cpu/self/ref/blocked /cpu/self/opt/serial /cpu/self/opt/blocked
191422b683aSjeremyltBACKENDS_MAKE := $(BACKENDS_BUILTIN)
192422b683aSjeremyltTEST_BACKENDS := /cpu/self/tmpl /cpu/self/tmpl/sub
193bf000209STzanio
194bf000209STzanio# Tests
19557c64913Sjeremylttests.c   := $(sort $(wildcard tests/t[0-9][0-9][0-9]-*.c))
19680a9ef05SNatalie Beamstests.f   := $(if $(FC),$(sort $(wildcard tests/t[0-9][0-9][0-9]-*.f90)))
19791b7489eSJed Browntests     := $(tests.c:tests/%.c=$(OBJDIR)/%)
1983f3e7340Scamierjsctests    := $(tests)
1998980d4a7Sjeremylttests     += $(tests.f:tests/%.f90=$(OBJDIR)/%)
20086a4271fSThilina Rathnayake# Examples
201182fbe45STzanioexamples.c := $(sort $(wildcard examples/ceed/*.c))
20280a9ef05SNatalie Beamsexamples.f := $(if $(FC),$(sort $(wildcard examples/ceed/*.f)))
203182fbe45STzanioexamples  := $(examples.c:examples/ceed/%.c=$(OBJDIR)/%)
204182fbe45STzanioexamples  += $(examples.f:examples/ceed/%.f=$(OBJDIR)/%)
20586a4271fSThilina Rathnayake# MFEM Examples
2062158b1b0Sjeremyltmfemexamples.cpp := $(sort $(wildcard examples/mfem/*.cpp))
20716c6c054SJed Brownmfemexamples  := $(mfemexamples.cpp:examples/mfem/%.cpp=$(OBJDIR)/mfem-%)
20886a4271fSThilina Rathnayake# Nek5K Examples
20986a4271fSThilina Rathnayakenekexamples  := $(OBJDIR)/nek-bps
21086a4271fSThilina Rathnayake# PETSc Examples
2116f87d196Sjeremyltpetscexamples.c := $(wildcard examples/petsc/*.c)
212e797ab98SJed Brownpetscexamples   := $(petscexamples.c:examples/petsc/%.c=$(OBJDIR)/petsc-%)
213ccaff030SJeremy L Thompson# Fluid Dynamics Examples
214ccaff030SJeremy L Thompsonfluidsexamples.c := $(sort $(wildcard examples/fluids/*.c))
215ccaff030SJeremy L Thompsonfluidsexamples  := $(fluidsexamples.c:examples/fluids/%.c=$(OBJDIR)/fluids-%)
216ccaff030SJeremy L Thompson# Solid Mechanics Examples
217ccaff030SJeremy L Thompsonsolidsexamples.c := $(sort $(wildcard examples/solids/*.c))
218ccaff030SJeremy L Thompsonsolidsexamples   := $(solidsexamples.c:examples/solids/%.c=$(OBJDIR)/solids-%)
219e797ab98SJed Brown
2208e3e54ccSjeremylt# Backends/[ref, blocked, memcheck, opt, avx, occa, magma]
221ae3cba82Scamierjsref.c          := $(sort $(wildcard backends/ref/*.c))
22289c6efa4Sjeremyltblocked.c      := $(sort $(wildcard backends/blocked/*.c))
22389c6efa4Sjeremyltceedmemcheck.c := $(sort $(wildcard backends/memcheck/*.c))
22489c6efa4Sjeremyltopt.c          := $(sort $(wildcard backends/opt/*.c))
22589c6efa4Sjeremyltavx.c          := $(sort $(wildcard backends/avx/*.c))
22689c6efa4Sjeremyltxsmm.c         := $(sort $(wildcard backends/xsmm/*.c))
2279f0427d9SYohanncuda.c         := $(sort $(wildcard backends/cuda/*.c))
2284d537eeaSYohanncuda.cpp       := $(sort $(wildcard backends/cuda/*.cpp))
229b2573fe1SJeremy L Thompsoncuda.cu        := $(sort $(wildcard backends/cuda/kernels/*.cu))
230c532df63SYohanncuda-shared.c  := $(sort $(wildcard backends/cuda-shared/*.c))
231b2573fe1SJeremy L Thompsoncuda-shared.cu := $(sort $(wildcard backends/cuda-shared/kernels/*.cu))
232241a4b83SYohanncuda-gen.c     := $(sort $(wildcard backends/cuda-gen/*.c))
233241a4b83SYohanncuda-gen.cpp   := $(sort $(wildcard backends/cuda-gen/*.cpp))
234b2573fe1SJeremy L Thompsoncuda-gen.cu    := $(sort $(wildcard backends/cuda-gen/kernels/*.cu))
2359647a07eSDavid Medinaocca.cpp       := $(sort $(shell find backends/occa -type f -name *.cpp))
236a07e8cf1SNatalie Beamsmagma.c        := $(sort $(wildcard backends/magma/*.c))
237969f2b10Snbeamsmagma.cu       := $(sort $(wildcard backends/magma/kernels/cuda/*.cu))
238969f2b10Snbeamsmagma.hip      := $(sort $(wildcard backends/magma/kernels/hip/*.hip.cpp))
23930f4f45fSnbeamship.c          := $(sort $(wildcard backends/hip/*.c))
240f0f820a0SJeremy L Thompsonhip.cpp        := $(sort $(wildcard backends/hip/*.cpp))
241f0f820a0SJeremy L Thompsonhip.hip        := $(sort $(wildcard backends/hip/kernels/*.hip.cpp))
2427d8d0e25Snbeamship-shared.c   := $(sort $(wildcard backends/hip-shared/*.c))
2437d8d0e25Snbeamship-gen.c      := $(sort $(wildcard backends/hip-gen/*.c))
2447d8d0e25Snbeamship-gen.cpp    := $(sort $(wildcard backends/hip-gen/*.cpp))
24582985883Scamierjs
246777ff853SJeremy L Thompson# Quiet, color output
247777ff853SJeremy L Thompsonquiet ?= $($(1))
24821ae6867Scamierjs
249da72e7fcSJed Brown# Cancel built-in and old-fashioned implicit rules which we don't use
2509df38c42SVeselin Dobrev.SUFFIXES:
251da72e7fcSJed Brown
25291b7489eSJed Brown.SECONDEXPANSION: # to expand $$(@D)/.DIR
2539df38c42SVeselin Dobrev
25491b7489eSJed Brown%/.DIR :
25591b7489eSJed Brown	@mkdir -p $(@D)
25691b7489eSJed Brown	@touch $@
25791b7489eSJed Brown
25891b7489eSJed Brown.PRECIOUS: %/.DIR
25991b7489eSJed Brown
26023072ed2SVeselin Dobrevlib: $(libceed) $(ceed.pc)
26123072ed2SVeselin Dobrev# run 'lib' target in parallel
2622f4d9adbSJeremy L Thompsonpar:;@$(MAKE) $(MFLAGS) V=$(V) lib
263422b683aSjeremyltbackend_status = $(if $(filter $1,$(BACKENDS_MAKE)), [backends: $1], [not found])
264bf3e26f6SVeselin Dobrevinfo:
265bf3e26f6SVeselin Dobrev	$(info ------------------------------------)
266bf3e26f6SVeselin Dobrev	$(info CC            = $(CC))
267241a4b83SYohann	$(info CXX           = $(CXX))
268bf3e26f6SVeselin Dobrev	$(info FC            = $(FC))
269bf3e26f6SVeselin Dobrev	$(info CPPFLAGS      = $(CPPFLAGS))
270bf3e26f6SVeselin Dobrev	$(info CFLAGS        = $(value CFLAGS))
271241a4b83SYohann	$(info CXXFLAGS      = $(value CXXFLAGS))
272bf3e26f6SVeselin Dobrev	$(info FFLAGS        = $(value FFLAGS))
273bf3e26f6SVeselin Dobrev	$(info NVCCFLAGS     = $(value NVCCFLAGS))
274b7a997cfSjeremylt	$(info HIPCCFLAGS    = $(value HIPCCFLAGS))
275bf3e26f6SVeselin Dobrev	$(info LDFLAGS       = $(value LDFLAGS))
276bf3e26f6SVeselin Dobrev	$(info LDLIBS        = $(LDLIBS))
2771d013790SJed Brown	$(info AR            = $(AR))
2781d013790SJed Brown	$(info ARFLAGS       = $(ARFLAGS))
279bf3e26f6SVeselin Dobrev	$(info OPT           = $(OPT))
280bf3e26f6SVeselin Dobrev	$(info AFLAGS        = $(AFLAGS))
281bf3e26f6SVeselin Dobrev	$(info ASAN          = $(or $(ASAN),(empty)))
2828df0376fSJeremy L Thompson	$(info VERBOSE       = $(or $(V),(empty)) [verbose=$(if $(V),on,off)])
283bf3e26f6SVeselin Dobrev	$(info ------------------------------------)
284ae945beaSJeremy L Thompson	$(info MEMCHK_STATUS = $(MEMCHK_STATUS)$(call backend_status,$(MEMCHK_BACKENDS)))
285ae945beaSJeremy L Thompson	$(info AVX_STATUS    = $(AVX_STATUS)$(call backend_status,$(AVX_BACKENDS)))
286ae945beaSJeremy L Thompson	$(info XSMM_DIR      = $(XSMM_DIR)$(call backend_status,$(XSMM_BACKENDS)))
2879647a07eSDavid Medina	$(info OCCA_DIR      = $(OCCA_DIR)$(call backend_status,$(OCCA_BACKENDS)))
28840461fa4Snbeams	$(info MAGMA_DIR     = $(MAGMA_DIR)$(call backend_status,$(MAGMA_BACKENDS)))
289ab9cabdeSVeselin Dobrev	$(info CUDA_DIR      = $(CUDA_DIR)$(call backend_status,$(CUDA_BACKENDS)))
29030f4f45fSnbeams	$(info HIP_DIR       = $(HIP_DIR)$(call backend_status,$(HIP_BACKENDS)))
291bf3e26f6SVeselin Dobrev	$(info ------------------------------------)
292bf3e26f6SVeselin Dobrev	$(info MFEM_DIR      = $(MFEM_DIR))
2934d1cd9fcSJeremy L Thompson	$(info NEK5K_DIR     = $(NEK5K_DIR))
294bf3e26f6SVeselin Dobrev	$(info PETSC_DIR     = $(PETSC_DIR))
295bf3e26f6SVeselin Dobrev	$(info ------------------------------------)
296bf3e26f6SVeselin Dobrev	$(info prefix        = $(prefix))
297bf3e26f6SVeselin Dobrev	$(info includedir    = $(value includedir))
298bf3e26f6SVeselin Dobrev	$(info libdir        = $(value libdir))
299bf3e26f6SVeselin Dobrev	$(info pkgconfigdir  = $(value pkgconfigdir))
300bf3e26f6SVeselin Dobrev	$(info ------------------------------------)
301bf3e26f6SVeselin Dobrev	@true
30223072ed2SVeselin Dobrevinfo-backends:
303d20f937dSJed Brown	$(info make: 'lib' with optional backends: $(filter-out $(BACKENDS_BUILTIN),$(BACKENDS)))
304422b683aSjeremylt	@true
305422b683aSjeremyltinfo-backends-all:
306422b683aSjeremylt	$(info make: 'lib' with backends: $(filter-out $(TEST_BACKENDS),$(BACKENDS)))
307422b683aSjeremylt	@true
3080e439e50SJed Brown
3091d013790SJed Brown$(libceed.so) : LDFLAGS += $(if $(DARWIN), -install_name @rpath/$(notdir $(libceed.so)))
31069762e1fScamierjs
31148fffa06Sjeremylt# Standard Backends
31287174f08SJed Brownlibceed.c += $(ref.c)
3134a2e7687Sjeremyltlibceed.c += $(blocked.c)
31489c6efa4Sjeremyltlibceed.c += $(opt.c)
31523072ed2SVeselin Dobrev
316fc7cf9a0Sjeremylt# Memcheck Backend
317bdc3149dSjeremyltMEMCHK_STATUS = Disabled
3186b5c14f7SJed BrownMEMCHK := $(shell echo "$(HASH)include <valgrind/memcheck.h>" | $(CC) $(CPPFLAGS) -E - >/dev/null 2>&1 && echo 1)
319ae945beaSJeremy L ThompsonMEMCHK_BACKENDS = /cpu/self/memcheck/serial /cpu/self/memcheck/blocked
320bdc3149dSjeremyltifeq ($(MEMCHK),1)
321bdc3149dSjeremylt  MEMCHK_STATUS = Enabled
322fc7cf9a0Sjeremylt  libceed.c += $(ceedmemcheck.c)
323422b683aSjeremylt  BACKENDS_MAKE += $(MEMCHK_BACKENDS)
324fc7cf9a0Sjeremyltendif
325fc7cf9a0Sjeremylt
32648fffa06Sjeremylt# AVX Backed
32748fffa06SjeremyltAVX_STATUS = Disabled
328cf4a56afSJed BrownAVX_FLAG := $(if $(filter clang,$(CC_VENDOR)),+avx,-mavx)
329cf4a56afSJed BrownAVX := $(filter $(AVX_FLAG),$(shell $(CC) $(OPT) -v -E -x c /dev/null 2>&1))
330ae945beaSJeremy L ThompsonAVX_BACKENDS = /cpu/self/avx/serial /cpu/self/avx/blocked
331cf4a56afSJed Brownifneq ($(AVX),)
33248fffa06Sjeremylt  AVX_STATUS = Enabled
33348fffa06Sjeremylt  libceed.c += $(avx.c)
334422b683aSjeremylt  BACKENDS_MAKE += $(AVX_BACKENDS)
33548fffa06Sjeremyltendif
33648fffa06Sjeremylt
3371d013790SJed Brown# Collect list of libraries and paths for use in linking and pkg-config
3381d013790SJed BrownPKG_LIBS =
3391d013790SJed Brown
3408d713cf6Sjeremylt# libXSMM Backends
341ae945beaSJeremy L ThompsonXSMM_BACKENDS = /cpu/self/xsmm/serial /cpu/self/xsmm/blocked
3428d713cf6Sjeremyltifneq ($(wildcard $(XSMM_DIR)/lib/libxsmm.*),)
3431d013790SJed Brown  PKG_LIBS += -L$(abspath $(XSMM_DIR))/lib -lxsmm -ldl
34400723591Sjeremylt  MKL ?=
34500723591Sjeremylt  ifeq (,$(MKL)$(MKLROOT))
346c0ea1048SJed Brown    BLAS_LIB = -lblas
3475462ed45Sjeremylt  else
34872e1b2f7SJeremy L Thompson    ifneq ($(MKLROOT),)
349ff56800aSJed Brown      # Some installs put everything inside an intel64 subdirectory, others not
350ff56800aSJed Brown      MKL_LIBDIR = $(dir $(firstword $(wildcard $(MKLROOT)/lib/intel64/libmkl_sequential.* $(MKLROOT)/lib/libmkl_sequential.*)))
3511d013790SJed Brown      MKL_LINK = -L$(MKL_LIBDIR)
3521d013790SJed Brown      PKG_LIB_DIRS += $(MKL_LIBDIR)
35372e1b2f7SJeremy L Thompson    endif
3541d013790SJed Brown    BLAS_LIB = $(MKL_LINK) -Wl,--push-state,--no-as-needed -lmkl_intel_lp64 -lmkl_sequential -lmkl_core -lpthread -lm -ldl -Wl,--pop-state
3555462ed45Sjeremylt  endif
3561d013790SJed Brown  PKG_LIBS += $(BLAS_LIB)
3578d713cf6Sjeremylt  libceed.c += $(xsmm.c)
358683faae0SJed Brown  $(xsmm.c:%.c=$(OBJDIR)/%.o) $(xsmm.c:%=%.tidy) : CPPFLAGS += -I$(XSMM_DIR)/include
359422b683aSjeremylt  BACKENDS_MAKE += $(XSMM_BACKENDS)
3608d713cf6Sjeremyltendif
3618d713cf6Sjeremylt
36248fffa06Sjeremylt# OCCA Backends
36328688798SjeremyltOCCA_BACKENDS = /cpu/self/occa
3647f5ff99bSVeselin Dobrevifneq ($(wildcard $(OCCA_DIR)/lib/libocca.*),)
3659647a07eSDavid Medina  OCCA_MODES := $(shell $(OCCA_DIR)/bin/occa modes)
36628688798Sjeremylt  OCCA_BACKENDS += $(if $(filter OpenMP,$(OCCA_MODES)),/cpu/openmp/occa)
36728688798Sjeremylt# OCCA_BACKENDS += $(if $(filter OpenCL,$(OCCA_MODES)),/gpu/opencl/occa)
36828688798Sjeremylt  OCCA_BACKENDS += $(if $(filter HIP,$(OCCA_MODES)),/gpu/hip/occa)
36928688798Sjeremylt  OCCA_BACKENDS += $(if $(filter CUDA,$(OCCA_MODES)),/gpu/cuda/occa)
3709647a07eSDavid Medina
3719647a07eSDavid Medina  $(libceeds) : CPPFLAGS += -I$(OCCA_DIR)/include
3721d013790SJed Brown  PKG_LIBS += -L$(abspath $(OCCA_DIR))/lib -locca
3731d013790SJed Brown  LIBCEED_CONTAINS_CXX = 1
3749647a07eSDavid Medina  libceed.cpp += $(occa.cpp)
375422b683aSjeremylt  BACKENDS_MAKE += $(OCCA_BACKENDS)
37621ae6867Scamierjsendif
37723072ed2SVeselin Dobrev
37886a4271fSThilina Rathnayake# CUDA Backends
3795a9ca9adSVeselin DobrevCUDA_LIB_DIR := $(wildcard $(foreach d,lib lib64,$(CUDA_DIR)/$d/libcudart.${SO_EXT}))
3805a9ca9adSVeselin DobrevCUDA_LIB_DIR := $(patsubst %/,%,$(dir $(firstword $(CUDA_LIB_DIR))))
3813dd0010eSvaleriabarraCUDA_LIB_DIR_STUBS := $(CUDA_LIB_DIR)/stubs
382461525f5SNatalie BeamsCUDA_BACKENDS = /gpu/cuda/ref /gpu/cuda/shared /gpu/cuda/gen
3835a9ca9adSVeselin Dobrevifneq ($(CUDA_LIB_DIR),)
3849d77422eSJed Brown  $(libceeds) : CPPFLAGS += -I$(CUDA_DIR)/include
3851d013790SJed Brown  PKG_LIBS += -L$(abspath $(CUDA_LIB_DIR)) -lcudart -lnvrtc -lcuda -lcublas
3861d013790SJed Brown  LIBCEED_CONTAINS_CXX = 1
387af7ca75eSjeremylt  libceed.c     += interface/ceed-cuda.c
388461525f5SNatalie Beams  libceed.c     += $(cuda.c) $(cuda-shared.c) $(cuda-gen.c)
3894d537eeaSYohann  libceed.cpp   += $(cuda.cpp) $(cuda-gen.cpp)
390461525f5SNatalie Beams  libceed.cu    += $(cuda.cu) $(cuda-shared.cu) $(cuda-gen.cu)
391422b683aSjeremylt  BACKENDS_MAKE += $(CUDA_BACKENDS)
3929f0427d9SYohannendif
3939f0427d9SYohann
39430f4f45fSnbeams# HIP Backends
395d409f5cbSNatalie BeamsHIP_LIB_DIR := $(wildcard $(foreach d,lib lib64,$(HIP_DIR)/$d/libamdhip64.${SO_EXT}))
39630f4f45fSnbeamsHIP_LIB_DIR := $(patsubst %/,%,$(dir $(firstword $(HIP_LIB_DIR))))
3977d8d0e25SnbeamsHIP_BACKENDS = /gpu/hip/ref /gpu/hip/shared /gpu/hip/gen
39830f4f45fSnbeamsifneq ($(HIP_LIB_DIR),)
3993f9cf3a4Snbeams  $(libceeds) : HIPCCFLAGS += -I./include
40030f4f45fSnbeams  ifneq ($(CXX), $(HIPCC))
401cdd1636dSnbeams    CPPFLAGS += $(subst =,,$(shell $(HIP_DIR)/bin/hipconfig -C))
40230f4f45fSnbeams  endif
4037d8d0e25Snbeams  $(libceeds) : CPPFLAGS += -I$(HIP_DIR)/include
4041d013790SJed Brown  PKG_LIBS += -L$(abspath $(HIP_LIB_DIR)) -lamdhip64 -lhipblas
4051d013790SJed Brown  LIBCEED_CONTAINS_CXX = 1
406af7ca75eSjeremylt  libceed.c     += interface/ceed-hip.c
4077d8d0e25Snbeams  libceed.c     += $(hip.c) $(hip-shared.c) $(hip-gen.c)
4087d8d0e25Snbeams  libceed.cpp   += $(hip.cpp) $(hip-gen.cpp)
4099dd88646Snbeams  libceed.hip   += $(hip.hip)
410422b683aSjeremylt  BACKENDS_MAKE += $(HIP_BACKENDS)
41130f4f45fSnbeamsendif
41230f4f45fSnbeams
4139f0427d9SYohann# MAGMA Backend
4149f0427d9SYohannifneq ($(wildcard $(MAGMA_DIR)/lib/libmagma.*),)
41545f29434Snbeams  MAGMA_ARCH=$(shell nm -g $(MAGMA_DIR)/lib/libmagma.* | grep -c "hipblas")
41645f29434Snbeams  ifeq ($(MAGMA_ARCH), 0) #CUDA MAGMA
4179f0427d9SYohann    ifneq ($(CUDA_LIB_DIR),)
4181dc2661bSVeselin Dobrev      cuda_link = -Wl,-rpath,$(CUDA_LIB_DIR) -L$(CUDA_LIB_DIR) -lcublas -lcusparse -lcudart
4191dc2661bSVeselin Dobrev      omp_link = -fopenmp
4201dc2661bSVeselin Dobrev      magma_link_static = -L$(MAGMA_DIR)/lib -lmagma $(cuda_link) $(omp_link)
4217692a9b0SVeselin Dobrev      magma_link_shared = -L$(MAGMA_DIR)/lib -Wl,-rpath,$(abspath $(MAGMA_DIR)/lib) -lmagma
4227692a9b0SVeselin Dobrev      magma_link := $(if $(wildcard $(MAGMA_DIR)/lib/libmagma.${SO_EXT}),$(magma_link_shared),$(magma_link_static))
4231d013790SJed Brown      PKG_LIBS += $(magma_link)
424a07e8cf1SNatalie Beams      libceed.c  += $(magma.c)
425a07e8cf1SNatalie Beams      libceed.cu += $(magma.cu)
426a07e8cf1SNatalie Beams      $(magma.c:%.c=$(OBJDIR)/%.o) $(magma.c:%=%.tidy) : CPPFLAGS += -DADD_ -I$(MAGMA_DIR)/include -I$(CUDA_DIR)/include
427a07e8cf1SNatalie Beams      $(magma.cu:%.cu=$(OBJDIR)/%.o) : CPPFLAGS += --compiler-options=-fPIC -DADD_ -I$(MAGMA_DIR)/include -I$(MAGMA_DIR)/magmablas -I$(MAGMA_DIR)/control -I$(CUDA_DIR)/include
42840461fa4Snbeams      MAGMA_BACKENDS = /gpu/cuda/magma /gpu/cuda/magma/det
42945f29434Snbeams    endif
43045f29434Snbeams  else  # HIP MAGMA
431969f2b10Snbeams    ifneq ($(HIP_LIB_DIR),)
432969f2b10Snbeams      hip_link = -Wl,-rpath,$(HIP_LIB_DIR) -L$(HIP_LIB_DIR) -lhipblas -lhipsparse -lamdhip64
433969f2b10Snbeams      omp_link = -fopenmp
434969f2b10Snbeams      magma_link_static = -L$(MAGMA_DIR)/lib -lmagma $(hip_link) $(omp_link)
435969f2b10Snbeams      magma_link_shared = -L$(MAGMA_DIR)/lib -Wl,-rpath,$(abspath $(MAGMA_DIR)/lib) -lmagma
436969f2b10Snbeams      magma_link := $(if $(wildcard $(MAGMA_DIR)/lib/libmagma.${SO_EXT}),$(magma_link_shared),$(magma_link_static))
4371d013790SJed Brown      PKG_LIBS += $(magma_link)
438969f2b10Snbeams      libceed.c  += $(magma.c)
439969f2b10Snbeams      libceed.hip += $(magma.hip)
440969f2b10Snbeams      ifneq ($(CXX), $(HIPCC))
441969f2b10Snbeams        $(magma.c:%.c=$(OBJDIR)/%.o) $(magma.c:%=%.tidy) : CPPFLAGS += -I$(MAGMA_DIR)/include -I$(HIP_DIR)/include -DHAVE_HIP -DADD_
442969f2b10Snbeams      else
443969f2b10Snbeams        $(magma.c:%.c=$(OBJDIR)/%.o) $(magma.c:%=%.tidy) : HIPCCFLAGS += -I$(MAGMA_DIR)/include -I$(HIP_DIR)/include -DHAVE_HIP -DADD_
444969f2b10Snbeams      endif
445969f2b10Snbeams      $(magma.hip:%.hip.cpp=$(OBJDIR)/%.o) : HIPCCFLAGS += -I$(MAGMA_DIR)/include -I$(MAGMA_DIR)/magmablas -I$(MAGMA_DIR)/control -I$(HIP_DIR)/include -DHAVE_HIP -DADD_
44640461fa4Snbeams      MAGMA_BACKENDS = /gpu/hip/magma /gpu/hip/magma/det
447969f2b10Snbeams    endif
44882b77998SStan Tomov  endif
4491d013790SJed Brown  LIBCEED_CONTAINS_CXX = 1
450422b683aSjeremylt  BACKENDS_MAKE += $(MAGMA_BACKENDS)
4515a9ca9adSVeselin Dobrevendif
452755585ceSStan Tomov
453422b683aSjeremyltBACKENDS_ENV ?= BACKENDS
454422b683aSjeremyltifneq ($(BACKENDS_ENV),)
455422b683aSjeremylt  BACKENDS = $(BACKENDS_MAKE)
456ce41f623SJed Brown  export BACKENDS
457422b683aSjeremyltendif
458ce41f623SJed Brown
4591d013790SJed Brown_pkg_ldflags = $(filter -L%,$(PKG_LIBS))
4601d013790SJed Brown_pkg_ldlibs = $(filter-out -L%,$(PKG_LIBS))
4611d013790SJed Brown$(libceeds) : LDFLAGS += $(_pkg_ldflags) $(_pkg_ldflags:-L%=-Wl,-rpath,%)
4621d013790SJed Brown$(libceeds) : LDLIBS += $(_pkg_ldlibs)
4631d013790SJed Brownifeq ($(STATIC),1)
4641d013790SJed Brown$(examples) $(tests) : LDFLAGS += $(_pkg_ldflags) $(_pkg_ldflags:-L%=-Wl,-rpath,%)
4651d013790SJed Brown$(examples) $(tests) : LDLIBS += $(_pkg_ldlibs)
4661d013790SJed Brownendif
4671d013790SJed Brown
4681d013790SJed Brownpkgconfig-libs-private = $(PKG_LIBS)
4691d013790SJed Brownifeq ($(LIBCEED_CONTAINS_CXX),1)
4701d013790SJed Brown  $(libceeds) : LINK = $(CXX)
4711d013790SJed Brown  ifeq ($(STATIC),1)
4721d013790SJed Brown    $(examples) $(tests) : LDLIBS += $(LIBCXX)
4731d013790SJed Brown	  pkgconfig-libs-private += $(LIBCXX)
4741d013790SJed Brown  endif
4751d013790SJed Brownendif
4761d013790SJed Brown
4771d013790SJed Brown# File names *-weak.c contain weak symbol definitions, which must be listed last
4781d013790SJed Brown# when creating shared or static libraries.
4791d013790SJed Brownweak_last = $(filter-out %-weak.o,$(1)) $(filter %-weak.o,$(1))
4801d013790SJed Brown
481cfb6011cSnbeamslibceed.o = $(libceed.c:%.c=$(OBJDIR)/%.o) $(libceed.cpp:%.cpp=$(OBJDIR)/%.o) $(libceed.cu:%.cu=$(OBJDIR)/%.o) $(libceed.hip:%.hip.cpp=$(OBJDIR)/%.o)
4824c7bddedSJed Brown$(filter %fortran.o,$(libceed.o)) : CPPFLAGS += $(if $(filter 1,$(UNDERSCORE)),-DUNDERSCORE)
48323072ed2SVeselin Dobrev$(libceed.o): | info-backends
4841d013790SJed Brown$(libceed.so) : $(call weak_last,$(libceed.o)) | $$(@D)/.DIR
485241a4b83SYohann	$(call quiet,LINK) $(LDFLAGS) -shared -o $@ $^ $(LDLIBS)
48691b7489eSJed Brown
4871d013790SJed Brown$(libceed.a) : $(call weak_last,$(libceed.o)) | $$(@D)/.DIR
4881d013790SJed Brown	$(call quiet,AR) $(ARFLAGS) $@ $^
4891d013790SJed Brown
49058e8d3b7SJed Brown$(OBJDIR)/%.o : $(CURDIR)/%.c | $$(@D)/.DIR
491b5b03409SJed Brown	$(call quiet,CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $(abspath $<)
492ae3cba82Scamierjs
493241a4b83SYohann$(OBJDIR)/%.o : $(CURDIR)/%.cpp | $$(@D)/.DIR
494241a4b83SYohann	$(call quiet,CXX) $(CPPFLAGS) $(CXXFLAGS) -c -o $@ $(abspath $<)
495241a4b83SYohann
49658e8d3b7SJed Brown$(OBJDIR)/%.o : $(CURDIR)/%.cu | $$(@D)/.DIR
497777ff853SJeremy L Thompson	$(call quiet,NVCC) $(filter-out -Wno-unused-function, $(CPPFLAGS)) $(NVCCFLAGS) -c -o $@ $(abspath $<)
498755585ceSStan Tomov
499cfb6011cSnbeams$(OBJDIR)/%.o : $(CURDIR)/%.hip.cpp | $$(@D)/.DIR
50030f4f45fSnbeams	$(call quiet,HIPCC) $(HIPCCFLAGS) -c -o $@ $(abspath $<)
50130f4f45fSnbeams
502b5b03409SJed Brown$(OBJDIR)/% : tests/%.c | $$(@D)/.DIR
503843fcb4bSJed Brown	$(call quiet,LINK.c) $(CEED_LDFLAGS) -o $@ $(abspath $<) $(CEED_LIBS) $(LDLIBS)
50478b5556aScamierjs
5058980d4a7Sjeremylt$(OBJDIR)/% : tests/%.f90 | $$(@D)/.DIR
506843fcb4bSJed Brown	$(call quiet,LINK.F) -DSOURCE_DIR='"$(abspath $(<D))/"' $(CEED_LDFLAGS) -o $@ $(abspath $<) $(CEED_LIBS) $(LDLIBS)
50732d74c32SThilina Rathnayake
508182fbe45STzanio$(OBJDIR)/% : examples/ceed/%.c | $$(@D)/.DIR
509843fcb4bSJed Brown	$(call quiet,LINK.c) $(CEED_LDFLAGS) -o $@ $(abspath $<) $(CEED_LIBS) $(LDLIBS)
51091b7489eSJed Brown
511182fbe45STzanio$(OBJDIR)/% : examples/ceed/%.f | $$(@D)/.DIR
512843fcb4bSJed Brown	$(call quiet,LINK.F) -DSOURCE_DIR='"$(abspath $(<D))/"' $(CEED_LDFLAGS) -o $@ $(abspath $<) $(CEED_LIBS) $(LDLIBS)
513673d494eSThilina Rathnayake
51416c6c054SJed Brown$(OBJDIR)/mfem-% : examples/mfem/%.cpp $(libceed) | $$(@D)/.DIR
515c4216f28SJed Brown	+$(MAKE) -C examples/mfem CEED_DIR=`pwd` \
516722eb117SJeremy L Thompson	  MFEM_DIR="$(abspath $(MFEM_DIR))" CXX=$(CXX) $*
517636cccdbSjeremylt	cp examples/mfem/$* $@
51816c6c054SJed Brown
51986a4271fSThilina Rathnayake# Note: Multiple Nek files cannot be built in parallel. The '+' here enables
52086a4271fSThilina Rathnayake#       this single Nek bps file to be built in parallel with other examples,
52186a4271fSThilina Rathnayake#       such as when calling `make prove-all -j2`.
52286a4271fSThilina Rathnayake$(OBJDIR)/nek-bps : examples/nek/bps/bps.usr examples/nek/nek-examples.sh $(libceed) | $$(@D)/.DIR
52386a4271fSThilina Rathnayake	+$(MAKE) -C examples MPI=$(MPI) CEED_DIR=`pwd` NEK5K_DIR="$(abspath $(NEK5K_DIR))" nek
52486a4271fSThilina Rathnayake	mv examples/nek/build/bps $(OBJDIR)/bps
52586a4271fSThilina Rathnayake	cp examples/nek/nek-examples.sh $(OBJDIR)/nek-bps
52686a4271fSThilina Rathnayake
527386a09edSJed Brown# Several executables have common utilities, but we can't build the utilities
528386a09edSJed Brown# from separate submake invocations because they'll compete with each
529386a09edSJed Brown# other/corrupt output. So we put it in this utility library, but we don't want
530386a09edSJed Brown# to manually list source dependencies up at this level, so we'll just always
531386a09edSJed Brown# call recursive make to check that this utility is up to date.
532386a09edSJed Brownexamples/petsc/libutils.a.PHONY: $(libceed) $(ceed.pc)
533386a09edSJed Brown	+$(call quiet,MAKE) -C examples/petsc CEED_DIR=`pwd` AR=$(AR) ARFLAGS=$(ARFLAGS) \
534386a09edSJed Brown	  PETSC_DIR="$(abspath $(PETSC_DIR))" OPT="$(OPT)" $(basename $(@F))
535386a09edSJed Brown
536386a09edSJed Brown$(OBJDIR)/petsc-% : examples/petsc/%.c examples/petsc/libutils.a.PHONY $(libceed) $(ceed.pc) | $$(@D)/.DIR
537386a09edSJed Brown	+$(call quiet,MAKE) -C examples/petsc CEED_DIR=`pwd` \
538f766a8abSJed Brown	  PETSC_DIR="$(abspath $(PETSC_DIR))" OPT="$(OPT)" $*
539636cccdbSjeremylt	cp examples/petsc/$* $@
540e797ab98SJed Brown
541b868981dSJed Brown$(OBJDIR)/fluids-% : examples/fluids/%.c examples/fluids/src/*.c examples/fluids/*.h examples/fluids/problems/*.c examples/fluids/qfunctions/*.h $(libceed) $(ceed.pc) | $$(@D)/.DIR
5429aeb05eaSJed Brown	+$(call quiet,MAKE) -C examples/fluids CEED_DIR=`pwd` \
543f766a8abSJed Brown	  PETSC_DIR="$(abspath $(PETSC_DIR))" OPT="$(OPT)" $*
544636cccdbSjeremylt	cp examples/fluids/$* $@
545ccaff030SJeremy L Thompson
546b571f289SJed Brown$(OBJDIR)/solids-% : examples/solids/%.c examples/solids/%.h \
547b571f289SJed Brown    examples/solids/problems/*.c examples/solids/src/*.c \
548b571f289SJed Brown    examples/solids/include/*.h examples/solids/problems/*.h examples/solids/qfunctions/*.h \
549b571f289SJed Brown    $(libceed) $(ceed.pc) | $$(@D)/.DIR
5509aeb05eaSJed Brown	+$(call quiet,MAKE) -C examples/solids CEED_DIR=`pwd` \
551722eb117SJeremy L Thompson	  PETSC_DIR="$(abspath $(PETSC_DIR))" OPT="$(OPT)" $*
552636cccdbSjeremylt	cp examples/solids/$* $@
5532774d5cbSJeremy L Thompson
554265be9c8Sjeremylt$(examples) : $(libceed)
5558e3e54ccSjeremylt$(tests) : $(libceed)
556fc377ca6SJed Brown$(tests) $(examples) : LDFLAGS += -Wl,-rpath,$(abspath $(LIBDIR)) -L$(LIBDIR)
5574859b599SJed Brown
558dad465e7SJed Brownrun-% : $(OBJDIR)/%
559d1f7f8d3SJed Brown	@tests/tap.sh $(<:$(OBJDIR)/%=%)
560686de4acSJed Brown
561686de4acSJed Brownexternal_examples := \
562686de4acSJed Brown	$(if $(MFEM_DIR),$(mfemexamples)) \
563686de4acSJed Brown	$(if $(PETSC_DIR),$(petscexamples)) \
564b974e86eSJed Brown	$(if $(NEK5K_DIR),$(nekexamples)) \
565ccaff030SJeremy L Thompson	$(if $(PETSC_DIR),$(fluidsexamples)) \
566ccaff030SJeremy L Thompson	$(if $(PETSC_DIR),$(solidsexamples))
567686de4acSJed Brown
568686de4acSJed Brownallexamples = $(examples) $(external_examples)
569686de4acSJed Brown
570686de4acSJed Brown# The test and prove targets can be controlled via pattern searches.  The
571686de4acSJed Brown# default is to run tests and those examples that have no external dependencies.
572686de4acSJed Brown# Examples of finer grained control:
573686de4acSJed Brown#
574686de4acSJed Brown#   make test search='petsc mfem'      # PETSc and MFEM examples
575686de4acSJed Brown#   make prove search='t3'             # t3xx series tests
576686de4acSJed Brown#   make junit search='ex petsc'       # core ex* and PETSc tests
577686de4acSJed Brownsearch ?= t ex
578686de4acSJed Brownrealsearch = $(search:%=%%)
579686de4acSJed Brownmatched = $(foreach pattern,$(realsearch),$(filter $(OBJDIR)/$(pattern),$(tests) $(allexamples)))
580686de4acSJed Brown
5812158b1b0Sjeremylt# Test core libCEED
582686de4acSJed Browntest : $(matched:$(OBJDIR)/%=run-%)
5832158b1b0Sjeremylt
58486a4271fSThilina Rathnayake# Run test target in parallel
5856850bcb5Scamierjstst : ;@$(MAKE) $(MFLAGS) V=$(V) test
5863b56482dScamierjs# CPU C tests only for backend %
5873f3e7340Scamierjsctc-% : $(ctests);@$(foreach tst,$(ctests),$(tst) /cpu/$*;)
5884859b599SJed Brown
58986a4271fSThilina Rathnayakeprove : $(matched)
590a5dc8077SJed Brown	$(info Testing backends: $(BACKENDS))
591686de4acSJed Brown	$(PROVE) $(PROVE_OPTS) --exec 'tests/tap.sh' $(matched:$(OBJDIR)/%=%)
59286a4271fSThilina Rathnayake# Run prove target in parallel
5936850bcb5Scamierjsprv : ;@$(MAKE) $(MFLAGS) V=$(V) prove
594bfa078e6SJed Brown
595686de4acSJed Brownprove-all :
596686de4acSJed Brown	+$(MAKE) prove realsearch=%
597686de4acSJed Brown
5988ec9d54bSJed Brownjunit-% : $(OBJDIR)/%
599bdb0bdbbSJed Brown	@printf "  %10s %s\n" TEST $(<:$(OBJDIR)/%=%); $(PYTHON) tests/junit.py $(<:$(OBJDIR)/%=%)
6008ec9d54bSJed Brown
60176174befSjeremyltjunit : $(matched:$(OBJDIR)/%=junit-%)
6028ec9d54bSJed Brown
6032f4d9adbSJeremy L Thompsonall: $(alltests)
6042f4d9adbSJeremy L Thompson
6052f4d9adbSJeremy L Thompsonexamples : $(allexamples)
60686a4271fSThilina Rathnayakeceedexamples : $(examples)
60786a4271fSThilina Rathnayakenekexamples : $(nekexamples)
60886a4271fSThilina Rathnayakemfemexamples : $(mfemexamples)
60986a4271fSThilina Rathnayakepetscexamples : $(petscexamples)
6102f4d9adbSJeremy L Thompson
6112f4d9adbSJeremy L Thompson# Benchmarks
6120c59ef15SJeremy L Thompsonallbenchmarks = petsc-bps
6134e79ff5bSVeselin Dobrevbench_targets = $(addprefix bench-,$(allbenchmarks))
6144e79ff5bSVeselin Dobrev.PHONY: $(bench_targets) benchmarks
6154e79ff5bSVeselin Dobrev$(bench_targets): bench-%: $(OBJDIR)/%
616422b683aSjeremylt	cd benchmarks && ./benchmark.sh --ceed "$(BACKENDS_MAKE)" -r $(*).sh
6174e79ff5bSVeselin Dobrevbenchmarks: $(bench_targets)
6182c6ea02fSJed Brown
6196ea7c6c1SJed Brown$(ceed.pc) : pkgconfig-prefix = $(abspath .)
620d5217624SJed Brown$(OBJDIR)/ceed.pc : pkgconfig-prefix = $(prefix)
621d5217624SJed Brown.INTERMEDIATE : $(OBJDIR)/ceed.pc
6226ea7c6c1SJed Brown%/ceed.pc : ceed.pc.template | $$(@D)/.DIR
6231d013790SJed Brown	@$(SED) \
6241d013790SJed Brown	    -e "s:%prefix%:$(pkgconfig-prefix):" \
6251d013790SJed Brown	    -e "s:%libs_private%:$(pkgconfig-libs-private):" $< > $@
6260e439e50SJed Brown
627d5217624SJed Browninstall : $(libceed) $(OBJDIR)/ceed.pc
628bf3e26f6SVeselin Dobrev	$(INSTALL) -d $(addprefix $(if $(DESTDIR),"$(DESTDIR)"),"$(includedir)"\
629ec3da8bcSJed Brown	  "$(includedir)/ceed/" "$(libdir)" "$(pkgconfigdir)")
630ec3da8bcSJed Brown	$(INSTALL_DATA) include/ceed/ceed.h "$(DESTDIR)$(includedir)/ceed/"
63180a9ef05SNatalie Beams	$(INSTALL_DATA) include/ceed/ceed-f32.h "$(DESTDIR)$(includedir)/ceed/"
63280a9ef05SNatalie Beams	$(INSTALL_DATA) include/ceed/ceed-f64.h "$(DESTDIR)$(includedir)/ceed/"
633ec3da8bcSJed Brown	$(INSTALL_DATA) include/ceed/fortran.h "$(DESTDIR)$(includedir)/ceed/"
634ec3da8bcSJed Brown	$(INSTALL_DATA) include/ceed/backend.h "$(DESTDIR)$(includedir)/ceed/"
635ec3da8bcSJed Brown	$(INSTALL_DATA) include/ceed/cuda.h "$(DESTDIR)$(includedir)/ceed/"
636ec3da8bcSJed Brown	$(INSTALL_DATA) include/ceed/hip.h "$(DESTDIR)$(includedir)/ceed/"
637ec3da8bcSJed Brown	$(INSTALL_DATA) include/ceed/hash.h "$(DESTDIR)$(includedir)/ceed/"
638ec3da8bcSJed Brown	$(INSTALL_DATA) include/ceed/khash.h "$(DESTDIR)$(includedir)/ceed/"
6391e25a746SJed Brown	$(INSTALL_DATA) $(libceed) "$(DESTDIR)$(libdir)/"
6401e25a746SJed Brown	$(INSTALL_DATA) $(OBJDIR)/ceed.pc "$(DESTDIR)$(pkgconfigdir)/"
641ec3da8bcSJed Brown	$(INSTALL_DATA) include/ceed.h "$(DESTDIR)$(includedir)/"
642ec3da8bcSJed Brown	$(INSTALL_DATA) include/ceedf.h "$(DESTDIR)$(includedir)/"
643d5217624SJed Brown
644*db52d626SJeremy L Thompson.PHONY : all cln clean doxygen doc lib install par print test tst prove prv prove-all junit examples style style-c style-py tidy iwyu info info-backends info-backends-all
645d635b4c6Scamierjs
6466e5d1fd9Scamierjscln clean :
6475cd88e3aSjeremylt	$(RM) -r $(OBJDIR) $(LIBDIR) dist *egg* .pytest_cache *cffi*
6489aeb05eaSJed Brown	$(call quiet,MAKE) -C examples clean NEK5K_DIR="$(abspath $(NEK5K_DIR))"
6499aeb05eaSJed Brown	$(call quiet,MAKE) -C python/tests clean
650196a75e4SJed Brown	$(RM) benchmarks/*output.txt
6514859b599SJed Brown
65207838a1cSTzaniodistclean : clean
65321d92382SJed Brown	$(RM) -r doc/html doc/sphinx/build $(CONFIG)
65407838a1cSTzanio
6554c4400c7SValeria BarraDOXYGEN ?= doxygen
6564c4400c7SValeria Barradoxygen :
6574c4400c7SValeria Barra	$(DOXYGEN) Doxyfile
6584c4400c7SValeria Barra
65974c2e4b1SJed Browndoc-html doc-latexpdf doc-epub doc-livehtml : doc-% : doxygen
6604c4400c7SValeria Barra	make -C doc/sphinx $*
6614c4400c7SValeria Barra
6624c4400c7SValeria Barradoc : doc-html
6637bd3a522STzanio
6647a7b0fa3SJed Brownstyle-c :
66520b73d85SJed Brown	@astyle --options=.astylerc \
666752c3701SJeremy L Thompson          $(filter-out include/ceedf.h $(wildcard tests/t*-f.h), \
66720b73d85SJed Brown            $(wildcard include/*.h interface/*.[ch] tests/*.[ch] backends/*/*.[ch] \
668ccaff030SJeremy L Thompson              examples/*/*/*.[ch] examples/*/*.[ch] examples/*/*.[ch]pp gallery/*/*.[ch]))
6690dbfdfc5SJed Brown
6707a7b0fa3SJed BrownAUTOPEP8 = autopep8
6717a7b0fa3SJed Brownstyle-py : AUTOPEP8_ARGS = --in-place --aggressive
6727a7b0fa3SJed Brownstyle-py :
67393dee7faSjeremylt	@$(AUTOPEP8) $(AUTOPEP8_ARGS) $(wildcard *.py python**/*.py python/tests/*.py examples**/*.py doc/sphinx/source**/*.py benchmarks/*.py)
6747a7b0fa3SJed Brown
6757a7b0fa3SJed Brownstyle : style-c style-py
6767a7b0fa3SJed Brown
677683faae0SJed BrownCLANG_TIDY ?= clang-tidy
6789647a07eSDavid Medina
679683faae0SJed Brown%.c.tidy : %.c
680ccf1f208Snbeams	$(CLANG_TIDY) $(TIDY_OPTS) $^ -- $(CPPFLAGS) --std=c99 -I$(CUDA_DIR)/include -I$(HIP_DIR)/include
681683faae0SJed Brown
6829647a07eSDavid Medina%.cpp.tidy : %.cpp
683ccf1f208Snbeams	$(CLANG_TIDY) $(TIDY_OPTS) $^ -- $(CPPFLAGS) --std=c++11 -I$(CUDA_DIR)/include -I$(OCCA_DIR)/include -I$(HIP_DIR)/include
6849647a07eSDavid Medina
6859647a07eSDavid Medinatidy_c   : $(libceed.c:%=%.tidy)
6869647a07eSDavid Medinatidy_cpp : $(libceed.cpp:%=%.tidy)
6879647a07eSDavid Medina
6889647a07eSDavid Medinatidy : tidy_c tidy_cpp
689683faae0SJed Brown
690*db52d626SJeremy L Thompsonifneq ($(wildcard ../iwyu/*),)
691*db52d626SJeremy L Thompson  IWYU_DIR ?= ../iwyu
692*db52d626SJeremy L Thompsonendif
693*db52d626SJeremy L Thompsonifneq ($(IWYU_DIR),)
694*db52d626SJeremy L Thompson  IWYU_CC = $(IWYU_DIR)/build/bin/include-what-you-use
695*db52d626SJeremy L Thompson
696*db52d626SJeremy L Thompson  iwyu_cc :
697*db52d626SJeremy L Thompson    CC = $(IWYU_CC)
698*db52d626SJeremy L Thompson  iwyu : lib | iwyu_cc
699*db52d626SJeremy L Thompsonendif
700*db52d626SJeremy L Thompson
7014859b599SJed Brownprint :
7024859b599SJed Brown	@echo $(VAR)=$($(VAR))
703582447c9SJed Brown
7049df38c42SVeselin Dobrevprint-% :
7059df38c42SVeselin Dobrev	$(info [ variable name]: $*)
7069df38c42SVeselin Dobrev	$(info [        origin]: $(origin $*))
7077bcc1ce4SJed Brown	$(info [        flavor]: $(flavor $*))
7089df38c42SVeselin Dobrev	$(info [         value]: $(value $*))
7099df38c42SVeselin Dobrev	$(info [expanded value]: $($*))
7109df38c42SVeselin Dobrev	$(info )
7119df38c42SVeselin Dobrev	@true
7129df38c42SVeselin Dobrev
713b0ab70ddSJed Brown# "make configure" detects any variables passed on the command line or
714b0ab70ddSJed Brown# previously set in config.mk, caching them in config.mk as simple
715b0ab70ddSJed Brown# (:=) variables.  Variables set in config.mk or on the command line
716b0ab70ddSJed Brown# take precedence over the defaults provided in the file.  Typical
717b0ab70ddSJed Brown# usage:
718d3c6b40fSJed Brown#
719d3c6b40fSJed Brown#   make configure CC=/path/to/my/cc CUDA_DIR=/opt/cuda
720d3c6b40fSJed Brown#   make
721d3c6b40fSJed Brown#   make prove
722b0ab70ddSJed Brown#
723b0ab70ddSJed Brown# The values in the file can be updated by passing them on the command
724b0ab70ddSJed Brown# line, e.g.,
725b0ab70ddSJed Brown#
726b0ab70ddSJed Brown#   make configure CC=/path/to/other/clang
727b0ab70ddSJed Brown
728b0ab70ddSJed Brown# All variables to consider for caching
72930f4f45fSnbeamsCONFIG_VARS = CC CXX FC NVCC NVCC_CXX HIPCC \
73030f4f45fSnbeams	OPT CFLAGS CPPFLAGS CXXFLAGS FFLAGS NVCCFLAGS HIPCCFLAGS \
7311d013790SJed Brown	AR ARFLAGS LDFLAGS LDLIBS LIBCXX SED \
732aa8cce74SJed Brown	MAGMA_DIR OCCA_DIR XSMM_DIR CUDA_DIR CUDA_ARCH MFEM_DIR PETSC_DIR NEK5K_DIR HIP_DIR HIP_ARCH
733b0ab70ddSJed Brown
734b0ab70ddSJed Brown# $(call needs_save,CFLAGS) returns true (a nonempty string) if CFLAGS
735b0ab70ddSJed Brown# was set on the command line or in config.mk (where it will appear as
736b0ab70ddSJed Brown# a simple variable).
737b0ab70ddSJed Brownneeds_save = $(or $(filter command line,$(origin $(1))),$(filter simple,$(flavor $(1))))
738b0ab70ddSJed Brown
739d3c6b40fSJed Brownconfigure :
740b0ab70ddSJed Brown	$(file > $(CONFIG))
741b0ab70ddSJed Brown	$(foreach v,$(CONFIG_VARS),$(if $(call needs_save,$(v)),$(file >> $(CONFIG),$(v) := $($(v)))))
742b0ab70ddSJed Brown	@echo "Configuration cached in $(CONFIG):"
743b0ab70ddSJed Brown	@cat $(CONFIG)
744d3c6b40fSJed Brown
74561130325SJed Brownwheel : export MARCHFLAG = -march=generic
74661130325SJed Brownwheel : export WHEEL_PLAT = manylinux2010_x86_64
74737c134eaSJed Brownwheel :
748dabe13fcSJed Brown	docker run -it --user $(shell id -u):$(shell id -g) --rm -v $(PWD):/io -w /io \
74961130325SJed Brown		-e MARCHFLAG -e WHEEL_PLAT \
75061130325SJed Brown		quay.io/pypa/$(WHEEL_PLAT) python/make-wheels.sh
751d3c6b40fSJed Brown
75237c134eaSJed Brown.PHONY : configure wheel
75337c134eaSJed Brown
75437c134eaSJed Brown# Include *.d deps when not -B = --always-make: useful if the paths are wonky in a container
75537c134eaSJed Brown-include $(if $(filter B,$(MAKEFLAGS)),,$(libceed.c:%.c=$(OBJDIR)/%.d) $(tests.c:tests/%.c=$(OBJDIR)/%.d))
756