]>
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 | ||
10 | DATAFILES = \ | |
2d21ac55 | 11 | endian.h fasttrap_isa.h param.h \ |
91447636 | 12 | profile.h setjmp.h signal.h \ |
2d21ac55 | 13 | types.h vmparam.h _structs.h _types.h _param.h |
91447636 A |
14 | |
15 | KERNELFILES = \ | |
16 | endian.h param.h \ | |
17 | profile.h setjmp.h signal.h \ | |
2d21ac55 | 18 | types.h vmparam.h _structs.h _types.h _param.h |
1c79356b A |
19 | |
20 | ||
21 | INSTALL_MD_LIST = ${DATAFILES} | |
91447636 | 22 | INSTALL_MD_LCL_LIST = ${DATAFILES} disklabel.h |
1c79356b A |
23 | |
24 | INSTALL_MD_DIR = i386 | |
25 | ||
91447636 | 26 | EXPORT_MD_LIST = ${KERNELFILES} |
1c79356b A |
27 | |
28 | EXPORT_MD_DIR = i386 | |
29 | ||
30 | include $(MakeInc_rule) | |
31 | include $(MakeInc_dir) | |
32 | ||
33 |