1export MakeInc_cmd=${SRCROOT}/makedefs/MakeInc.cmd
2export MakeInc_def=${SRCROOT}/makedefs/MakeInc.def
3export MakeInc_rule=${SRCROOT}/makedefs/MakeInc.rule
4export MakeInc_dir=${SRCROOT}/makedefs/MakeInc.dir
5
6
7include $(MakeInc_cmd)
8include $(MakeInc_def)
9
10
11DATAFILES = \
12	byte_order.h  endian.h fasttrap_isa.h \
13	limits.h param.h  profile.h \
14	signal.h  types.h \
15	vmparam.h _types.h _limits.h _param.h \
16	_mcontext.h
17
18KERNELFILES = \
19	disklabel.h \
20	byte_order.h  endian.h \
21	limits.h param.h   profile.h \
22	signal.h spl.h types.h \
23	vmparam.h _types.h _limits.h _param.h \
24	_mcontext.h
25
26
27INSTALL_MI_LIST = ${DATAFILES}
28INSTALL_MI_LCL_LIST = ${DATAFILES} disklabel.h
29
30INSTALL_MI_DIR = machine
31
32EXPORT_MI_LIST = ${KERNELFILES}
33
34EXPORT_MI_DIR = machine
35
36include $(MakeInc_rule)
37include $(MakeInc_dir)
38
39
40