]>
Commit | Line | Data |
---|---|---|
a39ff7e2 | 1 | |
1c79356b A |
2 | export MakeInc_cmd=${SRCROOT}/makedefs/MakeInc.cmd |
3 | export MakeInc_def=${SRCROOT}/makedefs/MakeInc.def | |
4 | export MakeInc_rule=${SRCROOT}/makedefs/MakeInc.rule | |
5 | export MakeInc_dir=${SRCROOT}/makedefs/MakeInc.dir | |
6 | ||
1c79356b A |
7 | include $(MakeInc_cmd) |
8 | include $(MakeInc_def) | |
9 | ||
fe8ab488 | 10 | DATAFILES = \ |
5ba3f43e | 11 | exc_guard.h \ |
3e170ce0 | 12 | exc_resource.h \ |
39037602 A |
13 | kern_cdata.h \ |
14 | kcdata.h | |
1c79356b | 15 | |
fe8ab488 | 16 | PRIVATE_DATAFILES = \ |
5ba3f43e | 17 | cs_blobs.h \ |
d9a64523 | 18 | trustcache.h \ |
3e170ce0 | 19 | debug.h \ |
813fb2f6 | 20 | ecc.h \ |
5ba3f43e | 21 | block_hint.h \ |
0a7de745 | 22 | lock_stat.h \ |
5ba3f43e | 23 | monotonic.h \ |
d9a64523 | 24 | arithmetic_128.h \ |
0a7de745 A |
25 | turnstile.h \ |
26 | remote_time.h | |
39236c6e | 27 | |
fe8ab488 | 28 | EXPORT_FILES = \ |
2d21ac55 | 29 | affinity.h \ |
1c79356b | 30 | assert.h \ |
b0d623f7 | 31 | audit_sessionport.h \ |
39037602 A |
32 | backtrace.h \ |
33 | bits.h \ | |
d9a64523 | 34 | btlog.h \ |
39236c6e | 35 | call_entry.h \ |
1c79356b | 36 | clock.h \ |
fe8ab488 | 37 | coalition.h \ |
1c79356b A |
38 | cpu_number.h \ |
39 | cpu_data.h \ | |
fe8ab488 | 40 | energy_perf.h \ |
6d2010ae | 41 | extmod_statistics.h \ |
fe8ab488 | 42 | hv_support.h \ |
1c79356b | 43 | ipc_mig.h \ |
d1ecb069 | 44 | ipc_misc.h \ |
1c79356b | 45 | kalloc.h \ |
b0d623f7 | 46 | kext_alloc.h \ |
1c79356b | 47 | kern_types.h \ |
39236c6e | 48 | kpc.h \ |
316670eb | 49 | ledger.h \ |
1c79356b | 50 | lock.h \ |
91447636 | 51 | locks.h \ |
0a7de745 | 52 | lock_group.h \ |
1c79356b A |
53 | host.h \ |
54 | mach_param.h \ | |
55 | macro_help.h \ | |
0a7de745 | 56 | mpqueue.h \ |
0c530ab8 | 57 | page_decrypt.h \ |
2d21ac55 | 58 | pms.h \ |
39037602 | 59 | policy_internal.h \ |
1c79356b A |
60 | processor.h \ |
61 | queue.h \ | |
d9a64523 | 62 | priority_queue.h \ |
1c79356b | 63 | sched_prim.h \ |
fe8ab488 | 64 | sfi.h \ |
1c79356b | 65 | simple_lock.h \ |
91447636 | 66 | startup.h \ |
1c79356b | 67 | task.h \ |
39236c6e | 68 | telemetry.h \ |
1c79356b | 69 | thread.h \ |
1c79356b | 70 | thread_call.h \ |
5ba3f43e | 71 | thread_group.h \ |
39236c6e | 72 | timer_call.h \ |
3e170ce0 | 73 | waitq.h \ |
5ba3f43e | 74 | work_interval.h \ |
1c79356b A |
75 | zalloc.h |
76 | ||
39037602 A |
77 | PRIVATE_EXPORT_FILES = \ |
78 | build_config.h \ | |
5ba3f43e A |
79 | mach_node_link.h \ |
80 | copyout_shim.h | |
81 | ||
d9a64523 A |
82 | XNU_ONLY_EXPORTS = \ |
83 | cpu_quiesce.h \ | |
84 | ipc_kobject.h \ | |
85 | ux_handler.h | |
86 | ||
fe8ab488 A |
87 | INSTALL_MI_LIST = ${DATAFILES} |
88 | ||
3e170ce0 | 89 | INSTALL_MI_LCL_LIST = ${PRIVATE_DATAFILES} |
fe8ab488 | 90 | |
39037602 | 91 | INSTALL_KF_MI_LCL_LIST = ${DATAFILES} ${PRIVATE_DATAFILES} ${EXPORT_FILES} ${PRIVATE_EXPORT_FILES} |
1c79356b A |
92 | |
93 | INSTALL_MI_DIR = kern | |
94 | ||
d9a64523 | 95 | EXPORT_MI_LIST = ${DATAFILES} ${PRIVATE_DATAFILES} ${EXPORT_FILES} ${XNU_ONLY_EXPORTS} |
1c79356b A |
96 | |
97 | EXPORT_MI_DIR = kern | |
98 | ||
99 | include $(MakeInc_rule) | |
100 | include $(MakeInc_dir) |