COIN-OR::LEMON - Graph Library

Changeset 2108:f2c532541730 in lemon-0.x for doc


Ignore:
Timestamp:
06/22/06 20:20:25 (18 years ago)
Author:
Akos Ladanyi
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2802
Message:

Single makefile.

Location:
doc
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • doc/Makefile.am

    r2071 r2108  
    11htmldir = $(datadir)/doc/$(PACKAGE)/html
    22
    3 EXTRA_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
     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
    2323
    24 html/index.html:
     24doc:
    2525        if test ${doxygen_found} = yes; then \
     26          cd doc; \
    2627          doxygen Doxyfile; \
    27           cp $(srcdir)/icons/geom/ftv2* html; \
     28          cd ..; \
     29          cp $(srcdir)/doc/icons/geom/ftv2* doc/html; \
    2830        fi
    2931
    30 html: html/index.html
     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
    3141
    3242clean-local:
    33         -rm -rf html
     43        -rm -rf doc/html
     44        -rm -f doc/doxygen.log
    3445
    35 install-data-local: html/index.html
     46doc/html:
     47        $(MAKE) $(AM_MAKEFLAGS) doc-clean
     48
     49install-data-local: doc/html
    3650        @$(NORMAL_INSTALL)
    3751        $(mkinstalldirs) $(DESTDIR)$(htmldir)
    38         @dir='html'; shopt -s nullglob; for p in $$dir/*.html $$dir/*.css $$dir/*.png $$dir/*.gif $$dir/*.dot $$dir/*.php $$dir/*.idx $$dir/*.tag ; do \
     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 \
    3953          f="`echo $$p | sed -e 's|^.*/||'`"; \
    4054          echo " $(INSTALL_DATA) $$p $(DESTDIR)$(htmldir)/$$f"; \
     
    4256        done
    4357
    44 uninstall-local: html/index.html
     58uninstall-local: doc/html
    4559        @$(NORMAL_UNINSTALL)
    46         @dir='html'; shopt -s nullglob; for p in $$dir/*.html $$dir/*.css $$dir/*.png $$dir/*.gif $$dir/*.dot $$dir/*.php $$dir/*.idx $$dir/*.tag ; do \
     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 \
    4761          f="`echo $$p | sed -e 's|^.*/||'`"; \
    4862          echo " rm -f $(DESTDIR)$(htmldir)/$$f"; \
    4963          rm -f $(DESTDIR)$(htmldir)/$$f; \
    5064        done
     65
     66.PHONY: doc doc-clean
Note: See TracChangeset for help on using the changeset viewer.