COIN-OR::LEMON - Graph Library

source: lemon-0.x/doc/Makefile.am @ 1559:030f1015f898

Last change on this file since 1559:030f1015f898 was 1545:e8378402f97e, checked in by Akos Ladanyi, 19 years ago

Added the individual png files to EXTRA_DIST instead of the icons directory. This way the .svn directories do not get in the tarball. An alternative solution would be to delete these in a dist-hook target.

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