xref: /xnu-11215/security/Makefile (revision e6231be0)
1e13b1fa5SApple OSS Distributionsexport MakeInc_cmd=${SRCROOT}/makedefs/MakeInc.cmd
2e13b1fa5SApple OSS Distributionsexport MakeInc_def=${SRCROOT}/makedefs/MakeInc.def
3e13b1fa5SApple OSS Distributionsexport MakeInc_rule=${SRCROOT}/makedefs/MakeInc.rule
4e13b1fa5SApple OSS Distributionsexport MakeInc_dir=${SRCROOT}/makedefs/MakeInc.dir
5e13b1fa5SApple OSS Distributions
6e13b1fa5SApple OSS Distributionsinclude $(MakeInc_cmd)
7e13b1fa5SApple OSS Distributionsinclude $(MakeInc_def)
8e13b1fa5SApple OSS Distributions
9a5e72196SApple OSS DistributionsINCDIR=$(SDKHEADERSROOT)/usr/local/include
10e13b1fa5SApple OSS Distributions
1176e12aa3SApple OSS Distributions# Installs header file for user level -
1276e12aa3SApple OSS Distributions#         $(DSTROOT)/System/Library/Frameworks/System.framework/PrivateHeaders
1376e12aa3SApple OSS Distributions#         $(DSTROOT)/usr/(local/)include/
1476e12aa3SApple OSS DistributionsDATAFILES= \
1576e12aa3SApple OSS Distributions	mac.h
1676e12aa3SApple OSS Distributions
1776e12aa3SApple OSS Distributions# Installs header file for kernel extensions -
1876e12aa3SApple OSS Distributions#         $(DSTROOT)/System/Library/Frameworks/Kernel.framework/Headers
1976e12aa3SApple OSS Distributions#         $(DSTROOT)/System/Library/Frameworks/Kernel.framework/PrivateHeaders
2076e12aa3SApple OSS DistributionsKERNELFILES= \
2176e12aa3SApple OSS Distributions
2276e12aa3SApple OSS Distributions# Installs header file for Apple internal use in user level -
2376e12aa3SApple OSS Distributions#         $(DSTROOT)/System/Library/Frameworks/System.framework/PrivateHeaders
2476e12aa3SApple OSS DistributionsPRIVATE_DATAFILES = ${DATAFILES}
2576e12aa3SApple OSS Distributions
2676e12aa3SApple OSS Distributions# Installs header file for Apple internal use for kernel extensions -
2776e12aa3SApple OSS Distributions#         $(DSTROOT)/System/Library/Frameworks/Kernel.framework/PrivateHeaders
2876e12aa3SApple OSS DistributionsPRIVATE_KERNELFILES = \
29e13b1fa5SApple OSS Distributions	_label.h \
3076e12aa3SApple OSS Distributions	mac.h \
31e13b1fa5SApple OSS Distributions	mac_data.h \
32e13b1fa5SApple OSS Distributions	mac_framework.h \
330f3703acSApple OSS Distributions	mac_internal.h \
34e13b1fa5SApple OSS Distributions	mac_mach_internal.h \
350f3703acSApple OSS Distributions	mac_policy.h
36e13b1fa5SApple OSS Distributions
37e13b1fa5SApple OSS DistributionsINSTALL_MI_LIST = ${DATAFILES}
38e13b1fa5SApple OSS Distributions
39e13b1fa5SApple OSS Distributions# /System/Library/Frameworks/System.framework/PrivateHeaders
40*e6231be0SApple OSS DistributionsINSTALL_SF_MI_LCL_LIST = $(sort ${DATAFILES} ${PRIVATE_DATAFILES})
41e13b1fa5SApple OSS Distributions
4276e12aa3SApple OSS DistributionsINSTALL_MI_DIR = security
4376e12aa3SApple OSS Distributions
4476e12aa3SApple OSS DistributionsEXPORT_MI_LIST = ${PRIVATE_KERNELFILES}
4576e12aa3SApple OSS Distributions
4676e12aa3SApple OSS DistributionsEXPORT_MI_DIR = ${INSTALL_MI_DIR}
4776e12aa3SApple OSS Distributions
4876e12aa3SApple OSS Distributions# /System/Library/Frameworks/Kernel.framework/Headers
4976e12aa3SApple OSS DistributionsINSTALL_KF_MI_LIST = $(sort ${KERNELFILES})
5076e12aa3SApple OSS Distributions
51e13b1fa5SApple OSS Distributions# /System/Library/Frameworks/Kernel.framework/PrivateHeaders
5276e12aa3SApple OSS DistributionsINSTALL_KF_MI_LCL_LIST = $(sort ${KERNELFILES} ${PRIVATE_KERNELFILES})
53e13b1fa5SApple OSS Distributions
54e13b1fa5SApple OSS DistributionsCOMP_SUBDIRS = conf
55e13b1fa5SApple OSS Distributions
56e13b1fa5SApple OSS Distributionsinclude $(MakeInc_rule)
57e13b1fa5SApple OSS Distributionsinclude $(MakeInc_dir)
58