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 DistributionsINCDIR=$(SDKHEADERSROOT)/usr/local/include 10*5e3eaea3SApple OSS Distributions 11*5e3eaea3SApple OSS Distributions# Installs header file for user level - 12*5e3eaea3SApple OSS Distributions# $(DSTROOT)/System/Library/Frameworks/System.framework/PrivateHeaders 13*5e3eaea3SApple OSS Distributions# $(DSTROOT)/usr/(local/)include/ 14*5e3eaea3SApple OSS DistributionsDATAFILES= \ 15*5e3eaea3SApple OSS Distributions mac.h 16*5e3eaea3SApple OSS Distributions 17*5e3eaea3SApple OSS Distributions# Installs header file for kernel extensions - 18*5e3eaea3SApple OSS Distributions# $(DSTROOT)/System/Library/Frameworks/Kernel.framework/Headers 19*5e3eaea3SApple OSS Distributions# $(DSTROOT)/System/Library/Frameworks/Kernel.framework/PrivateHeaders 20*5e3eaea3SApple OSS DistributionsKERNELFILES= \ 21*5e3eaea3SApple OSS Distributions 22*5e3eaea3SApple OSS Distributions# Installs header file for Apple internal use in user level - 23*5e3eaea3SApple OSS Distributions# $(DSTROOT)/System/Library/Frameworks/System.framework/PrivateHeaders 24*5e3eaea3SApple OSS DistributionsPRIVATE_DATAFILES = ${DATAFILES} 25*5e3eaea3SApple OSS Distributions 26*5e3eaea3SApple OSS Distributions# Installs header file for Apple internal use for kernel extensions - 27*5e3eaea3SApple OSS Distributions# $(DSTROOT)/System/Library/Frameworks/Kernel.framework/PrivateHeaders 28*5e3eaea3SApple OSS DistributionsPRIVATE_KERNELFILES = \ 29*5e3eaea3SApple OSS Distributions _label.h \ 30*5e3eaea3SApple OSS Distributions mac.h \ 31*5e3eaea3SApple OSS Distributions mac_data.h \ 32*5e3eaea3SApple OSS Distributions mac_framework.h \ 33*5e3eaea3SApple OSS Distributions mac_internal.h \ 34*5e3eaea3SApple OSS Distributions mac_mach_internal.h \ 35*5e3eaea3SApple OSS Distributions mac_policy.h 36*5e3eaea3SApple OSS Distributions 37*5e3eaea3SApple OSS DistributionsINSTALL_MI_LIST = ${DATAFILES} 38*5e3eaea3SApple OSS Distributions 39*5e3eaea3SApple OSS Distributions# /System/Library/Frameworks/System.framework/PrivateHeaders 40*5e3eaea3SApple OSS DistributionsINSTALL_SF_MI_LCL_LIST = $(sort ${DATAFILES} ${PRIVATE_DATAFILES}) 41*5e3eaea3SApple OSS Distributions 42*5e3eaea3SApple OSS DistributionsINSTALL_MI_DIR = security 43*5e3eaea3SApple OSS Distributions 44*5e3eaea3SApple OSS DistributionsEXPORT_MI_LIST = ${PRIVATE_KERNELFILES} 45*5e3eaea3SApple OSS Distributions 46*5e3eaea3SApple OSS DistributionsEXPORT_MI_DIR = ${INSTALL_MI_DIR} 47*5e3eaea3SApple OSS Distributions 48*5e3eaea3SApple OSS Distributions# /System/Library/Frameworks/Kernel.framework/Headers 49*5e3eaea3SApple OSS DistributionsINSTALL_KF_MI_LIST = $(sort ${KERNELFILES}) 50*5e3eaea3SApple OSS Distributions 51*5e3eaea3SApple OSS Distributions# /System/Library/Frameworks/Kernel.framework/PrivateHeaders 52*5e3eaea3SApple OSS DistributionsINSTALL_KF_MI_LCL_LIST = $(sort ${KERNELFILES} ${PRIVATE_KERNELFILES}) 53*5e3eaea3SApple OSS Distributions 54*5e3eaea3SApple OSS DistributionsCOMP_SUBDIRS = conf 55*5e3eaea3SApple OSS Distributions 56*5e3eaea3SApple OSS Distributionsinclude $(MakeInc_rule) 57*5e3eaea3SApple OSS Distributionsinclude $(MakeInc_dir) 58