blob: 00705352ec80c6d65510efc9494a2b184fab92f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# $OpenBSD: Makefile,v 1.2 2000/03/02 14:46:35 todd Exp $
#
#
FILES= README syscall vfs misc
NOOBJ= noobj
all clean cleandir depend lint tags:
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>
|