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	param.h  profile.h \
14	setjmp.h signal.h  types.h\
15	vmparam.h _structs.h _types.h _limits.h _param.h
16
17KERNELFILES = \
18	disklabel.h \
19	byte_order.h  endian.h \
20	param.h   profile.h \
21	signal.h spl.h types.h \
22	vmparam.h _structs.h _types.h _limits.h _param.h
23
24
25INSTALL_MI_LIST = ${DATAFILES}
26INSTALL_MI_LCL_LIST = ${DATAFILES} disklabel.h
27
28INSTALL_MI_DIR = machine
29
30EXPORT_MI_LIST = ${KERNELFILES}
31
32EXPORT_MI_DIR = machine
33
34include $(MakeInc_rule)
35include $(MakeInc_dir)
36
37
38