1 # @(#)Makefile 8.1 (Berkeley) 6/10/93 2 3 # The following modules do not build/install: 4 # 10.named, 13.amd 5 6 BINDIR= /usr/share/doc/smm 7 FILES= 00.contents Makefile Title 8 SUBDIR= 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 12 Title.ps: ${FILES} 13 groff Title > ${.TARGET} 14 15 contents.ps: ${FILES} 16 groff -ms 00.contents > ${.TARGET} 17 18 .if ${MACHINE} == "tahoe" 19 SUBDIR+=01.setup 20 .elif ${MACHINE} == "vax" 21 SUBDIR+=01.setup 22 .endif 23 24 beforeinstall: 25 install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${FILES} \ 26 ${DESTDIR}${BINDIR} 27 28 .include <bsd.subdir.mk> 29