mirror of
https://git.freebsd.org/src.git
synced 2026-01-11 19:57:22 +00:00
Reviewed by: brooks Obtained from: CheriBSD Differential Revision: https://reviews.freebsd.org/D53791
32 lines
685 B
Makefile
32 lines
685 B
Makefile
.PATH: ${ZFSTOP}/lib/libtpool
|
|
.PATH: ${ZFSTOP}/include
|
|
|
|
PACKAGE= zfs
|
|
LIB_PACKAGE=
|
|
|
|
LIB= tpool
|
|
SHLIBDIR?= /lib
|
|
LIBADD= spl
|
|
|
|
INCS= thread_pool_impl.h
|
|
SRCS= thread_pool.c
|
|
|
|
WARNS?= 2
|
|
CSTD= c99
|
|
CFLAGS+= -DIN_BASE
|
|
CFLAGS+= -I${ZFSTOP}/include
|
|
CFLAGS+= -I${ZFSTOP}/lib/libspl/include/
|
|
CFLAGS+= -I${ZFSTOP}/lib/libspl/include/os/freebsd
|
|
CFLAGS+= -I${SRCTOP}/sys
|
|
CFLAGS+= -I${SRCTOP}/cddl/compat/opensolaris/include
|
|
CFLAGS+= -I${ZFSTOP}/module/icp/include
|
|
CFLAGS+= -include ${ZFSTOP}/include/os/freebsd/spl/sys/ccompile.h
|
|
CFLAGS+= -DHAVE_ISSETUGID
|
|
CFLAGS+= -include ${SRCTOP}/sys/modules/zfs/zfs_config.h
|
|
|
|
.include <src.opts.mk>
|
|
|
|
HAS_TESTS=
|
|
SUBDIR.${MK_TESTS}+= tests
|
|
|
|
.include <bsd.lib.mk>
|