blob: e166526943d9b42d57473fdcc873c1631aca0111 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# $NetBSD: Makefile,v 1.15 2009/12/23 00:17:40 darran Exp $
#
# This Makefile exists to provide a single point to build
# all libraries provided by external packages that may
# be used by other applications in the system.
#
.include <bsd.own.mk>
.if (${MKATF} != "no")
SUBDIR+= ../bsd/atf/lib
.endif
.if (${MKMDNS} != "no")
SUBDIR+= ../apache2/mDNSResponder/lib
.endif
.if (${MKCRYPTO} != "no")
SUBDIR+= ../../crypto/external/lib .WAIT
.if (${MKLDAP} != "no")
SUBDIR+= ../bsd/openldap/lib
.endif
.endif
.if (${MKISCSI} != "no")
SUBDIR+= ../bsd/iscsi/lib # depends on libpthread
.endif
SUBDIR+= ../bsd/fetch/lib
SUBDIR+= ../bsd/libarchive/lib
SUBDIR+= ../bsd/libevent/lib
SUBDIR+= ../bsd/libelf/lib
SUBDIR+= ../bsd/libdwarf/lib
SUBDIR+= ../bsd/am-utils/lib
SUBDIR+= ../bsd/bind/lib
SUBDIR+= ../bsd/file/lib
.include <bsd.subdir.mk>
|