summaryrefslogtreecommitdiff
path: root/Makefile
blob: 7556869502159c42864a79bbe0caa8a433f76d7b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
all: bib tex

tex:
	pdflatex memoria
	pdflatex memoria

bib:
	pdflatex memoria
	bibtex memoria

clean:
	rm -rf _region_.tex *.aux *.bbl *.blg *.brf *.dvi *.fdb_latexmk *.fls *.fmt *.idx *.log *.lol *.out *.prv *.toc

.PHONY : tex bib clean