diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-10-18 08:53:40 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-10-18 08:53:40 +0000 |
commit | d6583bb2a13f329cf0332ef2570eb8bb8fc0e39c (patch) | |
tree | ece253b876159b39c620e62b6c9b1174642e070e /share/lkm/Makefile |
initial import of NetBSD tree
Diffstat (limited to 'share/lkm/Makefile')
-rw-r--r-- | share/lkm/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/share/lkm/Makefile b/share/lkm/Makefile new file mode 100644 index 00000000000..6b84548efb7 --- /dev/null +++ b/share/lkm/Makefile @@ -0,0 +1,17 @@ +# +# $Id: Makefile,v 1.1 1995/10/18 08:44:20 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 | xargs chmod a=rX + find ${DESTDIR}${BINDIR}/lkm -type d | xargs chmod u=rwX,go=rX + +.include <bsd.prog.mk> |