Deleted Added
full compact
Makefile (211934) Makefile (212518)
1# @(#)Makefile 5.1beta 93/09/24
1# @(#)Makefile 5.1beta 93/09/24
2# $FreeBSD: head/lib/msun/Makefile 211934 2010-08-28 15:03:11Z nwhitehorn $
2# $FreeBSD: head/lib/msun/Makefile 212518 2010-09-13 01:44:56Z imp $
3#
4# ====================================================
5# Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
6#
7# Developed at SunPro, a Sun Microsystems, Inc. business.
8# Permission to use, copy, modify, and distribute this
9# software is freely granted, provided that this notice
10# is preserved.
11# ====================================================
12#
13#
14
3#
4# ====================================================
5# Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
6#
7# Developed at SunPro, a Sun Microsystems, Inc. business.
8# Permission to use, copy, modify, and distribute this
9# software is freely granted, provided that this notice
10# is preserved.
11# ====================================================
12#
13#
14
15.if ${MACHINE_ARCH} == "i386"
15.if ${MACHINE_CPUARCH} == "i386"
16ARCH_SUBDIR= i387
17.elif ${MACHINE_ARCH} == "powerpc64"
18ARCH_SUBDIR= powerpc
19.else
16ARCH_SUBDIR= i387
17.elif ${MACHINE_ARCH} == "powerpc64"
18ARCH_SUBDIR= powerpc
19.else
20ARCH_SUBDIR= ${MACHINE_ARCH}
20ARCH_SUBDIR= ${MACHINE_CPUARCH}
21.endif
22
23.include "${ARCH_SUBDIR}/Makefile.inc"
24
25.PATH: ${.CURDIR}/${ARCH_SUBDIR}
26
27# long double format
28.if ${LDBL_PREC} == 64

--- 169 unchanged lines hidden ---
21.endif
22
23.include "${ARCH_SUBDIR}/Makefile.inc"
24
25.PATH: ${.CURDIR}/${ARCH_SUBDIR}
26
27# long double format
28.if ${LDBL_PREC} == 64

--- 169 unchanged lines hidden ---