aboutsummaryrefslogtreecommitdiff
path: root/stanzione/Makefile
blob: 4a3f928d72278188f88643cb0be17b8039b4a3ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
.POSIX:
.SUFFIXES: .tex .pdf

PDFS = mm1.pdf

PDFLATEX = pdflatex
BIBER = biber

all: $(PDFS)

$(PDFS): sources.bib

clean:
	rm -f *.bbl *.blg *.log *.aux *.pdf *.run.xml *.bcf *.out

.tex.pdf:
	$(PDFLATEX) $<
	$(BIBER) $*
	$(PDFLATEX) $<
	$(PDFLATEX) $<

mm1.pdf: yang.jpg

yang.jpg:
	curl -o yang.jpg "https://upload.wikimedia.org/wikipedia/commons/7/7f/Yang-single_%28restoration%29.jpg"