]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libthr/Makefile
Bump library versions in preparation for 7.0.
[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 .include <bsd.own.mk>
12
13 .if ${DEFAULT_THREAD_LIB} == "libthr" && ${SHLIBDIR} == "/usr/lib"
14 SHLIBDIR= /lib
15 .endif
16
17 LIB=thr
18 SHLIB_MAJOR= 3
19 CFLAGS+=-DPTHREAD_KERNEL
20 CFLAGS+=-I${.CURDIR}/../libc/include -I${.CURDIR}/thread \
21         -I${.CURDIR}/../../include
22 CFLAGS+=-I${.CURDIR}/arch/${MACHINE_ARCH}/include
23 CFLAGS+=-I${.CURDIR}/sys
24 CFLAGS+=-I${.CURDIR}/../../libexec/rtld-elf
25 CFLAGS+=-I${.CURDIR}/../../libexec/rtld-elf/${MACHINE_ARCH}
26 CFLAGS+=-I${.CURDIR}/../libthread_db
27 CFLAGS+=-Winline
28
29 # CFLAGS+=-DSYSTEM_SCOPE_ONLY
30
31 VERSION_MAP=${.CURDIR}/pthread.map
32
33 MAN=    libthr.3
34
35 # enable extra internal consistancy checks
36 CFLAGS+=-D_PTHREADS_INVARIANTS -Wall
37 #CFLAGS+=-g
38
39 PRECIOUSLIB=
40
41 .include "${.CURDIR}/arch/${MACHINE_ARCH}/Makefile.inc"
42 .include "${.CURDIR}/sys/Makefile.inc"
43 .include "${.CURDIR}/thread/Makefile.inc"
44
45 .if ${DEFAULT_THREAD_LIB} == "libthr"
46 SYMLINKS+=lib${LIB}.a ${LIBDIR}/libpthread.a
47 .if !defined(NO_PIC)
48 SYMLINKS+=lib${LIB}.so ${LIBDIR}/libpthread.so
49 .endif
50 .if ${MK_PROFILE} != "no"
51 SYMLINKS+=lib${LIB}_p.a ${LIBDIR}/libpthread_p.a
52 .endif
53 .endif
54
55 .include <bsd.lib.mk>