#
#	Copyright (c) 1989-1992  San Diego Supercomputer Center (SDSC)
#		San Diego, California, USA
#
#	Users and possessors of this source code are hereby granted a
#	nonexclusive, royalty-free copyright and design patent license to
#	use this code in individual software.  License is not granted for
#	commercial resale, in whole or in part, without prior written
#	permission from SDSC.  This source is provided "AS IS" without express
#	or implied warranty of any kind.
#
#	For further information contact:
#		E-Mail:         info@sds.sdsc.edu
#
#		Surface Mail:   Information Center
#				San Diego Supercomputer Center
#				P.O. Box 85608
#				San Diego, CA  92138-5608
#				(619) 534-5000
#

#
#  FILE
#	Makefile	-  make the image tools man pages
#
#  PROJECT
#	IMAGE		-  image library and tools
#
#  DESCRIPTION
#	The man page source is processed through nroff to produce a
#	human-readable output.
#



.SUFFIXES:
.SUFFIXES:	.n .1l

SHELL =		/bin/sh
MAN =		\
		imadjust.1l \
		imcat.1l \
		imcltroll.1l \
		imcomp.1l \
		imconv.1l \
		imcopy.1l \
		imfile.1l \
		imfill.1l \
		imflip.1l \
		imformats.1l \
		imgray.1l \
		imhist.1l \
		immono.1l \
		impaste.1l \
		imroll.1l \
		imrotate.1l \
		imscale.1l \
		imshear.1l \
		imsplit.1l

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

all:	$(MAN)
