Mercurial > hg > cv
annotate makefile @ 16:fed61f565303
Publications update
author | Daniele Nicolodi <daniele@grinta.net> |
---|---|
date | Fri, 06 Jan 2017 22:27:52 +0100 |
parents | a74b9e0f9064 |
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 |