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
6export COMP_LDFLAGS_COMPONENT_PPC = -Wl,-i_OSCompareAndSwap:_hw_compare_and_store \
7                                    -Wl,-i_OSDequeueAtomic:_hw_dequeue_atomic \
8                                    -Wl,-i_OSEnqueueAtomic:_hw_queue_atomic
9
10include $(MakeInc_cmd)
11include $(MakeInc_def)
12
13INSTINC_SUBDIRS = \
14	mach	\
15	device \
16	default_pager \
17	mach_debug \
18	kern \
19	ipc \
20	machine \
21	UserNotification \
22	gssd \
23	lockd \
24	vm \
25	libsa \
26	kdp
27
28INSTINC_SUBDIRS_PPC = \
29	mach \
30	ppc
31
32INSTINC_SUBDIRS_I386 = \
33	mach	\
34	i386
35
36INSTINC_SUBDIRS_ARM = \
37	mach	\
38	arm
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	lockd \
52	vm \
53	libsa \
54	kdp
55
56EXPINC_SUBDIRS_PPC = \
57	mach \
58	ppc
59
60EXPINC_SUBDIRS_I386 = \
61	mach	\
62	i386
63
64EXPINC_SUBDIRS_ARM = \
65	mach	\
66	arm
67
68SETUP_SUBDIRS = 	\
69	conf
70
71COMP_SUBDIRS = 	\
72	conf
73
74INST_SUBDIRS =	\
75
76
77include $(MakeInc_rule)
78include $(MakeInc_dir)
79