- Timestamp:
- Mar 13, 2007, 12:37:30 PM (16 years ago)
- Location:
- trunk/doc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/Makefile.am
r799 r800 22 22 # 02111-1307, USA. 23 23 24 bin_PROGRAMS = create_doxygen_config25 26 create_doxygen_config_SOURCES = create_doxygen_config.cc27 28 29 24 doc: doxygen.config doxygen-local Statistics-local 30 25 31 26 clean-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 *~ 35 28 36 distclean-local: clean-local 37 38 doxygen-local: 29 doxygen-local: 39 30 doxygen doxygen.config 40 31 41 doxygen.config: create_doxygen_config doxygen.config.in 42 ./create_doxygen_config 32 doxygen.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 43 35 44 Statistics: Statistics.tex 45 @rm -rf html/Statistics 46 @rm -f Statistics 36 html-$(VERSION)/Statistics: Statistics.tex 47 37 latex2html Statistics.tex 48 @mv Statistics html/. 49 @ln -s html/Statistics Statistics 38 @mv Statistics html-$(VERSION)/. 50 39 51 Statistics-local: Statistics Statistics.pdf 40 Statistics-local: html-$(VERSION)/Statistics \ 41 html-$(VERSION)/Statistics/Statistics.pdf 52 42 53 43 Statistics.dvi: Statistics.tex … … 57 47 Statistics.pdf: Statistics.dvi 58 48 @dvipdfm Statistics.dvi 59 @cp -p Statistics.pdf Statistics/.60 49 50 html-$(VERSION)/Statistics/Statistics.pdf: Statistics.pdf 51 @cp Statistics.pdf html-$(VERSION)/Statistics/. 52 -
trunk/doc/doxygen.config.in
r799 r800 54 54 # if some version control system is used. 55 55 56 PROJECT_NUMBER = 0.3pre56 PROJECT_NUMBER = 57 57 58 58 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) … … 605 605 # This makes the output suitable for online browsing using a pdf viewer. 606 606 607 PDF_HYPERLINKS = NO607 PDF_HYPERLINKS = YES 608 608 609 609 # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of … … 611 611 # higher quality PDF documentation. 612 612 613 USE_PDFLATEX = NO613 USE_PDFLATEX = YES 614 614 615 615 # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode.
Note: See TracChangeset
for help on using the changeset viewer.