Skip to content
Makefile 194 B
Newer Older
TEX=$(wildcard *.tex)
PDF=$(TEX:.tex=.pdf)

all: $(PDF) 
$(PDF) : %.pdf : %.tex
	/usr/bin/pdflatex $<
	/usr/bin/pdflatex $<

clean: 
Florent's avatar
Florent committed
	/bin/rm -f *.truc *.aux *.nav *.toc *.log *.out *.snm *.pdf