Deleted Added
sdiff udiff text old ( 255601 ) new ( 255949 )
full compact
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
2# $FreeBSD: head/lib/Makefile 255601 2013-09-15 15:55:21Z des $
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.

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

122 ${_libusb} \
123 ${_libvgl} \
124 ${_libvmmapi} \
125 libwrap \
126 liby \
127 libyaml \
128 libz \
129 ${_atf} \
130 ${_bind} \
131 ${_clang}
132
133.if exists(${.CURDIR}/csu/${MACHINE_ARCH}-elf)
134_csu=csu/${MACHINE_ARCH}-elf
135.elif exists(${.CURDIR}/csu/${MACHINE_ARCH})
136_csu=csu/${MACHINE_ARCH}
137.elif exists(${.CURDIR}/csu/${MACHINE_CPUARCH}/Makefile)
138_csu=csu/${MACHINE_CPUARCH}

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

145.if ${MK_ATF} != "no"
146_atf= atf
147.endif
148
149.if ${MK_ATM} != "no"
150_libngatm= libngatm
151.endif
152
153.if ${MK_BIND} != "no"
154_bind= bind
155.endif
156
157.if ${MK_BLUETOOTH} != "no"
158_libbluetooth= libbluetooth
159_libsdp= libsdp
160.endif
161
162.if ${MK_BSNMP} != "no"
163_libbsnmp= libbsnmp
164.endif

--- 116 unchanged lines hidden ---