10d9661cdSTzanio# Copyright (c) 2017, Lawrence Livermore National Security, LLC. Produced at 20d9661cdSTzanio# the Lawrence Livermore National Laboratory. LLNL-CODE-734707. All Rights 30d9661cdSTzanio# 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 17*e86995feScamierjsCC = gcc 18*e86995feScamierjs 19*e86995feScamierjsNDEBUG ?= 20*e86995feScamierjsLDFLAGS ?= 21*e86995feScamierjs 22*e86995feScamierjsSANTIZ = -fsanitize=address -fsanitize=undefined -fno-omit-frame-pointer 23582447c9SJed BrownCFLAGS = -std=c99 -Wall -Wextra -Wno-unused-parameter -fPIC -MMD -MP 24*e86995feScamierjsCFLAGS += $(if $(NDEBUG),,$(SANTIZ)) 254859b599SJed BrownCFLAGS += $(if $(NDEBUG),-O2,-g) 26*e86995feScamierjsLDFLAGS += $(if $(NDEBUG),,$(SANTIZ)) 274859b599SJed BrownCPPFLAGS = -I. 28582447c9SJed BrownLDLIBS = -lm 2991b7489eSJed BrownOBJDIR := build 3091b7489eSJed BrownLIBDIR := . 3169762e1fScamierjsNPROCS := $(shell getconf _NPROCESSORS_ONLN) 32*e86995feScamierjsMFLAGS := --no-print-directory -j $(NPROCS) --warn-undefined-variables 3387e762eaSJed Brown 34bfa078e6SJed BrownPROVE ?= prove 355c719ab0SJed BrownDARWIN := $(filter Darwin,$(shell uname -s)) 365c719ab0SJed BrownSO_EXT := $(if $(DARWIN),dylib,so) 379df38c42SVeselin Dobrev 3891b7489eSJed Brownlibceed := $(LIBDIR)/libceed.$(SO_EXT) 39bae89548SJed Brownlibceed.c := $(wildcard ceed*.c) 40746e9b11SJed Browntests.c := $(sort $(wildcard tests/t[0-9][0-9]-*.c)) 4191b7489eSJed Browntests := $(tests.c:tests/%.c=$(OBJDIR)/%) 422c6ea02fSJed Brownexamples.c := $(sort $(wildcard examples/*.c)) 4391b7489eSJed Brownexamples := $(examples.c:examples/%.c=$(OBJDIR)/%) 444859b599SJed Brown 459df38c42SVeselin Dobrev.SUFFIXES: 469df38c42SVeselin Dobrev.SUFFIXES: .c .o .d 4791b7489eSJed Brown.SECONDEXPANSION: # to expand $$(@D)/.DIR 489df38c42SVeselin Dobrev 4991b7489eSJed Brown%/.DIR : 5091b7489eSJed Brown @mkdir -p $(@D) 5191b7489eSJed Brown @touch $@ 5291b7489eSJed Brown 5391b7489eSJed Brown.PRECIOUS: %/.DIR 5491b7489eSJed Brown 55*e86995feScamierjsall dbg:;$(MAKE) $(MFLAGS) $(libceed) 56*e86995feScamierjsopt:;NDEBUG=1 $(MAKE) $(MFLAGS) $(libceed) 5769762e1fScamierjs 5891b7489eSJed Brown$(libceed) : $(libceed.c:%.c=$(OBJDIR)/%.o) 594859b599SJed Brown $(CC) $(LDFLAGS) -shared -o $@ $^ $(LDLIBS) 604859b599SJed Brown 6191b7489eSJed Brown$(OBJDIR)/%.o : %.c | $$(@D)/.DIR 6291b7489eSJed Brown $(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $^ 6391b7489eSJed Brown 6491b7489eSJed Brown$(OBJDIR)/%.o : tests/%.c | $$(@D)/.DIR 6591b7489eSJed Brown $(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $^ 6691b7489eSJed Brown 6791b7489eSJed Brown$(OBJDIR)/%.o : examples/%.c | $$(@D)/.DIR 6891b7489eSJed Brown $(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $^ 6991b7489eSJed Brown 702c6ea02fSJed Brown$(tests) $(examples) : $(libceed) 7191b7489eSJed Brown$(tests) $(examples) : LDFLAGS += -Wl,-rpath,$(LIBDIR) -L$(LIBDIR) 7291b7489eSJed Brown$(OBJDIR)/t% : tests/t%.c $(libceed) 7391b7489eSJed Brown$(OBJDIR)/ex% : examples/ex%.c $(libceed) 744859b599SJed Brown 7591b7489eSJed Brownrun-t% : $(OBJDIR)/t% 76*e86995feScamierjs tests/tap.sh $(<:build/%=%) 774859b599SJed Brown 7891b7489eSJed Browntest : $(tests:$(OBJDIR)/t%=run-t%) 79*e86995feScamierjstst:;@$(MAKE) $(MFLAGS) test 804859b599SJed Brown 81bfa078e6SJed Brownprove : $(tests) 8291b7489eSJed Brown $(PROVE) --exec tests/tap.sh $(CEED_PROVE_OPTS) $(tests:$(OBJDIR)/%=%) 83bfa078e6SJed Brown 842c6ea02fSJed Brownexamples : $(examples) 852c6ea02fSJed Brown 860dbfdfc5SJed Brown.PHONY: clean print test examples astyle 8769762e1fScamierjscln clean : 8891b7489eSJed Brown $(RM) *.o $(OBJDIR)/*.o *.d $(OBJDIR)/*.d $(libceed) $(tests.c:%.c=%) 899df38c42SVeselin Dobrev $(RM) -r *.dSYM 904859b599SJed Brown 910dbfdfc5SJed Brownastyle : 924e3516aeSJed Brown astyle --style=google --indent=spaces=2 --max-code-length=80 \ 930dbfdfc5SJed Brown --keep-one-line-statements --keep-one-line-blocks --lineend=linux \ 94746e9b11SJed Brown --suffix=none --preserve-date --formatted \ 95746e9b11SJed Brown *.[ch] tests/*.[ch] examples/*.[ch] 960dbfdfc5SJed Brown 970dbfdfc5SJed Brown 984859b599SJed Brownprint : 994859b599SJed Brown @echo $(VAR)=$($(VAR)) 100582447c9SJed Brown 1019df38c42SVeselin Dobrevprint-%: 1029df38c42SVeselin Dobrev $(info [ variable name]: $*) 1039df38c42SVeselin Dobrev $(info [ origin]: $(origin $*)) 1049df38c42SVeselin Dobrev $(info [ value]: $(value $*)) 1059df38c42SVeselin Dobrev $(info [expanded value]: $($*)) 1069df38c42SVeselin Dobrev $(info ) 1079df38c42SVeselin Dobrev @true 1089df38c42SVeselin Dobrev 109bae89548SJed Brown-include $(libceed.c:%.c=%.d) $(tests.c:%.c=%.d) 110