| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 | # StarPU --- Runtime system for heterogeneous multicore architectures.## Copyright (C) 2020       Université de Bordeaux, CNRS (LaBRI UMR 5800), Inria## StarPU 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; either version 2.1 of the License, or (at# your option) any later version.## StarPU is distributed in the hope that it will be useful, but# WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.## See the GNU Lesser General Public License in COPYING.LGPL for more details.#include $(top_srcdir)/starpu.mknoinst_PROGRAMS		=if STARPU_HAVE_WINDOWSLOADER_BIN		=elseloader_CPPFLAGS 	= 	$(AM_CFLAGS) $(AM_CPPFLAGS) -I$(top_builddir)/src/if !STARPU_SIMGRIDLOADER			=	loaderLOADER_BIN		=	$(abs_top_builddir)/julia/examples/$(LOADER)noinst_PROGRAMS		+=	loaderendifloader_SOURCES		=	../../tests/loader.cendifif STARPU_HAVE_AM111TESTS_ENVIRONMENT	=	top_builddir="$(abs_top_builddir)" top_srcdir="$(abs_top_srcdir)"elseTESTS_ENVIRONMENT 	=	top_builddir="$(abs_top_builddir)" top_srcdir="$(abs_top_srcdir)" $(LOADER_BIN)endifBUILT_SOURCES =CLEANFILES = *.gcno *.gcda *.linkinfo starpu_idle_microsec.logEXTRA_DIST =					\	axpy/axpy.jl				\	axpy/axpy.sh				\	black_scholes/black_scholes.jl		\	callback/callback.jl			\	callback/callback.sh			\	check_deps/check_deps.jl		\	check_deps/check_deps.sh		\	cholesky/cholesky_codelets.jl		\	cholesky/cholesky_common.jl		\	cholesky/cholesky_native.jl		\	cholesky/cholesky_implicit.jl		\	cholesky/cholesky_tag.jl		\	cholesky/cholesky.sh			\	dependency/end_dep.jl			\	dependency/end_dep.sh			\	dependency/tag_dep.jl			\	dependency/tag_dep.sh			\	dependency/task_dep.sh			\	dependency/task_dep.jl			\	gemm/gemm.jl				\	gemm/gemm_native.jl			\	gemm/gemm.sh				\	mandelbrot/mandelbrot_native.jl		\	mandelbrot/mandelbrot.jl		\	mandelbrot/mandelbrot.sh		\	mult/mult_native.jl			\	mult/mult.jl				\	mult/perf.sh				\	mult/mult_starpu.sh			\	task_insert_color/task_insert_color.jl	\	task_insert_color/task_insert_color.sh	\	variable/variable.jl			\	variable/variable_native.jl		\	variable/variable.sh			\	vector_scal/vector_scal.jl		\	vector_scal/vector_scal.shexamplebindir = $(libdir)/starpu/juliaexamplebin_PROGRAMS =if STARPU_USE_CUDAif STARPU_COVERITYinclude $(top_srcdir)/starpu-mynvcc.mkelseNVCCFLAGS += --compiler-options -fno-strict-aliasing  -I$(top_srcdir)/include/ -I$(top_builddir)/include/ $(HWLOC_CFLAGS).cu.cubin:	$(V_nvcc) $(NVCC) -cubin $< -o $@ $(NVCCFLAGS).cu.o:	$(V_nvcc) $(NVCC) $< -c -o $@ $(NVCCFLAGS)endifendifAM_CFLAGS = -Wall $(STARPU_CUDA_CPPFLAGS) $(STARPU_OPENCL_CPPFLAGS) $(FXT_CFLAGS) $(MAGMA_CFLAGS) $(HWLOC_CFLAGS) $(GLOBAL_AM_CFLAGS) -Wno-unusedLIBS = $(top_builddir)/src/@LIBSTARPU_LINK@ ../src/libstarpujulia-@STARPU_EFFECTIVE_VERSION@.la -lm @LIBS@ $(FXT_LIBS) $(MAGMA_LIBS)AM_CPPFLAGS = -I$(top_srcdir)/include/ -I$(top_srcdir)/examples/ -I$(top_builddir)/includeAM_LDFLAGS = $(STARPU_OPENCL_LDFLAGS) $(STARPU_CUDA_LDFLAGS) $(FXT_LDFLAGS) $(STARPU_COI_LDFLAGS) $(STARPU_SCIF_LDFLAGS)check_PROGRAMS = $(LOADER) $(starpu_julia_EXAMPLES)SHELL_TESTS	=STARPU_JULIA_EXAMPLES	=examplebin_PROGRAMS 	+=	$(STARPU_JULIA_EXAMPLES)TESTS			=	$(SHELL_TESTS) $(STARPU_JULIA_EXAMPLES)#######################      Examples      #######################SHELL_TESTS	+=	check_deps/check_deps.shSTARPU_JULIA_EXAMPLES	+=	mult/multmult_mult_SOURCES	=	mult/mult.c mult/cpu_mult.cSHELL_TESTS		+=	mult/mult_starpu.shSTARPU_JULIA_EXAMPLES				+=	task_insert_color/task_insert_colortask_insert_color_task_insert_color_SOURCES	=	task_insert_color/task_insert_color.cSHELL_TESTS					+=	task_insert_color/task_insert_color.shSHELL_TESTS	+=	variable/variable.shSHELL_TESTS	+=	vector_scal/vector_scal.shSTARPU_JULIA_EXAMPLES		+=	mandelbrot/mandelbrotmandelbrot_mandelbrot_SOURCES	=	mandelbrot/mandelbrot.c mandelbrot/cpu_mandelbrot.c mandelbrot/cpu_mandelbrot.hSHELL_TESTS			+=	mandelbrot/mandelbrot.shSTARPU_JULIA_EXAMPLES		+= 	callback/callbackcallback_callback_SOURCES	=	callback/callback.cSHELL_TESTS			+=	callback/callback.shSHELL_TESTS			+=	dependency/tag_dep.shSHELL_TESTS			+=	dependency/task_dep.shSHELL_TESTS			+=	dependency/end_dep.shif !STARPU_NO_BLAS_LIBSHELL_TESTS			+=	axpy/axpy.shSHELL_TESTS			+=	cholesky/cholesky.shSHELL_TESTS			+=	gemm/gemm.shendif
 |