#
#	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 library man pages
#
#  PROJECT
#	libim		-  SDSC image manipulation library
#
#  DESCRIPTION
#	The man page source is processed through nroff to produce a
#	human-readable output.
#


.SUFFIXES:
.SUFFIXES:	.n .3l

SHELL =		/bin/sh

#
# imintro.3l always first
#
MAN =		\
		imintro.3l \
		imbmp.3l \
		imcltalloc.3l \
		imcltdup.3l \
		imcltfree.3l \
		imcltgrayramp.3l \
		imcltqncolors.3l \
		imcltqptr.3l \
		imcltqred.3l \
		imcltroll.3l \
		imcur.3l \
		imeps.3l \
		imfileformatoptions.3l \
		imfileqformat.3l \
		imfileqnformat.3l \
		imfileread.3l \
		imgif.3l \
		imhdf.3l \
		imhsitorgb.3l \
		imico.3l \
		imicon.3l \
		imiff.3l \
		immpnt.3l \
		impbm.3l \
		impcx.3l \
		imperror.3l \
		impgm.3l \
		impic.3l \
		impict.3l \
		impix.3l \
		impnm.3l \
		imppm.3l \
		imps.3l \
		imras.3l \
		imrgb.3l \
		imrgbtohsi.3l \
		imrla.3l \
		imrle.3l \
		imrpbm.3l \
		imrpgm.3l \
		imrpnm.3l \
		imrppm.3l \
		imsynu.3l \
		imtga.3l \
		imtiff.3l \
		imvfbadjust.3l \
		imvfballoc.3l \
		imvfbcomp.3l \
		imvfbcopy.3l \
		imvfbdup.3l \
		imvfbfill.3l \
		imvfbflip.3l \
		imvfbfree.3l \
		imvfbhist.3l \
		imvfbqclt.3l \
		imvfbqfields.3l \
		imvfbqnbytes.3l \
		imvfbqptr.3l \
		imvfbqred.3l \
		imvfbresize.3l \
		imvfbroll.3l \
		imvfbrotate.3l \
		imvfbstat.3l \
		imvfbtoindex8.3l \
		imvfbxshear.3l \
		imviff.3l \
		imx.3l \
		imxbm.3l \
		imxwd.3l 

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

all:	$(MAN)
