freebsd-nq/sys/modules/geom/geom_label/Makefile
Marcel Moolenaar e8c166e85a An all-or-nothing approach to labels isn't flexible enough. Embedded
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.
2014-04-06 02:44:37 +00:00

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>