#
#ident	"@(#)smail/guide/admin:RELEASE-3_2_0_117:Makefile,v 1.14 2004/03/24 18:49:51 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

ROOT =	../..

PARTS =	intro install config cookbook utilities

NROFF =	nroff
TROFF =	troff
GROFF =	groff
PS2PDF = ps2pdf14

PRINTABLE=admin.ps admin.txt

all:

printable: ${PRINTABLE}

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

admin.pdf: admin.ps
	${PS2PDF} $> $@

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

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

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

depend mkdefs install installman:

clean:

clobber:
	-rm -f ${PRINTABLE}

.PHONY: all install local-install clean local-clean clobber local-clobber depend local-depend lint mkdefs check_defs tags TAGS
