blob: dc5f2fe9918a3e0889d1fa7f7a06ee999a6e3bb6 (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# $NetBSD: compatsubdir.mk,v 1.3 2009/12/15 05:23:25 mrg Exp $
# Build netbsd libraries.
.include <bsd.own.mk>
.if ${MKCOMPAT} != "no"
.if !make(includes)
# make sure we get an objdir built early enough
.include <bsd.prog.mk>
# XXX make this use MAKEOBJDIR
MAKEDIRTARGETENV= MAKEOBJDIRPREFIX=${.OBJDIR} MKOBJDIRS=yes MKSHARE=no BSD_MK_COMPAT_FILE=${BSD_MK_COMPAT_FILE}
# XXX fix the "library" list to include all 'external' libs?
.if defined(BOOTSTRAP_SUBDIRS)
SUBDIR= ${BOOTSTRAP_SUBDIRS}
.else
SUBDIR= ../../../gnu/lib/crtstuff4 .WAIT \
../../../lib/csu .WAIT \
../../../gnu/lib/libgcc4 .WAIT \
../../../lib/libc .WAIT \
../../../lib/libutil .WAIT \
../../../lib .WAIT \
../../../gnu/lib \
../../../external/bsd/bind/lib \
../../../external/bsd/libevent/lib \
../../../external/bsd/file/lib \
../../../libexec/ld.elf_so
.if ${MKATF} != "no"
SUBDIR+= ../../../external/bsd/atf/lib
.endif
.if (${MKLDAP} != "no")
SUBDIR+= ../../../external/bsd/openldap/lib
.endif
.if (${MKBINUTILS} != "no")
SUBDIR+= ../../../external/gpl3/binutils/lib
.endif
.if (${MKISCSI} != "no")
SUBDIR+= ../../../external/bsd/iscsi/lib
.endif
.endif
.include <bsd.subdir.mk>
.endif
.endif
|