forked from apple/darwin-xnu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
63 lines (48 loc) · 823 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
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 \
default_pager \
device \
mach_debug \
profiling \
UserNotification
INSTINC_SUBDIRS_PPC = \
mach \
profiling
INSTINC_SUBDIRS_I386 = \
mach \
profiling
EXPINC_SUBDIRS = \
mach \
device \
default_pager \
mach_debug \
profiling \
ddb \
kern \
kdp \
ipc \
machine \
UserNotification \
vm \
libsa
EXPINC_SUBDIRS_PPC = \
mach \
ppc \
profiling
EXPINC_SUBDIRS_I386 = \
mach \
i386 \
profiling
SETUP_SUBDIRS = \
conf
COMP_SUBDIRS = \
conf
INST_SUBDIRS = \
include $(MakeInc_rule)
include $(MakeInc_dir)