Cleanup the fix for dependency handling. This explicitly checks wether
[dragonfly.git] / share / skel / Makefile
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
5 FILES1= dot.cshrc dot.login dot.login_conf dot.mailrc dot.profile dot.shrc
6 FILES2= dot.mail_aliases dot.rhosts 
7 MODE1=  0644
8 MODE2=  0600
9
10 NOOBJ=  noobj
11
12 all clean cleandir depend lint tags:
13
14 install:
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>