Changeset 800 for trunk


Ignore:
Timestamp:
Mar 13, 2007, 12:37:30 PM (16 years ago)
Author:
Peter
Message:
 
Location:
trunk/doc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/doc/Makefile.am

    r799 r800  
    2222# 02111-1307, USA.
    2323
    24 bin_PROGRAMS = create_doxygen_config
    25 
    26 create_doxygen_config_SOURCES = create_doxygen_config.cc
    27 
    28 
    2924doc: doxygen.config doxygen-local Statistics-local
    3025
    3126clean-local:
    32   @rm -rf doxygen.config html latex Statistics Statistics.toc \
    33   Statistics.pdf Statistics.log \
    34   Statistics.dvi Statistics.aux *~
     27  rm -rf doxygen.config html-$(VERSION) latex *.toc *.log *.dvi *.aux *~
    3528
    36 distclean-local: clean-local
    37 
    38 doxygen-local:
     29doxygen-local:
    3930  doxygen doxygen.config
    4031
    41 doxygen.config: create_doxygen_config doxygen.config.in
    42   ./create_doxygen_config
     32doxygen.config: doxygen.config.in
     33  @sed -e 's/PROJECT_NUMBER.*= /&$(VERSION)/g' -e 's/HTML_OUTPUT.*= /&html-$(VERSION)/g' -e 's/LATEX_OUTPUT.*= /&latex-$(VERSION)/g' doxygen.config.in > doxygen.config
     34 
    4335
    44 Statistics: Statistics.tex
    45   @rm -rf html/Statistics
    46   @rm -f Statistics
     36html-$(VERSION)/Statistics: Statistics.tex
    4737  latex2html Statistics.tex
    48   @mv Statistics html/.
    49   @ln -s html/Statistics Statistics
     38  @mv Statistics html-$(VERSION)/.
    5039
    51 Statistics-local: Statistics Statistics.pdf
     40Statistics-local: html-$(VERSION)/Statistics \
     41  html-$(VERSION)/Statistics/Statistics.pdf
    5242
    5343Statistics.dvi: Statistics.tex
     
    5747Statistics.pdf: Statistics.dvi
    5848  @dvipdfm Statistics.dvi
    59   @cp -p Statistics.pdf Statistics/.
    6049
     50html-$(VERSION)/Statistics/Statistics.pdf: Statistics.pdf
     51  @cp Statistics.pdf html-$(VERSION)/Statistics/.
     52
  • trunk/doc/doxygen.config.in

    r799 r800  
    5454# if some version control system is used.
    5555
    56 PROJECT_NUMBER         = 0.3pre
     56PROJECT_NUMBER         =
    5757
    5858# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
     
    605605# This makes the output suitable for online browsing using a pdf viewer.
    606606
    607 PDF_HYPERLINKS         = NO
     607PDF_HYPERLINKS         = YES
    608608
    609609# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of
     
    611611# higher quality PDF documentation.
    612612
    613 USE_PDFLATEX           = NO
     613USE_PDFLATEX           = YES
    614614
    615615# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode.
Note: See TracChangeset for help on using the changeset viewer.