summaryrefslogtreecommitdiffstats
path: root/cv/Makefile
blob: 569cc1b17e8e1a1c825f97fc177a3e1a5de8cd98 (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
LOUT=lout
PS2PDF=ps2pdf
PDF2HTML=pdf2htmlEX
SHELL:=/bin/bash -O extglob

FONTSDIR=fonts
FONTSDEF=cvfonts.ld

all: jeremy.zurcher-CV.pdf

jeremy.zurcher-CV.ps: jeremy.zurcher-CV.lou $(FONTSDEF)

.SUFFIXES: .lou .ps .pdf .html

.pdf.html :
	$(PDF2HTML) $<

.ps.pdf :
	$(PS2PDF) $<

.lou.ps :
	$(LOUT) -F $(FONTSDIR) -o $@ $<

clean:
	-rm !(Makefile|$(FONTSDEF)|$(FONTSDIR)|*.lou)