NetBSD/sys/lkm/dev/vnd/Makefile
mrg 20998b4001 vnd.c
- allow vnddetach() to return EBUSY if any vnd's are currently initialised.
lkm:
- add new 'dev' directory, initially with just a 'vnd' LKM.  for now, the
vnd lkm driver requests 4 devices....

XXX: vnd should be converted to a psuedo-device that creates & deletes
instances of itself (vnd0, vnd1, etc) when vnconfig -c/-u are called,
then the vnd lkm driver can not be limited to '4' by default.
2002-11-16 08:10:48 +00:00

16 lines
239 B
Makefile

# $NetBSD: Makefile,v 1.1 2002/11/16 08:10:50 mrg Exp $
.include "../Makefile.inc"
.PATH: $S/kern
real-vnd.c:
ln -s ${S}/dev/vnd.c real-vnd.c
KMOD= vnd
SRCS= lkminit_vnd.c real-vnd.c
CLEANFILES+= real-vnd.c
.include <bsd.kmod.mk>