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.
|
2003-04-23 21:48:29 +00:00
|
|
|
LIB=pthread
|
2002-12-08 22:43:31 +00:00
|
|
|
SHLIB_MAJOR= 1
|
2003-04-18 05:04:16 +00:00
|
|
|
CFLAGS+=-DPTHREAD_KERNEL
|
2002-09-16 08:45:36 +00:00
|
|
|
CFLAGS+=-I${.CURDIR}/../libc/include -I${.CURDIR}/thread \
|
2002-04-15 20:22:28 +00:00
|
|
|
-I${.CURDIR}/../../include
|
2003-04-18 05:04:16 +00:00
|
|
|
CFLAGS+=-I${.CURDIR}/arch/${MACHINE_ARCH}/include
|
|
|
|
CFLAGS+=-I${.CURDIR}/sys
|
1998-06-09 23:25:13 +00:00
|
|
|
|
2002-09-16 19:29:34 +00:00
|
|
|
# Uncomment this if you want libpthread to contain debug information for
|
1998-06-09 23:25:13 +00:00
|
|
|
# thread locking.
|
2003-04-21 04:02:56 +00:00
|
|
|
CFLAGS+=-D_LOCK_DEBUG
|
|
|
|
#CFLAGS+= -g
|
|
|
|
|
2003-04-23 21:48:29 +00:00
|
|
|
#.if ${MACHINE_ARCH} == "i386"
|
|
|
|
#CFLAGS+=-DGS_HACK
|
|
|
|
#.endif
|
1999-07-05 00:35:19 +00:00
|
|
|
|
1999-11-28 05:38:13 +00:00
|
|
|
# enable extra internal consistancy checks
|
2003-04-18 05:04:16 +00:00
|
|
|
CFLAGS+=-D_PTHREADS_INVARIANTS -Wall
|
1999-11-28 05:38:13 +00:00
|
|
|
|
2002-09-16 08:45:36 +00:00
|
|
|
AINC= -I${.CURDIR}/../libc/${MACHINE_ARCH} -I${.CURDIR}/thread
|
1996-01-22 00:23:58 +00:00
|
|
|
PRECIOUSLIB= yes
|
|
|
|
|
2003-04-18 07:09:43 +00:00
|
|
|
#.include "${.CURDIR}/man/Makefile.inc"
|
2002-09-16 08:45:36 +00:00
|
|
|
.include "${.CURDIR}/thread/Makefile.inc"
|
1997-05-03 03:57:21 +00:00
|
|
|
.include "${.CURDIR}/sys/Makefile.inc"
|
1996-01-22 00:23:58 +00:00
|
|
|
|
|
|
|
.include <bsd.lib.mk>
|