#
# this makefile process the ipc tutorial for PostScript (make PS)
# and screen readable (make screen) versions.
# 
#
#	
#
SRCS    = tutor.me
FMTR1   = psroff -t
FMTR2   = nroff

PS:	${SRCS}
	tbl ${SRCS} | ${FMTR1} -me > ipctut.PS


screen:	${SRCS}
	tbl ${SRCS} | ${FMTR2} -me > ipctut.text


