Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Let's try to play with the simulation...
[simgrid.git] / doc / Makefile.am
1 DOCSOURCES = $(shell find @top_srcdir@/src @top_srcdir@/include -name "*.[chl]") $(shell find @top_srcdir@/src @top_srcdir@/include -name "*.doc")
2
3 EXTRA_DIST = html Doxyfile.API Doxyfile.Examples Doxyfile.main \
4  modules.doc FAQ.doc index.doc footer.html simgrid_logo.png simgrid_modules.png
5
6 DISTCLEANFILES = api_index.doc
7 MAINTAINERCLEANFILES = html
8
9 if MAINTAINER_MODE
10 simgrid_modules.map: simgrid_modules.fig
11         fig2dev -Lmap simgrid_modules.fig | grep -e IMG -e MAP -e AREA | \
12         sed 's/imagemap/simgrid_modules/g' | sed 's/\.gif/.png/' | \
13         sed 's/<IMG /<IMG style="border:0px "/g' | sed 's/\.gif/.png/' \
14         > simgrid_modules.map
15
16 simgrid_modules.png: simgrid_modules.fig
17         fig2dev -Lpng simgrid_modules.fig > simgrid_modules.png
18
19 html: $(DOCSOURCES) Doxyfile.API Doxyfile.Examples Doxyfile.main logcategories.doc simgrid_modules.map simgrid_modules.png
20         touch api_index.doc
21         doxygen Doxyfile.main >/dev/null
22         doxygen Doxyfile.API >/dev/null
23         doxygen Doxyfile.Examples >/dev/null
24         @top_srcdir@/tools/doxygen/index_create.pl html/API/API.tag api_index.doc
25         cp @srcdir@/simgrid_logo.png @srcdir@/simgrid_modules.png html/
26         doxygen Doxyfile.API >/dev/null
27         doxygen Doxyfile.Examples >/dev/null
28         doxygen Doxyfile.main >/dev/null
29 #       @cd html ; @top_srcdir@/tools/fix_doxygen2.pl `find . -name '*.html'`
30 #       @rm -rf html/API html/examples
31 #       for i in `find doc/html -name "*.html" -exec grep -l "group_[^_]"  {} \;` ; do tools/fix_doxygen.pl $$i; rm $$i.bak; done
32 endif
33
34 logcategories.doc: $(DOCSOURCES)
35         pwd=`pwd`; rm $$pwd/logcategories.doc; set -e; \
36         echo "/* Generated file, do not edit */"          > $$pwd/logcategories.doc; \
37         echo "/** \addtogroup XBT_log_cats"              >> $$pwd/logcategories.doc; \
38         echo "    @{"                                    >> $$pwd/logcategories.doc; \
39         cd @top_srcdir@/src; ./xbt_log_extract_hierarchy >> $$pwd/logcategories.doc; \
40         echo "@}*/"                                      >> $$pwd/logcategories.doc;
41
42 install-data-local: 
43         @for file in `find html/ -type d` ; do \
44            echo "test -z \"$(prefix)/doc/simgrid/$$file\" || $(mkdir_p) \"$(prefix)/doc/simgrid/$$file\"";\
45            test -z "$(prefix)/doc/simgrid/$$file" || $(mkdir_p) "$(prefix)/doc/simgrid/$$file";\
46         done
47         @for file in `find html/ -type f` ; do \
48            echo " $(INSTALL_DATA) '$$file' '$(prefix)/doc/simgrid/$$file'";\
49            $(INSTALL_DATA) $$file $(prefix)/doc/simgrid/$$file ;\
50         done
51
52 uninstall-local:
53         for file in `find html/ -type f` ; do \
54            echo " rm -f '$(prefix)/doc/simgrid/$$file'";\
55            rm -f $(prefix)/doc/simgrid/$$file ;\
56         done
57
58 .PHONY: html