diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2011-11-27 17:52:26 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2011-11-27 17:52:26 +0100 |
commit | 01ef44aaefbaeb6e26e94ec3523a0b20f54e3772 (patch) | |
tree | 476e14ee219856dd19bd1bd980c26fbb52b273f2 /cv/Makefile | |
download | meself-01ef44aaefbaeb6e26e94ec3523a0b20f54e3772.zip meself-01ef44aaefbaeb6e26e94ec3523a0b20f54e3772.tar.gz |
add cv
Diffstat (limited to 'cv/Makefile')
-rw-r--r-- | cv/Makefile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/cv/Makefile b/cv/Makefile new file mode 100644 index 0000000..6f8b8ed --- /dev/null +++ b/cv/Makefile @@ -0,0 +1,23 @@ +LOUT=lout +PS2PDF=ps2pdf +SHELL:=/bin/bash -O extglob + +DEFINITIONS=cvdoc +MAIN=jeremy-zurcher-CV +DEPENDENCIES=experiences.lou formations.lou motivations.lou self.lou + +all: $(MAIN).pdf + +$(MAIN).ps: $(DEFINITIONS) $(DEPENDENCIES) + +.SUFFIXES: .lou .ps .pdf + +.ps.pdf : + $(PS2PDF) $< + +.lou.ps : + $(LOUT) -r3 -o $@ $< + + +clean: + -rm !(Makefile|$(DEFINITIONS)|*.lou) |