diff options
| author | Daniel Eischen <deischen@FreeBSD.org> | 2007-05-17 04:54:35 +0000 |
|---|---|---|
| committer | Daniel Eischen <deischen@FreeBSD.org> | 2007-05-17 04:54:35 +0000 |
| commit | 683f4c0a4093f18022ae31ed10ff419fcbcfaa4f (patch) | |
| tree | 983bfcdbd19da220defa22060f802e67cfcdd9a8 | |
| parent | c1f4dd93557804e77fec0210b4db4a6ad0369a0a (diff) | |
Notes
| -rw-r--r-- | lib/libc_r/Makefile | 8 | ||||
| -rw-r--r-- | lib/libkse/Makefile | 8 | ||||
| -rw-r--r-- | lib/libpthread/Makefile | 8 | ||||
| -rw-r--r-- | lib/libthr/Makefile | 8 |
4 files changed, 16 insertions, 16 deletions
diff --git a/lib/libc_r/Makefile b/lib/libc_r/Makefile index f489f9f10592..1a5eb3b532b0 100644 --- a/lib/libc_r/Makefile +++ b/lib/libc_r/Makefile @@ -8,12 +8,12 @@ # (for system call stubs) to CFLAGS below. -DSYSLIBC_SCCS affects just the # system call stubs. -.if defined(DEFAULT_THREAD_LIB) && (${DEFAULT_THREAD_LIB} == "libc_r") -SHLIBDIR?= /lib -.endif - .include <bsd.own.mk> +.if ${DEFAULT_THREAD_LIB} == "libc_r" +SHLIBDIR= /lib +.endif + LIB=c_r SHLIB_MAJOR= 6 CFLAGS+=-DPTHREAD_KERNEL diff --git a/lib/libkse/Makefile b/lib/libkse/Makefile index dee03dba1ba8..a698115984fa 100644 --- a/lib/libkse/Makefile +++ b/lib/libkse/Makefile @@ -8,12 +8,12 @@ # (for system call stubs) to CFLAGS below. -DSYSLIBC_SCCS affects just the # system call stubs. -.if defined(DEFAULT_THREAD_LIB) && (${DEFAULT_THREAD_LIB} == "libpthread") -SHLIBDIR?= /lib -.endif - .include <bsd.own.mk> +.if ${DEFAULT_THREAD_LIB} == "libpthread" +SHLIBDIR= /lib +.endif + LIB=kse SHLIB_MAJOR= 2 CFLAGS+=-DPTHREAD_KERNEL diff --git a/lib/libpthread/Makefile b/lib/libpthread/Makefile index dee03dba1ba8..a698115984fa 100644 --- a/lib/libpthread/Makefile +++ b/lib/libpthread/Makefile @@ -8,12 +8,12 @@ # (for system call stubs) to CFLAGS below. -DSYSLIBC_SCCS affects just the # system call stubs. -.if defined(DEFAULT_THREAD_LIB) && (${DEFAULT_THREAD_LIB} == "libpthread") -SHLIBDIR?= /lib -.endif - .include <bsd.own.mk> +.if ${DEFAULT_THREAD_LIB} == "libpthread" +SHLIBDIR= /lib +.endif + LIB=kse SHLIB_MAJOR= 2 CFLAGS+=-DPTHREAD_KERNEL diff --git a/lib/libthr/Makefile b/lib/libthr/Makefile index d0a3dc86b39c..ca77af954cbc 100644 --- a/lib/libthr/Makefile +++ b/lib/libthr/Makefile @@ -8,12 +8,12 @@ # (for system call stubs) to CFLAGS below. -DSYSLIBC_SCCS affects just the # system call stubs. -.if !defined(DEFAULT_THREAD_LIB) || (${DEFAULT_THREAD_LIB} == "libthr") -SHLIBDIR?= /lib -.endif - .include <bsd.own.mk> +.if ${DEFAULT_THREAD_LIB} == "libthr" +SHLIBDIR= /lib +.endif + LIB=thr SHLIB_MAJOR= 2 CFLAGS+=-DPTHREAD_KERNEL |
