]>
Commit | Line | Data |
---|---|---|
1c79356b A |
1 | export MakeInc_cmd=${SRCROOT}/makedefs/MakeInc.cmd |
2 | export MakeInc_def=${SRCROOT}/makedefs/MakeInc.def | |
3 | export MakeInc_rule=${SRCROOT}/makedefs/MakeInc.rule | |
4 | export MakeInc_dir=${SRCROOT}/makedefs/MakeInc.dir | |
5 | ||
6 | ||
7 | include $(MakeInc_cmd) | |
8 | include $(MakeInc_def) | |
9 | ||
10 | INSTINC_SUBDIRS = \ | |
39236c6e | 11 | rc4 \ |
2d21ac55 | 12 | |
9bccf70c | 13 | PRIVATE_DATAFILES = \ |
316670eb A |
14 | sha1.h \ |
15 | sha2.h \ | |
16 | des.h \ | |
17 | aes.h aesxts.h \ | |
1c79356b A |
18 | |
19 | INSTALL_MI_DIR = crypto | |
20 | ||
9bccf70c | 21 | EXPORT_MI_DIR = ${INSTALL_MI_DIR} |
1c79356b | 22 | |
91447636 | 23 | INSTALL_KF_MI_LCL_LIST = ${PRIVATE_DATAFILES} |
1c79356b | 24 | |
316670eb A |
25 | # We use this to install aesxts.h in Kernel.framework/PrivateHeaders |
26 | # in addition to Kernel.framework/PrivateHeaders/crypto | |
27 | # This should be removed once all clients are switched to include libkern/crypto/aesxts.h | |
28 | INSTALL_KF_MD_LCL_LIST = aesxts.h | |
29 | ||
1c79356b A |
30 | include $(MakeInc_rule) |
31 | include $(MakeInc_dir) | |
32 | ||
33 |