Deleted Added
full compact
Makefile (211759) Makefile (211934)
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
2# $FreeBSD: head/lib/Makefile 211759 2010-08-24 16:35:26Z imp $
2# $FreeBSD: head/lib/Makefile 211934 2010-08-28 15:03:11Z nwhitehorn $
3
4.include <bsd.own.mk>
5
6# To satisfy shared library or ELF linkage when only the libraries being
7# built are visible:
8#
9# csu must be built before all shared libaries for ELF.
10# libc must be built before all other shared libraries.

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

109 libwrap \
110 liby \
111 libz \
112 ${_bind} \
113 ${_clang}
114
115.if exists(${.CURDIR}/csu/${MACHINE_ARCH}-elf)
116_csu=csu/${MACHINE_ARCH}-elf
3
4.include <bsd.own.mk>
5
6# To satisfy shared library or ELF linkage when only the libraries being
7# built are visible:
8#
9# csu must be built before all shared libaries for ELF.
10# libc must be built before all other shared libraries.

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

109 libwrap \
110 liby \
111 libz \
112 ${_bind} \
113 ${_clang}
114
115.if exists(${.CURDIR}/csu/${MACHINE_ARCH}-elf)
116_csu=csu/${MACHINE_ARCH}-elf
117.elif exists(${.CURDIR}/csu/${MACHINE_CPUARCH}-elf)
118_csu=csu/${MACHINE_CPUARCH}-elf
117.elif exists(${.CURDIR}/csu/${MACHINE_ARCH})
118_csu=csu/${MACHINE_ARCH}
119.elif exists(${.CURDIR}/csu/${MACHINE_CPUARCH}/Makefile)
120_csu=csu/${MACHINE_CPUARCH}
121.else
122_csu=csu
123.endif
124
125# NB: keep these sorted by MK_* knobs
126

--- 104 unchanged lines hidden ---
119.elif exists(${.CURDIR}/csu/${MACHINE_CPUARCH}/Makefile)
120_csu=csu/${MACHINE_CPUARCH}
121.else
122_csu=csu
123.endif
124
125# NB: keep these sorted by MK_* knobs
126

--- 104 unchanged lines hidden ---