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
10INSTINC_SUBDIRS = \
11	machine
12INSTINC_SUBDIRS_X86_64 = \
13	i386
14INSTINC_SUBDIRS_ARM = \
15	arm
16
17EXPINC_SUBDIRS = ${INSTINC_SUBDIRS}
18EXPINC_SUBDIRS_X86_64 = ${INSTINC_SUBDIRS_X86_64}
19EXPINC_SUBDIRS_ARM = ${INSTINC_SUBDIRS_ARM}
20
21DATAFILES = \
22        boot.h \
23	protos.h \
24	pexpert.h
25
26INSTALL_MI_LIST	= ${DATAFILES}
27
28INSTALL_MI_DIR = pexpert
29
30EXPORT_MI_LIST	= ${DATAFILES} \
31		    device_tree.h
32
33EXPORT_MI_DIR = pexpert
34
35
36include $(MakeInc_rule)
37include $(MakeInc_dir)
38
39
40