diff options
author | David Leonard <d@cvs.openbsd.org> | 1999-11-28 11:32:56 +0000 |
---|---|---|
committer | David Leonard <d@cvs.openbsd.org> | 1999-11-28 11:32:56 +0000 |
commit | 186c4f970e62b612e456e88314ca3fb6b2aeafe1 (patch) | |
tree | 0de018c02a2cc9127daf481028ec1e9ddf5595a8 | |
parent | 4d2e54fd4db61e44366f26738c79f1f192f607fe (diff) |
more freebsd sync stuff
-rw-r--r-- | lib/libc_r/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/libc_r/Makefile b/lib/libc_r/Makefile index 01e699cbff9..814a49ed975 100644 --- a/lib/libc_r/Makefile +++ b/lib/libc_r/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.8 1999/05/26 03:37:32 d Exp $ +# $OpenBSD: Makefile,v 1.9 1999/11/28 11:32:55 d Exp $ # # All library objects contain sccsid strings by default; they may be # excluded as a space-saving measure. To produce a library that does @@ -15,9 +15,11 @@ .include <bsd.own.mk> +#DEBUG= -ggdb -Wall LIB= c_r LINTFLAGS= -z CFLAGS+= -DPTHREAD_KERNEL -D_POSIX_THREADS -D_THREAD_SAFE +CFLAGS+= -D_PTHREADS_INVARIANTS CFLAGS+= -DNOPOLL -I${.CURDIR}/uthread CFLAGS+= -I${.CURDIR}/include @@ -40,6 +42,8 @@ HIDDEN_SYSCALLS= accept.o bind.o close.o connect.o dup.o dup2.o \ socket.o socketpair.o wait4.o write.o writev.o \ _exit.o +.include "${.CURDIR}/uthread/Makefile.inc" + LIBCSRCDIR = ${.CURDIR}/../libc .include "${LIBCSRCDIR}/Makefile.inc" @@ -48,7 +52,6 @@ MAN= MLINKS= .include "${.CURDIR}/man/Makefile.inc" -.include "${.CURDIR}/uthread/Makefile.inc" .include "${.CURDIR}/sys/Makefile.inc" AINC+= -I${.CURDIR}/uthread |