xref: /freebsd/lib/Makefile (revision 0d972b25f64dc1f52aff3fe09bc62cbaf332df83)
1#	@(#)Makefile	8.1 (Berkeley) 6/4/93
2# $FreeBSD$
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
11SUBDIR_ORDERED=	${_csu} \
12	.WAIT \
13	libc \
14	libc_nonshared \
15	libcompiler_rt \
16	${_libclang_rt} \
17	${_libcplusplus} \
18	${_libcxxrt} \
19	libelf \
20	msun
21
22# The main list; please keep these sorted alphabetically.
23
24SUBDIR=	${SUBDIR_ORDERED} \
25	.WAIT \
26	libalias \
27	libarchive \
28	${_libatm} \
29	libauditd \
30	libbegemot \
31	libblocksruntime \
32	${_libbluetooth} \
33	${_libbsnmp} \
34	libbsdstat \
35	libbsm \
36	libbz2 \
37	libcalendar \
38	libcam \
39	${_libcapsicum} \
40	${_libcasper} \
41	${_libcom_err} \
42	libcompat \
43	libcrypt \
44	libdevinfo \
45	libdevstat \
46	libdpv \
47	libdwarf \
48	libedit \
49	${_libelftc} \
50	${_libevent} \
51	libexecinfo \
52	libexpat \
53	libfetch \
54	libfigpar \
55	libgeom \
56	${_libgpio} \
57	${_libgssapi} \
58	${_librpcsec_gss} \
59	${_libiconv_modules} \
60	libipsec \
61	libjail \
62	libkiconv \
63	libkvm \
64	${_libldns} \
65	liblzma \
66	libmagic \
67	libmandoc \
68	libmemstat \
69	libmd \
70	${_libmilter} \
71	${_libmp} \
72	${_libnandfs} \
73	libnetbsd \
74	${_libnetgraph} \
75	${_libngatm} \
76	libnv \
77	libohash \
78	libopie \
79	libpam \
80	libpcap \
81	libpjdlog \
82	${_libpmc} \
83	${_libproc} \
84	libprocstat \
85	libradius \
86	librpcsvc \
87	librt \
88	${_librtld_db} \
89	libsbuf \
90	${_libsdp} \
91	${_libsm} \
92	${_libsmb} \
93	${_libsmdb} \
94	${_libsmutil} \
95	libsqlite3 \
96	libstand \
97	libstdbuf \
98	libstdthreads \
99	libtacplus \
100	${_libtelnet} \
101	${_libthr} \
102	libthread_db \
103	libucl \
104	libufs \
105	libugidfw \
106	libulog \
107	${_libunbound} \
108	${_libusbhid} \
109	${_libusb} \
110	libutil \
111	${_libvgl} \
112	${_libvmmapi} \
113	libwrap \
114	libxo \
115	liby \
116	${_libypclnt} \
117	libz \
118	ncurses \
119	${_atf} \
120	${_clang} \
121	${_cuse} \
122	${_tests}
123
124# Inter-library dependencies.  When the makefile for a library contains LDADD
125# libraries, those libraries should be listed as build order dependencies here.
126
127SUBDIR_DEPEND_libarchive= libz libbz2 libexpat liblzma libmd
128SUBDIR_DEPEND_libatm= libmd
129SUBDIR_DEPEND_libauditdm= libbsm
130SUBDIR_DEPEND_libbsnmp= ${_libnetgraph}
131SUBDIR_DEPEND_libc++= libcxxrt
132SUBDIR_DEPEND_libc= libcompiler_rt
133SUBDIR_DEPEND_libcam= libsbuf
134SUBDIR_DEPEND_libcapsicum= libnv
135SUBDIR_DEPEND_libcasper= libcapsicum libnv libpjdlog
136SUBDIR_DEPEND_libdevstat= libkvm
137SUBDIR_DEPEND_libdpv= libfigpar ncurses libutil
138SUBDIR_DEPEND_libedit= ncurses
139SUBDIR_DEPEND_libg++= msun
140SUBDIR_DEPEND_libgeom= libexpat libsbuf
141SUBDIR_DEPEND_liblibrpcsec_gss= libgssapi
142SUBDIR_DEPEND_libmagic= libz
143SUBDIR_DEPEND_libmemstat= libkvm
144SUBDIR_DEPEND_libopie= libmd
145SUBDIR_DEPEND_libpam= libcrypt libopie libradius librpcsvc libtacplus libutil ${_libypclnt} ${_libcom_err}
146SUBDIR_DEPEND_libpjdlog= libutil
147SUBDIR_DEPEND_libprocstat= libkvm libutil
148SUBDIR_DEPEND_libradius= libmd
149SUBDIR_DEPEND_libreadline= ncurses
150SUBDIR_DEPEND_libsmb= libkiconv
151SUBDIR_DEPEND_libstdc++= msun
152SUBDIR_DEPEND_libtacplus= libmd
153SUBDIR_DEPEND_libulog= libmd
154SUBDIR_DEPEND_libunbound= ${_libldns}
155
156.if exists(${.CURDIR}/csu/${MACHINE_ARCH}-elf)
157_csu=csu/${MACHINE_ARCH}-elf
158.elif exists(${.CURDIR}/csu/${MACHINE_ARCH})
159_csu=csu/${MACHINE_ARCH}
160.elif exists(${.CURDIR}/csu/${MACHINE_CPUARCH}/Makefile)
161_csu=csu/${MACHINE_CPUARCH}
162.else
163_csu=csu
164.endif
165
166# NB: keep these sorted by MK_* knobs
167
168.if ${MK_ATM} != "no"
169_libngatm=	libngatm
170.endif
171
172.if ${MK_BLUETOOTH} != "no"
173_libbluetooth=	libbluetooth
174_libsdp=	libsdp
175.endif
176
177.if ${MK_BSNMP} != "no"
178_libbsnmp=	libbsnmp
179.endif
180
181.if ${MK_CASPER} != "no"
182_libcapsicum=	libcapsicum
183_libcasper=	libcasper
184.endif
185
186.if ${MK_CLANG} != "no" && !defined(COMPAT_32BIT)
187_clang=		clang
188.endif
189
190.if ${MK_CUSE} != "no"
191_cuse=		libcuse
192.endif
193
194.if ${MK_ELFTOOLCHAIN_TOOLS} != "no"
195_libelftc=	libelftc
196.endif
197
198.if ${MK_GPIO} != "no"
199_libgpio=	libgpio
200.endif
201
202.if ${MK_GSSAPI} != "no"
203_libgssapi=	libgssapi
204_librpcsec_gss=	librpcsec_gss
205.endif
206
207.if ${MK_ICONV} != "no"
208_libiconv_modules=	libiconv_modules
209.endif
210
211.if ${MK_KERBEROS_SUPPORT} != "no"
212_libcom_err= libcom_err
213.endif
214
215.if ${MK_LDNS} != "no"
216_libldns=	libldns
217.endif
218
219# The libraries under libclang_rt can only be built by clang, and only make
220# sense to build when clang is enabled at all.  Furthermore, they can only be
221# built for certain architectures.
222.if ${MK_CLANG} != "no" && ${COMPILER_TYPE} == "clang" && \
223    (${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64" || \
224    (${MACHINE_CPUARCH} == "arm" && ${MACHINE_ARCH} != "armeb"))
225_libclang_rt=	libclang_rt
226.endif
227
228.if ${MK_LIBCPLUSPLUS} != "no"
229_libcxxrt=	libcxxrt
230_libcplusplus=	libc++
231.endif
232
233.if ${MK_LIBTHR} != "no"
234_libthr=	libthr
235.endif
236
237.if ${MK_NAND} != "no"
238_libnandfs=	libnandfs
239.endif
240
241.if ${MK_NETGRAPH} != "no"
242_libnetgraph=	libnetgraph
243.endif
244
245.if ${MK_NIS} != "no"
246_libypclnt=	libypclnt
247.endif
248
249.if ${MK_PF} != "no"
250_libevent=	libevent
251.endif
252
253.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64"
254_libsmb=	libsmb
255_libvgl=	libvgl
256_libproc=	libproc
257_librtld_db=	librtld_db
258.endif
259
260.if ${MACHINE_CPUARCH} == "amd64"
261.if ${MK_BHYVE} != "no"
262_libvmmapi=	libvmmapi
263.endif
264.endif
265
266.if ${MACHINE_CPUARCH} == "mips"
267_libproc=	libproc
268_librtld_db=	librtld_db
269.endif
270
271.if ${MACHINE_CPUARCH} == "powerpc"
272_libproc=	libproc
273_librtld_db=	librtld_db
274_libsmb=	libsmb
275.endif
276
277.if ${MACHINE_CPUARCH} == "sparc64"
278_libsmb=	libsmb
279.endif
280
281.if ${MK_OPENSSL} != "no"
282_libmp=		libmp
283.endif
284
285.if ${MK_PMC} != "no"
286_libpmc=	libpmc
287.endif
288
289.if ${MK_SENDMAIL} != "no"
290_libmilter=	libmilter
291_libsm=		libsm
292_libsmdb=	libsmdb
293_libsmutil=	libsmutil
294.endif
295
296.if ${MK_TELNET} != "no"
297_libtelnet=	libtelnet
298.endif
299
300.if ${MK_TESTS_SUPPORT} != "no"
301_atf=		atf
302.endif
303.if ${MK_TESTS} != "no"
304_tests=		tests
305.endif
306
307.if ${MK_UNBOUND} != "no"
308_libunbound=	libunbound
309.endif
310
311.if ${MK_USB} != "no"
312_libusbhid=	libusbhid
313_libusb=	libusb
314.endif
315
316.if !defined(LIBRARIES_ONLY)
317afterinstall:
318	${INSTALL_SYMLINK} ../include ${DESTDIR}/usr/lib/include
319.endif
320
321.if !make(install)
322SUBDIR_PARALLEL=
323.endif
324
325.include <bsd.subdir.mk>
326