]>
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 | ||
de355530 A |
10 | DATAFILES = \ |
11 | asm.h eflags.h exec.h machlimits.h \ | |
12 | endian.h trap.h soundcard.h | |
13 | ||
14 | EXPORT_ONLY_FILES = cpu_number.h \ | |
1c79356b A |
15 | hw_lock_types.h \ |
16 | io_map_entries.h \ | |
17 | lock.h \ | |
18 | machine_routines.h | |
19 | ||
de355530 | 20 | INSTALL_MD_LIST = ${DATAFILES} |
1c79356b | 21 | |
de355530 | 22 | INSTALL_MD_DIR = i386 |
d7e50217 | 23 | |
1c79356b A |
24 | EXPORT_MD_LIST = ${EXPORT_ONLY_FILES} |
25 | ||
26 | EXPORT_MD_DIR = i386 | |
27 | ||
28 | include $(MakeInc_rule) | |
29 | include $(MakeInc_dir) | |
30 | ||
31 |