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
6include $(MakeInc_cmd)
7include $(MakeInc_def)
8
9INSTINC_SUBDIRS = \
10	mach	\
11	device \
12	default_pager \
13	mach_debug \
14	kern \
15	ipc \
16	machine \
17	UserNotification \
18	gssd \
19	kextd \
20	lockd \
21	vm \
22	libsa \
23	kdp \
24	pmc \
25	kperf
26INSTINC_SUBDIRS_I386 = \
27	mach	\
28	i386
29INSTINC_SUBDIRS_ARM = \
30	mach	\
31	arm
32INSTINC_SUBDIRS_ARM64 = \
33	mach	\
34	arm
35INSTINC_SUBDIRS_X86_64 = \
36	mach	\
37	i386	\
38	x86_64
39
40EXPINC_SUBDIRS = \
41	mach	\
42	device \
43	default_pager \
44	mach_debug \
45	kern \
46	kdp \
47	ipc \
48	machine \
49	UserNotification \
50	gssd \
51	kextd \
52	lockd \
53	vm \
54	libsa \
55	kdp \
56	console \
57	pmc \
58	kperf
59
60EXPINC_SUBDIRS_I386 = \
61	mach	\
62	i386
63
64EXPINC_SUBDIRS_ARM = \
65	mach	\
66	arm
67
68EXPINC_SUBDIRS_ARM64 = \
69	mach	\
70	arm
71
72EXPINC_SUBDIRS_X86_64 = \
73	mach	\
74	i386	\
75	x86_64
76
77SETUP_SUBDIRS =
78
79COMP_SUBDIRS = 	\
80	conf
81
82INST_SUBDIRS =	\
83
84
85include $(MakeInc_rule)
86include $(MakeInc_dir)
87