Makefile revision 195767
1# $FreeBSD: head/lib/libkse/Makefile 195767 2009-07-19 17:25:24Z kensmith $
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
13.if ${DEFAULT_THREAD_LIB} == "libkse" || ${MK_LIBTHR} == "no"
14LIB=kse
15.if ${SHLIBDIR} == "/usr/lib"
16SHLIBDIR= /lib
17.endif
18.else
19SHLIB=kse
20.endif
21
22SHLIB_MAJOR= 4
23CFLAGS+=-DPTHREAD_KERNEL
24CFLAGS+=-I${.CURDIR}/../libc/include -I${.CURDIR}/thread \
25	-I${.CURDIR}/../../include
26CFLAGS+=-I${.CURDIR}/arch/${MACHINE_ARCH}/include
27CFLAGS+=-I${.CURDIR}/sys
28CFLAGS+=-I${.CURDIR}/../../libexec/rtld-elf
29CFLAGS+=-I${.CURDIR}/../../libexec/rtld-elf/${MACHINE_ARCH}
30CFLAGS+=-fno-builtin
31
32# Uncomment this if you want libkse to contain debug information for
33# thread locking.
34CFLAGS+=-D_LOCK_DEBUG
35WARNS?=3
36
37# Uncomment this if you want to build a 1:1 threading mode library
38# however it is no longer strictly conformed to POSIX
39# CFLAGS+=-DSYSTEM_SCOPE_ONLY
40
41# Enable extra internal consistancy checks.
42CFLAGS+=-D_PTHREADS_INVARIANTS -Wall
43
44VERSION_DEF=${.CURDIR}/../libc/Versions.def
45SYMBOL_MAPS=${.CURDIR}/kse.map
46
47PRECIOUSLIB=
48
49.include "${.CURDIR}/arch/${MACHINE_ARCH}/Makefile.inc"
50.include "${.CURDIR}/support/Makefile.inc"
51.include "${.CURDIR}/sys/Makefile.inc"
52.include "${.CURDIR}/thread/Makefile.inc"
53
54.if ${DEFAULT_THREAD_LIB} == "libkse" || ${MK_LIBTHR} == "no"
55.if ${MK_INSTALLLIB} != "no"
56SYMLINKS+=lib${LIB}.a ${LIBDIR}/libpthread.a
57.endif
58.if !defined(NO_PIC)
59SYMLINKS+=lib${LIB}.so ${LIBDIR}/libpthread.so
60.endif
61.if ${MK_PROFILE} != "no"
62SYMLINKS+=lib${LIB}_p.a ${LIBDIR}/libpthread_p.a
63.endif
64.endif
65
66.include <bsd.lib.mk>
67