
SRC= $(wildcard *.tex)

TARGPDF=$(SRC:.tex=.pdf)

all: $(TARGPDF)

%.pdf: %.tex
	pdflatex $<

clean:
	rm -f *.aux *.log $(TARGPDF) *.dvi *~ *.blg *.bbl

