13 lines
379 B
Makefile
13 lines
379 B
Makefile
all: rapport.pdf presentation.pdf
|
|
|
|
rapport.pdf: rapport.tex refs.bib
|
|
pdflatex -interaction=nonstopmode -halt-on-error rapport.tex
|
|
bibtex rapport
|
|
pdflatex -interaction=nonstopmode -halt-on-error rapport.tex
|
|
|
|
presentation.pdf: presentation.tex
|
|
lualatex -interaction=nonstopmode -halt-on-error presentation.tex
|
|
|
|
clean:
|
|
rm *.bbl *.bcf *.blg *.log *.run.xml *.toc *.aux *.out -f
|