NetBSD/etc/root/Makefile
uwe 00ed5c3931 We don't need to include <bsd.prog.mk> to install a few config files
just <bsd.files.mk> and <bsd.links.mk> is enough.

Noticed because <bsd.prog.mk> sets LINKSMODE to BINMODE and that does
the wrong thing at least for unprivileged builds.
2012-11-17 23:08:38 +00:00

17 lines
361 B
Makefile

# $NetBSD: Makefile,v 1.4 2012/11/17 23:08:38 uwe Exp $
CONFIGFILES= dot.cshrc dot.klogin dot.login dot.profile dot.shrc
FILESDIR= /root
FILESMODE= 644
FILESMODE_dot.klogin= 600
.for F in ${CONFIGFILES}
FILESNAME_${F}= ${F:S/dot//}
.endfor
CONFIGLINKS= /root/.cshrc /.cshrc \
/root/.profile /.profile
.include <bsd.files.mk>
.include <bsd.links.mk>