]>
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 | ||
1c79356b A |
6 | include $(MakeInc_cmd) |
7 | include $(MakeInc_def) | |
8 | ||
39037602 | 9 | EXPORT_ONLY_FILES = \ |
91447636 | 10 | apic.h \ |
0c530ab8 | 11 | asm.h \ |
3e170ce0 | 12 | atomic.h \ |
fe8ab488 | 13 | bit_routines.h \ |
43866e37 | 14 | cpu_number.h \ |
91447636 | 15 | cpu_capabilities.h \ |
0c530ab8 | 16 | cpu_data.h \ |
2d21ac55 | 17 | cpu_topology.h \ |
91447636 | 18 | cpuid.h \ |
0c530ab8 | 19 | eflags.h \ |
5ba3f43e | 20 | fpu.h \ |
1c79356b | 21 | io_map_entries.h \ |
593a1d5f | 22 | lapic.h \ |
1c79356b | 23 | lock.h \ |
91447636 | 24 | locks.h \ |
55e303ae A |
25 | machine_routines.h \ |
26 | machine_cpu.h \ | |
91447636 | 27 | mtrr.h \ |
55e303ae | 28 | mp.h \ |
91447636 | 29 | mp_desc.h \ |
55e303ae | 30 | mp_events.h \ |
6d2010ae A |
31 | pal_native.h \ |
32 | pal_routines.h \ | |
33 | pal_hibernate.h \ | |
fe8ab488 | 34 | panic_hooks.h \ |
0c530ab8 A |
35 | pmCPU.h \ |
36 | pmap.h \ | |
91447636 | 37 | proc_reg.h \ |
6d2010ae | 38 | rtclock_protos.h \ |
91447636 A |
39 | seg.h \ |
40 | simple_lock.h \ | |
3e170ce0 | 41 | smp.h \ |
0c530ab8 | 42 | tsc.h \ |
2d21ac55 | 43 | tss.h \ |
6d2010ae | 44 | ucode.h \ |
2d21ac55 | 45 | vmx.h |
1c79356b | 46 | |
de355530 | 47 | INSTALL_MD_DIR = i386 |
d7e50217 | 48 | |
2d21ac55 | 49 | INSTALL_MD_LIST = eflags.h user_ldt.h |
0c530ab8 | 50 | |
43866e37 A |
51 | INSTALL_MD_LCL_LIST = cpu_capabilities.h |
52 | ||
b0d623f7 A |
53 | INSTALL_KF_MD_LIST = asm.h cpuid.h eflags.h locks.h machine_routines.h proc_reg.h vmx.h |
54 | ||
fe8ab488 | 55 | INSTALL_KF_MD_LCL_LIST = $(filter-out bit_routines.h cpu_data.h pal_i386.h, $(EXPORT_ONLY_FILES)) |
b0d623f7 | 56 | |
1c79356b A |
57 | EXPORT_MD_LIST = ${EXPORT_ONLY_FILES} |
58 | ||
59 | EXPORT_MD_DIR = i386 | |
60 | ||
61 | include $(MakeInc_rule) | |
62 | include $(MakeInc_dir) |