16 lines
418 B
Makefile
16 lines
418 B
Makefile
#
|
|
# $Id: Makefile,v 1.13 1997/05/09 07:50:19 mycroft 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>
|