COIN-OR::LEMON - Graph Library

source: lemon-0.x/doc/Makefile.am

Last change on this file was 2503:15b3bf0141c7, checked in by Alpar Juttner, 16 years ago

Fix a typo that caused the failure of 'make dist'

File size: 1.8 KB
RevLine 
[1671]1htmldir = $(datadir)/doc/$(PACKAGE)/html
[542]2
[2108]3EXTRA_DIST += \
[2119]4        doc/Makefile \
[2118]5        doc/Doxyfile.in \
[2108]6        doc/html \
7        doc/icons/geom/ftv2doc.png \
8        doc/icons/geom/ftv2folderclosed.png \
9        doc/icons/geom/ftv2folderopen.png \
[2196]10        doc/algorithms.dox \
[2108]11        doc/coding_style.dox \
12        doc/developers_interface.dox \
[2503]13        doc/developers.dox \
[2108]14        doc/dirs.dox \
15        doc/getstart.dox \
16        doc/graph-adaptors.dox \
17        doc/graph_io.dox \
18        doc/graphs.dox \
19        doc/groups.dox \
[2216]20        doc/lemon_file_format.dox \
[2108]21        doc/license.dox \
22        doc/mainpage.dox \
23        doc/maps.dox \
[2196]24        doc/maps1.dox \
25        doc/maps2.dox \
[2108]26        doc/named-param.dox \
27        doc/namespaces.dox \
28        doc/quicktour.dox \
[2216]29        doc/read_write_bg.dox \
[2108]30        doc/ugraphs.dox
[1177]31
[2108]32doc:
[1450]33        if test ${doxygen_found} = yes; then \
[2108]34          cd doc; \
[1450]35          doxygen Doxyfile; \
[2108]36          cd ..; \
37          cp $(srcdir)/doc/icons/geom/ftv2* doc/html; \
[1450]38        fi
[542]39
[2108]40doc-clean:
41        if test ${doxygen_found} = yes; then \
42          rm -rf doc/html; \
43          rm -f doc/doxygen.log; \
44          cd doc; \
45          doxygen Doxyfile; \
46          cd ..; \
47          cp $(srcdir)/doc/icons/geom/ftv2* doc/html; \
48        fi
[542]49
50clean-local:
[2108]51        -rm -rf doc/html
52        -rm -f doc/doxygen.log
[542]53
[2108]54doc/html:
55        $(MAKE) $(AM_MAKEFLAGS) doc-clean
56
[2127]57if WANT_DOC
58
[2108]59install-data-local: doc/html
[542]60        @$(NORMAL_INSTALL)
61        $(mkinstalldirs) $(DESTDIR)$(htmldir)
[2108]62        @dir='doc/html'; shopt -s nullglob; for p in $$dir/*.html $$dir/*.css $$dir/*.png $$dir/*.gif $$dir/*.dot $$dir/*.php $$dir/*.idx $$dir/*.tag ; do \
[542]63          f="`echo $$p | sed -e 's|^.*/||'`"; \
64          echo " $(INSTALL_DATA) $$p $(DESTDIR)$(htmldir)/$$f"; \
65          $(INSTALL_DATA) $$p $(DESTDIR)$(htmldir)/$$f; \
66        done
67
[2108]68uninstall-local: doc/html
[542]69        @$(NORMAL_UNINSTALL)
[2108]70        @dir='doc/html'; shopt -s nullglob; for p in $$dir/*.html $$dir/*.css $$dir/*.png $$dir/*.gif $$dir/*.dot $$dir/*.php $$dir/*.idx $$dir/*.tag ; do \
[542]71          f="`echo $$p | sed -e 's|^.*/||'`"; \
72          echo " rm -f $(DESTDIR)$(htmldir)/$$f"; \
73          rm -f $(DESTDIR)$(htmldir)/$$f; \
74        done
[2108]75
[2127]76endif WANT_DOC
77
[2108]78.PHONY: doc doc-clean
Note: See TracBrowser for help on using the repository browser.