# "
# " P_R_P_Q_# (C) COPYRIGHT IBM CORPORATION 1986
# " LICENSED MATERIALS - PROPERTY OF IBM
# " REFER TO COPYRIGHT INSTRUCTIONS FORM NUMBER G120-2083
# "
# Print the named files (comprising the second half of the book
# "Academic Information Systems 4.2 on the IBM RT PC" - Volume II)

#\"$Header: printfilesIIb,v 10.0 87/05/26 14:15:17 mhoff Base43 $
#\"$Source: /ibm/acis/usr/doc/ibmdoc/run/RCS/printfilesIIb,v $ 

# processor to print the doc
PRINTCMD = ptroff

# processor to preview the doc
PREVCMD = nroff	

# table processing command
TBLCMD = tbl

SWITCHES = -me -n149 -Pusp -rv1
FILES = linkage.t ccomp.t pcomp.t consemul.t rvd.t a.t b.t rcf.t

typeset :
	${TBLCMD} ${FILES}|${PRINTCMD} ${SWITCHES}

preview :
	@echo 'output into file "OUT"'
	${PREVCMD} ${SWITCHES} ${FILES} | colcrt > OUT

# command to invoke:
#  make -f printfilesIIb [typeset preview] &
