COIN-OR::LEMON - Graph Library

Changeset 1400:d12508c2a007 in lemon-0.x for doc


Ignore:
Timestamp:
05/02/05 07:49:33 (19 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1861
Message:

Better doc generation.

Location:
doc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • doc/Doxyfile.in

    r1370 r1400  
    10311031# is run, you must also specify the path to the tagfile here.
    10321032
    1033 TAGFILES               =
     1033TAGFILES               = "libstdc++.tag = http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/"
    10341034
    10351035# When a file name is specified after GENERATE_TAGFILE, doxygen will create
    10361036# a tag file that is based on the input files it reads.
    10371037
    1038 GENERATE_TAGFILE       =
     1038GENERATE_TAGFILE       = html/lemon.tag
    10391039
    10401040# If the ALLEXTERNALS tag is set to YES all external classes will be listed
     
    10481048# be listed.
    10491049
    1050 EXTERNAL_GROUPS        = YES
     1050EXTERNAL_GROUPS        = NO
    10511051
    10521052# The PERL_PATH should be the absolute path and name of the perl script
  • doc/Makefile.am

    r1310 r1400  
    1717## INPUT variable.
    1818html/index.html:
    19         -rm -rf html
    20         doxygen Doxyfile
     19        if test ${doxygen_found} = yes; then doxygen Doxyfile; fi
    2120
    2221## This is needed to make 'make dist' work even if the 'html' subdirectory
     
    3029        @$(NORMAL_INSTALL)
    3130        $(mkinstalldirs) $(DESTDIR)$(htmldir)
    32         @dir='$(<D)'; shopt -s nullglob; for p in $$dir/*.html $$dir/*.css $$dir/*.png $$dir/*.dot $$dir/*.php $$dir/*.idx ; do \
     31        @dir='$(<D)'; shopt -s nullglob; for p in $$dir/*.html $$dir/*.css $$dir/*.png $$dir/*.dot $$dir/*.php $$dir/*.idx $$dir/*.tag ; do \
    3332          f="`echo $$p | sed -e 's|^.*/||'`"; \
    3433          echo " $(INSTALL_DATA) $$p $(DESTDIR)$(htmldir)/$$f"; \
     
    3837uninstall-local: html/index.html
    3938        @$(NORMAL_UNINSTALL)
    40         @dir='$(<D)'; shopt -s nullglob; for p in $$dir/*.html $$dir/*.css $$dir/*.png $$dir/*.dot $$dir/*.php $$dir/*.idx ; do \
     39        @dir='$(<D)'; shopt -s nullglob; for p in $$dir/*.html $$dir/*.css $$dir/*.png $$dir/*.dot $$dir/*.php $$dir/*.idx $$dir/*.tag ; do \
    4140          f="`echo $$p | sed -e 's|^.*/||'`"; \
    4241          echo " rm -f $(DESTDIR)$(htmldir)/$$f"; \
Note: See TracChangeset for help on using the changeset viewer.