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