Mercurial > hg > cv
annotate makefile @ 5:a74b9e0f9064
Switch from biblatex to biber
author | Daniele Nicolodi <daniele@grinta.net> |
---|---|
date | Mon, 06 Jul 2015 12:21:44 +0200 |
parents | 7102bd9bd8b9 |
children | efc357cfa277 |
rev | line source |
---|---|
0 | 1 SRC = cv |
2 BIB = publications.bib | |
3 TODAY = $(shell date +%Y%m%d) | |
4 | |
5 all: $(SRC).pdf | |
6 cp $(SRC).pdf nicolodi-cv-$(TODAY).pdf | |
7 | |
8 %.pdf: %.tex publications.bib | |
9 pdflatex -file-line-error -halt-on-error $(SRC).tex | |
5
a74b9e0f9064
Switch from biblatex to biber
Daniele Nicolodi <daniele@grinta.net>
parents:
0
diff
changeset
|
10 biber $(SRC) |
0 | 11 pdflatex $(SRC).tex |
12 pdflatex $(SRC).tex | |
13 | |
14 clean: | |
15 rm -f $(SRC)-blx.bib $(SRC).aux $(SRC).bbl $(SRC).blg $(SRC).log $(SRC).out $(SRC).pdf |