COIN-OR::LEMON - Graph Library

source: lemon/doc/Makefile.am @ 1115:bd523dbc7033

Last change on this file since 1115:bd523dbc7033 was 1115:bd523dbc7033, checked in by Alpar Juttner <alpar@…>, 12 years ago

Add missing doc/references.bib to release tarball (#432)

File size: 2.9 KB
RevLine 
[1]1EXTRA_DIST += \
[60]2        doc/Doxyfile.in \
[316]3        doc/DoxygenLayout.xml \
[60]4        doc/coding_style.dox \
5        doc/dirs.dox \
6        doc/groups.dox \
[156]7        doc/lgf.dox \
[60]8        doc/license.dox \
9        doc/mainpage.dox \
[306]10        doc/migration.dox \
[710]11        doc/min_cost_flow.dox \
[270]12        doc/named-param.dox \
[60]13        doc/namespaces.dox \
[1115]14        doc/references.bib \
[1112]15        doc/template.h \
[227]16        doc/html \
17        doc/CMakeLists.txt
[1]18
[153]19DOC_EPS_IMAGES18 = \
[634]20        grid_graph.eps \
21        nodeshape_0.eps \
22        nodeshape_1.eps \
23        nodeshape_2.eps \
24        nodeshape_3.eps \
25        nodeshape_4.eps
26
27DOC_EPS_IMAGES27 = \
[633]28        bipartite_matching.eps \
29        bipartite_partitions.eps \
30        connected_components.eps \
31        edge_biconnected_components.eps \
[943]32        matching.eps \
[633]33        node_biconnected_components.eps \
[895]34        planar.eps \
[633]35        strongly_connected_components.eps
[153]36
37DOC_EPS_IMAGES = \
[634]38        $(DOC_EPS_IMAGES18) \
39        $(DOC_EPS_IMAGES27)
[153]40
41DOC_PNG_IMAGES = \
42        $(DOC_EPS_IMAGES:%.eps=doc/gen-images/%.png)
43
44EXTRA_DIST += $(DOC_EPS_IMAGES:%=doc/images/%)
45
[60]46doc/html:
47        $(MAKE) $(AM_MAKEFLAGS) html
48
[153]49GS_COMMAND=gs -dNOPAUSE -dBATCH -q -dEPSCrop -dTextAlphaBits=4 -dGraphicsAlphaBits=4
50
51$(DOC_EPS_IMAGES18:%.eps=doc/gen-images/%.png): doc/gen-images/%.png: doc/images/%.eps
52        -mkdir doc/gen-images
53        if test ${gs_found} = yes; then \
54          $(GS_COMMAND) -sDEVICE=pngalpha -r18 -sOutputFile=$@ $<; \
55        else \
56          echo; \
57          echo "Ghostscript not found."; \
58          echo; \
59          exit 1; \
60        fi
61
[634]62$(DOC_EPS_IMAGES27:%.eps=doc/gen-images/%.png): doc/gen-images/%.png: doc/images/%.eps
63        -mkdir doc/gen-images
64        if test ${gs_found} = yes; then \
65          $(GS_COMMAND) -sDEVICE=pngalpha -r27 -sOutputFile=$@ $<; \
66        else \
67          echo; \
68          echo "Ghostscript not found."; \
69          echo; \
70          exit 1; \
71        fi
72
[791]73references.dox: doc/references.bib
74        if test ${python_found} = yes; then \
75          cd doc; \
76          python @abs_top_srcdir@/scripts/bib2dox.py @abs_top_builddir@/$< >$@; \
77          cd ..; \
78        else \
79          echo; \
80          echo "Python not found."; \
81          echo; \
82          exit 1; \
83        fi
84
85html-local: $(DOC_PNG_IMAGES) references.dox
[1]86        if test ${doxygen_found} = yes; then \
87          cd doc; \
88          doxygen Doxyfile; \
89          cd ..; \
[60]90        else \
91          echo; \
92          echo "Doxygen not found."; \
93          echo; \
94          exit 1; \
[1]95        fi
96
97clean-local:
98        -rm -rf doc/html
99        -rm -f doc/doxygen.log
[153]100        -rm -f $(DOC_PNG_IMAGES)
101        -rm -rf doc/gen-images
[1]102
[56]103update-external-tags:
104        wget -O doc/libstdc++.tag.tmp http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/libstdc++.tag && \
105        mv doc/libstdc++.tag.tmp doc/libstdc++.tag || \
106        rm doc/libstdc++.tag.tmp
107
[60]108install-html-local: doc/html
[1]109        @$(NORMAL_INSTALL)
[720]110        $(mkinstalldirs) $(DESTDIR)$(htmldir)/html
[60]111        for p in doc/html/*.{html,css,png,map,gif,tag} ; do \
[1]112          f="`echo $$p | sed -e 's|^.*/||'`"; \
[720]113          echo " $(INSTALL_DATA) $$p $(DESTDIR)$(htmldir)/html/$$f"; \
114          $(INSTALL_DATA) $$p $(DESTDIR)$(htmldir)/html/$$f; \
[1]115        done
116
[60]117uninstall-local:
[1]118        @$(NORMAL_UNINSTALL)
[60]119        for p in doc/html/*.{html,css,png,map,gif,tag} ; do \
[1]120          f="`echo $$p | sed -e 's|^.*/||'`"; \
[720]121          echo " rm -f $(DESTDIR)$(htmldir)/html/$$f"; \
122          rm -f $(DESTDIR)$(htmldir)/html/$$f; \
[1]123        done
124
[60]125.PHONY: update-external-tags
Note: See TracBrowser for help on using the repository browser.