| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 | # StarPU --- Runtime system for heterogeneous multicore architectures.## Copyright (C) 2017-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.#SUBDIRS =CLEANFILES = *.gcno *.gcda *.linkinfoAM_CPPFLAGS	= -I$(top_srcdir)/include -I$(top_srcdir)/src -I$(top_builddir)/src -I$(top_builddir)/includeAM_CPPFLAGS	+= -I$(top_srcdir)/starpurm/include -I$(top_srcdir)/starpurm/src -I$(top_builddir)/starpurm/src -I$(top_builddir)/starpurm/includeAM_CFLAGS	= -Wall -g $(HWLOC_CFLAGS) $(DLB_CFLAGS)LDADD	= $(top_builddir)/starpurm/src/libstarpurm-@STARPU_EFFECTIVE_VERSION@.la $(HWLOC_LIBS) $(DLB_LIBS)examplebindir = $(libdir)/starpu/examples/starpurmexamplebin_PROGRAMS =examplebin_PROGRAMS += 01_init_exitexamplebin_PROGRAMS += 02_list_unitsexamplebin_PROGRAMS += 03_cpusetsexamplebin_PROGRAMS += 04_drs_enableexamplebin_PROGRAMS += 05_vector_scaleexamplebin_PROGRAMS += 06_spawnexamplebin_PROGRAMS += 07_async_spawn01_init_exit_SOURCES = 01_init_exit.c02_list_units_SOURCES = 02_list_units.c03_cpusets_SOURCES = 03_cpusets.c04_drs_enable_SOURCES = 04_drs_enable.c05_vector_scale_SOURCES = 05_vector_scale.c06_spawn_SOURCES = 06_spawn.c07_async_spawn_SOURCES = 07_async_spawn.c
 |