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