Changeset 772 for libcaca/trunk/doc
- Timestamp:
- Apr 14, 2006, 10:41:59 AM (17 years ago)
- Location:
- libcaca/trunk/doc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/doc/Makefile.am
r526 r772 9 9 htmldocdir = $(datadir)/doc/libcaca-dev/html 10 10 if USE_LATEX 11 p sdoc_DATA = latex/libcaca.ps12 p sdocdir = $(datadir)/doc/libcaca-dev/ps11 pdfdoc_DATA = latex/libcaca.pdf 12 pdfdocdir = $(datadir)/doc/libcaca-dev/pdf 13 13 endif 14 14 endif 15 15 16 16 html/doxygen.css html/doxygen.png: stamp-doxygen 17 latex/libcaca.p s: stamp-latex17 latex/libcaca.pdf: stamp-latex 18 18 19 19 stamp-doxygen: … … 26 26 if BUILD_DOCUMENTATION 27 27 if USE_LATEX 28 rm -f latex/libcaca.tex latex/libcaca.p s28 rm -f latex/libcaca.tex latex/libcaca.pdf 29 29 mv latex/refman.tex latex/libcaca.tex 30 30 sed 's/setlength{/renewcommand{/' latex/libcaca.tex > latex/refman.tex 31 cd latex && $(MAKE) $(AM_CFLAGS) ps32 mv latex/refman.p s latex/libcaca.ps31 cd latex && $(MAKE) $(AM_CFLAGS) refman.pdf 32 mv latex/refman.pdf latex/libcaca.pdf 33 33 touch stamp-latex 34 34 endif -
libcaca/trunk/doc/doxygen.cfg.in
r732 r772 765 765 # save some trees in general. 766 766 767 COMPACT_LATEX = NO767 COMPACT_LATEX = YES 768 768 769 769 # The PAPER_TYPE tag can be used to set the paper type that is used … … 790 790 # This makes the output suitable for online browsing using a pdf viewer. 791 791 792 PDF_HYPERLINKS = NO792 PDF_HYPERLINKS = YES 793 793 794 794 # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of … … 796 796 # higher quality PDF documentation. 797 797 798 USE_PDFLATEX = NO798 USE_PDFLATEX = YES 799 799 800 800 # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. … … 803 803 # This option is also used when generating formulas in HTML. 804 804 805 LATEX_BATCHMODE = NO805 LATEX_BATCHMODE = YES 806 806 807 807 # If LATEX_HIDE_INDICES is set to YES then doxygen will not … … 1010 1010 # instead of the = operator. 1011 1011 1012 PREDEFINED = _DOXYGEN_SKIP_ME \ 1013 USE_X11 \ 1014 USE_CONIO \ 1015 USE_NCURSES \ 1016 USE_SLANG 1012 PREDEFINED = _DOXYGEN_SKIP_ME 1017 1013 1018 1014 # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then
Note: See TracChangeset
for help on using the changeset viewer.