diff options
author | rgrimes <rgrimes@FreeBSD.org> | 1993-10-14 12:18:29 +0000 |
---|---|---|
committer | rgrimes <rgrimes@FreeBSD.org> | 1993-10-14 12:18:29 +0000 |
commit | 2c850a2d358fa754a247c0b3f94c2922de3f87bd (patch) | |
tree | 9c4a3ae954a4312adabf12f6a7d0cbe3a5973e59 /gnu/libexec | |
parent | 404add9facdd67e6dfade5d3a57415e67483c01c (diff) | |
download | FreeBSD-src-2c850a2d358fa754a247c0b3f94c2922de3f87bd.zip FreeBSD-src-2c850a2d358fa754a247c0b3f94c2922de3f87bd.tar.gz |
Makefile to install sample files in /etc/uucp with correct ownership and
permissions
Diffstat (limited to 'gnu/libexec')
-rw-r--r-- | gnu/libexec/uucp/sample/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/gnu/libexec/uucp/sample/Makefile b/gnu/libexec/uucp/sample/Makefile new file mode 100644 index 0000000..0cd2f1e --- /dev/null +++ b/gnu/libexec/uucp/sample/Makefile @@ -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> |