Lines Matching refs:c

147 CXXFLAGS.gcc            := $(if $(STATIC),,-fPIC) -std=c++11 -Wall -Wextra -Wno-unused-parameter -M…
151 CXXFLAGS.XL := $(if $(STATIC),,-qpic) -std=c++11 -MMD
161 cc_check_flag = $(shell $(CC) -E -Werror $(1) -x c /dev/null > /dev/null 2>&1 && echo 1)
188 SYCLFLAGS ?= $(SYCL_FLAG) -fPIC -std=c++17 $(filter-out -std=c++11,$(CXXFLAGS)) $(filter-out $(OMP_…
289c := $(filter-out interface/ceed-cuda.c interface/ceed-hip.c interface/ceed-jit-source-root-$(if $…
290 gallery.c := $(wildcard gallery/*/ceed*.c)
291 libceed.c += $(gallery.c)
295 ref.c := $(sort $(wildcard backends/ref/*.c))
296 blocked.c := $(sort $(wildcard backends/blocked/*.c))
297 ceedmemcheck.c := $(sort $(wildcard backends/memcheck/*.c))
298 opt.c := $(sort $(wildcard backends/opt/*.c))
299 avx.c := $(sort $(wildcard backends/avx/*.c))
300 xsmm.c := $(sort $(wildcard backends/xsmm/*.c))
302 cuda.c := $(sort $(wildcard backends/cuda/*.c))
304 cuda-ref.c := $(sort $(wildcard backends/cuda-ref/*.c))
307 cuda-shared.c := $(sort $(wildcard backends/cuda-shared/*.c))
308 cuda-gen.c := $(sort $(wildcard backends/cuda-gen/*.c))
310 cuda-all.c := interface/ceed-cuda.c $(cuda.c) $(cuda-ref.c) $(cuda-shared.c) $(cuda-gen.c)
313 hip.c := $(sort $(wildcard backends/hip/*.c))
315 hip-ref.c := $(sort $(wildcard backends/hip-ref/*.c))
318 hip-shared.c := $(sort $(wildcard backends/hip-shared/*.c))
319 hip-gen.c := $(sort $(wildcard backends/hip-gen/*.c))
321 hip-all.c := interface/ceed-hip.c $(hip.c) $(hip-ref.c) $(hip-shared.c) $(hip-gen.c)
328 magma.c := $(sort $(wildcard backends/magma/*.c))
332 tests.c := $(sort $(wildcard tests/t[0-9][0-9][0-9]-*.c))
334 tests := $(tests.c:tests/%.c=$(OBJDIR)/%$(EXE_SUFFIX))
339 examples.c := $(sort $(wildcard examples/ceed/*.c))
341 examples := $(examples.c:examples/ceed/%.c=$(OBJDIR)/%$(EXE_SUFFIX))
356 rustqfunctions.c := $(sort $(wildcard examples/rust-qfunctions/*.c))
357 rustqfunctionsexamples := $(rustqfunctions.c:examples/rust-qfunctions/%.c=$(OBJDIR)/rustqfunctions-…
360 petscexamples.c := $(wildcard examples/petsc/*.c)
361 petscexamples := $(petscexamples.c:examples/petsc/%.c=$(OBJDIR)/petsc-%)
364 fluidsexamples.c := $(sort $(wildcard examples/fluids/*.c))
365 fluidsexamples := $(fluidsexamples.c:examples/fluids/%.c=$(OBJDIR)/fluids-%)
368 solidsexamples.c := $(sort $(wildcard examples/solids/*.c))
369 solidsexamples := $(solidsexamples.c:examples/solids/%.c=$(OBJDIR)/solids-%)
487 libceed.c += $(ref.c)
488 libceed.c += $(blocked.c)
489 libceed.c += $(opt.c)
497 libceed.c += $(ceedmemcheck.c)
504 AVX := $(filter $(AVX_FLAG),$(shell $(CC) $(CFLAGS:-M%=) -v -E -x c /dev/null 2>&1))
508 libceed.c += $(avx.c)
533 libceed.c += $(xsmm.c)
534 $(xsmm.c:%.c=$(OBJDIR)/%.o) $(xsmm.c:%=%.tidy) : CPPFLAGS += -I$(XSMM_DIR)/include
550 libceed.c += interface/ceed-cuda.c
551 libceed.c += $(cuda-all.c)
563 $(hip-all.c:%.c=$(OBJDIR)/%.o) $(hip-all.c:%=%.tidy): CPPFLAGS += $(HIPCONFIG_CPPFLAGS)
569 libceed.c += $(hip-all.c)
599 libceed.c += $(magma.c)
601 …$(magma.c:%.c=$(OBJDIR)/%.o) $(magma.c:%=%.tidy) : CPPFLAGS += -DADD_ -I$(MAGMA_DIR)/include -I$(C…
613 libceed.c += $(magma.c)
615 …$(magma.c:%.c=$(OBJDIR)/%.o) $(magma.c:%=%.tidy) : CPPFLAGS += $(HIPCONFIG_CPPFLAGS) -I$(MAGMA_DIR…
659 libceed.o = $(libceed.c:%.c=$(OBJDIR)/%.o) $(libceed.cpp:%.cpp=$(OBJDIR)/%.o) $(libceed.cu:%.cu=$(O…
668 $(OBJDIR)/%.o : $(CURDIR)/%.c | $$(@D)/.DIR
686 $(OBJDIR)/%$(EXE_SUFFIX) : tests/%.c | $$(@D)/.DIR
687 …$(call quiet,LINK.c) $(CEED_LDFLAGS) -o $@ $(abspath $<) $(CEED_LIBS) $(CEED_LDLIBS) $(LDLIBS) -I.…
692 $(OBJDIR)/%$(EXE_SUFFIX) : examples/ceed/%.c | $$(@D)/.DIR
693 $(call quiet,LINK.c) $(CEED_LDFLAGS) -o $@ $(abspath $<) $(CEED_LIBS) $(CEED_LDLIBS) $(LDLIBS)
727 $(OBJDIR)/rustqfunctions-% : examples/rust-qfunctions/%.c $(libceed) | $$(@D)/.DIR
741 $(OBJDIR)/petsc-% : examples/petsc/%.c examples/petsc/libutils.a.PHONY $(libceed) $(ceed.pc) | $$(@…
747 …ds-% : examples/fluids/%.c examples/fluids/src/*.c examples/fluids/*.h examples/fluids/include/*.h…
753 $(OBJDIR)/solids-% : examples/solids/%.c examples/solids/%.h \
754 examples/solids/problems/*.c examples/solids/src/*.c \
961 %.c.tidy : %.c
965 …$(CLANG_TIDY) $(TIDY_OPTS) $^ -- $(CPPFLAGS) --std=c++11 -I$(CUDA_DIR)/include -I$(ROCM_DIR)/inclu…
967 tidy-c : $(libceed.c:%=%.tidy)
1055 -include $(if $(filter B,$(MAKEFLAGS)),,$(libceed.c:%.c=$(OBJDIR)/%.d) $(tests.c:tests/%.c=$(OBJDIR…