Deleted Added
full compact
Makefile (213153) Makefile (217123)
1# @(#)Makefile 8.2 (Berkeley) 2/3/94
1# @(#)Makefile 8.2 (Berkeley) 2/3/94
2# $FreeBSD: head/lib/libc/Makefile 213153 2010-09-25 01:57:47Z davidxu $
2# $FreeBSD: head/lib/libc/Makefile 217123 2011-01-07 20:26:33Z imp $
3
4SHLIBDIR?= /lib
5
6.include <bsd.own.mk>
7
8# Pick the current architecture directory for libc. In general, this is
9# named MACHINE_CPUARCH, but some ABIs are different enough to require
10# their own libc, so allow a directory named MACHINE_ARCH to override this.

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

63.include "${.CURDIR}/nameser/Makefile.inc"
64.include "${.CURDIR}/net/Makefile.inc"
65.include "${.CURDIR}/nls/Makefile.inc"
66.include "${.CURDIR}/posix1e/Makefile.inc"
67.if ${LIBC_ARCH} != "amd64" && \
68 ${LIBC_ARCH} != "ia64" && \
69 ${LIBC_ARCH} != "powerpc64" && \
70 ${LIBC_ARCH} != "sparc64" && \
3
4SHLIBDIR?= /lib
5
6.include <bsd.own.mk>
7
8# Pick the current architecture directory for libc. In general, this is
9# named MACHINE_CPUARCH, but some ABIs are different enough to require
10# their own libc, so allow a directory named MACHINE_ARCH to override this.

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

63.include "${.CURDIR}/nameser/Makefile.inc"
64.include "${.CURDIR}/net/Makefile.inc"
65.include "${.CURDIR}/nls/Makefile.inc"
66.include "${.CURDIR}/posix1e/Makefile.inc"
67.if ${LIBC_ARCH} != "amd64" && \
68 ${LIBC_ARCH} != "ia64" && \
69 ${LIBC_ARCH} != "powerpc64" && \
70 ${LIBC_ARCH} != "sparc64" && \
71 ${LIBC_ARCH} != "mips"
71 ${MACHINE_ARCH:Mmips64*} == ""
72.include "${.CURDIR}/quad/Makefile.inc"
73.endif
72.include "${.CURDIR}/quad/Makefile.inc"
73.endif
74.if ${LIBC_ARCH} == "mips" && \
75 (!defined(TARGET_ABI) || ${TARGET_ABI} == "o32")
76.include "${.CURDIR}/quad/Makefile.inc"
77.endif
78.include "${.CURDIR}/regex/Makefile.inc"
79.include "${.CURDIR}/resolv/Makefile.inc"
80.include "${.CURDIR}/stdio/Makefile.inc"
81.include "${.CURDIR}/stdlib/Makefile.inc"
82.include "${.CURDIR}/stdtime/Makefile.inc"
83.include "${.CURDIR}/string/Makefile.inc"
84.include "${.CURDIR}/sys/Makefile.inc"
85.include "${.CURDIR}/rpc/Makefile.inc"

--- 69 unchanged lines hidden ---
74.include "${.CURDIR}/regex/Makefile.inc"
75.include "${.CURDIR}/resolv/Makefile.inc"
76.include "${.CURDIR}/stdio/Makefile.inc"
77.include "${.CURDIR}/stdlib/Makefile.inc"
78.include "${.CURDIR}/stdtime/Makefile.inc"
79.include "${.CURDIR}/string/Makefile.inc"
80.include "${.CURDIR}/sys/Makefile.inc"
81.include "${.CURDIR}/rpc/Makefile.inc"

--- 69 unchanged lines hidden ---