blob: 6946dc8c4d3e83f86b0557b6a8146794fee6f9e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# $OpenBSD: Makefile,v 1.23 2005/11/24 20:49:20 deraadt Exp $
#
# The pthread library is formed from the FreeBSD uthread sources of
# libc_r, and exploits weak symbols in libc.
#
SRCDIR= ${.CURDIR}
LIBCSRCDIR= ${.CURDIR}/../libc
LIB= pthread
WANTLINT=
LINTFLAGS= -z
CFLAGS+= -DPTHREAD_KERNEL -D_POSIX_THREADS -D_THREAD_SAFE -Wall
CFLAGS+= -Wpointer-arith -Wwrite-strings -Wstrict-prototypes
CFLAGS+= -Wmissing-prototypes -Wsign-compare # -Werror
CFLAGS+= -I${SRCDIR}/uthread
CFLAGS+= -I${SRCDIR}/include
CFLAGS+= -I${LIBCSRCDIR}/include
AINC+= -I${SRCDIR}/uthread
# Uncomment this if you want libpthread to contain debug information for
# thread locking.
CFLAGS+= -D_LOCK_DEBUG
#DEBUG= -g
# enable extra internal consistency checks
CFLAGS+= -D_PTHREADS_INVARIANTS
.include "${SRCDIR}/include/Makefile.inc"
.include "${SRCDIR}/sys/Makefile.inc"
.include "${SRCDIR}/thread/Makefile.inc"
.include "${SRCDIR}/uthread/Makefile.inc"
.include "${SRCDIR}/man/Makefile.inc"
.include <bsd.lib.mk>
|