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