diff options
author | obrien <obrien@FreeBSD.org> | 2002-03-23 20:08:00 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2002-03-23 20:08:00 +0000 |
commit | 389ea5daa53f333f63c5b146d28a10a1f3342b4a (patch) | |
tree | 420f3c38dae053a31da29248dab6799b4492966f /lib/libc | |
parent | 70f12c6e8c4e7113960e5c7bd29d049d1f5f0565 (diff) | |
download | FreeBSD-src-389ea5daa53f333f63c5b146d28a10a1f3342b4a.zip FreeBSD-src-389ea5daa53f333f63c5b146d28a10a1f3342b4a.tar.gz |
Update comments. We uniformly use __FBSDID in libc now.
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/libc/Makefile b/lib/libc/Makefile index 9ac83d9..feab901 100644 --- a/lib/libc/Makefile +++ b/lib/libc/Makefile @@ -1,16 +1,16 @@ # @(#)Makefile 8.2 (Berkeley) 2/3/94 # $FreeBSD$ # -# All library objects contain rcsid strings by default; they may be +# All library objects contain FreeBSD revision strings by default; they may be # excluded as a space-saving measure. To produce a library that does -# not contain these strings, delete -DLIBC_RCS and -DSYSLIBC_RCS -# from CFLAGS below. To remove these strings from just the system call -# stubs, remove just -DSYSLIBC_RCS from CFLAGS. +# not contain these strings, add -DSTRIP_FBSDID to CFLAGS below. +# To included legacy CSRG sccsid strings, add -DLIBC_SCCS and -DSYSLIBC_SCCS +# (for system call stubs) to CFLAGS below. LIB=c SHLIB_MAJOR= 5 SHLIB_MINOR= 0 -CFLAGS+=-DLIBC_RCS -DSYSLIBC_RCS -I${.CURDIR}/include -I${.CURDIR}/../../include CFLAGS+=-DLIBC_MAJOR=${SHLIB_MAJOR} +CFLAGS+=-I${.CURDIR}/include -I${.CURDIR}/../../include AINC= -I${.CURDIR}/${MACHINE_ARCH} CLEANFILES+=tags INSTALL_PIC_ARCHIVE= yes |