# "
# " 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 first half of the book
# "Academic Information Systems 4.2 on the IBM RT PC" - Volume II)

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

# processor to print the doc
PRINTCMD = ptroff

# processor to preview the doc
PREVCMD = nroff	

# table processing command
TBLCMD = tbl

SWITCHES = -me -Pusp -rv1
FILES = titleII.t II.t oper.t config.t asref.t fpa.t csubs.t prognotes.t 3812.t.a 3812.t.b

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

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

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