diff options
author | pjd <pjd@FreeBSD.org> | 2004-05-20 10:27:20 +0000 |
---|---|---|
committer | pjd <pjd@FreeBSD.org> | 2004-05-20 10:27:20 +0000 |
commit | fd38677e5d6b37e21ff2668210a9d4bf39d92ddc (patch) | |
tree | 4c15b97cadbe7e0892a58ab84aee5f2c2341131b /sys/modules | |
parent | 2d3c7f90d7151bbb3032a080b870b999d93f5b27 (diff) | |
download | FreeBSD-src-fd38677e5d6b37e21ff2668210a9d4bf39d92ddc.zip FreeBSD-src-fd38677e5d6b37e21ff2668210a9d4bf39d92ddc.tar.gz |
Modules Makefiles for geom_stripe and geom_nop.
Supported by: Wheel - Open Technologies - http://www.wheel.pl
Diffstat (limited to 'sys/modules')
-rw-r--r-- | sys/modules/geom/geom_nop/Makefile | 8 | ||||
-rw-r--r-- | sys/modules/geom/geom_stripe/Makefile | 8 |
2 files changed, 16 insertions, 0 deletions
diff --git a/sys/modules/geom/geom_nop/Makefile b/sys/modules/geom/geom_nop/Makefile new file mode 100644 index 0000000..139e124 --- /dev/null +++ b/sys/modules/geom/geom_nop/Makefile @@ -0,0 +1,8 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../../geom/nop + +KMOD= geom_nop +SRCS= g_nop.c + +.include <bsd.kmod.mk> diff --git a/sys/modules/geom/geom_stripe/Makefile b/sys/modules/geom/geom_stripe/Makefile new file mode 100644 index 0000000..278d3ac --- /dev/null +++ b/sys/modules/geom/geom_stripe/Makefile @@ -0,0 +1,8 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../../geom/stripe + +KMOD= geom_stripe +SRCS= g_stripe.c + +.include <bsd.kmod.mk> |