[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / share / lkm

Annotation of src/share/lkm/Makefile, Revision 1.3

1.3     ! deraadt     1: #      $OpenBSD: Makefile,v 1.2 2000/03/02 14:46:35 todd Exp $
1.1       deraadt     2: #
                      3: #
                      4:
                      5: FILES= README syscall vfs misc
                      6: NOOBJ= noobj
                      7:
                      8: all clean cleandir depend lint tags:
                      9:
                     10: install:
                     11:        find ${FILES} -follow -name CVS -prune -o -type f -print | \
                     12:            cpio -pdumL ${DESTDIR}${BINDIR}/lkm
                     13:        chown -R ${BINOWN}:${BINGRP} ${DESTDIR}${BINDIR}/lkm
1.3     ! deraadt    14:        find ${DESTDIR}${BINDIR}/lkm -type f -print0 | xargs -0r chmod a=rX
        !            15:        find ${DESTDIR}${BINDIR}/lkm -type d -print0 | xargs -0r chmod u=rwX,go=rX
1.1       deraadt    16:
                     17: .include <bsd.prog.mk>