mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
This simplifies make output/logic Tested with: `cd sys/modules; make ALL_MODULES=` on amd64 MFC after: 1 month Sponsored by: Dell EMC Isilon
20 lines
368 B
Makefile
20 lines
368 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/sys/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>
|