COIN-OR::LEMON - Graph Library

source: lemon-0.x/doc/Makefile.am @ 1922:1ee37068316b

Last change on this file since 1922:1ee37068316b was 1909:2d806130e700, checked in by Mihaly Barasz, 18 years ago

Undir -> U transition

File size: 1.3 KB
Line 
1htmldir = $(datadir)/doc/$(PACKAGE)/html
2
3EXTRA_DIST = \
4        html \
5        icons/geom/ftv2doc.png \
6        icons/geom/ftv2folderclosed.png \
7        icons/geom/ftv2folderopen.png \
8        coding_style.dox \
9        developers_interface.dox \
10        dirs.dox \
11        getstart.dox \
12        graph-adaptors.dox \
13        graph_io.dox \
14        graphs.dox \
15        groups.dox \
16        license.dox \
17        mainpage.dox \
18        maps.dox \
19        named-param.dox \
20        namespaces.dox \
21        quicktour.dox \
22        ugraphs.dox
23
24html/index.html:
25        if test ${doxygen_found} = yes; then \
26          doxygen Doxyfile; \
27          cp $(srcdir)/icons/geom/ftv2* html; \
28        fi
29
30html: html/index.html
31
32clean-local:
33        -rm -rf html
34
35install-data-local: html/index.html
36        @$(NORMAL_INSTALL)
37        $(mkinstalldirs) $(DESTDIR)$(htmldir)
38        @dir='$(<D)'; shopt -s nullglob; for p in $$dir/*.html $$dir/*.css $$dir/*.png $$dir/*.dot $$dir/*.php $$dir/*.idx $$dir/*.tag ; do \
39          f="`echo $$p | sed -e 's|^.*/||'`"; \
40          echo " $(INSTALL_DATA) $$p $(DESTDIR)$(htmldir)/$$f"; \
41          $(INSTALL_DATA) $$p $(DESTDIR)$(htmldir)/$$f; \
42        done
43
44uninstall-local: html/index.html
45        @$(NORMAL_UNINSTALL)
46        @dir='$(<D)'; shopt -s nullglob; for p in $$dir/*.html $$dir/*.css $$dir/*.png $$dir/*.dot $$dir/*.php $$dir/*.idx $$dir/*.tag ; do \
47          f="`echo $$p | sed -e 's|^.*/||'`"; \
48          echo " rm -f $(DESTDIR)$(htmldir)/$$f"; \
49          rm -f $(DESTDIR)$(htmldir)/$$f; \
50        done
Note: See TracBrowser for help on using the repository browser.