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