FFLAG		= -F
NAME		= Manuals
PRSPOOLER	= apr -mManuals -i
PRSPOOL		= $(PRSPOOLER)$(NAME)
PRFORMATTER	= pr -l66 -w132 -f -n3

RM		= /bin/rm -f

MANUALS		= ACSnet.1 NNcall.1 NNdaemon.1 NNshell.1 \
		  acscall.1 acspurge.1 acsq.1 acsrequest.1 \
		  acsstate.1 acsstop.1 con.1 dis.1 \
		  getfile.1 linkstats.1 rundaemon.1 sendfile.1 \
		  directory.3 proto.3 \
		  proto.5 ACSnet.8
LISTINGS	= ACSnet.q NNcall.q NNdaemon.q NNshell.q \
		  acscall.q acspurge.q acsq.q acsrequest.q \
		  acsstate.q acsstop.q con.q dis.q \
		  getfile.q linkstats.q rundaemon.q sendfile.q \
		  directory.x proto.x \
		  proto.s ACSnet.a

.SUFFIXES:	.a .s .q .x .1 .3 .5 .8

.1.q:
		nroff $(FFLAG) -man -Tlp $< >$*.q

.3.x:
		nroff $(FFLAG) -man -Tlp $< >$*.x

.5.s:
		nroff $(FFLAG) -man -Tlp $< >$*.s

.8.a:
		nroff $(FFLAG) -man -Tlp $< >$*.a

all:

view:		$(LISTINGS)
		cat $? | col | ul | more

print:		$(LISTINGS)
		cat $? | col -x | $(PRSPOOL)

clean:
		$(RM) *.[aqsx]

clobber:	clean

llib:

FRC:
