Update documentation for keymgmt export utils
[openssl.git] / crypto / build.info
1 # Note that these directories are filtered in Configure.  Look for %skipdir
2 # there for further explanations.
3 SUBDIRS=objects buffer bio stack lhash rand evp asn1 pem x509 conf \
4         txt_db pkcs7 pkcs12 ui kdf store property \
5         md2 md4 md5 sha mdc2 hmac ripemd whrlpool poly1305 \
6         siphash sm3 des aes rc2 rc4 rc5 idea aria bf cast camellia \
7         seed sm4 chacha modes bn ec rsa dsa dh sm2 dso engine \
8         err comp http ocsp cms ts srp cmac ct async ess crmf cmp encode_decode \
9         ffc hpke thread
10
11 LIBS=../libcrypto
12
13 $UPLINKSRC=
14 $UPLINKDEF=
15 IF[{- !$disabled{uplink} -}]
16   $UPLINKSRC_common=../ms/uplink.c
17   $UPLINKSRC_x86=$UPLINKSRC_common uplink-x86.S
18   $UPLINKSRC_x86_64=$UPLINKSRC_common uplink-x86_64.s
19   $UPLINKSRC_ia64=$UPLINKSRC_common uplink-ia64.s
20
21   IF[$UPLINKSRC_{- $target{uplink_arch} -}]
22     $UPLINKSRC=$UPLINKSRC_{- $target{uplink_arch} -}
23     $UPLINKDEF=OPENSSL_USE_APPLINK
24   ENDIF
25 ENDIF
26
27 $CPUIDASM=mem_clr.c
28 $CPUIDDEF=
29 IF[{- !$disabled{asm} && $config{processor} ne '386' -}]
30   $CPUIDASM_x86=x86cpuid.S
31
32   $CPUIDASM_x86_64=x86_64cpuid.s
33
34   $CPUIDASM_ia64=ia64cpuid.s
35
36   $CPUIDASM_sparcv9=sparcv9cap.c sparccpuid.S
37
38   $CPUIDASM_alpha=alphacpuid.s
39
40   $CPUIDASM_s390x=s390xcap.c s390xcpuid.S
41
42   $CPUIDASM_armv4=armcap.c armv4cpuid.S
43
44   $CPUIDASM_aarch64=armcap.c arm64cpuid.S
45
46   $CPUIDASM_parisc11=pariscid.s
47   $CPUIDASM_parisc20_64=$CPUIDASM_parisc11
48
49   $CPUIDASM_ppc32=ppccpuid.s ppccap.c
50   $CPUIDASM_ppc64=$CPUIDASM_ppc32
51
52   $CPUIDASM_c64xplus=c64xpluscpuid.s
53
54   $CPUIDASM_riscv64=riscvcap.c riscv64cpuid.s
55   $CPUIDASM_riscv32=riscvcap.c riscv32cpuid.s
56
57   $CPUIDASM_loongarch64=loongarchcap.c loongarch64cpuid.s
58   # Now that we have defined all the arch specific variables, use the
59   # appropriate one, and define the appropriate macros
60   IF[$CPUIDASM_{- $target{asm_arch} -}]
61     $CPUIDASM=$CPUIDASM_{- $target{asm_arch} -}
62     $CPUIDDEF=OPENSSL_CPUID_OBJ
63   ENDIF
64 ENDIF
65
66 # CPUID support.  We need to add that explicitly in every shared library and
67 # provider module that uses it.  ctype.c is included here because the CPUID
68 # uses functions from there to parse magic environment variables.
69 $CPUID_COMMON=$CPUIDASM cpuid.c ctype.c
70 INCLUDE[cpuid.o]=..
71
72 SOURCE[../libcrypto]=$CPUID_COMMON
73 DEFINE[../libcrypto]=$CPUIDDEF
74 SOURCE[../providers/libfips.a]=$CPUID_COMMON
75 DEFINE[../providers/libfips.a]=$CPUIDDEF
76 # We only need to include the CPUID stuff in the legacy provider when it's a
77 # separate module and it's dynamically linked with libcrypto.  Otherwise, it
78 # already gets everything that the static libcrypto.a has, and doesn't need it
79 # added again.
80 IF[{- !$disabled{module} && !$disabled{shared} -}]
81   SOURCE[../providers/legacy]=$CPUID_COMMON
82   DEFINE[../providers/legacy]=$CPUIDDEF
83 ENDIF
84
85 # Implementations are now spread across several libraries, so the CPUID define
86 # need to be applied to all affected libraries and modules.
87 DEFINE[../providers/libcommon.a]=$CPUIDDEF
88 DEFINE[../providers/libdefault.a]=$CPUIDDEF
89
90 # The Core
91 $CORE_COMMON=provider_core.c provider_predefined.c \
92         core_fetch.c core_algorithm.c core_namemap.c self_test_core.c
93
94 SOURCE[../libcrypto]=$CORE_COMMON provider_conf.c
95 SOURCE[../providers/libfips.a]=$CORE_COMMON
96
97 # Central utilities
98 $UTIL_COMMON=\
99         cryptlib.c params.c params_from_text.c bsearch.c ex_data.c o_str.c \
100         threads_pthread.c threads_win.c threads_none.c initthread.c \
101         context.c sparse_array.c asn1_dsa.c packet.c param_build.c \
102         param_build_set.c der_writer.c threads_lib.c params_dup.c \
103         quic_vlint.c time.c
104
105 SOURCE[../libssl]=sparse_array.c
106
107 SOURCE[../libcrypto]=$UTIL_COMMON \
108         mem.c mem_sec.c \
109         cversion.c info.c cpt_err.c ebcdic.c uid.c o_time.c o_dir.c \
110         o_fopen.c getenv.c o_init.c init.c trace.c provider.c provider_child.c \
111         punycode.c passphrase.c sleep.c
112 SOURCE[../providers/libfips.a]=$UTIL_COMMON
113
114 SOURCE[../libcrypto]=$UPLINKSRC
115 DEFINE[../libcrypto]=$UPLINKDEF
116
117 DEPEND[info.o]=buildinf.h
118 DEPEND[cversion.o]=buildinf.h
119 GENERATE[buildinf.h]=../util/mkbuildinf.pl "$(CC) $(LIB_CFLAGS) $(CPPFLAGS_Q)" "$(PLATFORM)"
120
121 GENERATE[uplink-x86.S]=../ms/uplink-x86.pl
122 GENERATE[uplink-x86_64.s]=../ms/uplink-x86_64.pl
123 GENERATE[uplink-ia64.s]=../ms/uplink-ia64.pl
124
125 GENERATE[x86cpuid.S]=x86cpuid.pl
126 DEPEND[x86cpuid.s]=perlasm/x86asm.pl
127
128 GENERATE[x86_64cpuid.s]=x86_64cpuid.pl
129
130 GENERATE[ia64cpuid.s]=ia64cpuid.S
131 GENERATE[ppccpuid.s]=ppccpuid.pl
132 GENERATE[pariscid.s]=pariscid.pl
133 GENERATE[alphacpuid.s]=alphacpuid.pl
134 GENERATE[arm64cpuid.S]=arm64cpuid.pl
135 INCLUDE[arm64cpuid.o]=.
136 GENERATE[armv4cpuid.S]=armv4cpuid.pl
137 INCLUDE[armv4cpuid.o]=.
138 GENERATE[s390xcpuid.S]=s390xcpuid.pl
139 INCLUDE[s390xcpuid.o]=.
140 GENERATE[riscv64cpuid.s]=riscv64cpuid.pl
141 GENERATE[riscv32cpuid.s]=riscv32cpuid.pl
142
143 GENERATE[loongarch64cpuid.s]=loongarch64cpuid.pl
144 IF[{- $config{target} =~ /^(?:Cygwin|mingw|VC-|BC-)/ -}]
145   SHARED_SOURCE[../libcrypto]=dllmain.c
146 ENDIF