COIN-OR::LEMON - Graph Library

source: lemon-0.x/doc/Makefile.am @ 2119:4cf25c61ea65

Last change on this file since 2119:4cf25c61ea65 was 2119:4cf25c61ea65, checked in by Akos Ladanyi, 18 years ago

Distribute Makefiles.

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
51install-data-local: doc/html
52        @$(NORMAL_INSTALL)
53        $(mkinstalldirs) $(DESTDIR)$(htmldir)
54        @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 \
55          f="`echo $$p | sed -e 's|^.*/||'`"; \
56          echo " $(INSTALL_DATA) $$p $(DESTDIR)$(htmldir)/$$f"; \
57          $(INSTALL_DATA) $$p $(DESTDIR)$(htmldir)/$$f; \
58        done
59
60uninstall-local: doc/html
61        @$(NORMAL_UNINSTALL)
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 \
63          f="`echo $$p | sed -e 's|^.*/||'`"; \
64          echo " rm -f $(DESTDIR)$(htmldir)/$$f"; \
65          rm -f $(DESTDIR)$(htmldir)/$$f; \
66        done
67
68.PHONY: doc doc-clean
Note: See TracBrowser for help on using the repository browser.