COIN-OR::LEMON - Graph Library

source: lemon-0.x/doc/Makefile.am @ 2117:96efb4fa0736

Last change on this file since 2117:96efb4fa0736 was 2108:f2c532541730, checked in by Akos Ladanyi, 18 years ago

Single makefile.

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