Deleted Added
full compact
Makefile (136910) Makefile (137675)
1# @(#)Makefile 8.2 (Berkeley) 2/3/94
1# @(#)Makefile 8.2 (Berkeley) 2/3/94
2# $FreeBSD: head/lib/libc/Makefile 136910 2004-10-24 15:33:08Z ru $
2# $FreeBSD: head/lib/libc/Makefile 137675 2004-11-13 20:40:32Z bz $
3#
4# All library objects contain FreeBSD revision strings by default; they may be
5# excluded as a space-saving measure. To produce a library that does
6# not contain these strings, add -DSTRIP_FBSDID (see <sys/cdefs.h>) to CFLAGS
7# below. Note: there are no IDs for syscall stubs whose sources are generated.
8# To include legacy CSRG sccsid strings, add -DLIBC_SCCS and -DSYSLIBC_SCCS
9# to CFLAGS below. -DSYSLIBC_SCCS affects just the system call stubs.
10LIB=c

--- 44 unchanged lines hidden (view full) ---

55.include "${.CURDIR}/string/Makefile.inc"
56.include "${.CURDIR}/sys/Makefile.inc"
57.include "${.CURDIR}/rpc/Makefile.inc"
58.include "${.CURDIR}/uuid/Makefile.inc"
59.include "${.CURDIR}/xdr/Makefile.inc"
60.if ${MACHINE_ARCH} == "arm"
61.include "${.CURDIR}/softfloat/Makefile.inc"
62.endif
3#
4# All library objects contain FreeBSD revision strings by default; they may be
5# excluded as a space-saving measure. To produce a library that does
6# not contain these strings, add -DSTRIP_FBSDID (see <sys/cdefs.h>) to CFLAGS
7# below. Note: there are no IDs for syscall stubs whose sources are generated.
8# To include legacy CSRG sccsid strings, add -DLIBC_SCCS and -DSYSLIBC_SCCS
9# to CFLAGS below. -DSYSLIBC_SCCS affects just the system call stubs.
10LIB=c

--- 44 unchanged lines hidden (view full) ---

55.include "${.CURDIR}/string/Makefile.inc"
56.include "${.CURDIR}/sys/Makefile.inc"
57.include "${.CURDIR}/rpc/Makefile.inc"
58.include "${.CURDIR}/uuid/Makefile.inc"
59.include "${.CURDIR}/xdr/Makefile.inc"
60.if ${MACHINE_ARCH} == "arm"
61.include "${.CURDIR}/softfloat/Makefile.inc"
62.endif
63.if !defined(NO_YP_LIBC)
63.if !defined(NO_NIS)
64CFLAGS+= -DYP
65.include "${.CURDIR}/yp/Makefile.inc"
66.endif
67.if !defined(NO_HESIOD_LIBC)
68CFLAGS+= -DHESIOD
69.endif
70.if defined(NO_FP_LIBC)
71CFLAGS+= -DNO_FLOATING_POINT

--- 37 unchanged lines hidden ---
64CFLAGS+= -DYP
65.include "${.CURDIR}/yp/Makefile.inc"
66.endif
67.if !defined(NO_HESIOD_LIBC)
68CFLAGS+= -DHESIOD
69.endif
70.if defined(NO_FP_LIBC)
71CFLAGS+= -DNO_FLOATING_POINT

--- 37 unchanged lines hidden ---