| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 | # StarPU --- Runtime system for heterogeneous multicore architectures.## Copyright (C) 2011,2012 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 = -Wall $(STARPU_CUDA_CPPFLAGS) $(STARPU_OPENCL_CPPFLAGS) $(FXT_CFLAGS) $(MAGMA_CFLAGS) $(HWLOC_CFLAGS) $(GLOBAL_AM_CFLAGS)LIBS = $(top_builddir)/src/@LIBSTARPU_LINK@ @LIBS@ $(top_builddir)/sc_hypervisor/src/libsc_hypervisor.laAM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/examples -I$(top_builddir)/include -I$(top_srcdir)/sc_hypervisor/include -I$(top_srcdir)/sc_hypervisor/examplesAM_LDFLAGS = $(STARPU_OPENCL_LDFLAGS) $(STARPU_CUDA_LDFLAGS) $(STARPU_GLPK_LDFLAGS)noinst_PROGRAMS =				\	app_driven_test/app_driven_test		\	lp_test/lp_test				\	lp_test/lp_resize_testif !NO_BLAS_LIBnoinst_PROGRAMS +=				\	cholesky/cholesky_implicit  		noinst_HEADERS = 				\	cholesky/cholesky.h			\	sched_ctx_utils/sched_ctx_utils.hendifif !NO_BLAS_LIBcholesky_cholesky_implicit_SOURCES =		\	cholesky/cholesky_implicit.c		\	cholesky/cholesky_models.c		\	cholesky/cholesky_kernels.c		\	sched_ctx_utils/sched_ctx_utils.c	\	$(top_srcdir)/examples/common/blas.ccholesky_cholesky_implicit_LDADD =		\	$(top_builddir)/sc_hypervisor/src/libsc_hypervisor.la \	$(STARPU_BLAS_LDFLAGS)endifapp_driven_test_app_driven_test_SOURCES =		\	app_driven_test/app_driven_test.capp_driven_test_app_driven_test_LDADD =		\	$(top_builddir)/sc_hypervisor/src/libsc_hypervisor.lashowcheck:	-cat $(TEST_LOGS) /dev/null
 |