vmime/doc/book/Makefile

30 lines
928 B
Makefile
Raw Permalink Normal View History

2005-11-06 16:16:15 +00:00
all: book
2005-11-06 16:16:15 +00:00
convert-images:
cd images ; make
book: book_pdf book_html
2005-11-06 16:16:15 +00:00
# Full build: multiple runs for correct references...
book_pdf: convert-images
2005-11-06 16:16:15 +00:00
pdflatex book.tex
pdflatex book.tex
pdflatex book.tex
book_html: convert-images
hevea book.tex
hevea book.tex
hevea book.tex
#latexml --path=/opt/local/share/texmf-texlive-dist/tex/latex/base/ --path=/opt/local/share/texmf-texlive-dist/tex/latex/mdwtools/ --path=/opt/local/share/texmf-texlive-dist/tex/latex/geometry/ --path=/opt/local/share/texmf-texlive-dist/tex/latex/ucs/ --path=/opt/local/share/texmf-texlive-dist/tex/latex/fancyhdr/ --path=/opt/local/share/texmf-texlive-dist/tex/latex/footmisc --destination book.xml book.tex
#latexmlpost --destination=book.html book.xml
2005-11-06 16:16:15 +00:00
# Only one run for development (faster)
book-dev: convert-images
2005-11-06 16:16:15 +00:00
pdflatex book.tex
clean:
rm -f *.log *.aux *.toc *.out *.pdf *.lo[flt]
rm -f *.haux *.htoc book.image.tex book.html
2005-11-06 16:16:15 +00:00