33 lines
768 B
Makefile
33 lines
768 B
Makefile
build: notes_de_cours.pdf
|
|
|
|
composantsfortementconnexes.png:
|
|
dot -Tpng composantsfortementconnexes.dot -o composantsfortementconnexes.png
|
|
|
|
exemple_flot.png:
|
|
dot -Tpng exemple_flot.dot -o exemple_flot.png
|
|
|
|
exemple_flot_residuel.png:
|
|
dot -Tpng exemple_flot_residuel.dot -o exemple_flot_residuel.png
|
|
|
|
notes_de_cours.pdf: notes_de_cours.bbl
|
|
pdflatex notes_de_cours.tex
|
|
pdflatex notes_de_cours.tex
|
|
|
|
notes_de_cours.bbl: notes_de_cours.tex exemple_flot.png exemple_flot_residuel.png composantsfortementconnexes.png
|
|
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
|
|
-rm *.pdf
|
|
-rm exemple_flot.png exemple_flot_residuel.png
|
|
|