Deleted Added
full compact
Makefile (128820) Makefile (129202)
1# @(#)Makefile 8.2 (Berkeley) 2/3/94
1# @(#)Makefile 8.2 (Berkeley) 2/3/94
2# $FreeBSD: head/lib/libc/Makefile 128820 2004-05-02 10:55:07Z das $
2# $FreeBSD: head/lib/libc/Makefile 129202 2004-05-14 12:04:31Z cognet $
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

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

52.include "${.CURDIR}/stdio/Makefile.inc"
53.include "${.CURDIR}/stdlib/Makefile.inc"
54.include "${.CURDIR}/stdtime/Makefile.inc"
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"
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

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

52.include "${.CURDIR}/stdio/Makefile.inc"
53.include "${.CURDIR}/stdlib/Makefile.inc"
54.include "${.CURDIR}/stdtime/Makefile.inc"
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
60.if !defined(NO_YP_LIBC)
61CFLAGS+= -DYP
62.include "${.CURDIR}/yp/Makefile.inc"
63.endif
64.if !defined(NO_HESIOD_LIBC)
65CFLAGS+= -DHESIOD
66.endif
67.if defined(NO_FP_LIBC)

--- 38 unchanged lines hidden ---
63.if !defined(NO_YP_LIBC)
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)

--- 38 unchanged lines hidden ---