]>
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 \ | |
18 | ipc_mig.h \ | |
19 | kalloc.h \ | |
20 | kern_types.h \ | |
21 | lock.h \ | |
9bccf70c | 22 | ledger.h \ |
1c79356b A |
23 | host.h \ |
24 | mach_param.h \ | |
25 | macro_help.h \ | |
26 | processor.h \ | |
27 | queue.h \ | |
28 | sched_prim.h \ | |
29 | simple_lock.h \ | |
30 | simple_lock_types.h \ | |
31 | sync_lock.h \ | |
32 | task.h \ | |
33 | thread.h \ | |
34 | thread_act.h \ | |
35 | thread_call.h \ | |
36 | time_out.h \ | |
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 |