]>
Commit | Line | Data |
---|---|---|
5ba3f43e 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 | include $(MakeInc_cmd) | |
7 | include $(MakeInc_def) | |
8 | ||
9 | DATAFILES = \ | |
10 | endian.h fasttrap_isa.h param.h \ | |
11 | profile.h signal.h limits.h _limits.h \ | |
12 | types.h vmparam.h _types.h _param.h \ | |
13 | _mcontext.h | |
14 | ||
f427ee49 A |
15 | DRIVERKIT_DATAFILES = \ |
16 | limits.h _limits.h types.h _types.h endian.h | |
17 | ||
5ba3f43e A |
18 | PRIVATE_DATAFILES = \ |
19 | disklabel.h | |
20 | ||
21 | KERNELFILES = \ | |
22 | endian.h param.h \ | |
23 | profile.h signal.h limits.h _limits.h \ | |
24 | types.h vmparam.h _types.h _param.h \ | |
25 | _mcontext.h | |
26 | ||
27 | INSTALL_MD_LIST = ${DATAFILES} | |
f427ee49 | 28 | INSTALL_DRIVERKIT_MD_LIST = ${DRIVERKIT_DATAFILES} |
5ba3f43e A |
29 | INSTALL_MD_LCL_LIST = ${PRIVATE_DATAFILES} |
30 | ||
31 | INSTALL_MD_DIR = arm | |
32 | ||
33 | EXPORT_MD_LIST = ${KERNELFILES} | |
34 | ||
35 | EXPORT_MD_DIR = arm | |
36 | ||
37 | include $(MakeInc_rule) | |
38 | include $(MakeInc_dir) |