X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/2d21ac55c334faf3a56e5634905ed6987fc787d4..3903760236c30e3b5ace7a4eefac3a269d68957c:/bsd/crypto/Makefile diff --git a/bsd/crypto/Makefile b/bsd/crypto/Makefile index 90a8d7eec..08f2ff7e5 100644 --- a/bsd/crypto/Makefile +++ b/bsd/crypto/Makefile @@ -3,35 +3,17 @@ export MakeInc_def=${SRCROOT}/makedefs/MakeInc.def export MakeInc_rule=${SRCROOT}/makedefs/MakeInc.rule export MakeInc_dir=${SRCROOT}/makedefs/MakeInc.dir - include $(MakeInc_cmd) include $(MakeInc_def) INSTINC_SUBDIRS = \ - blowfish \ - cast128 \ - des \ - rc4 \ - aes \ - sha2 - - -INSTINC_SUBDIRS_PPC = \ - -INSTINC_SUBDIRS_I386 = \ - -INSTINC_SUBDIRS_ARM = \ - -EXPINC_SUBDIRS = ${INSTINC_SUBDIRS} - -EXPINC_SUBDIRS_PPC = \ - -EXPINC_SUBDIRS_I386 = \ - -EXPINC_SUBDIRS_ARM = \ + rc4 \ PRIVATE_DATAFILES = \ - sha1.h + sha1.h \ + sha2.h \ + des.h \ + aes.h aesxts.h \ INSTALL_MI_DIR = crypto @@ -39,7 +21,10 @@ EXPORT_MI_DIR = ${INSTALL_MI_DIR} INSTALL_KF_MI_LCL_LIST = ${PRIVATE_DATAFILES} +# We use this to install aesxts.h in Kernel.framework/PrivateHeaders +# in addition to Kernel.framework/PrivateHeaders/crypto +# This should be removed once all clients are switched to include libkern/crypto/aesxts.h +INSTALL_KF_MD_LCL_LIST = aesxts.h + include $(MakeInc_rule) include $(MakeInc_dir) - -