COIN-OR::LEMON - Graph Library

source: lemon-0.x/doc/Makefile.am @ 2166:c67e8b928a95

Last change on this file since 2166:c67e8b928a95 was 2127:1d43a276fc26, checked in by Akos Ladanyi, 18 years ago

Do not install the documentation if configure was called with --disable-doc.

File size: 1.7 KB
Line 
1htmldir = $(datadir)/doc/$(PACKAGE)/html
2
3EXTRA_DIST += \
4        doc/Makefile \
5        doc/Doxyfile.in \
6        doc/html \
7        doc/icons/geom/ftv2doc.png \
8        doc/icons/geom/ftv2folderclosed.png \
9        doc/icons/geom/ftv2folderopen.png \
10        doc/coding_style.dox \
11        doc/developers_interface.dox \
12        doc/dirs.dox \
13        doc/getstart.dox \
14        doc/graph-adaptors.dox \
15        doc/graph_io.dox \
16        doc/graphs.dox \
17        doc/groups.dox \
18        doc/license.dox \
19        doc/mainpage.dox \
20        doc/maps.dox \
21        doc/named-param.dox \
22        doc/namespaces.dox \
23        doc/quicktour.dox \
24        doc/ugraphs.dox
25
26doc:
27        if test ${doxygen_found} = yes; then \
28          cd doc; \
29          doxygen Doxyfile; \
30          cd ..; \
31          cp $(srcdir)/doc/icons/geom/ftv2* doc/html; \
32        fi
33
34doc-clean:
35        if test ${doxygen_found} = yes; then \
36          rm -rf doc/html; \
37          rm -f doc/doxygen.log; \
38          cd doc; \
39          doxygen Doxyfile; \
40          cd ..; \
41          cp $(srcdir)/doc/icons/geom/ftv2* doc/html; \
42        fi
43
44clean-local:
45        -rm -rf doc/html
46        -rm -f doc/doxygen.log
47
48doc/html:
49        $(MAKE) $(AM_MAKEFLAGS) doc-clean
50
51if WANT_DOC
52
53install-data-local: doc/html
54        @$(NORMAL_INSTALL)
55        $(mkinstalldirs) $(DESTDIR)$(htmldir)
56        @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 \
57          f="`echo $$p | sed -e 's|^.*/||'`"; \
58          echo " $(INSTALL_DATA) $$p $(DESTDIR)$(htmldir)/$$f"; \
59          $(INSTALL_DATA) $$p $(DESTDIR)$(htmldir)/$$f; \
60        done
61
62uninstall-local: doc/html
63        @$(NORMAL_UNINSTALL)
64        @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 \
65          f="`echo $$p | sed -e 's|^.*/||'`"; \
66          echo " rm -f $(DESTDIR)$(htmldir)/$$f"; \
67          rm -f $(DESTDIR)$(htmldir)/$$f; \
68        done
69
70endif WANT_DOC
71
72.PHONY: doc doc-clean
Note: See TracBrowser for help on using the repository browser.