mirror of
https://github.com/openssl/openssl.git
synced 2024-11-21 01:15:20 +08:00
3a55c92bba
Adding uplink and applink to some builds was done by "magic", the configuration for "mingw" only had a macro definition, the Configure would react to its presence by adding the uplink source files to cpuid_asm_src, and crypto/build.info inherited dance to get it compiled, and Makefile.shared made sure applink.o would be appropriately linked in. That was a lot under the hood. To replace this, we create a few template configurations in Configurations/00-base-templates.conf, inherit one of them in the "mingw" configuration, the rest is just about refering to the $target{apps_aux_src} / $target{apps_obj} in the right places. Reviewed-by: Andy Polyakov <appro@openssl.org>
19 lines
778 B
Plaintext
19 lines
778 B
Plaintext
{- use File::Spec::Functions qw/catdir rel2abs/; -}
|
|
PROGRAMS=openssl
|
|
SOURCE[openssl]=\
|
|
openssl.c \
|
|
asn1pars.c ca.c ciphers.c cms.c crl.c crl2p7.c dgst.c dhparam.c \
|
|
dsa.c dsaparam.c ec.c ecparam.c enc.c engine.c errstr.c gendsa.c \
|
|
genpkey.c genrsa.c nseq.c ocsp.c passwd.c pkcs12.c pkcs7.c pkcs8.c \
|
|
pkey.c pkeyparam.c pkeyutl.c prime.c rand.c req.c rsa.c rsautl.c \
|
|
s_client.c s_server.c s_time.c sess_id.c smime.c speed.c spkac.c \
|
|
srp.c ts.c verify.c version.c x509.c rehash.c \
|
|
apps.c opt.c s_cb.c s_socket.c \
|
|
app_rand.c \
|
|
{- $target{apps_aux_src} -}
|
|
INCLUDE[openssl]={- rel2abs(catdir($builddir,"../include")) -} .. ../include
|
|
DEPEND[openssl]=../libssl
|
|
|
|
SCRIPTS=CA.pl
|
|
SOURCE[CA.pl]=CA.pl.in
|