Makefile (f59bb61e1eb4d1e4fc3c60cc14779d0668267cb2) Makefile (e35cc7ba3fd2f9886ec7058de949b3eaf6be1a65)
1.include <src.opts.mk>
2
3# The SUBDIR_BOOTSTRAP list is a small set of libraries which are used by many
4# of the other libraries. These are built first with a .WAIT between them
5# and the main list to avoid needing a SUBDIR_DEPEND line on every library
6# naming just these few items.
7
8SUBDIR_BOOTSTRAP= \

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

181
182# The libraries under libclang_rt can only be built by clang.
183.if ${COMPILER_TYPE} == "clang" && ${MK_CLANG} != "no"
184_libclang_rt= libclang_rt
185.elif (${MK_ASAN} != "no" || ${MK_UBSAN} != "no") && make(all)
186.error Requested build with sanitizers but cannot build runtime libraries!
187.endif
188
1.include <src.opts.mk>
2
3# The SUBDIR_BOOTSTRAP list is a small set of libraries which are used by many
4# of the other libraries. These are built first with a .WAIT between them
5# and the main list to avoid needing a SUBDIR_DEPEND line on every library
6# naming just these few items.
7
8SUBDIR_BOOTSTRAP= \

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

181
182# The libraries under libclang_rt can only be built by clang.
183.if ${COMPILER_TYPE} == "clang" && ${MK_CLANG} != "no"
184_libclang_rt= libclang_rt
185.elif (${MK_ASAN} != "no" || ${MK_UBSAN} != "no") && make(all)
186.error Requested build with sanitizers but cannot build runtime libraries!
187.endif
188
189# This construct disables libefivar for 32-bit build.
190.if ${MACHINE_CPUARCH} != "i386"
189SUBDIR.${MK_EFI}+= libefivar
191SUBDIR.${MK_EFI}+= libefivar
192.endif
190SUBDIR.${MK_GOOGLETEST}+= googletest
191SUBDIR.${MK_NETGRAPH}+= libnetgraph
192SUBDIR.${MK_NIS}+= libypclnt
193
194.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64"
195_libvgl= libvgl
196.endif
197

--- 39 unchanged lines hidden ---
193SUBDIR.${MK_GOOGLETEST}+= googletest
194SUBDIR.${MK_NETGRAPH}+= libnetgraph
195SUBDIR.${MK_NIS}+= libypclnt
196
197.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64"
198_libvgl= libvgl
199.endif
200

--- 39 unchanged lines hidden ---