diff 3rdparty/vmime/doc/book/Makefile @ 0:a4671277546c tip

created the repository for the thymian project
author ferencd
date Tue, 17 Aug 2021 11:19:54 +0200
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/3rdparty/vmime/doc/book/Makefile	Tue Aug 17 11:19:54 2021 +0200
@@ -0,0 +1,29 @@
+
+all: book
+
+convert-images:
+	cd images ; make
+
+book: book_pdf book_html
+
+# Full build: multiple runs for correct references...
+book_pdf: convert-images
+	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
+
+# Only one run for development (faster)
+book-dev: convert-images
+	pdflatex book.tex
+
+clean:
+	rm -f *.log *.aux *.toc *.out *.pdf *.lo[flt]
+	rm -f *.haux *.htoc book.image.tex book.html
+