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-11-29 21:49:08 +00:00
|
|
|
SHLIB=kse
|
2009-07-19 17:25:24 +00:00
|
|
|
SHLIB_MAJOR= 4
|
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
|
2010-06-13 01:27:29 +00:00
|
|
|
CFLAGS+=-I${.CURDIR}/arch/${MACHINE_CPUARCH}/include
|
2003-04-18 05:04:16 +00:00
|
|
|
CFLAGS+=-I${.CURDIR}/sys
|
2003-05-30 00:21:52 +00:00
|
|
|
CFLAGS+=-I${.CURDIR}/../../libexec/rtld-elf
|
2010-06-13 01:27:29 +00:00
|
|
|
CFLAGS+=-I${.CURDIR}/../../libexec/rtld-elf/${MACHINE_CPUARCH}
|
2003-05-30 00:21:52 +00:00
|
|
|
CFLAGS+=-fno-builtin
|
1998-06-09 23:25:13 +00:00
|
|
|
|
2007-10-09 13:42:34 +00:00
|
|
|
# Uncomment this if you want libkse 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
|
2007-11-30 17:20:29 +00:00
|
|
|
WARNS?=3
|
2003-04-21 04:02:56 +00:00
|
|
|
|
2003-07-17 23:02:30 +00:00
|
|
|
# Uncomment this if you want to build a 1:1 threading mode library
|
|
|
|
# however it is no longer strictly conformed to POSIX
|
|
|
|
# CFLAGS+=-DSYSTEM_SCOPE_ONLY
|
|
|
|
|
2006-03-16 15:17:47 +00:00
|
|
|
# Enable extra internal consistancy checks.
|
2003-04-18 05:04:16 +00:00
|
|
|
CFLAGS+=-D_PTHREADS_INVARIANTS -Wall
|
2006-03-16 15:17:47 +00:00
|
|
|
|
2008-02-06 20:30:48 +00:00
|
|
|
VERSION_DEF=${.CURDIR}/../libc/Versions.def
|
2008-02-06 20:33:59 +00:00
|
|
|
SYMBOL_MAPS=${.CURDIR}/kse.map
|
2006-03-16 15:17:47 +00:00
|
|
|
|
2004-10-24 15:33:08 +00:00
|
|
|
PRECIOUSLIB=
|
1996-01-22 00:23:58 +00:00
|
|
|
|
2010-06-13 01:27:29 +00:00
|
|
|
.path: ${.CURDIR}/arch/${MACHINE_CPUARCH}/${MACHINE_CPUARCH}
|
|
|
|
|
|
|
|
.include "${.CURDIR}/arch/${MACHINE_CPUARCH}/Makefile.inc"
|
2003-05-30 00:21:52 +00:00
|
|
|
.include "${.CURDIR}/support/Makefile.inc"
|
2003-06-23 04:28:31 +00:00
|
|
|
.include "${.CURDIR}/sys/Makefile.inc"
|
|
|
|
.include "${.CURDIR}/thread/Makefile.inc"
|
1996-01-22 00:23:58 +00:00
|
|
|
|
|
|
|
.include <bsd.lib.mk>
|