11 lines
227 B
Makefile
11 lines
227 B
Makefile
|
all:
|
||
|
pdflatex argumentaire_faecum.tex && \
|
||
|
bibtex argumentaire_faecum && \
|
||
|
pdflatex argumentaire_faecum.tex && \
|
||
|
pdflatex argumentaire_faecum.tex
|
||
|
|
||
|
clean:
|
||
|
rm *.aux *.log *.pdf *.dvi *.ps *.bbl *.blg *.thm -f
|
||
|
|
||
|
.PHONY: clean
|