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= \ 9 csu \ 10 .WAIT \ 11 libc \ 12 libc_nonshared \ 13 libcompiler_rt \ 14 ${_libclang_rt} \ 15 libc++ \ 16 libc++experimental \ 17 libcxxrt \ 18 libder \ 19 libdiff \ 20 libelf \ 21 libssp \ 22 libssp_nonshared \ 23 libsys \ 24 msun 25 26# The main list; please keep these sorted alphabetically. 27# The only exception is sqlite3: we place it at the start of the list since it 28# takes a long time to build and starting it first improves parallelism. 29 30SUBDIR= ${SUBDIR_BOOTSTRAP} \ 31 .WAIT \ 32 libsqlite3 \ 33 geom \ 34 lib9p \ 35 libalias \ 36 libarchive \ 37 libauditd \ 38 libbegemot \ 39 libblocksruntime \ 40 libbsddialog \ 41 libbsdstat \ 42 libbsm \ 43 libbz2 \ 44 libcalendar \ 45 libcam \ 46 libcapsicum \ 47 libcasper \ 48 libcompat \ 49 libcrypt \ 50 libdevctl \ 51 libdevdctl \ 52 libdevinfo \ 53 libdevstat \ 54 libdl \ 55 libdwarf \ 56 libedit \ 57 libelftc \ 58 libevent1 \ 59 libexecinfo \ 60 libexpat \ 61 libfetch \ 62 libgcc_eh \ 63 libgcc_s \ 64 libgeom \ 65 libifconfig \ 66 libipsec \ 67 libiscsiutil \ 68 libjail \ 69 libkiconv \ 70 libkldelf \ 71 libkvm \ 72 liblua \ 73 liblzma \ 74 libmemstat \ 75 libmd \ 76 libmixer \ 77 libmt \ 78 lib80211 \ 79 libnetbsd \ 80 libnetmap \ 81 libnv \ 82 libnvmf \ 83 libopenbsd \ 84 libpam \ 85 libpathconv \ 86 libpcap \ 87 libpjdlog \ 88 libproc \ 89 libprocstat \ 90 libregex \ 91 librpcsvc \ 92 librss \ 93 librt \ 94 librtld_db \ 95 libsamplerate \ 96 libsbuf \ 97 libsmb \ 98 libstdbuf \ 99 libstdthreads \ 100 libsysdecode \ 101 libtacplus \ 102 libthr \ 103 libthread_db \ 104 libucl \ 105 libufs \ 106 libugidfw \ 107 libulog \ 108 libutil \ 109 libutil++ \ 110 ${_libvgl} \ 111 libwrap \ 112 libxo \ 113 liby \ 114 libyaml \ 115 libz \ 116 libzstd \ 117 ncurses \ 118 nss_tacplus 119 120# Inter-library dependencies. When the makefile for a library contains LDADD 121# libraries, those libraries should be listed as build order dependencies here. 122 123SUBDIR_DEPEND_geom= libufs 124SUBDIR_DEPEND_googletest= libregex 125SUBDIR_DEPEND_libarchive= libz libbz2 libexpat liblzma libmd libzstd 126SUBDIR_DEPEND_libauditdm= libbsm 127SUBDIR_DEPEND_libbsddialog= ncurses 128SUBDIR_DEPEND_libbsnmp= ${_libnetgraph} 129SUBDIR_DEPEND_libc++:= libcxxrt 130# libssp_nonshared doesn't need to be linked into libc on every arch, but it is 131# small enough to build that this bit of serialization is likely insignificant. 132SUBDIR_DEPEND_libc= libsys libcompiler_rt libssp_nonshared 133SUBDIR_DEPEND_libcam= libsbuf 134SUBDIR_DEPEND_libcasper= libnv 135SUBDIR_DEPEND_libcrypt= libmd 136SUBDIR_DEPEND_libdevstat= libkvm 137SUBDIR_DEPEND_libdpv= libfigpar ncurses libutil 138SUBDIR_DEPEND_libedit= ncurses 139SUBDIR_DEPEND_libgeom= libexpat libsbuf 140.if ${MK_MITKRB5} == "no" 141SUBDIR_DEPEND_librpcsec_gss= libgssapi 142.endif 143SUBDIR_DEPEND_libmagic= libz 144SUBDIR_DEPEND_libmemstat= libkvm 145SUBDIR_DEPEND_libpam= libcrypt ${_libradius} librpcsvc libtacplus libutil ${_libypclnt} ${_libcom_err} 146SUBDIR_DEPEND_libpjdlog= libutil 147SUBDIR_DEPEND_libprocstat= libkvm libutil 148SUBDIR_DEPEND_libradius= libmd 149SUBDIR_DEPEND_libsmb= libkiconv 150# See comment above about libssp_nonshared 151SUBDIR_DEPEND_libsys= libcompiler_rt libssp_nonshared 152SUBDIR_DEPEND_libtacplus= libmd 153SUBDIR_DEPEND_libulog= libmd 154SUBDIR_DEPEND_libunbound= ${_libldns} 155SUBDIR_DEPEND_liblzma= libthr 156.if ${MK_OFED} != "no" 157SUBDIR_DEPEND_libpcap= ofed 158.endif 159SUBDIR_DEPEND_nss_tacplus= libtacplus 160 161# NB: keep these sorted by MK_* knobs 162 163SUBDIR.${MK_BEARSSL}+= libbearssl libsecureboot 164SUBDIR.${MK_BLACKLIST}+=libblacklist 165SUBDIR.${MK_BLUETOOTH}+=libbluetooth libsdp 166SUBDIR.${MK_BSNMP}+= libbsnmp 167 168.if !defined(COMPAT_LIBCOMPAT) 169.if ${MK_CLANG} != "no" || ${MK_LLD} != "no" || \ 170 ${MK_LLDB} != "no" || ${MK_LLVM_BINUTILS} != "no" 171SUBDIR+= clang 172.endif 173.endif 174 175SUBDIR.${MK_CUSE}+= libcuse 176SUBDIR.${MK_TOOLCHAIN}+=libpe 177SUBDIR.${MK_DIALOG}+= libdpv libfigpar 178SUBDIR.${MK_FDT}+= libfdt 179SUBDIR.${MK_FILE}+= libmagic 180SUBDIR.${MK_GPIO}+= libgpio 181.if ${MK_MITKRB5} == "no" 182SUBDIR.${MK_KERBEROS}+= libgssapi 183.endif 184SUBDIR.${MK_KERBEROS}+= librpcsec_gss 185SUBDIR.${MK_ICONV}+= libiconv_modules 186.if ${MK_MITKRB5} == "no" 187SUBDIR.${MK_KERBEROS}+= libcom_err 188.endif 189SUBDIR.${MK_LDNS}+= libldns 190SUBDIR.${MK_STATS}+= libstats 191 192# The libraries under libclang_rt can only be built by clang. 193.if (${COMPILER_TYPE} == "clang" || make(clean) || make(cleandir)) && \ 194 ${MK_CLANG} != "no" 195_libclang_rt= libclang_rt 196.elif (${MK_ASAN} != "no" || ${MK_UBSAN} != "no") && make(all) 197.error Requested build with sanitizers but cannot build runtime libraries! 198.endif 199 200# This construct disables libefivar for 32-bit build. 201.if ${MACHINE_CPUARCH} != "i386" 202SUBDIR.${MK_EFI}+= libefivar 203.endif 204SUBDIR.${MK_GOOGLETEST}+= googletest 205SUBDIR.${MK_NETGRAPH}+= libnetgraph 206SUBDIR.${MK_NIS}+= libypclnt 207 208.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64" 209_libvgl= libvgl 210.endif 211 212.if ${MACHINE_CPUARCH} == "aarch64" 213SUBDIR.${MK_PMC}+= libopencsd 214.endif 215 216.if ${MACHINE_CPUARCH} == "amd64" 217SUBDIR.${MK_PMC}+= libipt 218.endif 219 220.if ${MACHINE_CPUARCH} == "amd64" || ${MACHINE_CPUARCH} == "aarch64" || \ 221 ${MACHINE_CPUARCH} == "riscv" 222SUBDIR.${MK_BHYVE}+= libvmmapi 223.endif 224 225.if ${MACHINE_ARCH} != "powerpc" && ${MACHINE_CPUARCH} != "arm" 226SUBDIR.${MK_OPENMP}+= libomp 227.endif 228.if ${MK_USB} != "no" 229SUBDIR.${MK_OPENSSH}+= libcbor libfido2 230.endif 231SUBDIR.${MK_OPENSSL}+= libmp 232SUBDIR.${MK_PF}+= libpfctl 233SUBDIR.${MK_PMC}+= libpmc libpmcstat 234SUBDIR.${MK_RADIUS_SUPPORT}+= libradius 235SUBDIR.${MK_SENDMAIL}+= libmilter libsm libsmdb libsmutil 236SUBDIR.${MK_TELNET}+= libtelnet 237SUBDIR.${MK_TESTS_SUPPORT}+= atf 238SUBDIR.${MK_TESTS_SUPPORT}+= liblutok 239SUBDIR.${MK_TESTS}+= tests 240SUBDIR.${MK_UNBOUND}+= libunbound 241SUBDIR.${MK_USB}+= libusbhid libusb 242SUBDIR.${MK_OFED}+= ofed 243SUBDIR.${MK_VERIEXEC}+= libveriexec 244SUBDIR.${MK_ZFS}+= libbe 245 246.if !make(install) 247SUBDIR_PARALLEL= 248.endif 249 250.include <bsd.subdir.mk> 251