Deleted Added
full compact
Makefile (207842) Makefile (208964)
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
2# $FreeBSD: head/lib/Makefile 207842 2010-05-10 06:59:50Z mm $
2# $FreeBSD: head/lib/Makefile 208964 2010-06-09 19:57:20Z rdivacky $
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.

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

103 libugidfw \
104 libulog \
105 ${_libusbhid} \
106 ${_libusb} \
107 ${_libvgl} \
108 libwrap \
109 liby \
110 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.

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

103 libugidfw \
104 libulog \
105 ${_libusbhid} \
106 ${_libusb} \
107 ${_libvgl} \
108 libwrap \
109 liby \
110 libz \
111 ${_bind}
111 ${_bind} \
112 ${_clang}
112
113.if exists(${.CURDIR}/csu/${MACHINE_ARCH}-elf)
114_csu=csu/${MACHINE_ARCH}-elf
115.elif exists(${.CURDIR}/csu/${MACHINE_ARCH}/Makefile)
116_csu=csu/${MACHINE_ARCH}
117.else
118_csu=csu
119.endif

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

132_libbluetooth= libbluetooth
133_libsdp= libsdp
134.endif
135
136.if ${MK_BSNMP} != "no"
137_libbsnmp= libbsnmp
138.endif
139
113
114.if exists(${.CURDIR}/csu/${MACHINE_ARCH}-elf)
115_csu=csu/${MACHINE_ARCH}-elf
116.elif exists(${.CURDIR}/csu/${MACHINE_ARCH}/Makefile)
117_csu=csu/${MACHINE_ARCH}
118.else
119_csu=csu
120.endif

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

133_libbluetooth= libbluetooth
134_libsdp= libsdp
135.endif
136
137.if ${MK_BSNMP} != "no"
138_libbsnmp= libbsnmp
139.endif
140
141.if ${MK_CLANG} != "no"
142_clang= clang
143.endif
144
140.if ${MK_GPIB} != "no"
141_libgpib= libgpib
142.endif
143
144.if ${MK_GSSAPI} != "no"
145_libgssapi= libgssapi
146_librpcsec_gss= librpcsec_gss
147.endif

--- 75 unchanged lines hidden ---
145.if ${MK_GPIB} != "no"
146_libgpib= libgpib
147.endif
148
149.if ${MK_GSSAPI} != "no"
150_libgssapi= libgssapi
151_librpcsec_gss= librpcsec_gss
152.endif

--- 75 unchanged lines hidden ---