]>
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 \ | |
34 | ipc \ | |
35 | machine \ | |
36 | UserNotification \ | |
37 | vm \ | |
38 | libsa | |
39 | ||
40 | EXPINC_SUBDIRS_PPC = \ | |
41 | mach \ | |
42 | ppc \ | |
43 | profiling | |
44 | ||
45 | EXPINC_SUBDIRS_I386 = \ | |
46 | mach \ | |
47 | i386 \ | |
48 | profiling | |
49 | ||
50 | SETUP_SUBDIRS = \ | |
51 | conf | |
52 | ||
53 | COMP_SUBDIRS = \ | |
54 | conf | |
55 | ||
56 | INST_SUBDIRS = \ | |
57 | ||
58 | ||
59 | include $(MakeInc_rule) | |
60 | include $(MakeInc_dir) | |
61 | ||
62 |