
Untitled
By: a guest on Jan 28th, 2012 | syntax:
None | size: 0.67 KB | hits: 14 | expires: Never
# You need calibre installed (http://calibre-ebook.com/)
STYLESHEET=/usr/share/xml/docbook/stylesheet/docbook-xsl/xhtml/docbook.xsl
AUTHORS="Gregory Brown, Sada Preisch, David Futato, Robert Romano, Ellen Troutman Zaig, Karen Montgomery, Yukihiro 'Matz' Matsumoto"
all: book.mobi book.epub
book.epub: book.html
ebook-convert $^ $@ \
--authors $(AUTHORS) \
--level1-toc //h:h1 \
--level2-toc //h:h2 \
--level3-toc //h:h3 \
--language en
book.mobi: book.html
ebook-convert $^ $@ \
--authors $(AUTHORS) \
--level1-toc //h:h1 \
--level2-toc //h:h2 \
--level3-toc //h:h3 \
--language en
book.html: book.xml
xsltproc --output $@ $(STYLESHEET) $^
.PHONY: all