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 DistributionsMI_DIR = perfcontrol 10*1031c584SApple OSS DistributionsNOT_EXPORT_HEADERS = 11*1031c584SApple OSS Distributions 12*1031c584SApple OSS DistributionsALL_HEADERS = $(notdir $(wildcard $(SOURCE)*.h)) 13*1031c584SApple OSS Distributions 14*1031c584SApple OSS Distributions# Install these only in Kernel.framework's PrivateHeaders (not Headers). 15*1031c584SApple OSS DistributionsNOT_KF_MI_HEADERS = $(NOT_EXPORT_HEADERS) \ 16*1031c584SApple OSS Distributions IOPerfControl.h 17*1031c584SApple OSS Distributions 18*1031c584SApple OSS DistributionsINSTALL_IF_MI_LIST = 19*1031c584SApple OSS DistributionsINSTALL_IF_MI_LCL_LIST = 20*1031c584SApple OSS DistributionsINSTALL_MI_DIR = $(MI_DIR) 21*1031c584SApple OSS Distributions 22*1031c584SApple OSS DistributionsEXPORT_MI_LIST = $(filter-out $(NOT_EXPORT_HEADERS), $(ALL_HEADERS)) 23*1031c584SApple OSS DistributionsEXPORT_MI_DIR = IOKit/$(MI_DIR) 24*1031c584SApple OSS Distributions 25*1031c584SApple OSS DistributionsINSTALL_KF_MI_LIST = $(filter-out $(NOT_KF_MI_HEADERS), $(ALL_HEADERS)) 26*1031c584SApple OSS Distributions 27*1031c584SApple OSS Distributionsinclude $(MakeInc_rule) 28*1031c584SApple OSS Distributionsinclude $(MakeInc_dir) 29