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