xref: /dragonfly/share/skel/Makefile (revision 7ff0fc30)
1#	@(#)Makefile	8.1 (Berkeley) 6/8/93
2# $FreeBSD: src/share/skel/Makefile,v 1.6.6.2 2002/08/07 16:31:51 ru Exp $
3# $DragonFly: src/share/skel/Makefile,v 1.2 2003/06/17 04:37:02 dillon Exp $
4
5FILES1= dot.cshrc dot.login dot.login_conf dot.mailrc dot.profile dot.shrc
6FILES2=	dot.mail_aliases
7MODE1=	0644
8MODE2=	0600
9
10NOOBJ=	noobj
11
12all clean cleandir depend lint tags:
13
14install:
15	${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${MODE1} ${FILES1} \
16	    ${DESTDIR}${BINDIR}/skel
17	${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${MODE2} ${FILES2} \
18	    ${DESTDIR}${BINDIR}/skel
19
20.include <bsd.prog.mk>
21