2004-07-15 03:36:35 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
|
2010-08-23 22:24:11 +00:00
|
|
|
.PATH: ${.CURDIR}/arch/${MACHINE_CPUARCH}
|
2004-07-15 03:36:35 +00:00
|
|
|
|
2016-02-04 21:16:35 +00:00
|
|
|
PACKAGE=lib${LIB}
|
2004-07-18 04:17:15 +00:00
|
|
|
LIB= thread_db
|
2007-05-21 02:49:08 +00:00
|
|
|
SHLIB_MAJOR= 3
|
2004-07-18 04:17:15 +00:00
|
|
|
SRCS= thread_db.c
|
2008-03-12 09:49:39 +00:00
|
|
|
SRCS+= libpthread_md.c
|
2008-03-23 09:38:11 +00:00
|
|
|
SRCS+= libpthread_db.c
|
2004-07-18 04:17:15 +00:00
|
|
|
SRCS+= libthr_db.c
|
|
|
|
INCS= thread_db.h
|
|
|
|
|
2004-08-16 03:30:16 +00:00
|
|
|
CFLAGS+=-I. -I${.CURDIR}
|
2006-03-29 14:08:45 +00:00
|
|
|
SYM_MAPS+=${.CURDIR}/Symbol.map
|
|
|
|
|
|
|
|
SYMBOL_MAPS=${SYM_MAPS}
|
2017-01-20 04:28:16 +00:00
|
|
|
VERSION_DEF=${SRCTOP}/lib/libc/Versions.def
|
2004-07-18 04:17:15 +00:00
|
|
|
|
2011-12-16 15:00:56 +00:00
|
|
|
# Unfortunately, clang gives an incorrect warning about alignment in
|
|
|
|
# arch/i386/libpthread_md.c, so turn that off for now.
|
2012-02-28 18:30:18 +00:00
|
|
|
NO_WCAST_ALIGN.clang=
|
2011-12-16 15:00:56 +00:00
|
|
|
|
2004-07-18 04:17:15 +00:00
|
|
|
.include <bsd.lib.mk>
|