Mercurial > hg > cv
annotate makefile @ 24:49001fa5195c
Style tweaks
author | Daniele Nicolodi <daniele@grinta.net> |
---|---|
date | Sun, 17 Oct 2021 16:49:54 +0200 |
parents | efc357cfa277 |
children | 608d78441570 |
rev | line source |
---|---|
0 | 1 SRC = cv |
2 BIB = publications.bib | |
3 | |
4 all: $(SRC).pdf | |
5 | |
6 %.pdf: %.tex publications.bib | |
7 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
|
8 biber $(SRC) |
0 | 9 pdflatex $(SRC).tex |
10 pdflatex $(SRC).tex | |
11 | |
12 clean: | |
13 rm -f $(SRC)-blx.bib $(SRC).aux $(SRC).bbl $(SRC).blg $(SRC).log $(SRC).out $(SRC).pdf |