xref: /xnu-8020.140.41/osfmk/vm/Makefile (revision 27b03b360a988dfd3dfdf34262bb0042026747cc)
1*27b03b36SApple OSS Distributionsexport MakeInc_cmd=${SRCROOT}/makedefs/MakeInc.cmd
2*27b03b36SApple OSS Distributionsexport MakeInc_def=${SRCROOT}/makedefs/MakeInc.def
3*27b03b36SApple OSS Distributionsexport MakeInc_rule=${SRCROOT}/makedefs/MakeInc.rule
4*27b03b36SApple OSS Distributionsexport MakeInc_dir=${SRCROOT}/makedefs/MakeInc.dir
5*27b03b36SApple OSS Distributions
6*27b03b36SApple OSS Distributionsinclude $(MakeInc_cmd)
7*27b03b36SApple OSS Distributionsinclude $(MakeInc_def)
8*27b03b36SApple OSS Distributions
9*27b03b36SApple OSS DistributionsDATAFILES =
10*27b03b36SApple OSS Distributions
11*27b03b36SApple OSS DistributionsPRIVATE_DATAFILES =
12*27b03b36SApple OSS Distributions
13*27b03b36SApple OSS DistributionsKERNELFILES = \
14*27b03b36SApple OSS Distributions	memory_types.h \
15*27b03b36SApple OSS Distributions	pmap.h \
16*27b03b36SApple OSS Distributions	lz4.h \
17*27b03b36SApple OSS Distributions	lz4_constants.h \
18*27b03b36SApple OSS Distributions	lz4_assembly_select.h \
19*27b03b36SApple OSS Distributions	vm_fault.h \
20*27b03b36SApple OSS Distributions	vm_kern.h \
21*27b03b36SApple OSS Distributions	vm_map.h \
22*27b03b36SApple OSS Distributions	vm_options.h \
23*27b03b36SApple OSS Distributions	vm_pageout.h \
24*27b03b36SApple OSS Distributions	vm_protos.h \
25*27b03b36SApple OSS Distributions	vm_shared_region.h \
26*27b03b36SApple OSS Distributions	vm_compressor_algorithms.h \
27*27b03b36SApple OSS Distributions	WKdm_new.h
28*27b03b36SApple OSS Distributions
29*27b03b36SApple OSS DistributionsPRIVATE_KERNELFILES = \
30*27b03b36SApple OSS Distributions	pmap_cs.h
31*27b03b36SApple OSS Distributions
32*27b03b36SApple OSS Distributions# /usr/include
33*27b03b36SApple OSS DistributionsINSTALL_MI_LIST = ${DATAFILES}
34*27b03b36SApple OSS Distributions
35*27b03b36SApple OSS Distributions# /System/Library/Frameworks/System.framework/PrivateHeaders
36*27b03b36SApple OSS DistributionsINSTALL_SF_MI_LCL_LIST = ${DATAFILES} ${PRIVATE_DATAFILES}
37*27b03b36SApple OSS Distributions
38*27b03b36SApple OSS Distributions# /System/Library/Frameworks/Kernel.framework/Headers
39*27b03b36SApple OSS DistributionsINSTALL_KF_MI_LIST = ${KERNELFILES}
40*27b03b36SApple OSS Distributions
41*27b03b36SApple OSS Distributions# /System/Library/Frameworks/Kernel.framework/PrivateHeaders
42*27b03b36SApple OSS DistributionsINSTALL_KF_MI_LCL_LIST = ${KERNELFILES} ${PRIVATE_KERNELFILES}
43*27b03b36SApple OSS Distributions
44*27b03b36SApple OSS DistributionsINSTALL_MI_DIR = vm
45*27b03b36SApple OSS Distributions
46*27b03b36SApple OSS Distributions# Exported to rest of XNU for compilation
47*27b03b36SApple OSS DistributionsEXPORT_MI_LIST = ${KERNELFILES} ${PRIVATE_KERNELFILES}
48*27b03b36SApple OSS Distributions
49*27b03b36SApple OSS DistributionsEXPORT_MI_DIR = vm
50*27b03b36SApple OSS Distributions
51*27b03b36SApple OSS Distributionsinclude $(MakeInc_rule)
52*27b03b36SApple OSS Distributionsinclude $(MakeInc_dir)
53