16 lines
420 B
Makefile
16 lines
420 B
Makefile
#
|
|
# $NetBSD: Makefile,v 1.14 1997/10/13 11:19:58 lukem Exp $
|
|
#
|
|
|
|
FILES= README syscall vfs misc
|
|
NOOBJ= noobj
|
|
|
|
install:
|
|
find ${FILES} -follow -name CVS -prune -o -type f -print | \
|
|
cpio -pdumL ${DESTDIR}${BINDIR}/lkm
|
|
chown -R ${BINOWN}:${BINGRP} ${DESTDIR}${BINDIR}/lkm
|
|
find ${DESTDIR}${BINDIR}/lkm -type f | xargs chmod a=rX
|
|
find ${DESTDIR}${BINDIR}/lkm -type d | xargs chmod u=rwX,go=rX
|
|
|
|
.include <bsd.prog.mk>
|