21 lines
272 B
Makefile
21 lines
272 B
Makefile
|
build: rapport.pdf
|
||
|
|
||
|
rapport.pdf: rapport.bbl
|
||
|
pdflatex rapport.tex
|
||
|
pdflatex rapport.tex
|
||
|
|
||
|
rapport.bbl: rapport.tex
|
||
|
pdflatex rapport.tex
|
||
|
bibtex rapport.aux
|
||
|
|
||
|
run: rapport.pdf
|
||
|
evince rapport.pdf
|
||
|
|
||
|
clean:
|
||
|
rm *.aux
|
||
|
rm *.bbl
|
||
|
rm *.blg
|
||
|
rm *.lof
|
||
|
rm *.log
|
||
|
rm *.out
|
||
|
rm *.toc
|