#
#ident	"@(#)smail/guide/admin:RELEASE-3_2_0_114:Makefile,v 1.11 2001/03/05 21:35:34 woods Exp"
#
# Makefile for the smail administration guide
#
#    Copyright (C) 1987, 1988 Ronald S. Karr and Landon Curt Noll
#    Copyright (C) 1992  Ronald S. Karr
# 
# See the file COPYING, distributed with smail, for restriction
# and warranty information.

SHELL=/bin/sh
AR=ar
LINT=lint
SRC_PREFIX=

ROOT=../..
PARTS=intro install config cookbook utilities
MISC=Makefile README
SRC=${PARTS} ${MISC}
NROFF=nroff
TROFF=troff
GROFF=groff

PRINTABLE=admin.ps admin.txt

all:

printable: ${PRINTABLE}

admin.ps: ${PARTS}
	${GROFF} -Tps -ms ${PARTS} > $@

admin.txt: ${PARTS}
	${NROFF} -ms ${PARTS} > $@

nroff:	${PARTS}
	@${NROFF} -ms ${PARTS}

troff:	${PARTS}
	${TROFF} -ms ${PARTS}

names:
	@for i in ${SRC}; do echo ${SRC_PREFIX}$$i; done

depend mkdefs install installman:

clean:

clobber:
	-rm -f ${PRINTABLE}
