Changeset 1254
- Timestamp:
- Apr 4, 2008, 3:50:54 PM (14 years ago)
- Location:
- trunk/doc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/Makefile.am
r1225 r1254 27 27 if HAVE_DOXYGEN 28 28 29 doc: doxygen.config FORCE 30 @doxygen doxygen.config 29 doc: html dvi ps pdf 31 30 32 31 # these are supported by automake and *-local will add target to * 33 dvi-local: latex-local 32 dvi-local: yat.dvi 33 ps-local: yat.ps 34 pdf-local: yat.pdf 34 35 35 ps-local: latex-local 36 37 pdf-local: latex-local 38 39 html-local: doxygen.config FORCE 40 (cat doxygen.config; $(ECHO) GENERATE_LATEX = NO) | doxygen -; 36 html-local: doxygen.config 37 @(cat doxygen.config; $(ECHO) GENERATE_HTML = YES) | doxygen -; 41 38 42 39 # this is not supported by automake - there is no target latex 43 latex-local: doxygen.config FORCE 44 @(cat doxygen.config; $(ECHO) GENERATE_HTML = NO) | doxygen -; 40 latex-local: doxygen.config 41 @(cat doxygen.config; $(ECHO) GENERATE_LATEX = YES) | doxygen -; 42 43 yat.dvi: latex-local 44 cd latex && latex refman.tex && latex refman.tex 45 cp latex/refman.dvi yat.dvi 46 47 yat.ps: yat.dvi 48 dvips latex/refman.dvi -o yat.ps 45 49 46 50 51 yat.pdf: latex-local 52 cd latex && $(MAKE) pdf; 53 cp latex/refman.pdf yat.pdf 47 54 endif 48 55 49 56 mostlyclean-local: 50 rm - rf *.toc *.log *.dvi *.aux*~57 rm -f yat.dvi *~ 51 58 52 59 clean-local: 53 rm -rf doxygen *.config html latex60 rm -rf doxygen.config html latex yat.dvi yat.ps yat.pdf 54 61 55 62 FORCE: -
trunk/doc/doxygen.config.in
r1226 r1254 144 144 # the path. It is allowed to use relative paths in the argument list. 145 145 146 STRIP_FROM_PATH = ../146 STRIP_FROM_PATH = @top_srcdir@ 147 147 148 148 # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of … … 153 153 # are normally passed to the compiler using the -I flag. 154 154 155 STRIP_FROM_INC_PATH = ../155 STRIP_FROM_INC_PATH = @top_srcdir@ 156 156 157 157 # The INTERNAL_DOCS tag determines if documentation … … 346 346 # with spaces. 347 347 348 INPUT = first_page.doxygen namespaces.doxygen concepts.doxygen Statistics.doxygen ../yat348 INPUT = @srcdir@/first_page.doxygen @srcdir@/namespaces.doxygen @srcdir@/concepts.doxygen @srcdir@/Statistics.doxygen @top_srcdir@/yat 349 349 350 350 # If the value of the INPUT tag contains directories, you can use the … … 472 472 # generate HTML output. 473 473 474 GENERATE_HTML = YES474 GENERATE_HTML = NO 475 475 476 476 # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. … … 563 563 # generate Latex output. 564 564 565 GENERATE_LATEX = YES565 GENERATE_LATEX = NO 566 566 567 567 # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put.
Note: See TracChangeset
for help on using the changeset viewer.