| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 | # StarPU --- Runtime system for heterogeneous multicore architectures.## Copyright (C) 2011,2012 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.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) $(STARPU_COI_LDFLAGS) $(STARPU_SCIF_LDFLAGS)noinst_PROGRAMS =				\	app_driven_test/app_driven_test		\	lp_test/lp_test				\	lp_test/lp_resize_test			\	hierarchical_ctxs/resize_hierarchical_ctxsif !NO_BLAS_LIBnoinst_PROGRAMS +=				\	cholesky/cholesky_implicitnoinst_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	\	../../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	! grep -q "ERROR: AddressSanitizer: " $(TEST_LOGS) /dev/null	! grep -q "WARNING: AddressSanitizer: " $(TEST_LOGS) /dev/null	! grep -q "ERROR: ThreadSanitizer: " $(TEST_LOGS) /dev/null	! grep -q "WARNING: ThreadSanitizer: " $(TEST_LOGS) /dev/null
 |