Ajout Makefile

This commit is contained in:
Elnath 2018-04-22 17:19:03 +02:00
parent 40ef53013b
commit b39f5e4283
1 changed files with 20 additions and 0 deletions

20
Makefile Normal file
View File

@ -0,0 +1,20 @@
TARGET=cours_git
all: pdf
# If there is no bibliography comment the bibtext dependency
pdf: #bibtex
pdflatex $(TARGET).tex
pdflatex $(TARGET).tex
pdf-lazy:
pdflatex $(TARGET).tex
bibtex: pdf-lazy
bibtex $(TARGET)
clean:
rm -f *.dvi *.aux *.bbl *.blg $(TARGET).ps *.toc *.ind *.out *.brf *.ilg *.idx *.log *.bcf *.nav *.run.xml *.snm *.vrb *.backup tex/*.backup *~
clean_all: clean
rm -f $(TARGET).pdf