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