1999-08-28 00:22:10 +00:00
|
|
|
# $FreeBSD$
|
1996-01-22 00:23:58 +00:00
|
|
|
#
|
2002-04-15 20:22:28 +00:00
|
|
|
# All library objects contain FreeBSD revision strings by default; they may be
|
1996-01-22 00:23:58 +00:00
|
|
|
# excluded as a space-saving measure. To produce a library that does
|
2002-04-15 20:22:28 +00:00
|
|
|
# not contain these strings, add -DSTRIP_FBSDID (see <sys/cdefs.h>) to CFLAGS
|
|
|
|
# below. Note, there are no IDs for syscall stubs whose sources are generated.
|
|
|
|
# To included legacy CSRG sccsid strings, add -DLIBC_SCCS and -DSYSLIBC_SCCS
|
|
|
|
# (for system call stubs) to CFLAGS below. -DSYSLIBC_SCCS affects just the
|
|
|
|
# system call stubs.
|
2007-05-13 14:12:40 +00:00
|
|
|
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
|
2007-05-17 04:54:35 +00:00
|
|
|
.if ${DEFAULT_THREAD_LIB} == "libc_r"
|
|
|
|
SHLIBDIR= /lib
|
|
|
|
.endif
|
|
|
|
|
1996-01-22 00:23:58 +00:00
|
|
|
LIB=c_r
|
2005-07-22 17:19:05 +00:00
|
|
|
SHLIB_MAJOR= 6
|
2003-07-13 05:35:30 +00:00
|
|
|
CFLAGS+=-DPTHREAD_KERNEL
|
2002-04-15 20:22:28 +00:00
|
|
|
CFLAGS+=-I${.CURDIR}/../libc/include -I${.CURDIR}/uthread \
|
2003-07-02 13:27:54 +00:00
|
|
|
-I${.CURDIR}/../../include
|
1998-06-09 23:25:13 +00:00
|
|
|
|
|
|
|
# Uncomment this if you want libc_r to contain debug information for
|
|
|
|
# thread locking.
|
1999-07-05 00:35:19 +00:00
|
|
|
CFLAGS+=-D_LOCK_DEBUG
|
|
|
|
|
1999-11-28 05:38:13 +00:00
|
|
|
# enable extra internal consistancy checks
|
2000-10-13 22:19:50 +00:00
|
|
|
CFLAGS+=-D_PTHREADS_INVARIANTS
|
1999-11-28 05:38:13 +00:00
|
|
|
|
2004-10-24 15:33:08 +00:00
|
|
|
PRECIOUSLIB=
|
1996-01-22 00:23:58 +00:00
|
|
|
|
|
|
|
.include "${.CURDIR}/uthread/Makefile.inc"
|
1997-05-03 03:57:21 +00:00
|
|
|
.include "${.CURDIR}/sys/Makefile.inc"
|
1996-01-22 00:23:58 +00:00
|
|
|
|
2007-05-13 14:12:40 +00:00
|
|
|
.if ${DEFAULT_THREAD_LIB} == "libc_r"
|
2004-01-30 12:13:17 +00:00
|
|
|
SYMLINKS+=lib${LIB}.a ${LIBDIR}/libpthread.a
|
2004-12-21 09:33:47 +00:00
|
|
|
.if !defined(NO_PIC)
|
2006-04-12 19:51:14 +00:00
|
|
|
SYMLINKS+=lib${LIB}.so ${LIBDIR}/libpthread.so
|
2004-01-30 12:13:17 +00:00
|
|
|
.endif
|
2006-03-18 21:37:05 +00:00
|
|
|
.if ${MK_PROFILE} != "no"
|
2004-01-31 17:00:04 +00:00
|
|
|
SYMLINKS+=lib${LIB}_p.a ${LIBDIR}/libpthread_p.a
|
2004-01-30 12:13:17 +00:00
|
|
|
.endif
|
|
|
|
.endif
|
|
|
|
|
1996-01-22 00:23:58 +00:00
|
|
|
.include <bsd.lib.mk>
|