Deleted Added
full compact
Makefile (283502) Makefile (285009)
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
2# $FreeBSD: head/lib/Makefile 283502 2015-05-24 23:19:47Z ngie $
2# $FreeBSD: head/lib/Makefile 285009 2015-07-01 15:51:11Z br $
3
4.include <src.opts.mk>
5
6# The SUBDIR_ORDERED list is a small set of libraries which are used by many
7# of the other libraries. These are built first with a .WAIT between them
8# and the main list to avoid needing a SUBDIR_DEPEND line on every library
9# naming just these few items.
10

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

210.if ${MK_LDNS} != "no"
211_libldns= libldns
212.endif
213
214# The libraries under libclang_rt can only be built by clang, and only make
215# sense to build when clang is enabled at all. Furthermore, they can only be
216# built for certain architectures.
217.if ${MK_CLANG} != "no" && ${COMPILER_TYPE} == "clang" && \
3
4.include <src.opts.mk>
5
6# The SUBDIR_ORDERED list is a small set of libraries which are used by many
7# of the other libraries. These are built first with a .WAIT between them
8# and the main list to avoid needing a SUBDIR_DEPEND line on every library
9# naming just these few items.
10

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

210.if ${MK_LDNS} != "no"
211_libldns= libldns
212.endif
213
214# The libraries under libclang_rt can only be built by clang, and only make
215# sense to build when clang is enabled at all. Furthermore, they can only be
216# built for certain architectures.
217.if ${MK_CLANG} != "no" && ${COMPILER_TYPE} == "clang" && \
218 (${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64" || \
219 (${MACHINE_CPUARCH} == "arm" && ${MACHINE_ARCH} != "armeb"))
218 (${MACHINE_CPUARCH} == "aarch64" || ${MACHINE_CPUARCH} == "amd64" || \
219 (${MACHINE_CPUARCH} == "arm" && ${MACHINE_ARCH} != "armeb") || \
220 (${MACHINE_CPUARCH} == "i386"))
220_libclang_rt= libclang_rt
221.endif
222
223.if ${MK_LIBCPLUSPLUS} != "no"
224_libcxxrt= libcxxrt
225_libcplusplus= libc++
226.endif
227

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

268_librtld_db= librtld_db
269_libsmb= libsmb
270.endif
271
272.if ${MACHINE_CPUARCH} == "sparc64"
273_libsmb= libsmb
274.endif
275
221_libclang_rt= libclang_rt
222.endif
223
224.if ${MK_LIBCPLUSPLUS} != "no"
225_libcxxrt= libcxxrt
226_libcplusplus= libc++
227.endif
228

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

269_librtld_db= librtld_db
270_libsmb= libsmb
271.endif
272
273.if ${MACHINE_CPUARCH} == "sparc64"
274_libsmb= libsmb
275.endif
276
276.if ${MACHINE_CPUARCH} == "arm"
277.if ${MACHINE_CPUARCH} == "aarch64" || ${MACHINE_CPUARCH} == "arm"
277_libsmb= libsmb
278_libproc= libproc
279_librtld_db= librtld_db
280.endif
281
282.if ${MK_OPENSSL} != "no"
283_libmp= libmp
284.endif

--- 46 unchanged lines hidden ---
278_libsmb= libsmb
279_libproc= libproc
280_librtld_db= librtld_db
281.endif
282
283.if ${MK_OPENSSL} != "no"
284_libmp= libmp
285.endif

--- 46 unchanged lines hidden ---