blob: 0accde5f1927d8dc0b588f9a99f637e8962e6be6 (
plain)
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
|
LOUT=lout
PS2PDF=ps2pdf
PDF2HTML=pdf2htmlEX
SHELL:=/bin/bash -O extglob
FONTSDIR=fonts
FONTSDEF=cvfonts.ld
DEFINITIONS=cvdoc cvdocng
DEPENDENCIES=experiences.lou formations.lou motivations.lou self.lou
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 .html
.pdf.html :
$(PDF2HTML) $<
.ps.pdf :
$(PS2PDF) $<
.lou.ps :
$(LOUT) -F $(FONTSDIR) -r3 -o $@ $<
clean:
-rm !(Makefile|cvdoc|cvdocng|$(FONTSDEF)|$(FONTSDIR)|*.lou)
|