]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libthr/Makefile
Merge llvm trunk r238337 from ^/vendor/llvm/dist, resolve conflicts, and
[FreeBSD/FreeBSD.git] / lib / libthr / Makefile
1 # $FreeBSD$
2 #
3 # All library objects contain FreeBSD revision strings by default; they may be
4 # excluded as a space-saving measure.  To produce a library that does
5 # not contain these strings, add -DSTRIP_FBSDID (see <sys/cdefs.h>) to CFLAGS
6 # below.  Note, there are no IDs for syscall stubs whose sources are generated.
7 # To included legacy CSRG sccsid strings, add -DLIBC_SCCS and -DSYSLIBC_SCCS
8 # (for system call stubs) to CFLAGS below.  -DSYSLIBC_SCCS affects just the
9 # system call stubs.
10
11 SHLIBDIR?= /lib
12
13 .include <src.opts.mk>
14 MK_SSP= no
15
16 LIB=thr
17 SHLIB_MAJOR= 3
18 WARNS?= 3
19 CFLAGS+=-DPTHREAD_KERNEL
20 CFLAGS+=-I${.CURDIR}/../libc/include -I${.CURDIR}/thread \
21         -I${.CURDIR}/../../include
22 CFLAGS+=-I${.CURDIR}/arch/${MACHINE_CPUARCH}/include
23 CFLAGS+=-I${.CURDIR}/sys
24 CFLAGS+=-I${.CURDIR}/../../libexec/rtld-elf
25 CFLAGS+=-I${.CURDIR}/../../libexec/rtld-elf/${MACHINE_CPUARCH}
26 CFLAGS+=-I${.CURDIR}/../libthread_db
27 CFLAGS+=-Winline
28
29 .ifndef NO_THREAD_UNWIND_STACK
30 CFLAGS+=-fexceptions
31 CFLAGS+=-D_PTHREAD_FORCED_UNWIND
32 .endif
33
34 LDFLAGS+=-Wl,-znodelete
35
36 VERSION_DEF=${.CURDIR}/../libc/Versions.def
37 SYMBOL_MAPS=${.CURDIR}/pthread.map
38
39 MAN=    libthr.3
40
41 # enable extra internal consistancy checks
42 CFLAGS+=-D_PTHREADS_INVARIANTS
43
44 PRECIOUSLIB=
45
46 .PATH: ${.CURDIR}/arch/${MACHINE_CPUARCH}/${MACHINE_CPUARCH}
47
48 .if exists(${.CURDIR}/arch/${MACHINE_CPUARCH}/Makefile.inc)
49 .include "${.CURDIR}/arch/${MACHINE_CPUARCH}/Makefile.inc"
50 .endif
51 .include "${.CURDIR}/sys/Makefile.inc"
52 .include "${.CURDIR}/thread/Makefile.inc"
53
54 .if ${MK_INSTALLLIB} != "no"
55 SYMLINKS+=lib${LIB}.a ${LIBDIR}/libpthread.a
56 .endif
57 .if !defined(NO_PIC)
58 SYMLINKS+=lib${LIB}.so ${LIBDIR}/libpthread.so
59 .endif
60 .if ${MK_PROFILE} != "no"
61 SYMLINKS+=lib${LIB}_p.a ${LIBDIR}/libpthread_p.a
62 .endif
63
64 .if ${MK_TESTS} != "no"
65 SUBDIR+=        tests
66 .endif
67
68 .include <bsd.lib.mk>