diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-04-20 17:01:32 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-04-20 17:01:32 +0200 |
commit | ab8dd39003414eff40ef2dbc1e3b7fc51cae81a4 (patch) | |
tree | 87dd7c305390640216acf86b7c5c6f0c6cc680af /cv/Makefile | |
parent | 6cf82d79b7b06879a68e60b9f5e0eab608505223 (diff) | |
download | meself-ab8dd39003414eff40ef2dbc1e3b7fc51cae81a4.zip meself-ab8dd39003414eff40ef2dbc1e3b7fc51cae81a4.tar.gz |
add and use LinLibertine font
Diffstat (limited to 'cv/Makefile')
-rw-r--r-- | cv/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cv/Makefile b/cv/Makefile index 6f8b8ed..ac74ae8 100644 --- a/cv/Makefile +++ b/cv/Makefile @@ -2,6 +2,8 @@ LOUT=lout PS2PDF=ps2pdf SHELL:=/bin/bash -O extglob +FONTSDIR=fonts +FONTSDEF=cvfonts.ld DEFINITIONS=cvdoc MAIN=jeremy-zurcher-CV DEPENDENCIES=experiences.lou formations.lou motivations.lou self.lou @@ -16,8 +18,8 @@ $(MAIN).ps: $(DEFINITIONS) $(DEPENDENCIES) $(PS2PDF) $< .lou.ps : - $(LOUT) -r3 -o $@ $< + $(LOUT) -F $(FONTSDIR) -r3 -o $@ $< clean: - -rm !(Makefile|$(DEFINITIONS)|*.lou) + -rm !(Makefile|$(DEFINITIONS)|$(FONTSDEF)|$(FONTSDIR)|*.lou) |