e8c166e85a
systems need fine-grained control over what's in and what's out. That's ideal. For now, separate GPT labels from the rest and allow g_label to be built with just GPT labels. Obtained from: Juniper Networks, Inc.
21 lines
374 B
Makefile
21 lines
374 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../../geom/label
|
|
|
|
KMOD= geom_label
|
|
SRCS= g_label.c
|
|
SRCS+= g_label_disk_ident.c
|
|
SRCS+= g_label_ext2fs.c
|
|
SRCS+= g_label_gpt.c
|
|
SRCS+= g_label_iso9660.c
|
|
SRCS+= g_label_msdosfs.c
|
|
SRCS+= g_label_ntfs.c
|
|
SRCS+= g_label_reiserfs.c
|
|
SRCS+= g_label_ufs.c
|
|
SRCS+= opt_geom.h
|
|
|
|
opt_geom.h:
|
|
echo "#define GEOM_LABEL 1" > ${.TARGET}
|
|
|
|
.include <bsd.kmod.mk>
|