Makefile to install sample files in /etc/uucp with correct ownership and

permissions
This commit is contained in:
rgrimes 1993-10-14 12:18:29 +00:00
parent 322bdf9d0c
commit 43a360d2ae

View File

@ -0,0 +1,15 @@
# $Id: Makefile,v 1.1 1993/08/05 18:22:22 conklin Exp $
FILES= call config dial dialcode passwd port sys1 sys2
NOOBJ= noobj
BINOWN= $(owner)
BINGRP= $(group)
all clean cleandir depend lint tags:
install:
install -c -o ${BINOWN} -g ${BINGRP} -m 440 ${FILES} \
${DESTDIR}/etc/uucp
.include <bsd.prog.mk>