diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2014-12-09 22:36:49 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2014-12-09 22:36:49 +0100 |
commit | 5b25f71556c28aea1f6318f7ef2a74270a49703f (patch) | |
tree | d93f02456bdaca53411f49473807dffefbf700b5 /cv | |
parent | c08e8c8edc2f00697b3740b7326273aed87ac599 (diff) | |
download | meself-5b25f71556c28aea1f6318f7ef2a74270a49703f.zip meself-5b25f71556c28aea1f6318f7ef2a74270a49703f.tar.gz |
add html generation using pdf2htmlEX
Diffstat (limited to 'cv')
-rw-r--r-- | cv/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/cv/Makefile b/cv/Makefile index 1ff8df5..0accde5 100644 --- a/cv/Makefile +++ b/cv/Makefile @@ -1,5 +1,6 @@ LOUT=lout PS2PDF=ps2pdf +PDF2HTML=pdf2htmlEX SHELL:=/bin/bash -O extglob FONTSDIR=fonts @@ -7,12 +8,15 @@ FONTSDEF=cvfonts.ld DEFINITIONS=cvdoc cvdocng DEPENDENCIES=experiences.lou formations.lou motivations.lou self.lou -all: jeremy-zurcher-CV.pdf jeremy.zurcher-CV.pdf +all: jeremy-zurcher-CV.pdf jeremy.zurcher-CV.pdf jeremy.zurcher-CV.html jeremy-zurcher-CV.ps: jeremy-zurcher-CV.lou cvdoc $(DEPENDENCIES) jeremy.zurcher-CV.ps: jeremy.zurcher-CV.lou cvdocng $(FONTSDEF) -.SUFFIXES: .lou .ps .pdf +.SUFFIXES: .lou .ps .pdf .html + +.pdf.html : + $(PDF2HTML) $< .ps.pdf : $(PS2PDF) $< |