diff options
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) |