# ~/controlled/documents/letters/Makefile

# Don't delete the .pdf generated as the dependency of the match-anything
# pattern rule:
.PRECIOUS : %.pdf

#===============================================================================

% : %.pdf
	evince $*.pdf &

%.pdf : %.tex
	pdflatex $*
	bibtex $*
	pdflatex $*
	bibtex $*
	@echo ""

#===============================================================================
clean:
	rm -f *.aux *.log *.out

realclean: clean
	rm -f *~ *.pdf
