forked from apple/darwin-xnu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
97 lines (86 loc) · 1.15 KB
/
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
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 = \
mach \
atm \
corpses \
bank \
voucher \
device \
default_pager \
mach_debug \
kern \
ipc \
machine \
UserNotification \
gssd \
kextd \
lockd \
vm \
libsa \
kdp \
console \
kperf \
prng
INSTINC_SUBDIRS_X86_64 = \
mach \
i386 \
x86_64
INSTINC_SUBDIRS_X86_64H = \
mach \
i386 \
x86_64
INSTINC_SUBDIRS_ARM = \
mach \
arm \
arm64
INSTINC_SUBDIRS_ARM64 = \
mach \
arm \
arm64
EXPINC_SUBDIRS = \
mach \
atm \
corpses \
bank \
voucher \
device \
default_pager \
mach_debug \
kern \
kdp \
ipc \
machine \
UserNotification \
gssd \
kextd \
lockd \
vm \
libsa \
console \
kperf \
prng
EXPINC_SUBDIRS_X86_64 = \
mach \
i386 \
x86_64
EXPINC_SUBDIRS_X86_64H = \
mach \
i386 \
x86_64
EXPINC_SUBDIRS_ARM = \
mach \
arm \
arm64
EXPINC_SUBDIRS_ARM64 = \
mach \
arm \
arm64
COMP_SUBDIRS = \
conf
include $(MakeInc_rule)
include $(MakeInc_dir)