
PLA=placards
CAT=catalog

default:
	latex $(PLA)
	dvips -t landscape -o $(PLA).ps $(PLA).dvi
	ps2pdf $(PLA).ps $(PLA).pdf
	cp $(PLA).pdf ~/www/out/
	cp $(PLA).pdf ..
	pdflatex $(CAT).tex
	cp $(CAT).pdf ~/www/out
	cp $(CAT).pdf ..

clean:
	rm -f *.aux *.log *.dvi *.toc *.bbl *.blg *~ \#*

# .IGNORE: clean

