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 DistributionsINSTINC_SUBDIRS = \ 10*1b191cb5SApple OSS Distributions 11*1b191cb5SApple OSS DistributionsEXPINC_SUBDIRS = \ 12*1b191cb5SApple OSS Distributions 13*1b191cb5SApple OSS Distributions# Installs header file for user level - 14*1b191cb5SApple OSS Distributions# $(DSTROOT)/System/Library/Frameworks/System.framework/PrivateHeaders 15*1b191cb5SApple OSS Distributions# $(DSTROOT)/usr/include/ 16*1b191cb5SApple OSS DistributionsDATAFILES= \ 17*1b191cb5SApple OSS Distributions 18*1b191cb5SApple OSS Distributions# Installs header file for kernel extensions - 19*1b191cb5SApple OSS Distributions# $(DSTROOT)/System/Library/Frameworks/Kernel.framework/Headers 20*1b191cb5SApple OSS Distributions# $(DSTROOT)/System/Library/Frameworks/Kernel.framework/PrivateHeaders 21*1b191cb5SApple OSS DistributionsKERNELFILES= \ 22*1b191cb5SApple OSS Distributions 23*1b191cb5SApple OSS Distributions# Installs header file for Apple internal use in user level - 24*1b191cb5SApple OSS Distributions# $(DSTROOT)/System/Library/Frameworks/System.framework/PrivateHeaders 25*1b191cb5SApple OSS DistributionsPRIVATE_DATAFILES = \ 26*1b191cb5SApple OSS Distributions skywalk_common.h 27*1b191cb5SApple OSS Distributions 28*1b191cb5SApple OSS Distributions# Installs header file for Apple internal use for kernel extensions - 29*1b191cb5SApple OSS Distributions# $(DSTROOT)/System/Library/Frameworks/Kernel.framework/PrivateHeaders 30*1b191cb5SApple OSS DistributionsPRIVATE_KERNELFILES = \ 31*1b191cb5SApple OSS Distributions 32*1b191cb5SApple OSS DistributionsINSTALL_MI_LIST = ${DATAFILES} 33*1b191cb5SApple OSS Distributions 34*1b191cb5SApple OSS Distributions# /System/Library/Frameworks/System.framework/PrivateHeaders 35*1b191cb5SApple OSS DistributionsINSTALL_SF_MI_LCL_LIST = $(sort ${DATAFILES} ${PRIVATE_DATAFILES}) 36*1b191cb5SApple OSS Distributions 37*1b191cb5SApple OSS DistributionsINSTALL_MI_DIR = skywalk 38*1b191cb5SApple OSS Distributions 39*1b191cb5SApple OSS DistributionsEXPORT_MI_LIST = $(sort ${INSTALL_MI_LIST} ${INSTALL_SF_MI_LCL_LIST}) 40*1b191cb5SApple OSS Distributions 41*1b191cb5SApple OSS DistributionsEXPORT_MI_DIR = ${INSTALL_MI_DIR} 42*1b191cb5SApple OSS Distributions 43*1b191cb5SApple OSS Distributions# /System/Library/Frameworks/Kernel.framework/Headers 44*1b191cb5SApple OSS DistributionsINSTALL_KF_MI_LIST = $(sort ${KERNELFILES}) 45*1b191cb5SApple OSS Distributions 46*1b191cb5SApple OSS Distributions# /System/Library/Frameworks/Kernel.framework/PrivateHeaders 47*1b191cb5SApple OSS DistributionsINSTALL_KF_MI_LCL_LIST = $(sort ${KERNELFILES} ${PRIVATE_KERNELFILES}) 48*1b191cb5SApple OSS Distributions 49*1b191cb5SApple OSS Distributionsinclude $(MakeInc_rule) 50*1b191cb5SApple OSS Distributionsinclude $(MakeInc_dir) 51