COIN-OR::LEMON - Graph Library

source: lemon-0.x/doc/Makefile.am @ 2196:09af6d2b683b

Last change on this file since 2196:09af6d2b683b was 2196:09af6d2b683b, checked in by Alpar Juttner, 18 years ago

Add missing Tutorial dox files

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 \
13        doc/dirs.dox \
14        doc/getstart.dox \
15        doc/graph-adaptors.dox \
16        doc/graph_io.dox \
17        doc/graphs.dox \
18        doc/groups.dox \
19        doc/license.dox \
20        doc/mainpage.dox \
21        doc/maps.dox \
[2196]22        doc/maps1.dox \
23        doc/maps2.dox \
[2108]24        doc/named-param.dox \
25        doc/namespaces.dox \
26        doc/quicktour.dox \
27        doc/ugraphs.dox
[1177]28
[2108]29doc:
[1450]30        if test ${doxygen_found} = yes; then \
[2108]31          cd doc; \
[1450]32          doxygen Doxyfile; \
[2108]33          cd ..; \
34          cp $(srcdir)/doc/icons/geom/ftv2* doc/html; \
[1450]35        fi
[542]36
[2108]37doc-clean:
38        if test ${doxygen_found} = yes; then \
39          rm -rf doc/html; \
40          rm -f doc/doxygen.log; \
41          cd doc; \
42          doxygen Doxyfile; \
43          cd ..; \
44          cp $(srcdir)/doc/icons/geom/ftv2* doc/html; \
45        fi
[542]46
47clean-local:
[2108]48        -rm -rf doc/html
49        -rm -f doc/doxygen.log
[542]50
[2108]51doc/html:
52        $(MAKE) $(AM_MAKEFLAGS) doc-clean
53
[2127]54if WANT_DOC
55
[2108]56install-data-local: doc/html
[542]57        @$(NORMAL_INSTALL)
58        $(mkinstalldirs) $(DESTDIR)$(htmldir)
[2108]59        @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]60          f="`echo $$p | sed -e 's|^.*/||'`"; \
61          echo " $(INSTALL_DATA) $$p $(DESTDIR)$(htmldir)/$$f"; \
62          $(INSTALL_DATA) $$p $(DESTDIR)$(htmldir)/$$f; \
63        done
64
[2108]65uninstall-local: doc/html
[542]66        @$(NORMAL_UNINSTALL)
[2108]67        @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]68          f="`echo $$p | sed -e 's|^.*/||'`"; \
69          echo " rm -f $(DESTDIR)$(htmldir)/$$f"; \
70          rm -f $(DESTDIR)$(htmldir)/$$f; \
71        done
[2108]72
[2127]73endif WANT_DOC
74
[2108]75.PHONY: doc doc-clean
Note: See TracBrowser for help on using the repository browser.