17 lines
409 B
Makefile
17 lines
409 B
Makefile
# from: @(#)Makefile 5.3 (Berkeley) 6/8/90
|
|
# $Id: Makefile,v 1.4 1993/09/30 23:06:37 jtc Exp $
|
|
|
|
FILES= dot.cshrc dot.login dot.mailrc dot.profile dot.rhosts
|
|
NOOBJ= noobj
|
|
|
|
all clean cleandir depend lint tags:
|
|
|
|
beforeinstall:
|
|
@install -d -o root -g wheel -m 755 ${DESTDIR}{BINDIR}/skel
|
|
|
|
realinstall:
|
|
install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${FILES} \
|
|
${DESTDIR}${BINDIR}/skel
|
|
|
|
.include <bsd.prog.mk>
|