0b862b0399
This is a change in preparation for stopping to use lorder.sh (D26044) and instead assume that we have a linker newer than ~1990. Without lorder.sh duplicates end up being passed to the linker when building .so files and this can result in duplicate symbol definition errors. There is one minor change: libcompiler_rt.a will no longer provide gcc_personality_v0 and instead we now only have it in libgcc_eh.a/libgcc_s.so. This matches GCC's behaviour. Reviewed By: emaste, cem Differential Revision: https://reviews.freebsd.org/D26042
72 lines
1.9 KiB
Makefile
72 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
|
|
SRCS+= zfs.c
|
|
OBJS+= zfs/zfs_defs.o
|
|
SUBDIR= zfs
|
|
zfs/zfs_defs.o: .PHONY
|
|
@cd ${.CURDIR}/zfs && ${MAKE} zfs_defs.o
|
|
zfs/zfs_defs.pico: .PHONY
|
|
@cd ${.CURDIR}/zfs && ${MAKE} zfs_defs.pico
|
|
zfs/zfs_defs.po: .PHONY
|
|
@cd ${.CURDIR}/zfs && ${MAKE} zfs_defs.po
|
|
.endif
|
|
|
|
.include <bsd.lib.mk>
|