| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 | # StarPU --- Runtime system for heterogeneous multicore architectures.## Copyright (C) 2009, 2011  Université de Bordeaux 1# Copyright (C) 2010, 2011, 2012  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.texistarpu_TEXINFOS = chapters/advanced-api.texi \	chapters/benchmarks.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 \	chapters/socl.texi \	chapters/version.texiMAINTAINERCLEANFILES = starpu.pdf starpu.htmlEXTRA_DIST = starpu.cssdist_pdf_DATA = starpu.pdfdist_html_DATA = starpu.htmlAM_MAKEINFOHTMLFLAGS = --css-include=$(top_srcdir)/doc/starpu.css --no-headers --no-splituninstall-local:	$(RM) $(DESTDIR)$(infodir)/dirchapters/version.texi:	@-for f in $(starpu_TEXINFOS) ; do \                if test -f $(top_srcdir)/doc/$$f ; then stat --format=%Y $(top_srcdir)/doc/$$f 2>/dev/null ; fi \        done | sort -r | head -1 > timestamp	@-LC_ALL=C date --date=@`cat timestamp` +"%d %B %Y" > timestamp_updated 2>/dev/null	@-LC_ALL=C date --date=@`cat timestamp` +"%B %Y" > timestamp_updated_month 2>/dev/null	@if test -s timestamp_updated ; then \		echo "@set UPDATED " `cat timestamp_updated` > $(top_srcdir)/doc/chapters/version.texi;\		echo "@set UPDATED-MONTH" `cat timestamp_updated_month` >> $(top_srcdir)/doc/chapters/version.texi;\	else \		echo "@set UPDATED unknown_date" > $(top_srcdir)/doc/chapters/version.texi ;\		echo "@set UPDATED-MONTH unknown_date" >> $(top_srcdir)/doc/chapters/version.texi; \	fi	@echo "@set EDITION $(VERSION)" >> $(top_srcdir)/doc/chapters/version.texi	@echo "@set VERSION $(VERSION)" >> $(top_srcdir)/doc/chapters/version.texi	@$(RM) timestamp timestamp_updated timestamp_updated_month#$(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# Rule to update documentation on web server. Should only be used locally.PUBLISHHOST	?= syncupdate-web: starpu.html	sed -i 's/gcc\.html#Attribute-Syntax/http:\/\/gcc.gnu.org\/onlinedocs\/gcc\/Attribute-Syntax.html#Attribute-Syntax/' starpu.html	scp starpu.pdf starpu.html $(PUBLISHHOST):/web/runtime/html/StarPUshowcheck:	-cat /dev/null
 |