xref: /xnu-11215/bsd/crypto/Makefile (revision bb611c8f)
1export MakeInc_cmd=${SRCROOT}/makedefs/MakeInc.cmd
2export MakeInc_def=${SRCROOT}/makedefs/MakeInc.def
3export MakeInc_rule=${SRCROOT}/makedefs/MakeInc.rule
4export MakeInc_dir=${SRCROOT}/makedefs/MakeInc.dir
5
6include $(MakeInc_cmd)
7include $(MakeInc_def)
8
9EXPINC_SUBDIRS = \
10	entropy \
11
12PRIVATE_DATAFILES = \
13	sha1.h \
14	sha2.h \
15	des.h \
16	aes.h aesxts.h \
17
18INSTALL_MI_DIR = crypto
19
20EXPORT_MI_DIR = ${INSTALL_MI_DIR}
21
22INSTALL_KF_MI_LCL_LIST = ${PRIVATE_DATAFILES}
23
24# We use this to install aesxts.h in Kernel.framework/PrivateHeaders
25# in addition to Kernel.framework/PrivateHeaders/crypto
26# This should be removed once all clients are switched to include libkern/crypto/aesxts.h
27INSTALL_KF_MD_LCL_LIST = aesxts.h
28
29include $(MakeInc_rule)
30include $(MakeInc_dir)
31