193d9e768b
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
260 B
Makefile
20 lines
260 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/sys/kern
|
|
|
|
KMOD= libmbpool
|
|
SRCS= subr_mbpool.c
|
|
|
|
EXPORT_SYMS= mbp_create \
|
|
mbp_destroy \
|
|
mbp_alloc \
|
|
mbp_free \
|
|
mbp_ext_free \
|
|
mbp_card_free \
|
|
mbp_count \
|
|
mbp_get \
|
|
mbp_get_keep \
|
|
mbp_sync
|
|
|
|
.include <bsd.kmod.mk>
|