xref: /libCEED/examples/petsc/Makefile (revision 22785960d60f45e0c65c47523fd8ab76bf9537ed)
1# Copyright (c) 2017, Lawrence Livermore National Security, LLC. Produced at
2# the Lawrence Livermore National Laboratory. LLNL-CODE-734707. All Rights
3# reserved. See files LICENSE and NOTICE for details.
4#
5# This file is part of CEED, a collection of benchmarks, miniapps, software
6# libraries and APIs for efficient high-order finite element and spectral
7# element discretizations for exascale applications. For more information and
8# source code availability see http://github.com/ceed.
9#
10# The CEED research is supported by the Exascale Computing Project 17-SC-20-SC,
11# a collaborative effort of two U.S. Department of Energy organizations (Office
12# of Science and the National Nuclear Security Administration) responsible for
13# the planning and preparation of a capable exascale ecosystem, including
14# software, applications, hardware, advanced system engineering and early
15# testbed platforms, in support of the nation's exascale computing imperative.
16
17COMMON ?= ../../common.mk
18-include $(COMMON)
19
20# Note: PETSC_ARCH can be undefined or empty for installations which do not use
21#       PETSC_ARCH - for example when using PETSc installed through Spack.
22PETSc.pc := $(PETSC_DIR)/$(PETSC_ARCH)/lib/pkgconfig/PETSc.pc
23CEED_DIR ?= ../..
24ceed.pc := $(CEED_DIR)/lib/pkgconfig/ceed.pc
25
26CC = $(call pkgconf, --variable=ccompiler $(PETSc.pc) $(ceed.pc))
27CFLAGS = -std=c99 \
28  $(call pkgconf, --variable=cflags_extra $(PETSc.pc)) \
29  $(call pkgconf, --cflags-only-other $(PETSc.pc)) \
30  $(OPT)
31CPPFLAGS = $(call pkgconf, --cflags-only-I $(PETSc.pc) $(ceed.pc)) \
32  $(call pkgconf, --variable=cflags_dep $(PETSc.pc))
33LDFLAGS = $(call pkgconf, --libs-only-L --libs-only-other $(PETSc.pc) $(ceed.pc))
34LDFLAGS += $(patsubst -L%, $(call pkgconf, --variable=ldflag_rpath $(PETSc.pc))%, $(call pkgconf, --libs-only-L $(PETSc.pc) $(ceed.pc)))
35LDLIBS = $(call pkgconf, --libs-only-l $(PETSc.pc) $(ceed.pc)) -lm
36
37OBJDIR := build
38SRCDIR := src
39
40utils.c := $(sort $(wildcard $(SRCDIR)/*.c))
41
42all: area bps bpsraw bpssphere multigrid
43
44area.c := area.c $(utils.c)
45area.o = $(area.c:%.c=$(OBJDIR)/%.o)
46area: $(area.o) | $(PETSc.pc) $(ceed.pc)
47	$(call quiet,LINK.o) $(CEED_LDFLAGS) $^ $(LOADLIBES) $(LDLIBS) -o $@
48
49bps.c := bps.c $(utils.c)
50bps.o = $(bps.c:%.c=$(OBJDIR)/%.o)
51bps: $(bps.o) | $(PETSc.pc) $(ceed.pc)
52	$(call quiet,LINK.o) $(CEED_LDFLAGS) $^ $(LOADLIBES) $(LDLIBS) -o $@
53
54bpsraw.c := bpsraw.c $(utils.c)
55bpsraw.o = $(bpsraw.c:%.c=$(OBJDIR)/%.o)
56bpsraw: $(bpsraw.o) | $(PETSc.pc) $(ceed.pc)
57	$(call quiet,LINK.o) $(CEED_LDFLAGS) $^ $(LOADLIBES) $(LDLIBS) -o $@
58
59bpssphere.c := bpssphere.c $(utils.c)
60bpssphere.o = $(bpssphere.c:%.c=$(OBJDIR)/%.o)
61bpssphere: $(bpssphere.o) | $(PETSc.pc) $(ceed.pc)
62	$(call quiet,LINK.o) $(CEED_LDFLAGS) $^ $(LOADLIBES) $(LDLIBS) -o $@
63
64multigrid.c := multigrid.c $(utils.c)
65multigrid.o = $(multigrid.c:%.c=$(OBJDIR)/%.o)
66multigrid: $(multigrid.o) | $(PETSc.pc) $(ceed.pc)
67	$(call quiet,LINK.o) $(CEED_LDFLAGS) $^ $(LOADLIBES) $(LDLIBS) -o $@
68
69.SECONDEXPANSION: # to expand $$(@D)/.DIR
70%/.DIR :
71	@mkdir -p $(@D)
72	@touch $@
73
74# Quiet, color output
75quiet ?= $($(1))
76
77$(OBJDIR)/%.o : %.c | $$(@D)/.DIR
78	$(call quiet,CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $(abspath $<)
79
80# Rules for building the examples
81#%: %.c
82
83print: $(PETSc.pc) $(ceed.pc)
84	$(info CC      : $(CC))
85	$(info CFLAGS  : $(CFLAGS))
86	$(info CPPFLAGS: $(CPPFLAGS))
87	$(info LDFLAGS : $(LDFLAGS))
88	$(info LDLIBS  : $(LDLIBS))
89	@true
90
91clean:
92	$(RM) -r $(OBJDIR) *.vtu area bps bpsraw bpssphere multigrid
93
94$(PETSc.pc):
95	$(if $(wildcard $@),,$(error \
96	  PETSc config not found at $@. Please set PETSC_DIR and PETSC_ARCH))
97
98.PHONY: all print clean
99
100pkgconf = $(shell pkg-config $1 | sed -e 's/^"//g' -e 's/"$$//g')
101
102-include $(src.o:%.o=%.d)
103