1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- # StarPU --- Runtime system for heterogeneous multicore architectures.
- #
- # Copyright (C) 2009, 2011 Université de Bordeaux 1
- # Copyright (C) 2010, 2011 Centre National de la Recherche Scientifique
- #
- # Permission is granted to copy, distribute and/or modify this document
- # under the terms of the GNU Free Documentation License, Version 1.3
- # or any later version published by the Free Software Foundation;
- # with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
- #
- # See the GNU Free Documentation License in COPYING.GFDL for more details.
- info_TEXINFOS = starpu.texi
- starpu_TEXINFOS = chapters/advanced-api.texi \
- chapters/configuration.texi \
- chapters/perf-feedback.texi \
- chapters/vector_scal_cpu.texi \
- chapters/advanced-examples.texi \
- chapters/fdl-1.3.texi \
- chapters/perf-optimization.texi \
- chapters/vector_scal_c.texi \
- chapters/basic-api.texi \
- chapters/installing.texi \
- chapters/scaling-vector-example.texi \
- chapters/vector_scal_cuda.texi \
- chapters/basic-examples.texi \
- chapters/introduction.texi \
- chapters/tips-tricks.texi \
- chapters/vector_scal_opencl_codelet.texi \
- chapters/c-extensions.texi \
- chapters/mpi-support.texi \
- chapters/fft-support.texi \
- chapters/using.texi \
- chapters/vector_scal_opencl.texi
- MAINTAINERCLEANFILES = starpu.pdf
- EXTRA_DIST = starpu.pdf \
- starpu.css
- AM_MAKEINFOHTMLFLAGS = --css-include=$(top_srcdir)/doc/starpu.css --no-headers --no-split
- uninstall-local:
- $(RM) $(DESTDIR)$(infodir)/dir
- #$(top_srcdir)/doc/starpu.texi: vector_scal_c.texi vector_scal_cuda.texi vector_scal_opencl.texi vector_scal_opencl_codelet.texi
- #vector_scal_c.texi: $(top_srcdir)/examples/basic_examples/vector_scal.c
- # cat $< | sed 's/{/@{/g' | sed 's/}/@}/g' | sed 's/\t/ /g' > $@
- #vector_scal_cuda.texi: $(top_srcdir)/examples/basic_examples/vector_scal_cuda.cu
- # cat $< | sed 's/{/@{/g' | sed 's/}/@}/g' | sed 's/\t/ /g' > $@
- #vector_scal_opencl.texi: $(top_srcdir)/examples/basic_examples/vector_scal_opencl.c
- # cat $< | sed 's/{/@{/g' | sed 's/}/@}/g' | sed 's/\t/ /g' > $@
- #vector_scal_opencl_codelet.texi: $(top_srcdir)/examples/basic_examples/vector_scal_opencl_codelet.cl
- # cat $< | sed 's/{/@{/g' | sed 's/}/@}/g' | sed 's/\t/ /g' > $@
- #
- #CLEANFILES= \
- # vector_scal_c.texi vector_scal_cuda.texi vector_scal_opencl.texi vector_scal_opencl_codelet.texi
|