LATEXIN=/usr/local/tex/inputs
STYLES = avantegarde.sty bookman.sty chancery.sty ncs.sty palatino.sty \
         psfonts.sty times.sty timesmath.sty
TEX = latex
DVI2PS = ../src/dvi2ps

default :
	echo "You must make install or make test."

install :
	install -m 644 ${STYLES} ${LATEXIN}

test :
	${TEX} tst
	${DVI2PS} tst | lpr -Pps
