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