forked from apple/darwin-xnu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
79 lines (63 loc) · 951 Bytes
/
Makefile
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
export MakeInc_cmd=${SRCROOT}/makedefs/MakeInc.cmd
export MakeInc_def=${SRCROOT}/makedefs/MakeInc.def
export MakeInc_rule=${SRCROOT}/makedefs/MakeInc.rule
export MakeInc_dir=${SRCROOT}/makedefs/MakeInc.dir
include $(MakeInc_cmd)
include $(MakeInc_def)
INSTINC_SUBDIRS = \
bsm \
crypto \
dev \
libkern \
machine \
miscfs \
net \
netinet \
netinet6 \
netkey \
nfs \
security \
sys \
uuid \
vfs
INSTINC_SUBDIRS_X86_64 = \
i386 \
crypto
INSTINC_SUBDIRS_X86_64H = \
i386 \
crypto
INSTINC_SUBDIRS_ARM = \
arm
INSTINC_SUBDIRS_ARM64 = \
arm
EXPINC_SUBDIRS = \
bsm \
dev \
libkern \
machine \
miscfs \
net \
netinet \
netinet6 \
netkey \
security \
sys \
uuid \
vfs \
vm
EXPINC_SUBDIRS_X86_64 = \
i386
EXPINC_SUBDIRS_X86_64H = \
i386
EXPINC_SUBDIRS_ARM = \
arm
EXPINC_SUBDIRS_ARM64 = \
arm
COMP_SUBDIRS = \
conf
INSTTEXTFILES_SUBDIRS = \
dev \
man \
sys
include $(MakeInc_rule)
include $(MakeInc_dir)