123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- # StarPU --- Runtime system for heterogeneous multicore architectures.
- #
- # Copyright (C) 2009, 2010, 2011 Université de Bordeaux 1
- # Copyright (C) 2010, 2011 Centre National de la Recherche Scientifique
- # Copyright (C) 2010 Institut National de Recherche en Informatique et Automatique
- #
- # 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.
- AM_CFLAGS = $(HWLOC_CFLAGS) -Wall
- LIBS = $(top_builddir)/src/libstarpu.la $(HWLOC_LIBS) @LIBS@
- AM_CPPFLAGS = -I$(top_srcdir)/include/ -I$(top_srcdir)/src/
- optbindir = $(libdir)/starpu/tests
- optbin_PROGRAMS =
- SUBDIRS =
- TESTS = $(check_PROGRAMS)
- check_PROGRAMS =
- check_PROGRAMS += \
- datawizard/wt_host \
- datawizard/wt_broadcast
- optbin_PROGRAMS += \
- datawizard/wt_host
- datawizard_wt_host_SOURCES = \
- datawizard/wt_host.c
- optbin_PROGRAMS += \
- datawizard/wt_broadcast
- datawizard_wt_broadcast_SOURCES = \
- datawizard/wt_broadcast.c
|