Deleted Added
full compact
Makefile (241774) Makefile (241823)
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
2# $FreeBSD: head/lib/Makefile 241774 2012-10-20 10:06:38Z uqs $
2# $FreeBSD: head/lib/Makefile 241823 2012-10-22 01:18:41Z marcel $
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.

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

113 libugidfw \
114 libulog \
115 ${_libusbhid} \
116 ${_libusb} \
117 ${_libvgl} \
118 libwrap \
119 liby \
120 libz \
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.

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

113 libugidfw \
114 libulog \
115 ${_libusbhid} \
116 ${_libusb} \
117 ${_libvgl} \
118 libwrap \
119 liby \
120 libz \
121 ${_atf} \
121 ${_bind} \
122 ${_clang}
123
124.if exists(${.CURDIR}/csu/${MACHINE_ARCH}-elf)
125_csu=csu/${MACHINE_ARCH}-elf
126.elif exists(${.CURDIR}/csu/${MACHINE_ARCH})
127_csu=csu/${MACHINE_ARCH}
128.elif exists(${.CURDIR}/csu/${MACHINE_CPUARCH}/Makefile)
129_csu=csu/${MACHINE_CPUARCH}
130.else
131_csu=csu
132.endif
133
134# NB: keep these sorted by MK_* knobs
135
122 ${_bind} \
123 ${_clang}
124
125.if exists(${.CURDIR}/csu/${MACHINE_ARCH}-elf)
126_csu=csu/${MACHINE_ARCH}-elf
127.elif exists(${.CURDIR}/csu/${MACHINE_ARCH})
128_csu=csu/${MACHINE_ARCH}
129.elif exists(${.CURDIR}/csu/${MACHINE_CPUARCH}/Makefile)
130_csu=csu/${MACHINE_CPUARCH}
131.else
132_csu=csu
133.endif
134
135# NB: keep these sorted by MK_* knobs
136
137.if ${MK_ATF} != "no"
138_atf= atf
139.endif
140
136.if ${MK_ATM} != "no"
137_libngatm= libngatm
138.endif
139
140.if ${MK_BIND} != "no"
141_bind= bind
142.endif
143

--- 91 unchanged lines hidden ---
141.if ${MK_ATM} != "no"
142_libngatm= libngatm
143.endif
144
145.if ${MK_BIND} != "no"
146_bind= bind
147.endif
148

--- 91 unchanged lines hidden ---