diff options
Diffstat (limited to 'sys/modules')
| -rw-r--r-- | sys/modules/Makefile | 5 | ||||
| -rw-r--r-- | sys/modules/vnd/Makefile | 13 |
2 files changed, 17 insertions, 1 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile index c1b839f8fa8..7916cab9ac6 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.24 2009/01/05 15:36:51 pooka Exp $ +# $NetBSD: Makefile,v 1.25 2009/02/05 17:32:10 haad Exp $ # For all platforms @@ -6,7 +6,9 @@ SUBDIR= accf_dataready SUBDIR+= accf_httpready SUBDIR+= adosfs SUBDIR+= aio +SUBDIR+= ccd SUBDIR+= cd9660 +SUBDIR+= cgd SUBDIR+= coda SUBDIR+= coda5 SUBDIR+= compat @@ -45,6 +47,7 @@ SUBDIR+= tmpfs SUBDIR+= udf SUBDIR+= umap SUBDIR+= union +SUBDIR+= vnd .if (defined(NOTYET)) SUBDIR+= unionfs .endif diff --git a/sys/modules/vnd/Makefile b/sys/modules/vnd/Makefile new file mode 100644 index 00000000000..c801459699e --- /dev/null +++ b/sys/modules/vnd/Makefile @@ -0,0 +1,13 @@ +# $NetBSD: Makefile,v 1.1 2009/02/05 17:32:10 haad Exp $ + +.include "../Makefile.inc" + +CPPFLAGS+= -D VND_COMPRESSION + +.PATH: ${S}/dev + + +KMOD= vnd +SRCS= vnd.c + +.include <bsd.kmodule.mk> |
