# $Id: Makefile 424 2008-04-27 19:10:07Z oneiros $
all: test.pdf test-inc.pdf

test.pdf: test.tex
	pdflatex test.tex
	
test-inc.pdf: test-inc.tex test.pdf
	pdflatex test-inc.tex
	
.PHONY: clean clobber
clean:
	rm -f *.aux *.fls *.log

clobber: clean
	rm -f *.pdf
