1*5e3eaea3SApple OSS Distributionsexport MakeInc_cmd=${SRCROOT}/makedefs/MakeInc.cmd 2*5e3eaea3SApple OSS Distributionsexport MakeInc_def=${SRCROOT}/makedefs/MakeInc.def 3*5e3eaea3SApple OSS Distributionsexport MakeInc_rule=${SRCROOT}/makedefs/MakeInc.rule 4*5e3eaea3SApple OSS Distributionsexport MakeInc_dir=${SRCROOT}/makedefs/MakeInc.dir 5*5e3eaea3SApple OSS Distributions 6*5e3eaea3SApple OSS Distributionsinclude $(MakeInc_cmd) 7*5e3eaea3SApple OSS Distributionsinclude $(MakeInc_def) 8*5e3eaea3SApple OSS Distributions 9*5e3eaea3SApple OSS DistributionsDATAFILES = \ 10*5e3eaea3SApple OSS Distributions asm.h boolean.h exception.h kern_return.h ndr_def.h rpc.h \ 11*5e3eaea3SApple OSS Distributions processor_info.h thread_state.h thread_status.h \ 12*5e3eaea3SApple OSS Distributions vm_param.h vm_types.h machine_types.defs \ 13*5e3eaea3SApple OSS Distributions syscall_sw.h sdt.h sdt_isa.h _structs.h 14*5e3eaea3SApple OSS Distributions 15*5e3eaea3SApple OSS Distributions# mach_machine.modulemap additionally includes machine.h from ../. 16*5e3eaea3SApple OSS Distributions# mach_machine.modulemap additionally includes the headers from 17*5e3eaea3SApple OSS Distributions# ../{i386,arm} and ../../arm64. 18*5e3eaea3SApple OSS DistributionsMODULEMAPFILES = \ 19*5e3eaea3SApple OSS Distributions mach_machine.modulemap 20*5e3eaea3SApple OSS Distributions 21*5e3eaea3SApple OSS DistributionsPRIVATE_DATAFILES = \ 22*5e3eaea3SApple OSS Distributions syscall_sw.h 23*5e3eaea3SApple OSS Distributions 24*5e3eaea3SApple OSS DistributionsINSTALL_MI_LIST = ${DATAFILES} 25*5e3eaea3SApple OSS Distributions 26*5e3eaea3SApple OSS DistributionsINSTALL_MODULEMAP_MI_LIST = ${MODULEMAPFILES} 27*5e3eaea3SApple OSS Distributions 28*5e3eaea3SApple OSS DistributionsINSTALL_SF_MI_LCL_LIST = ${DATAFILES} ${PRIVATE_DATAFILES} 29*5e3eaea3SApple OSS Distributions 30*5e3eaea3SApple OSS DistributionsINSTALL_MI_DIR = mach/machine 31*5e3eaea3SApple OSS Distributions 32*5e3eaea3SApple OSS DistributionsEXPORT_MI_LIST = ${DATAFILES} 33*5e3eaea3SApple OSS Distributions 34*5e3eaea3SApple OSS DistributionsEXPORT_MI_DIR = mach/machine 35*5e3eaea3SApple OSS Distributions 36*5e3eaea3SApple OSS Distributionsinclude $(MakeInc_rule) 37*5e3eaea3SApple OSS Distributionsinclude $(MakeInc_dir) 38