1export MakeInc_cmd=${SRCROOT}/makedefs/MakeInc.cmd 2export MakeInc_def=${SRCROOT}/makedefs/MakeInc.def 3export MakeInc_rule=${SRCROOT}/makedefs/MakeInc.rule 4export MakeInc_dir=${SRCROOT}/makedefs/MakeInc.dir 5 6include $(MakeInc_cmd) 7include $(MakeInc_def) 8 9INSTINC_SUBDIRS = \ 10 architecture \ 11 mach-o \ 12 sys 13 14INSTINC_SUBDIRS_X86_64 = \ 15 architecture 16 17INSTINC_SUBDIRS_X86_64H = \ 18 architecture 19 20INSTINC_SUBDIRS_ARM = \ 21 architecture 22 23INSTINC_SUBDIRS_ARM64 = \ 24 architecture 25 26EXPORT_FILES = \ 27 Availability.h \ 28 AvailabilityInternal.h \ 29 AvailabilityMacros.h 30 31KERNEL_FILES = \ 32 stdarg.h \ 33 stdatomic.h \ 34 stdbool.h \ 35 stddef.h \ 36 stdint.h \ 37 ptrauth.h 38 39INSTALL_MI_LIST = 40 41INSTALL_MI_DIR = . 42 43INSTALL_KF_MI_LIST = ${KERNEL_FILES} 44 45INSTALL_KF_MI_LCL_LIST = ${KERNEL_FILES} 46 47EXPORT_MI_LIST = ${EXPORT_FILES} ${KERNEL_FILES} 48 49EXPORT_MI_DIR = . 50 51include $(MakeInc_rule) 52include $(MakeInc_dir) 53