blob: 2c53281dc7457d367e84d0e5d1030a1d312ddf3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# $OpenBSD: Makefile,v 1.3 2005/09/27 16:27:23 deraadt 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 -print0 | xargs -0r chmod a=rX
find ${DESTDIR}${BINDIR}/lkm -type d -print0 | xargs -0r chmod u=rwX,go=rX
.include <bsd.prog.mk>
|