16 lines
333 B
Makefile
16 lines
333 B
Makefile
|
# $NetBSD: Makefile,v 1.1 2000/10/16 13:14:57 simonb Exp $
|
||
|
# from: @(#)Makefile 8.1 (Berkeley) 6/8/93
|
||
|
|
||
|
.if make(distribution)
|
||
|
FILES= dot.cshrc dot.login dot.mailrc dot.profile dot.rhosts
|
||
|
FILESDIR= /etc/skel
|
||
|
.for F in ${FILES}
|
||
|
FILESNAME_${F}= ${F:S/dot//}
|
||
|
.endfor
|
||
|
|
||
|
distribution: filesinstall
|
||
|
.endif
|
||
|
MKOBJ= no
|
||
|
|
||
|
.include <bsd.prog.mk>
|