xref: /freebsd/lib/libthr/Makefile (revision 649814dd6c9dcb92a966d4eb950064a6644c1813)
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
13LIB=thr
14SHLIB_MAJOR= 2
15CFLAGS+=-DPTHREAD_KERNEL
16CFLAGS+=-I${.CURDIR}/../libc/include -I${.CURDIR}/thread \
17	-I${.CURDIR}/../../include
18CFLAGS+=-I${.CURDIR}/arch/${MACHINE_ARCH}/include
19CFLAGS+=-I${.CURDIR}/sys
20CFLAGS+=-I${.CURDIR}/../../libexec/rtld-elf
21CFLAGS+=-I${.CURDIR}/../../libexec/rtld-elf/${MACHINE_ARCH}
22CFLAGS+=-I${.CURDIR}/../libthread_db
23CFLAGS+=-Winline
24
25# CFLAGS+=-DSYSTEM_SCOPE_ONLY
26
27LDFLAGS= -Wl,--version-script=${.CURDIR}/pthread.map
28
29MAN=	libthr.3
30
31# enable extra internal consistancy checks
32CFLAGS+=-D_PTHREADS_INVARIANTS -Wall
33#CFLAGS+=-g
34
35PRECIOUSLIB=
36
37.include "${.CURDIR}/arch/${MACHINE_ARCH}/Makefile.inc"
38.include "${.CURDIR}/sys/Makefile.inc"
39.include "${.CURDIR}/thread/Makefile.inc"
40
41.if ${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "sparc64"
42SYMLINKS+=lib${LIB}.a ${LIBDIR}/libpthread.a
43.if !defined(NO_PIC)
44SYMLINKS+=lib${LIB}.so ${SHLIBDIR}/libpthread.so
45.endif
46.if ${MK_PROFILE} != "no"
47SYMLINKS+=lib${LIB}_p.a ${LIBDIR}/libpthread_p.a
48.endif
49.endif
50
51.include <bsd.lib.mk>
52