Deleted Added
full compact
Makefile (217123) Makefile (217942)
1# @(#)Makefile 8.2 (Berkeley) 2/3/94
1# @(#)Makefile 8.2 (Berkeley) 2/3/94
2# $FreeBSD: head/lib/libc/Makefile 217123 2011-01-07 20:26:33Z imp $
2# $FreeBSD: head/lib/libc/Makefile 217942 2011-01-27 14:16:12Z jchandra $
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 ${MACHINE_ARCH:Mmipsn32*} == "" && \
71 ${MACHINE_ARCH:Mmips64*} == ""
72.include "${.CURDIR}/quad/Makefile.inc"
73.endif
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"

--- 72 unchanged lines hidden ---
72 ${MACHINE_ARCH:Mmips64*} == ""
73.include "${.CURDIR}/quad/Makefile.inc"
74.endif
75.include "${.CURDIR}/regex/Makefile.inc"
76.include "${.CURDIR}/resolv/Makefile.inc"
77.include "${.CURDIR}/stdio/Makefile.inc"
78.include "${.CURDIR}/stdlib/Makefile.inc"
79.include "${.CURDIR}/stdtime/Makefile.inc"

--- 72 unchanged lines hidden ---