1# @(#)Makefile 8.1 (Berkeley) 6/10/93 2 3# The following modules do not build/install: 4# 10.named, 13.amd 5 6BINDIR= /usr/share/doc/smm 7FILES= 00.contents Makefile Title 8SUBDIR= 01.setup 02.config 03.fsck 04.quotas 05.fastfs 06.nfs 07.lpd \ 9 08.sendmailop 09.sendmail 11.timedop 12.timed 14.uucpimpl \ 10 15.uucpnet 16.security 17.password 18.net 11 12Title.ps: ${FILES} 13 groff Title > ${.TARGET} 14 15contents.ps: ${FILES} 16 groff -ms 00.contents > ${.TARGET} 17 18.if ${MACHINE} == "tahoe" 19SUBDIR+=01.setup 20.elif ${MACHINE} == "vax" 21SUBDIR+=01.setup 22.endif 23 24beforeinstall: 25 install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${FILES} \ 26 ${DESTDIR}${BINDIR} 27 28.include <bsd.subdir.mk> 29