]>
Commit | Line | Data |
---|---|---|
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 = \ | |
11 | blowfish \ | |
12 | cast128 \ | |
13 | rc4 \ | |
14 | ||
15 | INSTINC_SUBDIRS_I386 = \ | |
16 | ||
17 | INSTINC_SUBDIRS_X86_64 = \ | |
18 | ||
19 | INSTINC_SUBDIRS_ARM = \ | |
20 | ||
21 | EXPINC_SUBDIRS = ${INSTINC_SUBDIRS} | |
22 | ||
23 | EXPINC_SUBDIRS_I386 = \ | |
24 | ||
25 | EXPINC_SUBDIRS_X86_64 = \ | |
26 | ||
27 | EXPINC_SUBDIRS_ARM = \ | |
28 | ||
29 | PRIVATE_DATAFILES = \ | |
30 | sha1.h \ | |
31 | sha2.h \ | |
32 | des.h \ | |
33 | aes.h aesxts.h \ | |
34 | ||
35 | INSTALL_MI_DIR = crypto | |
36 | ||
37 | EXPORT_MI_DIR = ${INSTALL_MI_DIR} | |
38 | ||
39 | INSTALL_KF_MI_LCL_LIST = ${PRIVATE_DATAFILES} | |
40 | ||
41 | # We use this to install aesxts.h in Kernel.framework/PrivateHeaders | |
42 | # in addition to Kernel.framework/PrivateHeaders/crypto | |
43 | # This should be removed once all clients are switched to include libkern/crypto/aesxts.h | |
44 | INSTALL_KF_MD_LCL_LIST = aesxts.h | |
45 | ||
46 | include $(MakeInc_rule) | |
47 | include $(MakeInc_dir) | |
48 | ||
49 |