Fix some bugs with the cfb1 bitsize handling
[openssl.git] / apps / build.info
1 {- our $tsget_name = $config{target} =~ /^(VC|vms)-/ ? "tsget.pl" : "tsget";
2    our @apps_openssl_src =
3        qw(openssl.c
4           asn1pars.c ca.c ciphers.c cms.c crl.c crl2p7.c dgst.c dhparam.c
5           dsa.c dsaparam.c ec.c ecparam.c enc.c engine.c errstr.c gendsa.c
6           genpkey.c genrsa.c nseq.c ocsp.c passwd.c pkcs12.c pkcs7.c pkcs8.c
7           pkey.c pkeyparam.c pkeyutl.c prime.c rand.c req.c rsa.c rsautl.c
8           s_client.c s_server.c s_time.c sess_id.c smime.c speed.c spkac.c
9           srp.c ts.c verify.c version.c x509.c rehash.c storeutl.c);
10    our @apps_lib_src =
11        ( qw(apps.c opt.c s_cb.c s_socket.c app_rand.c bf_prefix.c),
12          split(/\s+/, $target{apps_aux_src}) );
13    our @apps_init_src = split(/\s+/, $target{apps_init_src});
14    "" -}
15 IF[{- !$disabled{apps} -}]
16   LIBS_NO_INST=libapps.a
17   SOURCE[libapps.a]={- join(" ", @apps_lib_src) -}
18   INCLUDE[libapps.a]=.. ../include
19
20   PROGRAMS=openssl
21   SOURCE[openssl]={- join(" ", @apps_init_src) -}
22   SOURCE[openssl]={- join(" ", @apps_openssl_src) -}
23   INCLUDE[openssl]=.. ../include
24   DEPEND[openssl]=libapps.a ../libssl
25
26   {- join("\n  ", map { (my $x = $_) =~ s|\.c$|.o|; "DEPEND[$x]=progs.h" }
27                   @apps_openssl_src) -}
28   GENERATE[progs.h]=progs.pl $(APPS_OPENSSL)
29   DEPEND[progs.h]=../configdata.pm
30
31   SCRIPTS=CA.pl {- $tsget_name -}
32   SOURCE[CA.pl]=CA.pl.in
33   SOURCE[{- $tsget_name -}]=tsget.in
34 ENDIF