Makefile revision 1.3
1#	from: @(#)Makefile	5.2.1.2 (Berkeley) 5/7/91
2#	$Id: Makefile,v 1.3 1993/07/31 15:32:55 mycroft Exp $
3
4# Missing: 03.kdebug 09.uucpimpl 12.uchanges 13.kchanges 17.security
5#	   18.password 19.porttour 21.uucpnet
6BINDIR=	/usr/share/doc/smm
7FILES=	00.contents Makefile Title
8SUBDIR=	02.config 04.quotas 05.fsck 06.lpd 07.sendmailop \
9	08.timedop 10.newsop 11.named \
10	14.fastfs 15.net 16.sendmail \
11	20.termdesc 22.timed
12
13.if	${MACHINE} == "tahoe"
14SUBDIR+=01.setup
15.elif	${MACHINE} == "vax"
16SUBDIR+=01.setup
17.endif
18
19beforeinstall:
20	@if [ ! -d ${DESTDIR}${BINDIR} ]; then \
21                /bin/rm -f ${DESTDIR}${BINDIR} ; \
22                mkdir -p ${DESTDIR}${BINDIR} ; \
23                chown root.wheel ${DESTDIR}${BINDIR} ; \
24                chmod 755 ${DESTDIR}${BINDIR} ; \
25        else \
26                true ; \
27        fi
28	install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${FILES} \
29	    ${DESTDIR}${BINDIR}
30
31.include <bsd.subdir.mk>
32