diff options
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/libc/Makefile b/lib/libc/Makefile index 2d2636f..49027aa 100644 --- a/lib/libc/Makefile +++ b/lib/libc/Makefile @@ -1,5 +1,5 @@ # @(#)Makefile 8.2 (Berkeley) 2/3/94 -# $Id: Makefile,v 1.19 1997/05/23 08:23:53 asami Exp $ +# $Id: Makefile,v 1.20 1998/02/12 01:44:53 nate Exp $ # # All library objects contain rcsid strings by default; they may be # excluded as a space-saving measure. To produce a library that does @@ -9,13 +9,18 @@ LIB=c SHLIB_MAJOR= 3 SHLIB_MINOR= 1 -CFLAGS+=-DLIBC_RCS -DSYSLIBC_RCS +CFLAGS+=-DLIBC_RCS -DSYSLIBC_RCS -I${.CURDIR}/include AINC= -I${.CURDIR}/${MACHINE} CLEANFILES+=tags INSTALL_PIC_ARCHIVE= yes PRECIOUSLIB= yes # +# Don't bother hiding any syscalls (like libc_r does). +# +HIDDEN_SYSCALLS= + +# # Include make rules that are shared with libc_r. # .include "${.CURDIR}/Makefile.inc" |