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 11SHLIBDIR?= /lib 12 13.include <bsd.own.mk> 14MK_SSP= no 15 16LIB=thr 17SHLIB_MAJOR= 3 18WARNS?= 3 19CFLAGS+=-DPTHREAD_KERNEL 20CFLAGS+=-I${.CURDIR}/../libc/include -I${.CURDIR}/thread \ 21 -I${.CURDIR}/../../include 22CFLAGS+=-I${.CURDIR}/arch/${MACHINE_ARCH}/include 23CFLAGS+=-I${.CURDIR}/sys 24CFLAGS+=-I${.CURDIR}/../../libexec/rtld-elf 25CFLAGS+=-I${.CURDIR}/../../libexec/rtld-elf/${MACHINE_ARCH} 26CFLAGS+=-I${.CURDIR}/../libthread_db 27CFLAGS+=-Winline 28LDFLAGS+=-Wl,-znodelete 29 30VERSION_DEF=${.CURDIR}/../libc/Versions.def 31SYMBOL_MAPS=${.CURDIR}/pthread.map 32 33MAN= libthr.3 34 35# enable extra internal consistancy checks 36CFLAGS+=-D_PTHREADS_INVARIANTS 37#CFLAGS+=-g 38 39PRECIOUSLIB= 40 41.include "${.CURDIR}/arch/${MACHINE_ARCH}/Makefile.inc" 42.include "${.CURDIR}/sys/Makefile.inc" 43.include "${.CURDIR}/thread/Makefile.inc" 44 45.if ${MK_INSTALLLIB} != "no" 46SYMLINKS+=lib${LIB}.a ${LIBDIR}/libpthread.a 47.endif 48.if !defined(NO_PIC) 49SYMLINKS+=lib${LIB}.so ${LIBDIR}/libpthread.so 50.endif 51.if ${MK_PROFILE} != "no" 52SYMLINKS+=lib${LIB}_p.a ${LIBDIR}/libpthread_p.a 53.endif 54 55.if !defined(WITHOUT_SYSCALL_COMPAT) 56CFLAGS+=-DSYSCALL_COMPAT 57.endif 58 59.include <bsd.lib.mk> 60