- Timestamp:
- Oct 9, 2007, 10:07:24 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/Makefile.am
r865 r957 27 27 doc: doxygen.config doxygen-local Statistics-local 28 28 29 dvi-local: Statistics.dvi 30 31 pdf-local: Statistics.pdf 32 33 html-local: doxygen.config doxygen-local html/Statistics/Statistics.html 34 35 mostlyclean-local: 36 rm -rf *.toc *.log *.dvi *.aux *~ 37 29 38 clean-local: 30 rm -rf doxygen.config html latex \ 31 *.toc *.log *.dvi *.aux *~ 39 rm -rf doxygen.config html latex Statistics.pdf 32 40 33 41 doxygen-local: 34 doxygen doxygen.config 42 @if $(HAVE_DOXYGEN); then \ 43 doxygen doxygen.config; \ 44 fi 35 45 36 46 doxygen.config: … … 38 48 39 49 40 html/Statistics: Statistics.tex 41 latex2html Statistics.tex 42 @mv Statistics html/. 50 html/Statistics/Statistics.html: Statistics.tex 51 @$(install_sh) -d html/Statistics 52 @if $(HAVE_LATEX2HTML); then \ 53 latex2html -t "Weighted Statistics used in yat." \ 54 --dir html/Statistics Statistics.tex;\ 55 fi 43 56 44 Statistics-local: html/Statistics \57 Statistics-local: html/Statistics/Statistics.html \ 45 58 html/Statistics/Statistics.pdf 46 59 47 60 Statistics.dvi: Statistics.tex 48 @latex Statistics.tex 49 @latex Statistics.tex 61 @if $(HAVE_LATEX); then \ 62 @latex Statistics.tex; \ 63 @latex Statistics.tex; \ 64 fi 50 65 51 66 Statistics.pdf: Statistics.dvi 52 @dvipdfm Statistics.dvi 67 @if $(HAVE_DVIPDFM); then \ 68 dvipdfm Statistics.dvi; \ 69 fi 53 70 54 html/Statistics/Statistics.pdf: Statistics.pdf 55 @cp Statistics.pdf html/Statistics/. 56 71 html/Statistics/Statistics.pdf: $(pdf) 72 @if test -f Statistics.pdf; then \ 73 $(install_sh) -d html/Statistics; \ 74 cp Statistics.pdf html/Statistics/.; \ 75 fi
Note: See TracChangeset
for help on using the changeset viewer.