- Timestamp:
- Jun 13, 2009, 2:34:19 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/Makefile.am
r1906 r1998 56 56 doc: html dvi ps pdf 57 57 58 if HAVE_DOXYGEN59 60 58 61 59 # these are supported by automake and *-local will add target to * 60 if DX_ENABLE_DVI 62 61 dvi-local: $(PACKAGE).dvi 62 endif 63 if DX_ENABLE_PS 63 64 ps-local: $(PACKAGE).ps 65 endif 66 if DX_ENABLE_PDF 64 67 pdf-local: $(PACKAGE).pdf 68 endif 69 if DX_ENABLE_HTML 65 70 html-local: $(DX_HTML_OUTPUT)/index.html 71 endif 66 72 67 73 # this is not supported by automake - there is no target latex 74 if DX_ENABLE_LATEX 68 75 latex-local: $(DX_LATEX_OUTPUT)/refman.tex 76 endif 69 77 70 78 $(DX_HTML_OUTPUT)/index.html: $(DOXYGEN_DEPS) … … 77 85 78 86 $(PACKAGE).dvi: $(DX_LATEX_OUTPUT)/refman.tex 79 cd $(DX_LATEX_OUTPUT) && latex refman.tex && latexrefman.tex87 cd $(DX_LATEX_OUTPUT) && $(latex) refman.tex && $(latex) refman.tex 80 88 cp $(DX_LATEX_OUTPUT)/refman.dvi $(PACKAGE).dvi 81 89 82 90 $(PACKAGE).ps: $(PACKAGE).dvi 83 cd $(DX_LATEX_OUTPUT) && dvips-q -o refman.ps refman.dvi;91 cd $(DX_LATEX_OUTPUT) && $(dvips) -q -o refman.ps refman.dvi; 84 92 cp $(DX_LATEX_OUTPUT)/refman.ps $(PACKAGE).ps 85 93 … … 88 96 cp $(DX_LATEX_OUTPUT)/refman.pdf $(PACKAGE).pdf 89 97 90 endif91 98 92 99 install-data-hook:
Note: See TracChangeset
for help on using the changeset viewer.