22 lines
346 B
Makefile
22 lines
346 B
Makefile
|
build: notes_de_cours.pdf
|
||
|
|
||
|
rapport.pdf: notes_de_cours.bbl
|
||
|
pdflatex notes_de_cours.tex
|
||
|
pdflatex notes_de_cours.tex
|
||
|
|
||
|
rapport.bbl: notes_de_cours.tex
|
||
|
pdflatex notes_de_cours.tex
|
||
|
bibtex notes_de_cours.aux
|
||
|
|
||
|
run: notes_de_cours.pdf
|
||
|
-evince notes_de_cours.pdf &
|
||
|
|
||
|
clean:
|
||
|
-rm *.aux
|
||
|
-rm *.bbl
|
||
|
-rm *.blg
|
||
|
-rm *.lof
|
||
|
-rm *.log
|
||
|
-rm *.out
|
||
|
-rm *.toc
|