]>
Commit | Line | Data |
---|---|---|
1c79356b A |
1 | export MakeInc_cmd=${SRCROOT}/makedefs/MakeInc.cmd |
2 | export MakeInc_def=${SRCROOT}/makedefs/MakeInc.def | |
3 | export MakeInc_rule=${SRCROOT}/makedefs/MakeInc.rule | |
4 | export MakeInc_dir=${SRCROOT}/makedefs/MakeInc.dir | |
5 | ||
6 | ||
7 | include $(MakeInc_cmd) | |
8 | include $(MakeInc_def) | |
9 | ||
10 | INSTINC_SUBDIRS = \ | |
11 | mach \ | |
12 | default_pager \ | |
13 | device \ | |
14 | mach_debug \ | |
15 | profiling \ | |
16 | UserNotification | |
17 | ||
18 | INSTINC_SUBDIRS_PPC = \ | |
19 | mach \ | |
20 | profiling | |
21 | ||
22 | INSTINC_SUBDIRS_I386 = \ | |
23 | mach \ | |
24 | profiling | |
25 | ||
26 | EXPINC_SUBDIRS = \ | |
27 | mach \ | |
28 | device \ | |
29 | default_pager \ | |
30 | mach_debug \ | |
31 | profiling \ | |
32 | ddb \ | |
33 | kern \ | |
9bccf70c | 34 | kdp \ |
1c79356b A |
35 | ipc \ |
36 | machine \ | |
37 | UserNotification \ | |
38 | vm \ | |
39 | libsa | |
40 | ||
41 | EXPINC_SUBDIRS_PPC = \ | |
42 | mach \ | |
43 | ppc \ | |
44 | profiling | |
45 | ||
46 | EXPINC_SUBDIRS_I386 = \ | |
47 | mach \ | |
48 | i386 \ | |
49 | profiling | |
50 | ||
51 | SETUP_SUBDIRS = \ | |
52 | conf | |
53 | ||
54 | COMP_SUBDIRS = \ | |
55 | conf | |
56 | ||
57 | INST_SUBDIRS = \ | |
58 | ||
59 | ||
60 | include $(MakeInc_rule) | |
61 | include $(MakeInc_dir) | |
62 | ||
63 |