forked from apple/darwin-xnu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
34 lines (25 loc) · 761 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
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)
DATAFILES = \
endian.h fasttrap_isa.h param.h \
profile.h signal.h limits.h _limits.h \
types.h vmparam.h _types.h _param.h \
_mcontext.h
PRIVATE_DATAFILES = \
disklabel.h
KERNELFILES = \
endian.h param.h \
profile.h signal.h limits.h _limits.h \
types.h vmparam.h _types.h _param.h \
_mcontext.h
INSTALL_MD_LIST = ${DATAFILES}
INSTALL_MD_LCL_LIST = ${PRIVATE_DATAFILES}
INSTALL_MD_DIR = arm
EXPORT_MD_LIST = ${KERNELFILES}
EXPORT_MD_DIR = arm
include $(MakeInc_rule)
include $(MakeInc_dir)