forked from apple/darwin-xnu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
41 lines (30 loc) · 768 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
export MakeInc_cmd=${SRCROOT}/makedefs/MakeInc.cmd
export MakeInc_def=${SRCROOT}/makedefs/MakeInc.def
export MakeInc_rule=${SRCROOT}/makedefs/MakeInc.rule
export MakeInc_dir=${SRCROOT}/makedefs/MakeInc.dir
include $(MakeInc_cmd)
include $(MakeInc_def)
PRIVATE_DATAFILES = \
cpu_capabilities.h
KERNELFILES = \
atomic.h \
cpu_capabilities.h \
cpu_number.h \
io_map_entries.h \
lock.h \
locks.h \
machine_cpuid.h \
machine_routines.h \
machine_kpc.h \
monotonic.h \
pal_routines.h \
pal_hibernate.h \
simple_lock.h
EXPORT_FILES =
INSTALL_MI_LCL_LIST = ${PRIVATE_DATAFILES}
INSTALL_KF_MD_LCL_LIST = ${EXPORT_FILES}
INSTALL_MI_DIR = machine
EXPORT_MI_LIST = ${KERNELFILES}
EXPORT_MI_DIR = machine
include $(MakeInc_rule)
include $(MakeInc_dir)