Makefile revision 1.253 1 1.253 christos # $NetBSD: Makefile,v 1.253 2017/10/10 19:28:33 christos Exp $
2 1.8 mycroft # from: @(#)Makefile 5.25.1.1 (Berkeley) 5/7/91
3 1.21 cgd
4 1.62 thorpej .include <bsd.own.mk>
5 1.62 thorpej
6 1.188 joerg SUBDIR= csu .WAIT
7 1.155 plunky
8 1.155 plunky .if (${MKGCC} != "no")
9 1.211 mrg SUBDIR+= ../external/gpl3/${EXTERNAL_GCC_SUBDIR}/lib/libgcc .WAIT
10 1.155 plunky .endif
11 1.155 plunky
12 1.155 plunky SUBDIR+= libc
13 1.155 plunky SUBDIR+= .WAIT
14 1.155 plunky
15 1.155 plunky #
16 1.155 plunky # The SUBDIRs above are included here for completeness but should be built
17 1.155 plunky # and installed prior to make(dependall) in this file, as libraries listed
18 1.155 plunky # below will depend on versions from DESTDIR only.
19 1.155 plunky #
20 1.155 plunky
21 1.158 plunky SUBDIR+= i18n_module
22 1.158 plunky
23 1.158 plunky SUBDIR+= libarch \
24 1.158 plunky libbluetooth libbsdmalloc libbz2 \
25 1.184 matt libcompat libcrypt \
26 1.207 joerg libintl libipsec libkvm libm \
27 1.158 plunky libossaudio libpci libpmc libposix libprop libpthread \
28 1.249 kamil libpuffs libresolv librmt librpcsvc librt \
29 1.187 christos libtelnet libterminfo \
30 1.158 plunky libusbhid libutil libwrap liby libz
31 1.158 plunky
32 1.206 matt .if !defined(BSD_MK_COMPAT_FILE)
33 1.206 matt SUBDIR+= libkern
34 1.206 matt .endif
35 1.206 matt
36 1.226 matt .if (${MACHINE_CPU} == "arm" || ${MACHINE_CPU} == "aarch64")
37 1.201 matt LIBC_MACHINE_ARCH?=${MACHINE_ARCH}
38 1.228 joerg LIBC_MACHINE_CPU?=${MACHINE_CPU}
39 1.228 joerg .if ${LIBC_MACHINE_CPU} == "arm" && empty(LIBC_MACHINE_ARCH:M*hf*)
40 1.197 matt SUBDIR+= libc_vfp
41 1.197 matt .endif
42 1.201 matt .endif
43 1.248 macallan .if ${MACHINE_ARCH} == "mips64el" || ${MACHINE_ARCH} == "mips64eb"
44 1.247 macallan SUBDIR+= libc_fp
45 1.247 macallan .endif
46 1.187 christos .if (${MKRUMP} != "no")
47 1.187 christos SUBDIR+= librumpclient
48 1.187 christos .endif
49 1.158 plunky .if (${MKSKEY} != "no")
50 1.158 plunky SUBDIR+= libskey
51 1.158 plunky .endif
52 1.60 thorpej
53 1.155 plunky .if (${MKMDNS} != "no")
54 1.155 plunky SUBDIR+= ../external/apache2/mDNSResponder/lib
55 1.155 plunky .endif
56 1.155 plunky
57 1.155 plunky SUBDIR+= ../external/bsd/am-utils/lib
58 1.155 plunky
59 1.155 plunky SUBDIR+= ../external/bsd/flex/lib
60 1.180 christos SUBDIR+= ../external/bsd/tre/lib
61 1.212 christos SUBDIR+= ../external/bsd/elftoolchain/lib/libelf
62 1.163 matt SUBDIR+= ../external/bsd/liblzf/lib
63 1.158 plunky SUBDIR+= ../external/bsd/libpcap/lib
64 1.155 plunky
65 1.214 plunky .if ${MKSLJIT} != "no"
66 1.214 plunky SUBDIR+= ../external/bsd/sljit/lib
67 1.214 plunky SUBDIR+= libbpfjit
68 1.214 plunky .endif
69 1.214 plunky
70 1.224 matt .if (${MKZFS} != "no")
71 1.224 matt SUBDIR+= ../external/cddl/osnet/lib/libavl
72 1.224 matt SUBDIR+= ../external/cddl/osnet/lib/libnvpair
73 1.224 matt SUBDIR+= ../external/cddl/osnet/lib/libumem
74 1.224 matt SUBDIR+= ../external/cddl/osnet/lib/libuutil
75 1.224 matt .endif
76 1.224 matt
77 1.182 tron SUBDIR+= ../external/mit/expat/lib
78 1.155 plunky
79 1.179 joerg SUBDIR+= ../external/public-domain/sqlite/lib
80 1.155 plunky
81 1.238 christos SUBDIR+= ../external/gpl2/libmalloc
82 1.155 plunky
83 1.155 plunky .if (${MKGCC} != "no")
84 1.211 mrg SUBDIR+= ../external/gpl3/${EXTERNAL_GCC_SUBDIR}/lib/libobjc
85 1.211 mrg SUBDIR+= ../external/gpl3/${EXTERNAL_GCC_SUBDIR}/lib/libgomp
86 1.173 mrg # Should probably move GMP, MPFR and MPC builds into the GCC >= 4.5
87 1.173 mrg # specific build area, but we get better parallelism this way.
88 1.215 mrg # We don't build compat versions of these.
89 1.252 mrg . if !defined(MLIBDIR) && (${MKGCCCMDS} != "no")
90 1.172 matt SUBDIR+= ../external/lgpl3/gmp/lib/libgmp
91 1.174 plunky SUBDIR+= ../external/lgpl3/mpfr/lib/libmpfr
92 1.209 mrg SUBDIR+= ../external/lgpl3/mpc/lib/libmpc
93 1.174 plunky . endif
94 1.155 plunky .endif
95 1.144 christos
96 1.89 lukem #
97 1.89 lukem # Libraries that depend upon any listed previously
98 1.93 lukem # (and those that depend upon these [and ...])
99 1.89 lukem #
100 1.97 christos #==================== 1st library dependency barrier ====================
101 1.97 christos SUBDIR+= .WAIT
102 1.97 christos
103 1.235 christos .if ${MKDTRACE} != "no"
104 1.229 christos SUBDIR+= ../external/bsd/librtld_db/lib # depends on libutil
105 1.234 christos .endif
106 1.229 christos
107 1.240 riastrad .if ${MKCTF} != "no"
108 1.227 christos SUBDIR+= ../external/cddl/osnet/lib/libctf
109 1.227 christos .endif
110 1.227 christos
111 1.221 mrg SUBDIR+= ../external/public-domain/xz/lib # depends on libpthread
112 1.208 mrg SUBDIR+= ../crypto/external/bsd/netpgp/libmj
113 1.208 mrg SUBDIR+= ../crypto/external/bsd/netpgp/lib/verify # depends on libz
114 1.237 christos SUBDIR+= ../external/bsd/blacklist/lib # depends on libpthread
115 1.212 christos SUBDIR+= ../external/bsd/elftoolchain/lib/libdwarf # depends on libelf
116 1.208 mrg SUBDIR+= ../external/mit/lua/lib # depends on libm
117 1.158 plunky SUBDIR+= libcurses # depends on libterminfo
118 1.162 haad SUBDIR+= libdm # depends on libprop
119 1.158 plunky SUBDIR+= libedit # depends on libterminfo
120 1.184 matt SUBDIR+= libexecinfo # depends on libelf
121 1.176 dyoung SUBDIR+= libppath # depends on libprop
122 1.175 plunky SUBDIR+= libperfuse # depends on libpuffs
123 1.165 bouyer SUBDIR+= libquota # depends on libprop and librpcsvc
124 1.113 pooka SUBDIR+= librefuse # depends on libpuffs
125 1.207 joerg SUBDIR+= libisns # depends on libpthread
126 1.187 christos .if (${MKRUMP} != "no")
127 1.253 christos SUBDIR+= librumphijack # depends on librumpclient and libpthread
128 1.253 christos SUBDIR+= librumpres # depends on librumpclient
129 1.126 pooka SUBDIR+= librumpuser # depends on libpthread
130 1.187 christos .endif
131 1.126 pooka
132 1.161 rmind .if (${MKNPF} != "no")
133 1.161 rmind SUBDIR+= libnpf # depends on libprop
134 1.161 rmind .endif
135 1.161 rmind
136 1.158 plunky SUBDIR+= ../crypto/external/bsd/openssl/lib # depends on libcrypt
137 1.155 plunky SUBDIR+= ../external/bsd/file/lib # depends on libz
138 1.155 plunky
139 1.155 plunky .if (${MKISCSI} != "no")
140 1.155 plunky SUBDIR+= ../external/bsd/iscsi/lib # depends on libpthread
141 1.155 plunky .endif
142 1.155 plunky
143 1.224 matt .if (${MKZFS} != "no")
144 1.224 matt SUBDIR+= ../external/cddl/osnet/lib/libzfs
145 1.224 matt SUBDIR+= ../external/cddl/osnet/lib/libzpool
146 1.224 matt .endif
147 1.224 matt
148 1.163 matt .if (${MKLVM} != "no")
149 1.163 matt SUBDIR+= ../external/gpl2/lvm2/lib # depends on libprop
150 1.163 matt .endif
151 1.163 matt
152 1.155 plunky .if (${MKBINUTILS} != "no")
153 1.239 christos SUBDIR+= ../external/gpl3/${EXTERNAL_BINUTILS_SUBDIR}/lib # libbfd depends on libz
154 1.155 plunky .endif
155 1.155 plunky
156 1.202 joerg .if (${MKLIBCXX} != "no")
157 1.202 joerg SUBDIR+= ../external/bsd/libc++
158 1.202 joerg .endif
159 1.202 joerg
160 1.203 joerg .if (${MKGCC} != "no" && ${MKCXX} != "no" && ${MKLIBSTDCXX} != "no")
161 1.211 mrg SUBDIR+= ../external/gpl3/${EXTERNAL_GCC_SUBDIR}/lib/libstdc++-v3
162 1.211 mrg SUBDIR+= ../external/gpl3/${EXTERNAL_GCC_SUBDIR}/lib/libsupc++
163 1.155 plunky .endif
164 1.222 christos
165 1.222 christos #==================== 2nd library dependency barrier ====================
166 1.222 christos SUBDIR+= .WAIT
167 1.222 christos
168 1.245 christos .for sanitizer in asan ubsan
169 1.245 christos .if exists(../external/gpl3/${EXTERNAL_GCC_SUBDIR}/lib/lib${sanitizer})
170 1.245 christos SUBDIR+= ../external/gpl3/${EXTERNAL_GCC_SUBDIR}/lib/lib${sanitizer}
171 1.245 christos .endif
172 1.245 christos .endfor
173 1.155 plunky
174 1.221 mrg SUBDIR+= ../external/bsd/libarchive/lib # depends on libxz
175 1.221 mrg
176 1.208 mrg .if (${MKNPF} != "no")
177 1.208 mrg SUBDIR+= npf # depends on libnpf
178 1.208 mrg .endif
179 1.208 mrg
180 1.185 christos .if (${MKATF} != "no")
181 1.186 christos SUBDIR+= ../external/bsd/atf/lib # depends on libstdc++
182 1.185 christos .endif
183 1.185 christos
184 1.198 jmmv .if (${MKKYUA} != "no")
185 1.198 jmmv SUBDIR+= ../external/bsd/lutok/lib # depends on lua and libstdc++
186 1.198 jmmv .endif
187 1.198 jmmv
188 1.158 plunky SUBDIR+= libform # depends on libcurses
189 1.175 plunky SUBDIR+= libmenu # depends on libcurses
190 1.236 kamil SUBDIR+= libpanel # depends on libcurses
191 1.251 riastrad SUBDIR+= libradius # depends on libcrypto
192 1.187 christos .if (${MKRUMP} != "no")
193 1.175 plunky SUBDIR+= librump # depends on librumpuser
194 1.187 christos .endif
195 1.158 plunky
196 1.100 christos .if (${MKKERBEROS} != "no")
197 1.166 elric SUBDIR+= ../crypto/external/bsd/heimdal/lib # depends on libcrypto
198 1.166 elric # libedit, libterminfo,
199 1.100 christos .endif
200 1.100 christos
201 1.158 plunky SUBDIR+= ../crypto/external/bsd/openssh/lib # depends on libcrypto, libz
202 1.158 plunky SUBDIR+= ../crypto/external/bsd/netpgp/lib # depends on libcrypto, ...
203 1.199 christos SUBDIR+= ../external/bsd/libevent/lib # depends on libcrypto
204 1.235 christos .if ${MKDTRACE} != "no"
205 1.234 christos SUBDIR+= ../external/bsd/libproc/lib # depends on libstdc++, libctf
206 1.234 christos .endif
207 1.158 plunky SUBDIR+= ../external/bsd/fetch/lib # depends on libssl
208 1.158 plunky
209 1.158 plunky .if (${MKLDAP} != "no")
210 1.158 plunky SUBDIR+= ../external/bsd/openldap/lib # depends on libcrypto, ...
211 1.158 plunky .endif
212 1.158 plunky
213 1.124 lukem #==================== 3rd library dependency barrier ====================
214 1.124 lukem SUBDIR+= .WAIT
215 1.124 lukem
216 1.204 joerg SUBDIR+= ../external/bsd/bind/lib # depends on heimdal, libcrypto
217 1.251 riastrad .if ${MKUNBOUND} != "no"
218 1.246 christos SUBDIR+= ../external/bsd/unbound/lib # depends on libcrypto
219 1.246 christos .endif
220 1.204 joerg
221 1.230 christos .if ${MKDTRACE} != "no"
222 1.230 christos SUBDIR+= ../external/cddl/osnet/lib/libdtrace # depends on libproc
223 1.230 christos .endif
224 1.230 christos
225 1.187 christos .if (${MKRUMP} != "no")
226 1.143 pooka SUBDIR+= librumpdev # depends on librump
227 1.128 pooka SUBDIR+= librumpnet # depends on librump
228 1.130 pooka SUBDIR+= librumpvfs # depends on librump
229 1.187 christos .endif
230 1.126 pooka
231 1.175 plunky .if (${MKPAM} != "no")
232 1.175 plunky SUBDIR+= libpam # depends on heimdal
233 1.175 plunky .endif
234 1.175 plunky
235 1.175 plunky SUBDIR+= ../crypto/external/bsd/libsaslc # depends on heimdal, openssl
236 1.181 joerg SUBDIR+= ../external/bsd/mdocml/lib
237 1.181 joerg
238 1.187 christos .if (${MKRUMP} != "no")
239 1.126 pooka #==================== 4th library dependency barrier ====================
240 1.126 pooka SUBDIR+= .WAIT
241 1.158 plunky
242 1.158 plunky SUBDIR+= libukfs # depends on librumpvfs, librump
243 1.131 pooka
244 1.190 christos .if (${MKTPM} != "no")
245 1.190 christos SUBDIR+= ../crypto/external/cpl/trousers/lib
246 1.190 christos .endif
247 1.190 christos
248 1.131 pooka #==================== 5th library dependency barrier ====================
249 1.131 pooka SUBDIR+= .WAIT
250 1.158 plunky
251 1.158 plunky SUBDIR+= libp2k # depends on libukfs, librumpvfs, libpuffs
252 1.188 joerg
253 1.192 christos .if (${MKTPM} != "no")
254 1.192 christos SUBDIR+= ../crypto/external/cpl/tpm-tools/lib # depends on trousers
255 1.192 christos .endif
256 1.192 christos
257 1.188 joerg .if !defined(BSD_MK_COMPAT_FILE)
258 1.188 joerg SUBDIR+= ../sys/rump/dev/lib
259 1.188 joerg SUBDIR+= ../sys/rump/fs/lib
260 1.188 joerg SUBDIR+= ../sys/rump/kern/lib
261 1.188 joerg SUBDIR+= ../sys/rump/net/lib
262 1.188 joerg .endif
263 1.187 christos .endif
264 1.158 plunky
265 1.178 mbalmer # Lua bindings come last, they might depend on anything
266 1.178 mbalmer SUBDIR+= lua
267 1.178 mbalmer
268 1.210 christos # Needed by rump and rescue which are outside the smbfs tree
269 1.210 christos SUBDIR+= ../external/bsd/smbfs/lib
270 1.210 christos
271 1.251 riastrad .for S in ${SUBDIR}
272 1.251 riastrad .if ${S} != ".WAIT"
273 1.251 riastrad SUBLIB_${S}!= cd ${S} && ${MAKE} -V LIB
274 1.251 riastrad SUBDEP_${S}!= cd ${S} && ${MAKE} -V LIBDPLIBS
275 1.251 riastrad .endif
276 1.251 riastrad .endfor
277 1.251 riastrad
278 1.251 riastrad showdeps:
279 1.251 riastrad .for S in ${SUBDIR}
280 1.251 riastrad .if ${S} != ".WAIT"
281 1.251 riastrad .for DL DD in ${SUBDEP_${S}}
282 1.251 riastrad @echo ${S} ${SUBLIB_${S}} ${DL} ${DD:C,^${.CURDIR}/,,}
283 1.251 riastrad .endfor
284 1.251 riastrad .endif
285 1.251 riastrad .endfor
286 1.251 riastrad
287 1.195 joerg .include <bsd.buildinstall.mk>
288 1.1 cgd .include <bsd.subdir.mk>
289