]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libthread_db/Makefile
Update to vendor revision 4016.
[FreeBSD/FreeBSD.git] / lib / libthread_db / Makefile
1 # $FreeBSD$
2
3 .PATH:  ${.CURDIR}/arch/${MACHINE_CPUARCH}
4
5 LIB=    thread_db
6 SHLIB_MAJOR= 3
7 SRCS=   thread_db.c
8 SRCS+=  libpthread_md.c
9 SRCS+=  libpthread_db.c
10 SRCS+=  libthr_db.c
11 INCS=   thread_db.h
12
13 CFLAGS+=-I. -I${.CURDIR}
14 SYM_MAPS+=${.CURDIR}/Symbol.map
15
16 SYMBOL_MAPS=${SYM_MAPS}
17 VERSION_DEF=${.CURDIR}/../libc/Versions.def
18
19 .if ${CC:T:Mclang} == "clang"
20 # Unfortunately, clang gives an incorrect warning about alignment in
21 # arch/i386/libpthread_md.c, so turn that off for now.
22 NO_WCAST_ALIGN=
23 .endif
24
25 .include <bsd.lib.mk>