#
#  FILE
#	Makefile	-  make the tool man pages
#
#  DESCRIPTION
#	The man page source is processed through nroff to produce a
#	human-readable output.

.SUFFIXES:
.SUFFIXES:	.n .1l

SHELL =		/bin/sh
MAN =		imconv.1l imcopy.1l imfile.1l imflip.1l imformats.1l imgray.1l immono.1l impaste.1l imscale.1l

.n.1l:
	tbl $*.n | nroff -man > $*.1l

all:	$(MAN)
