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

permissions
This commit is contained in:
Rodney W. Grimes 1993-10-14 12:18:29 +00:00
parent 242d29de40
commit 05a078e0da
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=601

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>