COIN-OR::LEMON - Graph Library

source: lemon-0.x/doc/Makefile.am @ 2126:2c8adbee9fa6

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

Distribute Makefiles.

File size: 1.7 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 \
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
[1177]25
[2108]26doc:
[1450]27        if test ${doxygen_found} = yes; then \
[2108]28          cd doc; \
[1450]29          doxygen Doxyfile; \
[2108]30          cd ..; \
31          cp $(srcdir)/doc/icons/geom/ftv2* doc/html; \
[1450]32        fi
[542]33
[2108]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
[542]43
44clean-local:
[2108]45        -rm -rf doc/html
46        -rm -f doc/doxygen.log
[542]47
[2108]48doc/html:
49        $(MAKE) $(AM_MAKEFLAGS) doc-clean
50
51install-data-local: doc/html
[542]52        @$(NORMAL_INSTALL)
53        $(mkinstalldirs) $(DESTDIR)$(htmldir)
[2108]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 \
[542]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
[2108]60uninstall-local: doc/html
[542]61        @$(NORMAL_UNINSTALL)
[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 " rm -f $(DESTDIR)$(htmldir)/$$f"; \
65          rm -f $(DESTDIR)$(htmldir)/$$f; \
66        done
[2108]67
68.PHONY: doc doc-clean
Note: See TracBrowser for help on using the repository browser.