Makefile revision 1.9
1#	from: @(#)Makefile	8.1 (Berkeley) 6/10/93
2#	$Id: Makefile,v 1.9 1996/04/05 01:52:24 cgd Exp $
3
4# The following modules do not build/install:
5# 10.named, 13.amd
6
7# Missing:
8# 02.config 11.timedop 12.timed
9
10# Missing from 4.4BSD-Lite:
11# 14.uucpimpl 15.uucpnet 16.security 17.password
12
13BINDIR=	/usr/share/doc/smm
14FILES=	00.contents Makefile Title
15SUBDIR=	01.setup 04.quotas 05.fastfs 06.nfs 18.net
16.if exists(03.fsck_ffs)
17SUBDIR+= 03.fsck_ffs
18.endif
19.if exists(07.lpd)
20SUBDIR+= 07.lpd
21.endif
22.if exists(08.sendmailop)
23SUBDIR+= 08.sendmailop
24.endif
25.if exists(09.sendmail)
26SUBDIR+= 09.sendmail
27.endif
28
29Title.ps: ${FILES}
30	groff Title > ${.TARGET}
31
32contents.ps: ${FILES}
33	groff -ms 00.contents > ${.TARGET}
34
35beforeinstall:
36	install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${FILES} \
37	    ${DESTDIR}${BINDIR}
38
39.include <bsd.subdir.mk>
40