-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
28 lines (23 loc) · 727 Bytes
/
Copy pathMakefile
File metadata and controls
28 lines (23 loc) · 727 Bytes
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
all: html pdf docx rtf
pdf: CV-Mat-Stace.pdf
CV-Mat-Stace.pdf: CV-Mat-Stace.md
pandoc --standalone --template cv-template.tex \
--from markdown \
-V papersize=A4 \
-o CV-Mat-Stace.pdf CV-Mat-Stace.md
html: cv-mat-stace.html
cv-mat-stace.html: cv.css CV-Mat-Stace.md
pandoc --standalone -H cv.css \
--from markdown -o html \
-o cv-mat-stace.html CV-Mat-Stace.md
docx: CV-Mat-Stace.docx
CV-Mat-Stace.docx: CV-Mat-Stace.md
pandoc -s -f markdown+smart CV-Mat-Stace.md -o CV-Mat-Stace.docx
rtf: CV-Mat-Stace.rtf
CV-Mat-Stace.rtf: CV-Mat-Stace.md
pandoc -s -f markdown+smart CV-Mat-Stace.md -o CV-Mat-Stace.rtf
clean:
rm cv-mat-stace.html
rm CV-Mat-Stace.pdf
rm CV-Mat-Stace.docx
rm CV-Mat-Stace.rtf