]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - lib/libthread_db/Makefile
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.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 # Unfortunately, clang gives an incorrect warning about alignment in
20 # arch/i386/libpthread_md.c, so turn that off for now.
21 NO_WCAST_ALIGN.clang=
22
23 .include <bsd.lib.mk>