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
10DATAFILES =
11
12EXPORT_ONLY_FILES = \
13	affinity.h \
14	assert.h \
15	clock.h \
16	cpu_number.h \
17	cpu_data.h \
18	debug.h \
19	etimer.h \
20	ipc_mig.h \
21	kalloc.h \
22	kern_types.h \
23	lock.h \
24	locks.h \
25	host.h \
26	mach_param.h \
27	macro_help.h \
28	page_decrypt.h \
29	pms.h \
30	processor.h \
31	queue.h \
32	sched_prim.h \
33	simple_lock.h \
34	startup.h \
35	task.h \
36	thread.h \
37	thread_call.h \
38	wait_queue.h \
39	zalloc.h
40
41INSTALL_MI_LIST = ${DATAFILES}
42
43INSTALL_MI_DIR = kern
44
45EXPORT_MI_LIST = ${DATAFILES} ${EXPORT_ONLY_FILES}
46
47EXPORT_MI_DIR = kern
48
49include $(MakeInc_rule)
50include $(MakeInc_dir)
51
52
53