Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Rework the entry on the limit of simulated processes and how to push it
[simgrid.git] / doc / Makefile.am
1 DOCSOURCES = $(shell find @top_srcdir@/tools/gras  @top_srcdir@/src @top_srcdir@/include -name "*.[chl]") \
2  $(shell find @srcdir@ -name "*.doc")
3
4 EXTRA_DIST = html Doxyfile \
5  modules.doc FAQ.doc index.doc footer.html simgrid_logo.png simgrid_modules.png
6
7 DISTCLEANFILES = index-API.doc simgrid.tag
8 MAINTAINERCLEANFILES = html
9
10 if MAINTAINER_MODE
11 simgrid_modules.map: simgrid_modules.fig
12         fig2dev -Lmap simgrid_modules.fig | grep -e IMG -e MAP -e AREA | \
13         sed 's/imagemap/simgrid_modules/g' | sed 's/\.gif/.png/' | \
14         sed 's/<IMG /<IMG style="border:0px "/g' | sed 's/\.gif/.png/' \
15         > simgrid_modules.map
16
17 simgrid_modules.png: simgrid_modules.fig
18         fig2dev -Lpng simgrid_modules.fig > simgrid_modules.png
19
20 html: $(DOCSOURCES) Doxyfile logcategories.doc simgrid_modules.map simgrid_modules.png
21         touch index-API.doc
22         doxygen Doxyfile >/dev/null
23         ../tools/doxygen/index_create.pl simgrid.tag index-API.doc
24         doxygen Doxyfile >/dev/null
25         cp @srcdir@/simgrid_logo.png @srcdir@/simgrid_modules.png html/
26         cp @srcdir@/Paje_MSG_screenshot_thn.jpg @srcdir@/Paje_MSG_screenshot.jpg html/
27         for i in `find html -name '*.html'` ; do cp $$i $$i.bak ; sed 's/Modules<\/a> | <a class="qindex" href="annotated.html">.*Fields<\/a>/Modules Tree<\/a> | /g' $$i.bak > $$i ; rm $$i.bak ; done
28 endif
29
30 logcategories.doc: $(DOCSOURCES)
31         pwd=`pwd`; rm $$pwd/logcategories.doc; set -e; \
32         echo "/* Generated file, do not edit */"          > $$pwd/logcategories.doc; \
33         echo "/** \addtogroup XBT_log_cats"              >> $$pwd/logcategories.doc; \
34         echo "    @{"                                    >> $$pwd/logcategories.doc; \
35         cd @top_srcdir@/src; ./xbt_log_extract_hierarchy >> $$pwd/logcategories.doc; \
36         echo "@}*/"                                      >> $$pwd/logcategories.doc;
37
38 install-data-local: 
39         @for file in `find html/ -type d` ; do \
40            echo "test -z \"$(prefix)/doc/simgrid/$$file\" || $(mkdir_p) \"$(prefix)/doc/simgrid/$$file\"";\
41            test -z "$(prefix)/doc/simgrid/$$file" || $(mkdir_p) "$(prefix)/doc/simgrid/$$file";\
42         done
43         @for file in `find html/ -type f` ; do \
44            echo " $(INSTALL_DATA) '$$file' '$(prefix)/doc/simgrid/$$file'";\
45            $(INSTALL_DATA) $$file $(prefix)/doc/simgrid/$$file ;\
46         done
47
48 uninstall-local:
49         for file in `find html/ -type f` ; do \
50            echo " rm -f '$(prefix)/doc/simgrid/$$file'";\
51            rm -f $(prefix)/doc/simgrid/$$file ;\
52         done
53
54 .PHONY: html
55
56 include $(top_srcdir)/acmacro/dist-files.mk