diff options
author | wollman <wollman@FreeBSD.org> | 1994-09-19 21:28:28 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1994-09-19 21:28:28 +0000 |
commit | b269db3788caf2fc710b7ebadf9938855b8fae44 (patch) | |
tree | d60d8ba911367a37b6b663cab8c31b9c6b57f63c /share/examples/Makefile | |
parent | 297cf34bad448be3e36a92b33da13f8e47440ddc (diff) | |
download | FreeBSD-src-b269db3788caf2fc710b7ebadf9938855b8fae44.zip FreeBSD-src-b269db3788caf2fc710b7ebadf9938855b8fae44.tar.gz |
Install /etc from the same source as /usr/share/examples/etc (mostly).
Diffstat (limited to 'share/examples/Makefile')
-rw-r--r-- | share/examples/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/share/examples/Makefile b/share/examples/Makefile index 60e78b6..047ab68 100644 --- a/share/examples/Makefile +++ b/share/examples/Makefile @@ -1,9 +1,12 @@ -# $Id: Makefile,v 1.4 1994/08/28 17:21:36 bde Exp $ +# $Id: Makefile,v 1.5 1994/09/13 02:21:03 wollman Exp $ # # Doing a make install builds /usr/share/examples DIRS=etc FreeBSD_version lkm sunrpc NOOBJ= noobj +ETCOWN= root +ETCGRP= wheel +ETCMODE=644 # Define SHARED to indicate whether you want symbolic links to the system # source (``symlinks''), or a separate copy (``copies''); (latter useful @@ -28,4 +31,8 @@ symlinks: ln -s ${.CURDIR}/$$a ${DESTDIR}/usr/share/examples; \ done +install-etc: + install -c -o ${ETCOWN} -g ${ETCGRP} -m ${ETCMODE} \ + ${.CURDIR}/etc/[a-z]* ${DESTDIR}/etc + .include <bsd.prog.mk> |