Commit 777a2882 authored by Richard Levitte's avatar Richard Levitte
Browse files

unified build scheme: add build.info files



Now that we have the foundation for the "unified" build scheme in
place, we add build.info files.  They have been generated from the
Makefiles in the same directories.  Things that are platform specific
will appear in later commits.

Reviewed-by: default avatarAndy Polyakov <appro@openssl.org>
parent 9fe2bb77
Loading
Loading
Loading
Loading

apps/build.info

0 → 100644
+17 −0
Original line number Diff line number Diff line
{- use File::Spec::Functions qw/catdir abs2rel/; -}
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
INCLUDE[openssl]={- catdir(abs2rel($builddir,$sourcedir),"../include") -} .. ../include
DEPEND[openssl]=../libssl

SCRIPTS=CA.pl
SOURCE[CA.pl]=CA.pl.in

build.info

0 → 100644
+7 −0
Original line number Diff line number Diff line
{- use File::Spec::Functions qw/catdir abs2rel/; -}
LIBS=libcrypto libssl
ORDINALS[libcrypto]=crypto
ORDINALS[libssl]=ssl
INCLUDE[libcrypto]={- catdir(abs2rel($builddir,$sourcedir),"include") -} . crypto/include include
INCLUDE[libssl]={- catdir(abs2rel($builddir,$sourcedir),"include") -} . include
DEPEND[libssl]=libcrypto

crypto/aes/build.info

0 → 100644
+4 −0
Original line number Diff line number Diff line
LIBS=../../libcrypto
SOURCE[../../libcrypto]=\
        aes_misc.c aes_ecb.c aes_cfb.c aes_ofb.c \
        aes_ige.c aes_wrap.c {- $target{aes_asm_src} -}

crypto/asn1/build.info

0 → 100644
+16 −0
Original line number Diff line number Diff line
LIBS=../../libcrypto
SOURCE[../../libcrypto]=\
        a_object.c a_bitstr.c a_utctm.c a_gentm.c a_time.c a_int.c a_octet.c \
        a_print.c a_type.c a_dup.c a_d2i_fp.c a_i2d_fp.c \
        a_utf8.c a_sign.c a_digest.c a_verify.c a_mbstr.c a_strex.c \
        x_algor.c x_val.c x_pubkey.c x_sig.c x_bignum.c \
        x_long.c x_info.c x_spki.c nsseq.c \
        d2i_pu.c d2i_pr.c i2d_pu.c i2d_pr.c\
        t_pkey.c t_spki.c t_bitst.c \
        tasn_new.c tasn_fre.c tasn_enc.c tasn_dec.c tasn_utl.c tasn_typ.c \
        tasn_prn.c tasn_scn.c ameth_lib.c \
        f_int.c f_string.c n_pkey.c \
        x_pkey.c bio_asn1.c bio_ndef.c asn_mime.c \
        asn1_gen.c asn1_par.c asn1_lib.c asn1_err.c a_strnid.c \
        evp_asn1.c asn_pack.c p5_pbe.c p5_pbev2.c p5_scrypt.c p8_pkey.c \
        asn_moid.c asn_mstbl.c
+3 −0
Original line number Diff line number Diff line
LIBS=../../libcrypto
SOURCE[../../libcrypto]=\
        async.c async_err.c arch/async_posix.c arch/async_win.c arch/async_null.c
Loading