21 lines
563 B
Makefile
21 lines
563 B
Makefile
#
|
|
# $Id: Makefile,v 1.5 1993/11/14 15:36:20 cgd Exp $
|
|
#
|
|
|
|
FILES= README syscall vfs misc
|
|
NOOBJ= noobj
|
|
|
|
all clean cleandir depend lint tags:
|
|
|
|
beforeinstall:
|
|
@install -d -o root -g wheel -m 755 ${DESTDIR}${BINDIR}/lkm
|
|
|
|
realinstall:
|
|
# XXX:
|
|
# Must do these separately if we want to preserve mod times on directories
|
|
# because -prune doesn't work correctly with -depth.
|
|
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
|
|
|
|
.include <bsd.prog.mk>
|