opnsense-src/lib/libprocstat/Makefile
Jessica Clarke 66cc116bb2 libprocstat: Drop zfs_defs.c hack, including its _KERNEL define
Now that we have a _WANT_ZNODE we can use that instead of defining
_KERNEL, and we're able to move the code back into zfs.c using a real
znode_t pointer.

Whilst here, tidy the includes.

Reviewed by:	imp, kib, markj
Differential Revision:	https://reviews.freebsd.org/D50721
2025-06-16 22:34:34 +01:00

74 lines
2.2 KiB
Makefile

.include <src.opts.mk>
LIB= procstat
SRCS= cd9660.c \
common_kvm.c \
core.c \
libprocstat.c \
libprocstat_compat.c \
msdosfs.c \
smbfs.c \
udf.c
VERSION_DEF= ${LIBCSRCDIR}/Versions.def
SYMBOL_MAPS= ${.CURDIR}/Symbol.map
INCS= libprocstat.h
CFLAGS+= -I. -I${.CURDIR} -D_KVM_VNODE
SHLIB_MAJOR= 1
LIBADD= elf kvm util
MAN= libprocstat.3
MLINKS+=libprocstat.3 procstat_close.3 \
libprocstat.3 procstat_freeargv.3 \
libprocstat.3 procstat_freeauxv.3 \
libprocstat.3 procstat_freeenvv.3 \
libprocstat.3 procstat_freefiles.3 \
libprocstat.3 procstat_freegroups.3 \
libprocstat.3 procstat_freekstack.3 \
libprocstat.3 procstat_freeprocs.3 \
libprocstat.3 procstat_freevmmap.3 \
libprocstat.3 procstat_get_pipe_info.3 \
libprocstat.3 procstat_get_pts_info.3 \
libprocstat.3 procstat_get_sem_info.3 \
libprocstat.3 procstat_get_shm_info.3 \
libprocstat.3 procstat_get_socket_info.3 \
libprocstat.3 procstat_get_vnode_info.3 \
libprocstat.3 procstat_getargv.3 \
libprocstat.3 procstat_getauxv.3 \
libprocstat.3 procstat_getenvv.3 \
libprocstat.3 procstat_getfiles.3 \
libprocstat.3 procstat_getgroups.3 \
libprocstat.3 procstat_getkstack.3 \
libprocstat.3 procstat_getosrel.3 \
libprocstat.3 procstat_getpathname.3 \
libprocstat.3 procstat_getprocs.3 \
libprocstat.3 procstat_getrlimit.3 \
libprocstat.3 procstat_getumask.3 \
libprocstat.3 procstat_getvmmap.3 \
libprocstat.3 procstat_open_core.3 \
libprocstat.3 procstat_open_kvm.3 \
libprocstat.3 procstat_open_sysctl.3
.if ${MK_CDDL} != "no"
CFLAGS+= -DLIBPROCSTAT_ZFS
SRCS+= zfs.c
ZFSTOP= ${SRCTOP}/sys/contrib/openzfs
CFLAGS.zfs.c+= -DIN_BASE
CFLAGS.zfs.c+= -DHAVE_ISSETUGID
CFLAGS.zfs.c+= -DZFS_DEBUG
CFLAGS.zfs.c+= -I${ZFSTOP}/include
CFLAGS.zfs.c+= -I${ZFSTOP}/lib/libspl/include
CFLAGS.zfs.c+= -I${ZFSTOP}/lib/libspl/include/os/freebsd
CFLAGS.zfs.c+= -I${ZFSTOP}/include/os/freebsd/zfs
CFLAGS.zfs.c+= -I${ZFSTOP}/module/icp/include
CFLAGS.zfs.c+= -I${SRCTOP}/sys
CFLAGS.zfs.c+= -I${SRCTOP}/sys/modules/zfs
CFLAGS.zfs.c+= -include ${ZFSTOP}/include/os/freebsd/spl/sys/ccompile.h
CFLAGS.zfs.c+= -include ${SRCTOP}/sys/modules/zfs/zfs_config.h
CFLAGS.zfs.c+= -Wno-cast-qual
.endif
.include <bsd.lib.mk>