blob: fce3cdb69157d2ecc441fe92ede1b57e4165a16b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# from: @(#)Makefile 5.3 (Berkeley) 6/22/90
# $Id: Makefile,v 1.3 1995/11/08 00:01:04 deraadt Exp $
FILES= Makefile.yp
NOOBJ= noobj
install:
install -c -o root -g wheel -m 644 Makefile.yp \
${DESTDIR}/var/yp.no/Makefile
install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${.CURDIR}/ypinit.sh ${DESTDIR}/usr/sbin/ypinit
.include <bsd.prog.mk>
|