NetBSD/share/lkm/Makefile

23 lines
672 B
Makefile
Raw Normal View History

1993-06-08 07:52:08 +04:00
#
1993-07-09 08:24:28 +04:00
# $Id: Makefile,v 1.2 1993/07/09 04:24:28 mycroft Exp $
1993-06-08 07:52:08 +04:00
#
FILES= README syscall vfs misc
NOOBJ= noobj
all clean cleandir depend lint tags:
install:
@@if [ ! -d ${DESTDIR}${BINDIR}/lkm ]; then \
/bin/rm -f ${DESTDIR}${BINDIR}/lkm ; \
mkdir -p ${DESTDIR}${BINDIR}/lkm ; \
chown root.wheel ${DESTDIR}${BINDIR}/lkm ; \
chmod 755 ${DESTDIR}${BINDIR}/lkm ; \
else \
true ; \
fi
1993-07-09 08:24:28 +04:00
find ${FILES} -name CVS -prune -o -type f -print | cpio -pdum ${DESTDIR}${BINDIR}/lkm
find ${FILES} -name CVS -prune -o -type d -print | cpio -pdum ${DESTDIR}${BINDIR}/lkm
1993-06-08 07:52:08 +04:00
.include <bsd.prog.mk>