-
Notifications
You must be signed in to change notification settings - Fork 0
/
makefile
36 lines (30 loc) · 953 Bytes
/
makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
default : index.html dialektyka-oswiecenia.mobi
web.css : styles/index.css styles/html.css
cat styles/index.css > web.css && cat styles/html.css >> web.css
index.html : chapters/* web.css template.t filters/*
pandoc \
-s \
--filter filters/hyphenate.py \
--section-divs \
-o index.html \
-c web.css \
--template template.t \
chapters/*
ebook.css : styles/index.css styles/epub.css
cat styles/index.css > ebook.css && cat styles/epub.css >> ebook.css
dialektyka-oswiecenia.epub : chapters/* ebook.css template.t filters/* cover.jpg
pandoc \
-s \
--filter filters/hyphenate.py \
--section-divs \
--toc-depth=2 \
--epub-cover-image cover.jpg \
-o dialektyka-oswiecenia.epub \
-c ebook.css \
--template template.t \
-t epub3 \
chapters/*
dialektyka-oswiecenia.mobi : dialektyka-oswiecenia.epub
kindlegen dialektyka-oswiecenia.epub
clean :
$(RM) dialektyka-oswiecenia.epub dialektyka-oswiecenia.mobi index.html web.css ebook.css