]>
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 | DATAFILES = | |
11 | ||
12 | EXPORT_ONLY_FILES = \ | |
13 | assert.h \ | |
14 | clock.h \ | |
15 | cpu_number.h \ | |
16 | cpu_data.h \ | |
17 | debug.h \ | |
4452a7af | 18 | etimer.h \ |
1c79356b A |
19 | ipc_mig.h \ |
20 | kalloc.h \ | |
21 | kern_types.h \ | |
22 | lock.h \ | |
91447636 | 23 | locks.h \ |
1c79356b A |
24 | host.h \ |
25 | mach_param.h \ | |
26 | macro_help.h \ | |
4452a7af A |
27 | pms.h \ |
28 | page_decrypt.h \ | |
1c79356b A |
29 | processor.h \ |
30 | queue.h \ | |
31 | sched_prim.h \ | |
32 | simple_lock.h \ | |
91447636 | 33 | startup.h \ |
1c79356b A |
34 | task.h \ |
35 | thread.h \ | |
1c79356b | 36 | thread_call.h \ |
1c79356b A |
37 | wait_queue.h \ |
38 | zalloc.h | |
39 | ||
40 | INSTALL_MI_LIST = ${DATAFILES} | |
41 | ||
42 | INSTALL_MI_DIR = kern | |
43 | ||
44 | EXPORT_MI_LIST = ${DATAFILES} ${EXPORT_ONLY_FILES} | |
45 | ||
46 | EXPORT_MI_DIR = kern | |
47 | ||
48 | include $(MakeInc_rule) | |
49 | include $(MakeInc_dir) | |
50 | ||
51 |