John Baldwin 371f3da616 Remove the SYMVER build option.
This option was added as a transition aide when symbol versioning was
first added.  It was enabled by default in 2007 and is supported even
by the old GPLv2 binutils.  Trying to disable it currently fails to
build in libc and at this point it isn't worth fixing the build.

Reported by:	Michael Dexter
Reviewed by:	imp
Differential Revision:	https://reviews.freebsd.org/D24637
2020-04-30 22:08:40 +00:00

73 lines
1.9 KiB
Makefile

# $FreeBSD$
.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
# XXX This is a hack.
.if ${MK_CDDL} != "no"
CFLAGS+= -DLIBPROCSTAT_ZFS
OBJS+= zfs/zfs.o
SOBJS+= zfs/zfs.pico
POBJS+= zfs/zfs.po
SUBDIR= zfs
zfs/zfs.o: .PHONY
@cd ${.CURDIR}/zfs && ${MAKE} zfs.o
zfs/zfs.pico: .PHONY
@cd ${.CURDIR}/zfs && ${MAKE} zfs.pico
zfs/zfs.po: .PHONY
@cd ${.CURDIR}/zfs && ${MAKE} zfs.po
.endif
.include <bsd.lib.mk>