Deleted Added
full compact
Makefile (169524) Makefile (169648)
1# $FreeBSD: head/lib/libkse/Makefile 169524 2007-05-13 14:12:40Z deischen $
1# $FreeBSD: head/lib/libkse/Makefile 169648 2007-05-17 04:54:35Z deischen $
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
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.if defined(DEFAULT_THREAD_LIB) && (${DEFAULT_THREAD_LIB} == "libpthread")
12SHLIBDIR?= /lib
13.endif
14
15.include <bsd.own.mk>
16
11.include <bsd.own.mk>
12
13.if ${DEFAULT_THREAD_LIB} == "libpthread"
14SHLIBDIR= /lib
15.endif
16
17LIB=kse
18SHLIB_MAJOR= 2
19CFLAGS+=-DPTHREAD_KERNEL
20CFLAGS+=-I${.CURDIR}/../libc/include -I${.CURDIR}/thread \
21 -I${.CURDIR}/../../include
22CFLAGS+=-I${.CURDIR}/arch/${MACHINE_ARCH}/include
23CFLAGS+=-I${.CURDIR}/sys
24CFLAGS+=-I${.CURDIR}/../../libexec/rtld-elf

--- 35 unchanged lines hidden ---
17LIB=kse
18SHLIB_MAJOR= 2
19CFLAGS+=-DPTHREAD_KERNEL
20CFLAGS+=-I${.CURDIR}/../libc/include -I${.CURDIR}/thread \
21 -I${.CURDIR}/../../include
22CFLAGS+=-I${.CURDIR}/arch/${MACHINE_ARCH}/include
23CFLAGS+=-I${.CURDIR}/sys
24CFLAGS+=-I${.CURDIR}/../../libexec/rtld-elf

--- 35 unchanged lines hidden ---