Add GEOM module compilation shims.

This commit is contained in:
Poul-Henning Kamp 2003-05-31 18:36:41 +00:00
parent c16ad8ccc8
commit 5d9bef6473
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=115479
9 changed files with 68 additions and 0 deletions

View File

@ -35,6 +35,7 @@ SUBDIR= accf_data \
fdescfs \
firewire \
fxp \
geom \
gx \
hifn \
if_disc \

11
sys/modules/geom/Makefile Normal file
View File

@ -0,0 +1,11 @@
# $FreeBSD$
SUBDIR= geom_apple \
geom_bde \
geom_bsd \
geom_gpt \
geom_mbr \
geom_pc98 \
geom_sunlabel
.include <bsd.subdir.mk>

View File

@ -0,0 +1,8 @@
# $FreeBSD$
.PATH: ${.CURDIR}/../../../geom
KMOD= geom_apple
SRCS= geom_apple.c
.include <bsd.kmod.mk>

View File

@ -0,0 +1,8 @@
# $FreeBSD$
.PATH: ${.CURDIR}/../../../geom/bde
KMOD= geom_bde
SRCS= g_bde.c g_bde_crypt.c g_bde_lock.c g_bde_work.c
.include <bsd.kmod.mk>

View File

@ -0,0 +1,8 @@
# $FreeBSD$
.PATH: ${.CURDIR}/../../../geom
KMOD= geom_bsd
SRCS= geom_bsd.c
.include <bsd.kmod.mk>

View File

@ -0,0 +1,8 @@
# $FreeBSD$
.PATH: ${.CURDIR}/../../../geom
KMOD= geom_gpt
SRCS= geom_gpt.c
.include <bsd.kmod.mk>

View File

@ -0,0 +1,8 @@
# $FreeBSD$
.PATH: ${.CURDIR}/../../../geom
KMOD= geom_mbr
SRCS= geom_mbr.c
.include <bsd.kmod.mk>

View File

@ -0,0 +1,8 @@
# $FreeBSD$
.PATH: ${.CURDIR}/../../../geom
KMOD= geom_pc98
SRCS= geom_pc98.c geom_pc98_enc.c
.include <bsd.kmod.mk>

View File

@ -0,0 +1,8 @@
# $FreeBSD$
.PATH: ${.CURDIR}/../../../geom
KMOD= geom_sunlabel
SRCS= geom_sunlabel.c geom_sunlabel_enc.c
.include <bsd.kmod.mk>