-OpenSSL Fixes
This commit is contained in:
parent
5ab65f0ead
commit
4dc4e96c8a
|
@ -34,7 +34,7 @@ Error HTTPClient::connect_url(const String& p_url) {
|
|||
return OK;
|
||||
}
|
||||
|
||||
Error HTTPClient::connect(const String &p_host, int p_port, bool p_ssl){
|
||||
Error HTTPClient::connect(const String &p_host, int p_port, bool p_ssl,bool p_verify_host){
|
||||
|
||||
close();
|
||||
conn_port=p_port;
|
||||
|
@ -50,6 +50,7 @@ Error HTTPClient::connect(const String &p_host, int p_port, bool p_ssl){
|
|||
|
||||
|
||||
ssl=p_ssl;
|
||||
ssl_verify_host=p_verify_host;
|
||||
connection=tcp_connection;
|
||||
|
||||
|
||||
|
@ -239,7 +240,7 @@ Error HTTPClient::poll(){
|
|||
case StreamPeerTCP::STATUS_CONNECTED: {
|
||||
if (ssl) {
|
||||
Ref<StreamPeerSSL> ssl = StreamPeerSSL::create();
|
||||
Error err = ssl->connect(tcp_connection,true,conn_host);
|
||||
Error err = ssl->connect(tcp_connection,true,ssl_verify_host?conn_host:String());
|
||||
if (err!=OK) {
|
||||
close();
|
||||
status=STATUS_SSL_HANDSHAKE_ERROR;
|
||||
|
@ -553,7 +554,7 @@ bool HTTPClient::is_blocking_mode_enabled() const{
|
|||
|
||||
void HTTPClient::_bind_methods() {
|
||||
|
||||
ObjectTypeDB::bind_method(_MD("connect:Error","host","port","use_ssl"),&HTTPClient::connect,DEFVAL(false));
|
||||
ObjectTypeDB::bind_method(_MD("connect:Error","host","port","use_ssl"),&HTTPClient::connect,DEFVAL(false),DEFVAL(true));
|
||||
ObjectTypeDB::bind_method(_MD("set_connection","connection:StreamPeer"),&HTTPClient::set_connection);
|
||||
ObjectTypeDB::bind_method(_MD("request","method","url","headers","body"),&HTTPClient::request,DEFVAL(String()));
|
||||
ObjectTypeDB::bind_method(_MD("send_body_text","body"),&HTTPClient::send_body_text);
|
||||
|
|
|
@ -137,6 +137,7 @@ private:
|
|||
int conn_port;
|
||||
String conn_host;
|
||||
bool ssl;
|
||||
bool ssl_verify_host;
|
||||
bool blocking;
|
||||
|
||||
Vector<uint8_t> response_str;
|
||||
|
@ -161,7 +162,7 @@ public:
|
|||
|
||||
|
||||
Error connect_url(const String& p_url); //connects to a full url and perform request
|
||||
Error connect(const String &p_host,int p_port,bool p_ssl=false);
|
||||
Error connect(const String &p_host,int p_port,bool p_ssl=false,bool p_verify_host=true);
|
||||
|
||||
void set_connection(const Ref<StreamPeer>& p_connection);
|
||||
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
Import('env')
|
||||
|
||||
openssl_sources = [
|
||||
"builtin_openssl/nocpuid.c",
|
||||
"builtin_openssl/ssl/t1_lib.c",
|
||||
"builtin_openssl/ssl/s3_srvr.c",
|
||||
"builtin_openssl/ssl/t1_enc.c",
|
||||
|
@ -10,7 +11,6 @@ openssl_sources = [
|
|||
"builtin_openssl/ssl/tls_srp.c",
|
||||
"builtin_openssl/ssl/kssl.c",
|
||||
"builtin_openssl/ssl/d1_both.c",
|
||||
#"builtin_openssl/ssl/ssltest.c",
|
||||
"builtin_openssl/ssl/d1_enc.c",
|
||||
"builtin_openssl/ssl/t1_clnt.c",
|
||||
"builtin_openssl/ssl/bio_ssl.c",
|
||||
|
@ -30,7 +30,6 @@ openssl_sources = [
|
|||
"builtin_openssl/ssl/s3_both.c",
|
||||
"builtin_openssl/ssl/s2_enc.c",
|
||||
"builtin_openssl/ssl/s3_meth.c",
|
||||
#"builtin_openssl/ssl/ssl_task.c",
|
||||
"builtin_openssl/ssl/s3_enc.c",
|
||||
"builtin_openssl/ssl/s23_pkt.c",
|
||||
"builtin_openssl/ssl/s2_pkt.c",
|
||||
|
@ -50,10 +49,8 @@ openssl_sources = [
|
|||
"builtin_openssl/ssl/s2_lib.c",
|
||||
"builtin_openssl/ssl/ssl_err2.c",
|
||||
"builtin_openssl/ssl/ssl_ciph.c",
|
||||
#"builtin_openssl/crypto/dsa/dsatest.c",
|
||||
"builtin_openssl/crypto/dsa/dsa_lib.c",
|
||||
"builtin_openssl/crypto/dsa/dsa_pmeth.c",
|
||||
"builtin_openssl/crypto/dsa/dsagen.c",
|
||||
"builtin_openssl/crypto/dsa/dsa_ossl.c",
|
||||
"builtin_openssl/crypto/dsa/dsa_gen.c",
|
||||
"builtin_openssl/crypto/dsa/dsa_asn1.c",
|
||||
|
@ -179,14 +176,12 @@ openssl_sources = [
|
|||
"builtin_openssl/crypto/evp/m_ecdsa.c",
|
||||
"builtin_openssl/crypto/evp/bio_enc.c",
|
||||
"builtin_openssl/crypto/evp/e_des3.c",
|
||||
"builtin_openssl/crypto/evp/openbsd_hw.c",
|
||||
"builtin_openssl/crypto/evp/m_null.c",
|
||||
"builtin_openssl/crypto/evp/bio_ok.c",
|
||||
"builtin_openssl/crypto/evp/pmeth_gn.c",
|
||||
"builtin_openssl/crypto/evp/e_rc5.c",
|
||||
"builtin_openssl/crypto/evp/e_rc2.c",
|
||||
"builtin_openssl/crypto/evp/p_dec.c",
|
||||
"builtin_openssl/crypto/evp/e_dsa.c",
|
||||
"builtin_openssl/crypto/evp/p_verify.c",
|
||||
"builtin_openssl/crypto/evp/e_rc4_hmac_md5.c",
|
||||
"builtin_openssl/crypto/evp/pmeth_lib.c",
|
||||
|
@ -197,7 +192,6 @@ openssl_sources = [
|
|||
"builtin_openssl/crypto/evp/m_dss.c",
|
||||
"builtin_openssl/crypto/evp/bio_md.c",
|
||||
"builtin_openssl/crypto/evp/evp_pbe.c",
|
||||
#"builtin_openssl/crypto/evp/evp_test.c",
|
||||
"builtin_openssl/crypto/evp/e_seed.c",
|
||||
"builtin_openssl/crypto/evp/e_cast.c",
|
||||
"builtin_openssl/crypto/evp/p_open.c",
|
||||
|
@ -229,7 +223,6 @@ openssl_sources = [
|
|||
"builtin_openssl/crypto/evp/evp_pkey.c",
|
||||
"builtin_openssl/crypto/evp/m_md4.c",
|
||||
"builtin_openssl/crypto/ex_data.c",
|
||||
#"builtin_openssl/crypto/LPdir_win.c",
|
||||
"builtin_openssl/crypto/pkcs12/p12_p8e.c",
|
||||
"builtin_openssl/crypto/pkcs12/p12_crt.c",
|
||||
"builtin_openssl/crypto/pkcs12/p12_utl.c",
|
||||
|
@ -248,27 +241,19 @@ openssl_sources = [
|
|||
"builtin_openssl/crypto/ecdh/ech_key.c",
|
||||
"builtin_openssl/crypto/ecdh/ech_ossl.c",
|
||||
"builtin_openssl/crypto/ecdh/ech_lib.c",
|
||||
#"builtin_openssl/crypto/ecdh/ecdhtest.c",
|
||||
"builtin_openssl/crypto/ecdh/ech_err.c",
|
||||
"builtin_openssl/crypto/o_str.c",
|
||||
#"builtin_openssl/crypto/conf/cnf_save.c",
|
||||
"builtin_openssl/crypto/conf/conf_api.c",
|
||||
"builtin_openssl/crypto/conf/conf_err.c",
|
||||
"builtin_openssl/crypto/conf/conf_def.c",
|
||||
"builtin_openssl/crypto/conf/conf_lib.c",
|
||||
"builtin_openssl/crypto/conf/conf_mall.c",
|
||||
#"builtin_openssl/crypto/conf/test.c",
|
||||
"builtin_openssl/crypto/conf/conf_sap.c",
|
||||
"builtin_openssl/crypto/conf/conf_mod.c",
|
||||
#"builtin_openssl/crypto/store/str_lib.c",
|
||||
#"builtin_openssl/crypto/store/str_err.c",
|
||||
#"builtin_openssl/crypto/store/str_mem.c",
|
||||
#"builtin_openssl/crypto/store/str_meth.c",
|
||||
"builtin_openssl/crypto/ebcdic.c",
|
||||
"builtin_openssl/crypto/ecdsa/ecs_lib.c",
|
||||
"builtin_openssl/crypto/ecdsa/ecs_asn1.c",
|
||||
"builtin_openssl/crypto/ecdsa/ecs_ossl.c",
|
||||
#"builtin_openssl/crypto/ecdsa/ecdsatest.c",
|
||||
"builtin_openssl/crypto/ecdsa/ecs_vrf.c",
|
||||
"builtin_openssl/crypto/ecdsa/ecs_sign.c",
|
||||
"builtin_openssl/crypto/ecdsa/ecs_err.c",
|
||||
|
@ -282,35 +267,22 @@ openssl_sources = [
|
|||
"builtin_openssl/crypto/dso/dso_err.c",
|
||||
"builtin_openssl/crypto/dso/dso_openssl.c",
|
||||
"builtin_openssl/crypto/cryptlib.c",
|
||||
#"builtin_openssl/crypto/md5/md5.c",
|
||||
#"builtin_openssl/crypto/md5/md5test.c",
|
||||
"builtin_openssl/crypto/md5/md5_one.c",
|
||||
"builtin_openssl/crypto/md5/md5_dgst.c",
|
||||
"builtin_openssl/crypto/pkcs7/pkcs7err.c",
|
||||
#"builtin_openssl/crypto/pkcs7/pk7_enc.c",
|
||||
"builtin_openssl/crypto/pkcs7/enc.c",
|
||||
"builtin_openssl/crypto/pkcs7/pk7_dgst.c",
|
||||
"builtin_openssl/crypto/pkcs7/pk7_smime.c",
|
||||
"builtin_openssl/crypto/pkcs7/dec.c",
|
||||
"builtin_openssl/crypto/pkcs7/bio_pk7.c",
|
||||
"builtin_openssl/crypto/pkcs7/sign.c",
|
||||
"builtin_openssl/crypto/pkcs7/pk7_mime.c",
|
||||
"builtin_openssl/crypto/pkcs7/verify.c",
|
||||
#"builtin_openssl/crypto/pkcs7/bio_ber.c",
|
||||
"builtin_openssl/crypto/pkcs7/pk7_lib.c",
|
||||
"builtin_openssl/crypto/pkcs7/pk7_asn1.c",
|
||||
"builtin_openssl/crypto/pkcs7/pk7_doit.c",
|
||||
"builtin_openssl/crypto/pkcs7/pk7_attr.c",
|
||||
#"builtin_openssl/crypto/pkcs7/example.c",
|
||||
"builtin_openssl/crypto/md4/md4_one.c",
|
||||
"builtin_openssl/crypto/md4/md4.c",
|
||||
"builtin_openssl/crypto/md4/md4_dgst.c",
|
||||
#"builtin_openssl/crypto/md4/md4test.c",
|
||||
"builtin_openssl/crypto/o_dir.c",
|
||||
"builtin_openssl/crypto/buffer/buf_err.c",
|
||||
"builtin_openssl/crypto/buffer/buf_str.c",
|
||||
"builtin_openssl/crypto/buffer/buffer.c",
|
||||
#"builtin_openssl/crypto/ppccap.c",
|
||||
"builtin_openssl/crypto/cms/cms_lib.c",
|
||||
"builtin_openssl/crypto/cms/cms_io.c",
|
||||
"builtin_openssl/crypto/cms/cms_err.c",
|
||||
|
@ -330,7 +302,6 @@ openssl_sources = [
|
|||
"builtin_openssl/crypto/ec/ec_ameth.c",
|
||||
"builtin_openssl/crypto/ec/ec_err.c",
|
||||
"builtin_openssl/crypto/ec/ec_lib.c",
|
||||
#"builtin_openssl/crypto/ec/ectest.c",
|
||||
"builtin_openssl/crypto/ec/ec_curve.c",
|
||||
"builtin_openssl/crypto/ec/ec_oct.c",
|
||||
"builtin_openssl/crypto/ec/ec_asn1.c",
|
||||
|
@ -356,51 +327,38 @@ openssl_sources = [
|
|||
"builtin_openssl/crypto/hmac/hmac.c",
|
||||
"builtin_openssl/crypto/hmac/hm_ameth.c",
|
||||
"builtin_openssl/crypto/hmac/hm_pmeth.c",
|
||||
#"builtin_openssl/crypto/hmac/hmactest.c",
|
||||
"builtin_openssl/crypto/comp/c_rle.c",
|
||||
"builtin_openssl/crypto/comp/c_zlib.c",
|
||||
"builtin_openssl/crypto/comp/comp_lib.c",
|
||||
"builtin_openssl/crypto/comp/comp_err.c",
|
||||
#"builtin_openssl/crypto/LPdir_vms.c",
|
||||
"builtin_openssl/crypto/des/fcrypt.c",
|
||||
"builtin_openssl/crypto/des/cbc3_enc.c",
|
||||
"builtin_openssl/crypto/des/str2key.c",
|
||||
"builtin_openssl/crypto/des/cbc_cksm.c",
|
||||
"builtin_openssl/crypto/des/des_enc.c",
|
||||
"builtin_openssl/crypto/des/ofb_enc.c",
|
||||
"builtin_openssl/crypto/des/read2pwd.c",
|
||||
"builtin_openssl/crypto/des/ncbc_enc.c",
|
||||
"builtin_openssl/crypto/des/ecb3_enc.c",
|
||||
"builtin_openssl/crypto/des/rand_key.c",
|
||||
"builtin_openssl/crypto/des/cfb64ede.c",
|
||||
"builtin_openssl/crypto/des/rpc_enc.c",
|
||||
"builtin_openssl/crypto/des/ofb64ede.c",
|
||||
"builtin_openssl/crypto/des/qud_cksm.c",
|
||||
#"builtin_openssl/crypto/des/destest.c",
|
||||
"builtin_openssl/crypto/des/enc_writ.c",
|
||||
#"builtin_openssl/crypto/des/des_opts.c",
|
||||
"builtin_openssl/crypto/des/set_key.c",
|
||||
"builtin_openssl/crypto/des/xcbc_enc.c",
|
||||
"builtin_openssl/crypto/des/fcrypt_b.c",
|
||||
"builtin_openssl/crypto/des/rpw.c",
|
||||
"builtin_openssl/crypto/des/ede_cbcm_enc.c",
|
||||
"builtin_openssl/crypto/des/des_old2.c",
|
||||
"builtin_openssl/crypto/des/cfb_enc.c",
|
||||
"builtin_openssl/crypto/des/des.c",
|
||||
"builtin_openssl/crypto/des/ecb_enc.c",
|
||||
#"builtin_openssl/crypto/des/read_pwd.c",
|
||||
"builtin_openssl/crypto/des/enc_read.c",
|
||||
"builtin_openssl/crypto/des/des_old.c",
|
||||
"builtin_openssl/crypto/des/ofb64enc.c",
|
||||
"builtin_openssl/crypto/des/pcbc_enc.c",
|
||||
"builtin_openssl/crypto/des/cbc_enc.c",
|
||||
#"builtin_openssl/crypto/des/speed.c",
|
||||
"builtin_openssl/crypto/des/cfb64enc.c",
|
||||
"builtin_openssl/crypto/lhash/lh_stats.c",
|
||||
#"builtin_openssl/crypto/lhash/lh_test.c",
|
||||
"builtin_openssl/crypto/lhash/lhash.c",
|
||||
#"builtin_openssl/crypto/LPdir_unix.c",
|
||||
#"builtin_openssl/crypto/x509v3/v3conf.c",
|
||||
"builtin_openssl/crypto/x509v3/v3_genn.c",
|
||||
"builtin_openssl/crypto/x509v3/pcy_cache.c",
|
||||
"builtin_openssl/crypto/x509v3/v3_sxnet.c",
|
||||
|
@ -408,7 +366,6 @@ openssl_sources = [
|
|||
"builtin_openssl/crypto/x509v3/v3_conf.c",
|
||||
"builtin_openssl/crypto/x509v3/v3_utl.c",
|
||||
"builtin_openssl/crypto/x509v3/v3_akeya.c",
|
||||
#"builtin_openssl/crypto/x509v3/tabtest.c",
|
||||
"builtin_openssl/crypto/x509v3/v3_lib.c",
|
||||
"builtin_openssl/crypto/x509v3/pcy_lib.c",
|
||||
"builtin_openssl/crypto/x509v3/v3_cpols.c",
|
||||
|
@ -432,47 +389,27 @@ openssl_sources = [
|
|||
"builtin_openssl/crypto/x509v3/v3_crld.c",
|
||||
"builtin_openssl/crypto/x509v3/v3_pci.c",
|
||||
"builtin_openssl/crypto/x509v3/v3_akey.c",
|
||||
"builtin_openssl/crypto/x509v3/v3prin.c",
|
||||
"builtin_openssl/crypto/x509v3/v3_addr.c",
|
||||
"builtin_openssl/crypto/x509v3/v3_int.c",
|
||||
"builtin_openssl/crypto/x509v3/v3_alt.c",
|
||||
"builtin_openssl/crypto/x509v3/v3_extku.c",
|
||||
"builtin_openssl/crypto/x509v3/v3_prn.c",
|
||||
"builtin_openssl/crypto/x509v3/pcy_data.c",
|
||||
"builtin_openssl/crypto/aes/aes_x86core.c",
|
||||
"builtin_openssl/crypto/aes/aes_ofb.c",
|
||||
"builtin_openssl/crypto/aes/aes_core.c",
|
||||
"builtin_openssl/crypto/aes/aes_ctr.c",
|
||||
"builtin_openssl/crypto/aes/aes_ecb.c",
|
||||
"builtin_openssl/crypto/aes/aes_cfb.c",
|
||||
"builtin_openssl/crypto/aes/aes_wrap.c",
|
||||
"builtin_openssl/crypto/aes/aes_ige.c",
|
||||
"builtin_openssl/crypto/aes/aes_misc.c",
|
||||
"builtin_openssl/crypto/aes/aes_cbc.c",
|
||||
#"builtin_openssl/crypto/rc5/rc5ofb64.c",
|
||||
#"builtin_openssl/crypto/rc5/rc5cfb64.c",
|
||||
#"builtin_openssl/crypto/rc5/rc5_enc.c",
|
||||
#"builtin_openssl/crypto/rc5/rc5speed.c",
|
||||
#"builtin_openssl/crypto/rc5/rc5test.c",
|
||||
#"builtin_openssl/crypto/rc5/rc5_skey.c",
|
||||
#"builtin_openssl/crypto/rc5/rc5_ecb.c",
|
||||
"builtin_openssl/crypto/pqueue/pqueue.c",
|
||||
#"builtin_openssl/crypto/pqueue/pq_test.c",
|
||||
"builtin_openssl/crypto/sha/sha_one.c",
|
||||
"builtin_openssl/crypto/sha/sha_dgst.c",
|
||||
"builtin_openssl/crypto/sha/sha512t.c",
|
||||
"builtin_openssl/crypto/sha/sha512.c",
|
||||
#"builtin_openssl/crypto/sha/shatest.c",
|
||||
#"builtin_openssl/crypto/sha/sha1test.c",
|
||||
"builtin_openssl/crypto/sha/sha.c",
|
||||
"builtin_openssl/crypto/sha/sha1_one.c",
|
||||
"builtin_openssl/crypto/sha/sha1.c",
|
||||
"builtin_openssl/crypto/sha/sha1dgst.c",
|
||||
"builtin_openssl/crypto/sha/sha256t.c",
|
||||
"builtin_openssl/crypto/sha/sha256.c",
|
||||
"builtin_openssl/crypto/whrlpool/wp_dgst.c",
|
||||
"builtin_openssl/crypto/whrlpool/wp_block.c",
|
||||
#"builtin_openssl/crypto/whrlpool/wp_test.c",
|
||||
"builtin_openssl/crypto/objects/obj_xref.c",
|
||||
"builtin_openssl/crypto/objects/o_names.c",
|
||||
"builtin_openssl/crypto/objects/obj_err.c",
|
||||
|
@ -480,13 +417,11 @@ openssl_sources = [
|
|||
"builtin_openssl/crypto/objects/obj_lib.c",
|
||||
"builtin_openssl/crypto/mem.c",
|
||||
"builtin_openssl/crypto/fips_ers.c",
|
||||
#"builtin_openssl/crypto/LPdir_nyi.c",
|
||||
"builtin_openssl/crypto/o_fips.c",
|
||||
"builtin_openssl/crypto/engine/eng_rdrand.c",
|
||||
"builtin_openssl/crypto/engine/eng_err.c",
|
||||
"builtin_openssl/crypto/engine/eng_rsax.c",
|
||||
"builtin_openssl/crypto/engine/tb_ecdsa.c",
|
||||
#"builtin_openssl/crypto/engine/enginetest.c",
|
||||
"builtin_openssl/crypto/engine/tb_rsa.c",
|
||||
"builtin_openssl/crypto/engine/tb_cipher.c",
|
||||
"builtin_openssl/crypto/engine/tb_dsa.c",
|
||||
|
@ -509,8 +444,6 @@ openssl_sources = [
|
|||
"builtin_openssl/crypto/engine/eng_openssl.c",
|
||||
"builtin_openssl/crypto/engine/eng_fat.c",
|
||||
"builtin_openssl/crypto/engine/eng_dyn.c",
|
||||
#"builtin_openssl/crypto/threads/th-lock.c",
|
||||
#"builtin_openssl/crypto/threads/mttest.c",
|
||||
"builtin_openssl/crypto/ts/ts_rsp_verify.c",
|
||||
"builtin_openssl/crypto/ts/ts_req_print.c",
|
||||
"builtin_openssl/crypto/ts/ts_verify_ctx.c",
|
||||
|
@ -531,37 +464,25 @@ openssl_sources = [
|
|||
"builtin_openssl/crypto/ocsp/ocsp_err.c",
|
||||
"builtin_openssl/crypto/ocsp/ocsp_prn.c",
|
||||
"builtin_openssl/crypto/ocsp/ocsp_asn.c",
|
||||
#"builtin_openssl/crypto/bf/bf_opts.c",
|
||||
"builtin_openssl/crypto/bf/bf_cfb64.c",
|
||||
#"builtin_openssl/crypto/bf/bfspeed.c",
|
||||
"builtin_openssl/crypto/bf/bf_ecb.c",
|
||||
"builtin_openssl/crypto/bf/bf_enc.c",
|
||||
#"builtin_openssl/crypto/bf/bftest.c",
|
||||
"builtin_openssl/crypto/bf/bf_skey.c",
|
||||
"builtin_openssl/crypto/bf/bf_ofb64.c",
|
||||
"builtin_openssl/crypto/bf/bf_cbc.c",
|
||||
#"builtin_openssl/crypto/LPdir_wince.c",
|
||||
#"builtin_openssl/crypto/o_dir_test.c",
|
||||
"builtin_openssl/crypto/idea/i_skey.c",
|
||||
"builtin_openssl/crypto/idea/i_ofb64.c",
|
||||
"builtin_openssl/crypto/idea/i_cbc.c",
|
||||
"builtin_openssl/crypto/idea/i_ecb.c",
|
||||
#"builtin_openssl/crypto/idea/idea_spd.c",
|
||||
#"builtin_openssl/crypto/idea/ideatest.c",
|
||||
"builtin_openssl/crypto/idea/i_cfb64.c",
|
||||
"builtin_openssl/crypto/cmac/cm_ameth.c",
|
||||
"builtin_openssl/crypto/cmac/cmac.c",
|
||||
"builtin_openssl/crypto/cmac/cm_pmeth.c",
|
||||
"builtin_openssl/crypto/dh/dh_lib.c",
|
||||
"builtin_openssl/crypto/dh/p512.c",
|
||||
"builtin_openssl/crypto/dh/dh_key.c",
|
||||
"builtin_openssl/crypto/dh/dh_asn1.c",
|
||||
"builtin_openssl/crypto/dh/p1024.c",
|
||||
"builtin_openssl/crypto/dh/dh_depr.c",
|
||||
"builtin_openssl/crypto/dh/p192.c",
|
||||
"builtin_openssl/crypto/dh/dh_pmeth.c",
|
||||
"builtin_openssl/crypto/dh/dh_prn.c",
|
||||
#"builtin_openssl/crypto/dh/dhtest.c",
|
||||
"builtin_openssl/crypto/dh/dh_gen.c",
|
||||
"builtin_openssl/crypto/dh/dh_ameth.c",
|
||||
"builtin_openssl/crypto/dh/dh_check.c",
|
||||
|
@ -575,8 +496,6 @@ openssl_sources = [
|
|||
"builtin_openssl/crypto/modes/cfb128.c",
|
||||
"builtin_openssl/crypto/modes/xts128.c",
|
||||
"builtin_openssl/crypto/camellia/cmll_cfb.c",
|
||||
"builtin_openssl/crypto/camellia/camellia.c",
|
||||
"builtin_openssl/crypto/camellia/cmll_cbc.c",
|
||||
"builtin_openssl/crypto/camellia/cmll_ecb.c",
|
||||
"builtin_openssl/crypto/camellia/cmll_utl.c",
|
||||
"builtin_openssl/crypto/camellia/cmll_misc.c",
|
||||
|
@ -587,13 +506,8 @@ openssl_sources = [
|
|||
"builtin_openssl/crypto/seed/seed.c",
|
||||
"builtin_openssl/crypto/seed/seed_ofb.c",
|
||||
"builtin_openssl/crypto/seed/seed_cfb.c",
|
||||
#"builtin_openssl/crypto/sparcv9cap.c",
|
||||
"builtin_openssl/crypto/txt_db/txt_db.c",
|
||||
"builtin_openssl/crypto/cpt_err.c",
|
||||
#"builtin_openssl/crypto/md2/md2test.c",
|
||||
#"builtin_openssl/crypto/md2/md2_dgst.c",
|
||||
#"builtin_openssl/crypto/md2/md2_one.c",
|
||||
#"builtin_openssl/crypto/md2/md2.c",
|
||||
"builtin_openssl/crypto/pem/pem_pk8.c",
|
||||
"builtin_openssl/crypto/pem/pem_lib.c",
|
||||
"builtin_openssl/crypto/pem/pem_sign.c",
|
||||
|
@ -607,38 +521,24 @@ openssl_sources = [
|
|||
"builtin_openssl/crypto/pem/pem_x509.c",
|
||||
"builtin_openssl/crypto/pem/pem_oth.c",
|
||||
"builtin_openssl/crypto/rand/rand_lib.c",
|
||||
#"builtin_openssl/crypto/rand/randtest.c",
|
||||
"builtin_openssl/crypto/rand/randfile.c",
|
||||
"builtin_openssl/crypto/rand/rand_os2.c",
|
||||
"builtin_openssl/crypto/rand/rand_unix.c",
|
||||
"builtin_openssl/crypto/rand/rand_nw.c",
|
||||
"builtin_openssl/crypto/rand/md_rand.c",
|
||||
"builtin_openssl/crypto/rand/rand_vms.c",
|
||||
"builtin_openssl/crypto/rand/rand_err.c",
|
||||
"builtin_openssl/crypto/rand/rand_win.c",
|
||||
"builtin_openssl/crypto/rand/rand_egd.c",
|
||||
"builtin_openssl/crypto/cversion.c",
|
||||
"builtin_openssl/crypto/cast/c_ecb.c",
|
||||
#"builtin_openssl/crypto/cast/casttest.c",
|
||||
#"builtin_openssl/crypto/cast/cast_spd.c",
|
||||
#"builtin_openssl/crypto/cast/castopts.c",
|
||||
"builtin_openssl/crypto/cast/c_skey.c",
|
||||
"builtin_openssl/crypto/cast/c_ofb64.c",
|
||||
"builtin_openssl/crypto/cast/c_enc.c",
|
||||
"builtin_openssl/crypto/cast/c_cfb64.c",
|
||||
"builtin_openssl/crypto/mem_clr.c",
|
||||
#"builtin_openssl/crypto/armcap.c",
|
||||
"builtin_openssl/crypto/o_time.c",
|
||||
#"builtin_openssl/crypto/s390xcap.c",
|
||||
"builtin_openssl/crypto/mdc2/mdc2dgst.c",
|
||||
"builtin_openssl/crypto/mdc2/mdc2_one.c",
|
||||
#"builtin_openssl/crypto/mdc2/mdc2test.c",
|
||||
"builtin_openssl/crypto/rc4/rc4_skey.c",
|
||||
#"builtin_openssl/crypto/rc4/rc4speed.c",
|
||||
#"builtin_openssl/crypto/rc4/rc4.c",
|
||||
"builtin_openssl/crypto/rc4/rc4_utl.c",
|
||||
"builtin_openssl/crypto/rc4/rc4_enc.c",
|
||||
#"builtin_openssl/crypto/rc4/rc4test.c",
|
||||
"builtin_openssl/crypto/ui/ui_compat.c",
|
||||
"builtin_openssl/crypto/ui/ui_util.c",
|
||||
"builtin_openssl/crypto/ui/ui_lib.c",
|
||||
|
@ -655,54 +555,37 @@ openssl_sources = [
|
|||
"builtin_openssl/crypto/bio/bss_mem.c",
|
||||
"builtin_openssl/crypto/bio/b_dump.c",
|
||||
"builtin_openssl/crypto/bio/b_print.c",
|
||||
#"builtin_openssl/crypto/bio/bss_rtcp.c",
|
||||
"builtin_openssl/crypto/bio/b_sock.c",
|
||||
"builtin_openssl/crypto/bio/bss_dgram.c",
|
||||
"builtin_openssl/crypto/bio/bf_nbio.c",
|
||||
"builtin_openssl/crypto/bio/bio_lib.c",
|
||||
"builtin_openssl/crypto/bio/bss_file.c",
|
||||
"builtin_openssl/crypto/bio/bss_bio.c",
|
||||
"builtin_openssl/crypto/bio/bf_lbuf.c",
|
||||
"builtin_openssl/crypto/bio/bss_log.c",
|
||||
"builtin_openssl/crypto/bio/bio_cb.c",
|
||||
"builtin_openssl/crypto/o_init.c",
|
||||
#"builtin_openssl/crypto/jpake/jpake.c",
|
||||
#"builtin_openssl/crypto/jpake/jpake_err.c",
|
||||
#"builtin_openssl/crypto/jpake/jpaketest.c",
|
||||
"builtin_openssl/crypto/rc2/rc2_skey.c",
|
||||
"builtin_openssl/crypto/rc2/rc2_cbc.c",
|
||||
"builtin_openssl/crypto/rc2/rc2cfb64.c",
|
||||
#"builtin_openssl/crypto/rc2/rc2speed.c",
|
||||
"builtin_openssl/crypto/rc2/tab.c",
|
||||
"builtin_openssl/crypto/rc2/rc2_ecb.c",
|
||||
"builtin_openssl/crypto/rc2/rc2ofb64.c",
|
||||
#"builtin_openssl/crypto/rc2/rc2test.c",
|
||||
"builtin_openssl/crypto/bn/bn_x931p.c",
|
||||
#"builtin_openssl/crypto/bn/bntest.c",
|
||||
"builtin_openssl/crypto/bn/exptest.c",
|
||||
"builtin_openssl/crypto/bn/bn_blind.c",
|
||||
"builtin_openssl/crypto/bn/bn_gf2m.c",
|
||||
"builtin_openssl/crypto/bn/bn_const.c",
|
||||
"builtin_openssl/crypto/bn/bn_sqr.c",
|
||||
"builtin_openssl/crypto/bn/bn_nist.c",
|
||||
"builtin_openssl/crypto/bn/expspeed.c",
|
||||
"builtin_openssl/crypto/bn/bn_rand.c",
|
||||
"builtin_openssl/crypto/bn/bn_err.c",
|
||||
#"builtin_openssl/crypto/bn/divtest.c",
|
||||
"builtin_openssl/crypto/bn/bn_div.c",
|
||||
"builtin_openssl/crypto/bn/bn_kron.c",
|
||||
"builtin_openssl/crypto/bn/bn_ctx.c",
|
||||
"builtin_openssl/crypto/bn/bn_shift.c",
|
||||
"builtin_openssl/crypto/bn/bn_mod.c",
|
||||
"builtin_openssl/crypto/bn/bn_exp2.c",
|
||||
"builtin_openssl/crypto/bn/vms-helper.c",
|
||||
"builtin_openssl/crypto/bn/bnspeed.c",
|
||||
"builtin_openssl/crypto/bn/bn_asm.c",
|
||||
"builtin_openssl/crypto/bn/bn_word.c",
|
||||
"builtin_openssl/crypto/bn/bn_add.c",
|
||||
#"builtin_openssl/crypto/bn/exp.c",
|
||||
"builtin_openssl/crypto/bn/bn_exp.c",
|
||||
#"builtin_openssl/crypto/bn/asm/x86_64-gcc.c",
|
||||
"builtin_openssl/crypto/bn/bn_mont.c",
|
||||
"builtin_openssl/crypto/bn/bn_print.c",
|
||||
"builtin_openssl/crypto/bn/bn_mul.c",
|
||||
|
@ -713,13 +596,10 @@ openssl_sources = [
|
|||
"builtin_openssl/crypto/bn/bn_sqrt.c",
|
||||
"builtin_openssl/crypto/bn/bn_recp.c",
|
||||
"builtin_openssl/crypto/bn/bn_lib.c",
|
||||
#"builtin_openssl/crypto/ripemd/rmdtest.c",
|
||||
"builtin_openssl/crypto/ripemd/rmd_dgst.c",
|
||||
"builtin_openssl/crypto/ripemd/rmd_one.c",
|
||||
"builtin_openssl/crypto/ripemd/rmd160.c",
|
||||
"builtin_openssl/crypto/rsa/rsa_x931.c",
|
||||
"builtin_openssl/crypto/rsa/rsa_depr.c",
|
||||
#"builtin_openssl/crypto/rsa/rsa_test.c",
|
||||
"builtin_openssl/crypto/rsa/rsa_saos.c",
|
||||
"builtin_openssl/crypto/rsa/rsa_crpt.c",
|
||||
"builtin_openssl/crypto/rsa/rsa_pss.c",
|
||||
|
@ -738,14 +618,21 @@ openssl_sources = [
|
|||
"builtin_openssl/crypto/rsa/rsa_chk.c",
|
||||
"builtin_openssl/crypto/rsa/rsa_eay.c",
|
||||
"builtin_openssl/crypto/rsa/rsa_sign.c",
|
||||
#"builtin_openssl/crypto/LPdir_win32.c",
|
||||
"builtin_openssl/crypto/srp/srp_lib.c",
|
||||
"builtin_openssl/crypto/srp/srp_vfy.c",
|
||||
#"builtin_openssl/crypto/srp/srptest.c",
|
||||
"builtin_openssl/crypto/err/err.c",
|
||||
"builtin_openssl/crypto/err/err_prn.c",
|
||||
"builtin_openssl/crypto/err/err_all.c",
|
||||
"builtin_openssl/nocpuid.c",
|
||||
"builtin_openssl/crypto/mem_clr.c",
|
||||
"builtin_openssl/crypto/rc4/rc4_skey.c",
|
||||
"builtin_openssl/crypto/rc4/rc4_enc.c",
|
||||
"builtin_openssl/crypto/camellia/camellia.c",
|
||||
"builtin_openssl/crypto/camellia/cmll_cbc.c",
|
||||
#"builtin_openssl/crypto/aes/aes_x86core.c",
|
||||
"builtin_openssl/crypto/aes/aes_core.c",
|
||||
"builtin_openssl/crypto/aes/aes_cbc.c",
|
||||
"builtin_openssl/crypto/whrlpool/wp_block.c",
|
||||
"builtin_openssl/crypto/bn/bn_asm.c",
|
||||
]
|
||||
|
||||
|
||||
|
@ -755,5 +642,5 @@ env.Append(CPPPATH=["#drivers/builtin_openssl/crypto/evp"])
|
|||
env.Append(CPPPATH=["#drivers/builtin_openssl/crypto/asn1"])
|
||||
env.Append(CPPPATH=["#drivers/builtin_openssl/crypto/modes"])
|
||||
#env.Append(CPPPATH=["#drivers/builtin_openssl/crypto/store"])
|
||||
env.Append(CPPFLAGS=["-DOPENSSL_NO_ASM"])
|
||||
env.Append(CPPFLAGS=["-DOPENSSL_NO_ASM","-DOPENSSL_THREADS","-DL_ENDIAN"])
|
||||
Export('env')
|
||||
|
|
|
@ -1,219 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/Makefile
|
||||
#
|
||||
|
||||
DIR= crypto
|
||||
TOP= ..
|
||||
CC= cc
|
||||
INCLUDE= -I. -I$(TOP) -I../include $(ZLIB_INCLUDE)
|
||||
# INCLUDES targets sudbirs!
|
||||
INCLUDES= -I.. -I../.. -I../modes -I../asn1 -I../evp -I../../include $(ZLIB_INCLUDE)
|
||||
CFLAG= -g
|
||||
MAKEDEPPROG= makedepend
|
||||
MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
|
||||
MAKEFILE= Makefile
|
||||
RM= rm -f
|
||||
AR= ar r
|
||||
|
||||
RECURSIVE_MAKE= [ -n "$(SDIRS)" ] && for i in $(SDIRS) ; do \
|
||||
(cd $$i && echo "making $$target in $(DIR)/$$i..." && \
|
||||
$(MAKE) -e TOP=../.. DIR=$$i INCLUDES='$(INCLUDES)' $$target ) || exit 1; \
|
||||
done;
|
||||
|
||||
PEX_LIBS=
|
||||
EX_LIBS=
|
||||
|
||||
CFLAGS= $(INCLUDE) $(CFLAG)
|
||||
ASFLAGS= $(INCLUDE) $(ASFLAG)
|
||||
AFLAGS=$(ASFLAGS)
|
||||
CPUID_OBJ=mem_clr.o
|
||||
|
||||
LIBS=
|
||||
|
||||
GENERAL=Makefile README crypto-lib.com install.com
|
||||
|
||||
LIB= $(TOP)/libcrypto.a
|
||||
SHARED_LIB= libcrypto$(SHLIB_EXT)
|
||||
LIBSRC= cryptlib.c mem.c mem_clr.c mem_dbg.c cversion.c ex_data.c cpt_err.c \
|
||||
ebcdic.c uid.c o_time.c o_str.c o_dir.c o_fips.c o_init.c fips_ers.c
|
||||
LIBOBJ= cryptlib.o mem.o mem_dbg.o cversion.o ex_data.o cpt_err.o ebcdic.o \
|
||||
uid.o o_time.o o_str.o o_dir.o o_fips.o o_init.o fips_ers.o $(CPUID_OBJ)
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= crypto.h opensslv.h opensslconf.h ebcdic.h symhacks.h \
|
||||
ossl_typ.h
|
||||
HEADER= cryptlib.h buildinf.h md32_common.h o_time.h o_str.h o_dir.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
@(cd ..; $(MAKE) DIRS=$(DIR) all)
|
||||
|
||||
all: shared
|
||||
|
||||
buildinf.h: ../Makefile
|
||||
( echo "#ifndef MK1MF_BUILD"; \
|
||||
echo ' /* auto-generated by crypto/Makefile for crypto/cversion.c */'; \
|
||||
echo ' #define CFLAGS "$(CC) $(CFLAG)"'; \
|
||||
echo ' #define PLATFORM "$(PLATFORM)"'; \
|
||||
echo " #define DATE \"`LC_ALL=C LC_TIME=C date`\""; \
|
||||
echo '#endif' ) >buildinf.h
|
||||
|
||||
x86cpuid.s: x86cpuid.pl perlasm/x86asm.pl
|
||||
$(PERL) x86cpuid.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
|
||||
|
||||
applink.o: $(TOP)/ms/applink.c
|
||||
$(CC) $(CFLAGS) -c -o $@ $(TOP)/ms/applink.c
|
||||
|
||||
uplink.o: $(TOP)/ms/uplink.c applink.o
|
||||
$(CC) $(CFLAGS) -c -o $@ $(TOP)/ms/uplink.c
|
||||
|
||||
uplink-x86.s: $(TOP)/ms/uplink-x86.pl
|
||||
$(PERL) $(TOP)/ms/uplink-x86.pl $(PERLASM_SCHEME) > $@
|
||||
|
||||
x86_64cpuid.s: x86_64cpuid.pl; $(PERL) x86_64cpuid.pl $(PERLASM_SCHEME) > $@
|
||||
ia64cpuid.s: ia64cpuid.S; $(CC) $(CFLAGS) -E ia64cpuid.S > $@
|
||||
ppccpuid.s: ppccpuid.pl; $(PERL) ppccpuid.pl $(PERLASM_SCHEME) $@
|
||||
pariscid.s: pariscid.pl; $(PERL) pariscid.pl $(PERLASM_SCHEME) $@
|
||||
alphacpuid.s: alphacpuid.pl
|
||||
(preproc=/tmp/$$$$.$@; trap "rm $$preproc" INT; \
|
||||
$(PERL) alphacpuid.pl > $$preproc && \
|
||||
$(CC) -E $$preproc > $@ && rm $$preproc)
|
||||
|
||||
testapps:
|
||||
[ -z "$(THIS)" ] || ( if echo $(SDIRS) | fgrep ' des '; \
|
||||
then cd des && $(MAKE) -e des; fi )
|
||||
[ -z "$(THIS)" ] || ( cd pkcs7 && $(MAKE) -e testapps );
|
||||
@if [ -z "$(THIS)" ]; then $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; fi
|
||||
|
||||
subdirs:
|
||||
@target=all; $(RECURSIVE_MAKE)
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
@target=files; $(RECURSIVE_MAKE)
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../apps $(APPS)
|
||||
@target=links; $(RECURSIVE_MAKE)
|
||||
|
||||
# lib: $(LIB): are splitted to avoid end-less loop
|
||||
lib: $(LIB)
|
||||
@touch lib
|
||||
$(LIB): $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
[ -z "$(FIPSLIBDIR)" ] || $(AR) $(LIB) $(FIPSLIBDIR)fipscanister.o
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
|
||||
shared: buildinf.h lib subdirs
|
||||
if [ -n "$(SHARED_LIBS)" ]; then \
|
||||
(cd ..; $(MAKE) $(SHARED_LIB)); \
|
||||
fi
|
||||
|
||||
libs:
|
||||
@target=lib; $(RECURSIVE_MAKE)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ;\
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
@target=install; $(RECURSIVE_MAKE)
|
||||
|
||||
lint:
|
||||
@target=lint; $(RECURSIVE_MAKE)
|
||||
|
||||
depend:
|
||||
@[ -z "$(THIS)" -o -f buildinf.h ] || touch buildinf.h # fake buildinf.h if it does not exist
|
||||
@[ -z "$(THIS)" ] || $(MAKEDEPEND) -- $(CFLAG) $(INCLUDE) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
@[ -z "$(THIS)" -o -s buildinf.h ] || rm buildinf.h
|
||||
@[ -z "$(THIS)" ] || (set -e; target=depend; $(RECURSIVE_MAKE) )
|
||||
@if [ -z "$(THIS)" ]; then $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; fi
|
||||
|
||||
clean:
|
||||
rm -f buildinf.h *.s *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
@target=clean; $(RECURSIVE_MAKE)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
rm -f opensslconf.h
|
||||
@target=dclean; $(RECURSIVE_MAKE)
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
cpt_err.o: ../include/openssl/bio.h ../include/openssl/crypto.h
|
||||
cpt_err.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
||||
cpt_err.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h
|
||||
cpt_err.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
|
||||
cpt_err.o: ../include/openssl/safestack.h ../include/openssl/stack.h
|
||||
cpt_err.o: ../include/openssl/symhacks.h cpt_err.c
|
||||
cryptlib.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
|
||||
cryptlib.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
|
||||
cryptlib.o: ../include/openssl/err.h ../include/openssl/lhash.h
|
||||
cryptlib.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
|
||||
cryptlib.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
|
||||
cryptlib.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.c
|
||||
cryptlib.o: cryptlib.h
|
||||
cversion.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
|
||||
cversion.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
|
||||
cversion.o: ../include/openssl/err.h ../include/openssl/lhash.h
|
||||
cversion.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
|
||||
cversion.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
|
||||
cversion.o: ../include/openssl/stack.h ../include/openssl/symhacks.h buildinf.h
|
||||
cversion.o: cryptlib.h cversion.c
|
||||
ebcdic.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h ebcdic.c
|
||||
ex_data.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
|
||||
ex_data.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
|
||||
ex_data.o: ../include/openssl/err.h ../include/openssl/lhash.h
|
||||
ex_data.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
|
||||
ex_data.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
|
||||
ex_data.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.h
|
||||
ex_data.o: ex_data.c
|
||||
fips_ers.o: ../include/openssl/opensslconf.h fips_ers.c
|
||||
mem.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
|
||||
mem.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
|
||||
mem.o: ../include/openssl/err.h ../include/openssl/lhash.h
|
||||
mem.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
|
||||
mem.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
|
||||
mem.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.h
|
||||
mem.o: mem.c
|
||||
mem_clr.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
|
||||
mem_clr.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
|
||||
mem_clr.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
|
||||
mem_clr.o: ../include/openssl/stack.h ../include/openssl/symhacks.h mem_clr.c
|
||||
mem_dbg.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
|
||||
mem_dbg.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
|
||||
mem_dbg.o: ../include/openssl/err.h ../include/openssl/lhash.h
|
||||
mem_dbg.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
|
||||
mem_dbg.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
|
||||
mem_dbg.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.h
|
||||
mem_dbg.o: mem_dbg.c
|
||||
o_dir.o: ../e_os.h ../include/openssl/e_os2.h ../include/openssl/opensslconf.h
|
||||
o_dir.o: LPdir_unix.c o_dir.c o_dir.h
|
||||
o_fips.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
|
||||
o_fips.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
|
||||
o_fips.o: ../include/openssl/err.h ../include/openssl/lhash.h
|
||||
o_fips.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
|
||||
o_fips.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
|
||||
o_fips.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.h
|
||||
o_fips.o: o_fips.c
|
||||
o_init.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/crypto.h
|
||||
o_init.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
||||
o_init.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h
|
||||
o_init.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
|
||||
o_init.o: ../include/openssl/safestack.h ../include/openssl/stack.h
|
||||
o_init.o: ../include/openssl/symhacks.h o_init.c
|
||||
o_str.o: ../e_os.h ../include/openssl/e_os2.h ../include/openssl/opensslconf.h
|
||||
o_str.o: o_str.c o_str.h
|
||||
o_time.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h o_time.c
|
||||
o_time.o: o_time.h
|
||||
uid.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
|
||||
uid.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
|
||||
uid.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
|
||||
uid.o: ../include/openssl/stack.h ../include/openssl/symhacks.h uid.c
|
|
@ -1,219 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/Makefile
|
||||
#
|
||||
|
||||
DIR= crypto
|
||||
TOP= ..
|
||||
CC= cc
|
||||
INCLUDE= -I. -I$(TOP) -I../include $(ZLIB_INCLUDE)
|
||||
# INCLUDES targets sudbirs!
|
||||
INCLUDES= -I.. -I../.. -I../modes -I../asn1 -I../evp -I../../include $(ZLIB_INCLUDE)
|
||||
CFLAG= -g
|
||||
MAKEDEPPROG= makedepend
|
||||
MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
|
||||
MAKEFILE= Makefile
|
||||
RM= rm -f
|
||||
AR= ar r
|
||||
|
||||
RECURSIVE_MAKE= [ -n "$(SDIRS)" ] && for i in $(SDIRS) ; do \
|
||||
(cd $$i && echo "making $$target in $(DIR)/$$i..." && \
|
||||
$(MAKE) -e TOP=../.. DIR=$$i INCLUDES='$(INCLUDES)' $$target ) || exit 1; \
|
||||
done;
|
||||
|
||||
PEX_LIBS=
|
||||
EX_LIBS=
|
||||
|
||||
CFLAGS= $(INCLUDE) $(CFLAG)
|
||||
ASFLAGS= $(INCLUDE) $(ASFLAG)
|
||||
AFLAGS=$(ASFLAGS)
|
||||
CPUID_OBJ=mem_clr.o
|
||||
|
||||
LIBS=
|
||||
|
||||
GENERAL=Makefile README crypto-lib.com install.com
|
||||
|
||||
LIB= $(TOP)/libcrypto.a
|
||||
SHARED_LIB= libcrypto$(SHLIB_EXT)
|
||||
LIBSRC= cryptlib.c mem.c mem_clr.c mem_dbg.c cversion.c ex_data.c cpt_err.c \
|
||||
ebcdic.c uid.c o_time.c o_str.c o_dir.c o_fips.c o_init.c fips_ers.c
|
||||
LIBOBJ= cryptlib.o mem.o mem_dbg.o cversion.o ex_data.o cpt_err.o ebcdic.o \
|
||||
uid.o o_time.o o_str.o o_dir.o o_fips.o o_init.o fips_ers.o $(CPUID_OBJ)
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= crypto.h opensslv.h opensslconf.h ebcdic.h symhacks.h \
|
||||
ossl_typ.h
|
||||
HEADER= cryptlib.h buildinf.h md32_common.h o_time.h o_str.h o_dir.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
@(cd ..; $(MAKE) DIRS=$(DIR) all)
|
||||
|
||||
all: shared
|
||||
|
||||
buildinf.h: ../Makefile
|
||||
( echo "#ifndef MK1MF_BUILD"; \
|
||||
echo ' /* auto-generated by crypto/Makefile for crypto/cversion.c */'; \
|
||||
echo ' #define CFLAGS "$(CC) $(CFLAG)"'; \
|
||||
echo ' #define PLATFORM "$(PLATFORM)"'; \
|
||||
echo " #define DATE \"`LC_ALL=C LC_TIME=C date`\""; \
|
||||
echo '#endif' ) >buildinf.h
|
||||
|
||||
x86cpuid.s: x86cpuid.pl perlasm/x86asm.pl
|
||||
$(PERL) x86cpuid.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
|
||||
|
||||
applink.o: $(TOP)/ms/applink.c
|
||||
$(CC) $(CFLAGS) -c -o $@ $(TOP)/ms/applink.c
|
||||
|
||||
uplink.o: $(TOP)/ms/uplink.c applink.o
|
||||
$(CC) $(CFLAGS) -c -o $@ $(TOP)/ms/uplink.c
|
||||
|
||||
uplink-x86.s: $(TOP)/ms/uplink-x86.pl
|
||||
$(PERL) $(TOP)/ms/uplink-x86.pl $(PERLASM_SCHEME) > $@
|
||||
|
||||
x86_64cpuid.s: x86_64cpuid.pl; $(PERL) x86_64cpuid.pl $(PERLASM_SCHEME) > $@
|
||||
ia64cpuid.s: ia64cpuid.S; $(CC) $(CFLAGS) -E ia64cpuid.S > $@
|
||||
ppccpuid.s: ppccpuid.pl; $(PERL) ppccpuid.pl $(PERLASM_SCHEME) $@
|
||||
pariscid.s: pariscid.pl; $(PERL) pariscid.pl $(PERLASM_SCHEME) $@
|
||||
alphacpuid.s: alphacpuid.pl
|
||||
(preproc=/tmp/$$$$.$@; trap "rm $$preproc" INT; \
|
||||
$(PERL) alphacpuid.pl > $$preproc && \
|
||||
$(CC) -E $$preproc > $@ && rm $$preproc)
|
||||
|
||||
testapps:
|
||||
[ -z "$(THIS)" ] || ( if echo $(SDIRS) | fgrep ' des '; \
|
||||
then cd des && $(MAKE) -e des; fi )
|
||||
[ -z "$(THIS)" ] || ( cd pkcs7 && $(MAKE) -e testapps );
|
||||
@if [ -z "$(THIS)" ]; then $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; fi
|
||||
|
||||
subdirs:
|
||||
@target=all; $(RECURSIVE_MAKE)
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
@target=files; $(RECURSIVE_MAKE)
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../apps $(APPS)
|
||||
@target=links; $(RECURSIVE_MAKE)
|
||||
|
||||
# lib: $(LIB): are splitted to avoid end-less loop
|
||||
lib: $(LIB)
|
||||
@touch lib
|
||||
$(LIB): $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
[ -z "$(FIPSLIBDIR)" ] || $(AR) $(LIB) $(FIPSLIBDIR)fipscanister.o
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
|
||||
shared: buildinf.h lib subdirs
|
||||
if [ -n "$(SHARED_LIBS)" ]; then \
|
||||
(cd ..; $(MAKE) $(SHARED_LIB)); \
|
||||
fi
|
||||
|
||||
libs:
|
||||
@target=lib; $(RECURSIVE_MAKE)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ;\
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
@target=install; $(RECURSIVE_MAKE)
|
||||
|
||||
lint:
|
||||
@target=lint; $(RECURSIVE_MAKE)
|
||||
|
||||
depend:
|
||||
@[ -z "$(THIS)" -o -f buildinf.h ] || touch buildinf.h # fake buildinf.h if it does not exist
|
||||
@[ -z "$(THIS)" ] || $(MAKEDEPEND) -- $(CFLAG) $(INCLUDE) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
@[ -z "$(THIS)" -o -s buildinf.h ] || rm buildinf.h
|
||||
@[ -z "$(THIS)" ] || (set -e; target=depend; $(RECURSIVE_MAKE) )
|
||||
@if [ -z "$(THIS)" ]; then $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; fi
|
||||
|
||||
clean:
|
||||
rm -f buildinf.h *.s *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
@target=clean; $(RECURSIVE_MAKE)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
rm -f opensslconf.h
|
||||
@target=dclean; $(RECURSIVE_MAKE)
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
cpt_err.o: ../include/openssl/bio.h ../include/openssl/crypto.h
|
||||
cpt_err.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
||||
cpt_err.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h
|
||||
cpt_err.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
|
||||
cpt_err.o: ../include/openssl/safestack.h ../include/openssl/stack.h
|
||||
cpt_err.o: ../include/openssl/symhacks.h cpt_err.c
|
||||
cryptlib.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
|
||||
cryptlib.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
|
||||
cryptlib.o: ../include/openssl/err.h ../include/openssl/lhash.h
|
||||
cryptlib.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
|
||||
cryptlib.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
|
||||
cryptlib.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.c
|
||||
cryptlib.o: cryptlib.h
|
||||
cversion.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
|
||||
cversion.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
|
||||
cversion.o: ../include/openssl/err.h ../include/openssl/lhash.h
|
||||
cversion.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
|
||||
cversion.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
|
||||
cversion.o: ../include/openssl/stack.h ../include/openssl/symhacks.h buildinf.h
|
||||
cversion.o: cryptlib.h cversion.c
|
||||
ebcdic.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h ebcdic.c
|
||||
ex_data.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
|
||||
ex_data.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
|
||||
ex_data.o: ../include/openssl/err.h ../include/openssl/lhash.h
|
||||
ex_data.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
|
||||
ex_data.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
|
||||
ex_data.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.h
|
||||
ex_data.o: ex_data.c
|
||||
fips_ers.o: ../include/openssl/opensslconf.h fips_ers.c
|
||||
mem.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
|
||||
mem.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
|
||||
mem.o: ../include/openssl/err.h ../include/openssl/lhash.h
|
||||
mem.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
|
||||
mem.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
|
||||
mem.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.h
|
||||
mem.o: mem.c
|
||||
mem_clr.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
|
||||
mem_clr.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
|
||||
mem_clr.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
|
||||
mem_clr.o: ../include/openssl/stack.h ../include/openssl/symhacks.h mem_clr.c
|
||||
mem_dbg.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
|
||||
mem_dbg.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
|
||||
mem_dbg.o: ../include/openssl/err.h ../include/openssl/lhash.h
|
||||
mem_dbg.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
|
||||
mem_dbg.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
|
||||
mem_dbg.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.h
|
||||
mem_dbg.o: mem_dbg.c
|
||||
o_dir.o: ../e_os.h ../include/openssl/e_os2.h ../include/openssl/opensslconf.h
|
||||
o_dir.o: LPdir_unix.c o_dir.c o_dir.h
|
||||
o_fips.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h
|
||||
o_fips.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
|
||||
o_fips.o: ../include/openssl/err.h ../include/openssl/lhash.h
|
||||
o_fips.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
|
||||
o_fips.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
|
||||
o_fips.o: ../include/openssl/stack.h ../include/openssl/symhacks.h cryptlib.h
|
||||
o_fips.o: o_fips.c
|
||||
o_init.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/crypto.h
|
||||
o_init.o: ../include/openssl/e_os2.h ../include/openssl/err.h
|
||||
o_init.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h
|
||||
o_init.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
|
||||
o_init.o: ../include/openssl/safestack.h ../include/openssl/stack.h
|
||||
o_init.o: ../include/openssl/symhacks.h o_init.c
|
||||
o_str.o: ../e_os.h ../include/openssl/e_os2.h ../include/openssl/opensslconf.h
|
||||
o_str.o: o_str.c o_str.h
|
||||
o_time.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h o_time.c
|
||||
o_time.o: o_time.h
|
||||
uid.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
|
||||
uid.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
|
||||
uid.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
|
||||
uid.o: ../include/openssl/stack.h ../include/openssl/symhacks.h uid.c
|
|
@ -1,153 +0,0 @@
|
|||
#
|
||||
# crypto/aes/Makefile
|
||||
#
|
||||
|
||||
DIR= aes
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
CPP= $(CC) -E
|
||||
INCLUDES=
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
AES_ENC=aes_core.o aes_cbc.o
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
ASFLAGS= $(INCLUDES) $(ASFLAG)
|
||||
AFLAGS= $(ASFLAGS)
|
||||
|
||||
GENERAL=Makefile
|
||||
#TEST=aestest.c
|
||||
TEST=
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=aes_core.c aes_misc.c aes_ecb.c aes_cbc.c aes_cfb.c aes_ofb.c \
|
||||
aes_ctr.c aes_ige.c aes_wrap.c
|
||||
LIBOBJ=aes_misc.o aes_ecb.o aes_cfb.o aes_ofb.o aes_ctr.o aes_ige.o aes_wrap.o \
|
||||
$(AES_ENC)
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= aes.h
|
||||
HEADER= aes_locl.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
aes-ia64.s: asm/aes-ia64.S
|
||||
$(CC) $(CFLAGS) -E asm/aes-ia64.S > $@
|
||||
|
||||
aes-586.s: asm/aes-586.pl ../perlasm/x86asm.pl
|
||||
$(PERL) asm/aes-586.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
|
||||
vpaes-x86.s: asm/vpaes-x86.pl ../perlasm/x86asm.pl
|
||||
$(PERL) asm/vpaes-x86.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
|
||||
aesni-x86.s: asm/aesni-x86.pl ../perlasm/x86asm.pl
|
||||
$(PERL) asm/aesni-x86.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
|
||||
|
||||
aes-x86_64.s: asm/aes-x86_64.pl
|
||||
$(PERL) asm/aes-x86_64.pl $(PERLASM_SCHEME) > $@
|
||||
vpaes-x86_64.s: asm/vpaes-x86_64.pl
|
||||
$(PERL) asm/vpaes-x86_64.pl $(PERLASM_SCHEME) > $@
|
||||
bsaes-x86_64.s: asm/bsaes-x86_64.pl
|
||||
$(PERL) asm/bsaes-x86_64.pl $(PERLASM_SCHEME) > $@
|
||||
aesni-x86_64.s: asm/aesni-x86_64.pl
|
||||
$(PERL) asm/aesni-x86_64.pl $(PERLASM_SCHEME) > $@
|
||||
aesni-sha1-x86_64.s: asm/aesni-sha1-x86_64.pl
|
||||
$(PERL) asm/aesni-sha1-x86_64.pl $(PERLASM_SCHEME) > $@
|
||||
|
||||
aes-sparcv9.s: asm/aes-sparcv9.pl
|
||||
$(PERL) asm/aes-sparcv9.pl $(CFLAGS) > $@
|
||||
|
||||
aes-ppc.s: asm/aes-ppc.pl
|
||||
$(PERL) asm/aes-ppc.pl $(PERLASM_SCHEME) $@
|
||||
|
||||
aes-parisc.s: asm/aes-parisc.pl
|
||||
$(PERL) asm/aes-parisc.pl $(PERLASM_SCHEME) $@
|
||||
|
||||
aes-mips.S: asm/aes-mips.pl
|
||||
$(PERL) asm/aes-mips.pl $(PERLASM_SCHEME) $@
|
||||
|
||||
# GNU make "catch all"
|
||||
aes-%.S: asm/aes-%.pl; $(PERL) $< $(PERLASM_SCHEME) > $@
|
||||
aes-armv4.o: aes-armv4.S
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
aes_cbc.o: ../../include/openssl/aes.h ../../include/openssl/modes.h
|
||||
aes_cbc.o: ../../include/openssl/opensslconf.h aes_cbc.c
|
||||
aes_cfb.o: ../../include/openssl/aes.h ../../include/openssl/modes.h
|
||||
aes_cfb.o: ../../include/openssl/opensslconf.h aes_cfb.c
|
||||
aes_core.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
|
||||
aes_core.o: ../../include/openssl/opensslconf.h aes_core.c aes_locl.h
|
||||
aes_ctr.o: ../../include/openssl/aes.h ../../include/openssl/modes.h
|
||||
aes_ctr.o: ../../include/openssl/opensslconf.h aes_ctr.c
|
||||
aes_ecb.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
|
||||
aes_ecb.o: ../../include/openssl/opensslconf.h aes_ecb.c aes_locl.h
|
||||
aes_ige.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/bio.h
|
||||
aes_ige.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
aes_ige.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
aes_ige.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
aes_ige.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
aes_ige.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
aes_ige.o: ../../include/openssl/symhacks.h ../cryptlib.h aes_ige.c aes_locl.h
|
||||
aes_misc.o: ../../include/openssl/aes.h ../../include/openssl/crypto.h
|
||||
aes_misc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
aes_misc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
aes_misc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
aes_misc.o: ../../include/openssl/symhacks.h aes_locl.h aes_misc.c
|
||||
aes_ofb.o: ../../include/openssl/aes.h ../../include/openssl/modes.h
|
||||
aes_ofb.o: ../../include/openssl/opensslconf.h aes_ofb.c
|
||||
aes_wrap.o: ../../e_os.h ../../include/openssl/aes.h
|
||||
aes_wrap.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
aes_wrap.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
aes_wrap.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
aes_wrap.o: ../../include/openssl/opensslconf.h
|
||||
aes_wrap.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
aes_wrap.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
aes_wrap.o: ../../include/openssl/symhacks.h ../cryptlib.h aes_wrap.c
|
|
@ -1,153 +0,0 @@
|
|||
#
|
||||
# crypto/aes/Makefile
|
||||
#
|
||||
|
||||
DIR= aes
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
CPP= $(CC) -E
|
||||
INCLUDES=
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
AES_ENC=aes_core.o aes_cbc.o
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
ASFLAGS= $(INCLUDES) $(ASFLAG)
|
||||
AFLAGS= $(ASFLAGS)
|
||||
|
||||
GENERAL=Makefile
|
||||
#TEST=aestest.c
|
||||
TEST=
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=aes_core.c aes_misc.c aes_ecb.c aes_cbc.c aes_cfb.c aes_ofb.c \
|
||||
aes_ctr.c aes_ige.c aes_wrap.c
|
||||
LIBOBJ=aes_misc.o aes_ecb.o aes_cfb.o aes_ofb.o aes_ctr.o aes_ige.o aes_wrap.o \
|
||||
$(AES_ENC)
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= aes.h
|
||||
HEADER= aes_locl.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
aes-ia64.s: asm/aes-ia64.S
|
||||
$(CC) $(CFLAGS) -E asm/aes-ia64.S > $@
|
||||
|
||||
aes-586.s: asm/aes-586.pl ../perlasm/x86asm.pl
|
||||
$(PERL) asm/aes-586.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
|
||||
vpaes-x86.s: asm/vpaes-x86.pl ../perlasm/x86asm.pl
|
||||
$(PERL) asm/vpaes-x86.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
|
||||
aesni-x86.s: asm/aesni-x86.pl ../perlasm/x86asm.pl
|
||||
$(PERL) asm/aesni-x86.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
|
||||
|
||||
aes-x86_64.s: asm/aes-x86_64.pl
|
||||
$(PERL) asm/aes-x86_64.pl $(PERLASM_SCHEME) > $@
|
||||
vpaes-x86_64.s: asm/vpaes-x86_64.pl
|
||||
$(PERL) asm/vpaes-x86_64.pl $(PERLASM_SCHEME) > $@
|
||||
bsaes-x86_64.s: asm/bsaes-x86_64.pl
|
||||
$(PERL) asm/bsaes-x86_64.pl $(PERLASM_SCHEME) > $@
|
||||
aesni-x86_64.s: asm/aesni-x86_64.pl
|
||||
$(PERL) asm/aesni-x86_64.pl $(PERLASM_SCHEME) > $@
|
||||
aesni-sha1-x86_64.s: asm/aesni-sha1-x86_64.pl
|
||||
$(PERL) asm/aesni-sha1-x86_64.pl $(PERLASM_SCHEME) > $@
|
||||
|
||||
aes-sparcv9.s: asm/aes-sparcv9.pl
|
||||
$(PERL) asm/aes-sparcv9.pl $(CFLAGS) > $@
|
||||
|
||||
aes-ppc.s: asm/aes-ppc.pl
|
||||
$(PERL) asm/aes-ppc.pl $(PERLASM_SCHEME) $@
|
||||
|
||||
aes-parisc.s: asm/aes-parisc.pl
|
||||
$(PERL) asm/aes-parisc.pl $(PERLASM_SCHEME) $@
|
||||
|
||||
aes-mips.S: asm/aes-mips.pl
|
||||
$(PERL) asm/aes-mips.pl $(PERLASM_SCHEME) $@
|
||||
|
||||
# GNU make "catch all"
|
||||
aes-%.S: asm/aes-%.pl; $(PERL) $< $(PERLASM_SCHEME) > $@
|
||||
aes-armv4.o: aes-armv4.S
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
aes_cbc.o: ../../include/openssl/aes.h ../../include/openssl/modes.h
|
||||
aes_cbc.o: ../../include/openssl/opensslconf.h aes_cbc.c
|
||||
aes_cfb.o: ../../include/openssl/aes.h ../../include/openssl/modes.h
|
||||
aes_cfb.o: ../../include/openssl/opensslconf.h aes_cfb.c
|
||||
aes_core.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
|
||||
aes_core.o: ../../include/openssl/opensslconf.h aes_core.c aes_locl.h
|
||||
aes_ctr.o: ../../include/openssl/aes.h ../../include/openssl/modes.h
|
||||
aes_ctr.o: ../../include/openssl/opensslconf.h aes_ctr.c
|
||||
aes_ecb.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
|
||||
aes_ecb.o: ../../include/openssl/opensslconf.h aes_ecb.c aes_locl.h
|
||||
aes_ige.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/bio.h
|
||||
aes_ige.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
aes_ige.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
aes_ige.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
aes_ige.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
aes_ige.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
aes_ige.o: ../../include/openssl/symhacks.h ../cryptlib.h aes_ige.c aes_locl.h
|
||||
aes_misc.o: ../../include/openssl/aes.h ../../include/openssl/crypto.h
|
||||
aes_misc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
aes_misc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
aes_misc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
aes_misc.o: ../../include/openssl/symhacks.h aes_locl.h aes_misc.c
|
||||
aes_ofb.o: ../../include/openssl/aes.h ../../include/openssl/modes.h
|
||||
aes_ofb.o: ../../include/openssl/opensslconf.h aes_ofb.c
|
||||
aes_wrap.o: ../../e_os.h ../../include/openssl/aes.h
|
||||
aes_wrap.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
aes_wrap.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
aes_wrap.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
aes_wrap.o: ../../include/openssl/opensslconf.h
|
||||
aes_wrap.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
aes_wrap.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
aes_wrap.o: ../../include/openssl/symhacks.h ../cryptlib.h aes_wrap.c
|
|
@ -1,930 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/asn1/Makefile
|
||||
#
|
||||
|
||||
DIR= asn1
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile README
|
||||
TEST=
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= 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_set.c a_dup.c a_d2i_fp.c a_i2d_fp.c \
|
||||
a_enum.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_req.c x_attrib.c x_bignum.c \
|
||||
x_long.c x_name.c x_x509.c x_x509a.c x_crl.c x_info.c x_spki.c nsseq.c \
|
||||
x_nx509.c d2i_pu.c d2i_pr.c i2d_pu.c i2d_pr.c\
|
||||
t_req.c t_x509.c t_x509a.c t_crl.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 ameth_lib.c \
|
||||
f_int.c f_string.c n_pkey.c \
|
||||
f_enum.c x_pkey.c a_bool.c x_exten.c bio_asn1.c bio_ndef.c asn_mime.c \
|
||||
asn1_gen.c asn1_par.c asn1_lib.c asn1_err.c a_bytes.c a_strnid.c \
|
||||
evp_asn1.c asn_pack.c p5_pbe.c p5_pbev2.c p8_pkey.c asn_moid.c
|
||||
LIBOBJ= a_object.o a_bitstr.o a_utctm.o a_gentm.o a_time.o a_int.o a_octet.o \
|
||||
a_print.o a_type.o a_set.o a_dup.o a_d2i_fp.o a_i2d_fp.o \
|
||||
a_enum.o a_utf8.o a_sign.o a_digest.o a_verify.o a_mbstr.o a_strex.o \
|
||||
x_algor.o x_val.o x_pubkey.o x_sig.o x_req.o x_attrib.o x_bignum.o \
|
||||
x_long.o x_name.o x_x509.o x_x509a.o x_crl.o x_info.o x_spki.o nsseq.o \
|
||||
x_nx509.o d2i_pu.o d2i_pr.o i2d_pu.o i2d_pr.o \
|
||||
t_req.o t_x509.o t_x509a.o t_crl.o t_pkey.o t_spki.o t_bitst.o \
|
||||
tasn_new.o tasn_fre.o tasn_enc.o tasn_dec.o tasn_utl.o tasn_typ.o \
|
||||
tasn_prn.o ameth_lib.o \
|
||||
f_int.o f_string.o n_pkey.o \
|
||||
f_enum.o x_pkey.o a_bool.o x_exten.o bio_asn1.o bio_ndef.o asn_mime.o \
|
||||
asn1_gen.o asn1_par.o asn1_lib.o asn1_err.o a_bytes.o a_strnid.o \
|
||||
evp_asn1.o asn_pack.o p5_pbe.o p5_pbev2.o p8_pkey.o asn_moid.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= asn1.h asn1_mac.h asn1t.h
|
||||
HEADER= $(EXHEADER) asn1_locl.h
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
test: test.c
|
||||
cc -g -I../../include -c test.c
|
||||
cc -g -I../../include -o test test.o -L../.. -lcrypto
|
||||
|
||||
pk: pk.c
|
||||
cc -g -I../../include -c pk.c
|
||||
cc -g -I../../include -o pk pk.o -L../.. -lcrypto
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by top Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
a_bitstr.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
a_bitstr.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
a_bitstr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
a_bitstr.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
a_bitstr.o: ../../include/openssl/opensslconf.h
|
||||
a_bitstr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
a_bitstr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
a_bitstr.o: ../../include/openssl/symhacks.h ../cryptlib.h a_bitstr.c
|
||||
a_bool.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
a_bool.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
a_bool.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
a_bool.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
a_bool.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
a_bool.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
a_bool.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
a_bool.o: ../../include/openssl/symhacks.h ../cryptlib.h a_bool.c
|
||||
a_bytes.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
a_bytes.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
a_bytes.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
a_bytes.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
a_bytes.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
a_bytes.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
a_bytes.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
a_bytes.o: ../cryptlib.h a_bytes.c
|
||||
a_d2i_fp.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
a_d2i_fp.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h
|
||||
a_d2i_fp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
a_d2i_fp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
a_d2i_fp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
a_d2i_fp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
a_d2i_fp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
a_d2i_fp.o: ../../include/openssl/symhacks.h ../cryptlib.h a_d2i_fp.c
|
||||
a_digest.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
a_digest.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
a_digest.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
a_digest.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
a_digest.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
a_digest.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
a_digest.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
a_digest.o: ../../include/openssl/opensslconf.h
|
||||
a_digest.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
a_digest.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
a_digest.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
a_digest.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
a_digest.o: ../../include/openssl/x509_vfy.h ../cryptlib.h a_digest.c
|
||||
a_dup.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
a_dup.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
a_dup.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
a_dup.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
a_dup.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
a_dup.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
a_dup.o: ../../include/openssl/symhacks.h ../cryptlib.h a_dup.c
|
||||
a_enum.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
a_enum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
a_enum.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
a_enum.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
a_enum.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
a_enum.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
a_enum.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
a_enum.o: ../cryptlib.h a_enum.c
|
||||
a_gentm.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
a_gentm.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
a_gentm.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
a_gentm.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
a_gentm.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
a_gentm.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
a_gentm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
a_gentm.o: ../cryptlib.h ../o_time.h a_gentm.c
|
||||
a_i2d_fp.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
a_i2d_fp.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
a_i2d_fp.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
a_i2d_fp.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
a_i2d_fp.o: ../../include/openssl/opensslconf.h
|
||||
a_i2d_fp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
a_i2d_fp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
a_i2d_fp.o: ../../include/openssl/symhacks.h ../cryptlib.h a_i2d_fp.c
|
||||
a_int.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
a_int.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
a_int.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
a_int.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
a_int.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
a_int.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
a_int.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
a_int.o: ../cryptlib.h a_int.c
|
||||
a_mbstr.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
a_mbstr.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
a_mbstr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
a_mbstr.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
a_mbstr.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
a_mbstr.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
a_mbstr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
a_mbstr.o: ../cryptlib.h a_mbstr.c
|
||||
a_object.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
a_object.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
a_object.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
a_object.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
a_object.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
a_object.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
a_object.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
a_object.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
a_object.o: ../../include/openssl/symhacks.h ../cryptlib.h a_object.c
|
||||
a_octet.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
a_octet.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
a_octet.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
a_octet.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
a_octet.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
a_octet.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
a_octet.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
a_octet.o: ../cryptlib.h a_octet.c
|
||||
a_print.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
a_print.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
a_print.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
a_print.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
a_print.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
a_print.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
a_print.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
a_print.o: ../cryptlib.h a_print.c
|
||||
a_set.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
a_set.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h
|
||||
a_set.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
a_set.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
a_set.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
a_set.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
a_set.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
a_set.o: ../../include/openssl/symhacks.h ../cryptlib.h a_set.c
|
||||
a_sign.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
a_sign.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
a_sign.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
a_sign.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
a_sign.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
a_sign.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
a_sign.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
a_sign.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
a_sign.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
a_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
a_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
a_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
a_sign.o: ../cryptlib.h a_sign.c asn1_locl.h
|
||||
a_strex.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
a_strex.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
a_strex.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
a_strex.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
a_strex.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
a_strex.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
a_strex.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
a_strex.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
a_strex.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
a_strex.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
a_strex.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
a_strex.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
a_strex.o: ../cryptlib.h a_strex.c charmap.h
|
||||
a_strnid.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
a_strnid.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
a_strnid.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
a_strnid.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
a_strnid.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
a_strnid.o: ../../include/openssl/opensslconf.h
|
||||
a_strnid.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
a_strnid.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
a_strnid.o: ../../include/openssl/symhacks.h ../cryptlib.h a_strnid.c
|
||||
a_time.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
a_time.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
a_time.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
a_time.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
a_time.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
a_time.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
a_time.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
a_time.o: ../../include/openssl/symhacks.h ../cryptlib.h ../o_time.h a_time.c
|
||||
a_type.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
a_type.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
a_type.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
a_type.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
a_type.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
a_type.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
a_type.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
a_type.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
a_type.o: ../../include/openssl/symhacks.h ../cryptlib.h a_type.c
|
||||
a_utctm.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
a_utctm.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
a_utctm.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
a_utctm.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
a_utctm.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
a_utctm.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
a_utctm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
a_utctm.o: ../cryptlib.h ../o_time.h a_utctm.c
|
||||
a_utf8.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
a_utf8.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
a_utf8.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
a_utf8.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
a_utf8.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
a_utf8.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
a_utf8.o: ../../include/openssl/symhacks.h ../cryptlib.h a_utf8.c
|
||||
a_verify.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
a_verify.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
a_verify.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
a_verify.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
a_verify.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
a_verify.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
a_verify.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
a_verify.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
a_verify.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
a_verify.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
a_verify.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
a_verify.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
a_verify.o: ../../include/openssl/x509_vfy.h ../cryptlib.h a_verify.c
|
||||
a_verify.o: asn1_locl.h
|
||||
ameth_lib.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
ameth_lib.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
ameth_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
ameth_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ameth_lib.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
ameth_lib.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
||||
ameth_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
ameth_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
ameth_lib.o: ../../include/openssl/opensslconf.h
|
||||
ameth_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ameth_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
ameth_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
ameth_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
ameth_lib.o: ../../include/openssl/x509_vfy.h ../cryptlib.h ameth_lib.c
|
||||
ameth_lib.o: asn1_locl.h
|
||||
asn1_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
asn1_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
asn1_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
asn1_err.o: ../../include/openssl/opensslconf.h
|
||||
asn1_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
asn1_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
asn1_err.o: ../../include/openssl/symhacks.h asn1_err.c
|
||||
asn1_gen.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
asn1_gen.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
asn1_gen.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
asn1_gen.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
asn1_gen.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
asn1_gen.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
asn1_gen.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
asn1_gen.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
asn1_gen.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
asn1_gen.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
asn1_gen.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
asn1_gen.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
asn1_gen.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
asn1_gen.o: ../cryptlib.h asn1_gen.c
|
||||
asn1_lib.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
asn1_lib.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h
|
||||
asn1_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
asn1_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
asn1_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
asn1_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
asn1_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
asn1_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h asn1_lib.c
|
||||
asn1_par.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
asn1_par.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
asn1_par.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
asn1_par.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
asn1_par.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
asn1_par.o: ../../include/openssl/opensslconf.h
|
||||
asn1_par.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
asn1_par.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
asn1_par.o: ../../include/openssl/symhacks.h ../cryptlib.h asn1_par.c
|
||||
asn_mime.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
asn_mime.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
asn_mime.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
asn_mime.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
asn_mime.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
asn_mime.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
asn_mime.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
asn_mime.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
asn_mime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
asn_mime.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
asn_mime.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
asn_mime.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
asn_mime.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
asn_mime.o: ../cryptlib.h asn1_locl.h asn_mime.c
|
||||
asn_moid.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
asn_moid.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
asn_moid.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
asn_moid.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
|
||||
asn_moid.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
asn_moid.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
asn_moid.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
asn_moid.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
asn_moid.o: ../../include/openssl/opensslconf.h
|
||||
asn_moid.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
asn_moid.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
asn_moid.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
asn_moid.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
asn_moid.o: ../../include/openssl/x509_vfy.h ../cryptlib.h asn_moid.c
|
||||
asn_pack.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
asn_pack.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
asn_pack.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
asn_pack.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
asn_pack.o: ../../include/openssl/opensslconf.h
|
||||
asn_pack.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
asn_pack.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
asn_pack.o: ../../include/openssl/symhacks.h ../cryptlib.h asn_pack.c
|
||||
bio_asn1.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
bio_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
bio_asn1.o: ../../include/openssl/opensslconf.h
|
||||
bio_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bio_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bio_asn1.o: ../../include/openssl/symhacks.h bio_asn1.c
|
||||
bio_ndef.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
|
||||
bio_ndef.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
|
||||
bio_ndef.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bio_ndef.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bio_ndef.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bio_ndef.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bio_ndef.o: ../../include/openssl/symhacks.h bio_ndef.c
|
||||
d2i_pr.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
d2i_pr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
d2i_pr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
d2i_pr.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
d2i_pr.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
d2i_pr.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
d2i_pr.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
d2i_pr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
d2i_pr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
d2i_pr.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
d2i_pr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
d2i_pr.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
d2i_pr.o: ../../include/openssl/x509_vfy.h ../cryptlib.h asn1_locl.h d2i_pr.c
|
||||
d2i_pu.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
d2i_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
d2i_pu.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h
|
||||
d2i_pu.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
d2i_pu.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
d2i_pu.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
d2i_pu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
d2i_pu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
d2i_pu.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
d2i_pu.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
d2i_pu.o: ../cryptlib.h d2i_pu.c
|
||||
evp_asn1.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
evp_asn1.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h
|
||||
evp_asn1.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
evp_asn1.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
evp_asn1.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
evp_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
evp_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
evp_asn1.o: ../../include/openssl/symhacks.h ../cryptlib.h evp_asn1.c
|
||||
f_enum.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
f_enum.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
f_enum.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
f_enum.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
f_enum.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
f_enum.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
f_enum.o: ../../include/openssl/symhacks.h ../cryptlib.h f_enum.c
|
||||
f_int.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
f_int.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
f_int.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
f_int.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
f_int.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
f_int.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
f_int.o: ../../include/openssl/symhacks.h ../cryptlib.h f_int.c
|
||||
f_string.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
f_string.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
f_string.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
f_string.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
f_string.o: ../../include/openssl/opensslconf.h
|
||||
f_string.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
f_string.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
f_string.o: ../../include/openssl/symhacks.h ../cryptlib.h f_string.c
|
||||
i2d_pr.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
i2d_pr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
i2d_pr.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
i2d_pr.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
i2d_pr.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
i2d_pr.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
i2d_pr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
i2d_pr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
i2d_pr.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
i2d_pr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
i2d_pr.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
i2d_pr.o: ../../include/openssl/x509_vfy.h ../cryptlib.h asn1_locl.h i2d_pr.c
|
||||
i2d_pu.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
i2d_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
i2d_pu.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h
|
||||
i2d_pu.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
i2d_pu.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
i2d_pu.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
i2d_pu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
i2d_pu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
i2d_pu.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
i2d_pu.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
i2d_pu.o: ../cryptlib.h i2d_pu.c
|
||||
n_pkey.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
n_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/asn1t.h
|
||||
n_pkey.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
n_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
n_pkey.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
n_pkey.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
n_pkey.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
n_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
n_pkey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
n_pkey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
n_pkey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
n_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
n_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
n_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h n_pkey.c
|
||||
nsseq.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
|
||||
nsseq.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
nsseq.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
nsseq.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
nsseq.o: ../../include/openssl/ecdsa.h ../../include/openssl/evp.h
|
||||
nsseq.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
nsseq.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
nsseq.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
nsseq.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
nsseq.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
nsseq.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
nsseq.o: ../../include/openssl/x509_vfy.h nsseq.c
|
||||
p5_pbe.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
p5_pbe.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
p5_pbe.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
p5_pbe.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
p5_pbe.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
p5_pbe.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
p5_pbe.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
p5_pbe.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
p5_pbe.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
p5_pbe.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
p5_pbe.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
p5_pbe.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
p5_pbe.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
p5_pbe.o: ../cryptlib.h p5_pbe.c
|
||||
p5_pbev2.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
p5_pbev2.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
p5_pbev2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
p5_pbev2.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
p5_pbev2.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
p5_pbev2.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
p5_pbev2.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
p5_pbev2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
p5_pbev2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
p5_pbev2.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
p5_pbev2.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
p5_pbev2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
p5_pbev2.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
p5_pbev2.o: ../cryptlib.h p5_pbev2.c
|
||||
p8_pkey.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
p8_pkey.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
p8_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
p8_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
p8_pkey.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
p8_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
p8_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
p8_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
p8_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
p8_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
p8_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
p8_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
p8_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p8_pkey.c
|
||||
t_bitst.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
t_bitst.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
t_bitst.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
t_bitst.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
t_bitst.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
t_bitst.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
t_bitst.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
t_bitst.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
t_bitst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
t_bitst.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
t_bitst.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
t_bitst.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
t_bitst.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
t_bitst.o: ../cryptlib.h t_bitst.c
|
||||
t_crl.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
t_crl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
t_crl.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
t_crl.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
t_crl.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
t_crl.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
t_crl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
t_crl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
t_crl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
t_crl.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
t_crl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
t_crl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
t_crl.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
t_crl.o: ../cryptlib.h t_crl.c
|
||||
t_pkey.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
t_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
t_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
t_pkey.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
t_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
t_pkey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
t_pkey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
t_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
t_pkey.o: ../cryptlib.h t_pkey.c
|
||||
t_req.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
t_req.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
t_req.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
t_req.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
||||
t_req.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
t_req.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
t_req.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
t_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
t_req.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
t_req.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
t_req.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
t_req.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
t_req.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
t_req.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
t_req.o: ../cryptlib.h t_req.c
|
||||
t_spki.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
t_spki.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
t_spki.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h
|
||||
t_spki.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
t_spki.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
t_spki.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
t_spki.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
t_spki.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
t_spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
t_spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
|
||||
t_spki.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
t_spki.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
t_spki.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
t_spki.o: ../cryptlib.h t_spki.c
|
||||
t_x509.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
t_x509.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
t_x509.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
t_x509.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
||||
t_x509.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
t_x509.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
t_x509.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
t_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
t_x509.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
t_x509.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
t_x509.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
t_x509.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
t_x509.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
t_x509.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
t_x509.o: ../cryptlib.h asn1_locl.h t_x509.c
|
||||
t_x509a.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
t_x509a.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
t_x509a.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
t_x509a.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
t_x509a.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
t_x509a.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
t_x509a.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
t_x509a.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
t_x509a.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
t_x509a.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
t_x509a.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
t_x509a.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
t_x509a.o: ../cryptlib.h t_x509a.c
|
||||
tasn_dec.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
|
||||
tasn_dec.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
tasn_dec.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
tasn_dec.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
tasn_dec.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
tasn_dec.o: ../../include/openssl/opensslconf.h
|
||||
tasn_dec.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
tasn_dec.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
tasn_dec.o: ../../include/openssl/symhacks.h tasn_dec.c
|
||||
tasn_enc.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
tasn_enc.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
tasn_enc.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
tasn_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
tasn_enc.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
tasn_enc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
tasn_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
tasn_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
tasn_enc.o: ../../include/openssl/symhacks.h ../cryptlib.h tasn_enc.c
|
||||
tasn_fre.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
|
||||
tasn_fre.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
|
||||
tasn_fre.o: ../../include/openssl/e_os2.h ../../include/openssl/obj_mac.h
|
||||
tasn_fre.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
tasn_fre.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
tasn_fre.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
tasn_fre.o: ../../include/openssl/symhacks.h tasn_fre.c
|
||||
tasn_new.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
|
||||
tasn_new.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
|
||||
tasn_new.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
tasn_new.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
tasn_new.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
tasn_new.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
tasn_new.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
tasn_new.o: ../../include/openssl/symhacks.h tasn_new.c
|
||||
tasn_prn.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
tasn_prn.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
tasn_prn.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
|
||||
tasn_prn.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
tasn_prn.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
tasn_prn.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
tasn_prn.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
tasn_prn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
tasn_prn.o: ../../include/openssl/opensslconf.h
|
||||
tasn_prn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
tasn_prn.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
tasn_prn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
tasn_prn.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
tasn_prn.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
tasn_prn.o: ../cryptlib.h asn1_locl.h tasn_prn.c
|
||||
tasn_typ.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
|
||||
tasn_typ.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
|
||||
tasn_typ.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
tasn_typ.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
tasn_typ.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
tasn_typ.o: ../../include/openssl/symhacks.h tasn_typ.c
|
||||
tasn_utl.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
|
||||
tasn_utl.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
|
||||
tasn_utl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
tasn_utl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
tasn_utl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
tasn_utl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
tasn_utl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
tasn_utl.o: ../../include/openssl/symhacks.h tasn_utl.c
|
||||
x_algor.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
|
||||
x_algor.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
x_algor.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
x_algor.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
x_algor.o: ../../include/openssl/ecdsa.h ../../include/openssl/evp.h
|
||||
x_algor.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
x_algor.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
x_algor.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
x_algor.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
x_algor.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
x_algor.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
x_algor.o: ../../include/openssl/x509_vfy.h x_algor.c
|
||||
x_attrib.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
x_attrib.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
x_attrib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
x_attrib.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
x_attrib.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
x_attrib.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
x_attrib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
x_attrib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
x_attrib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
x_attrib.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
x_attrib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
x_attrib.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
x_attrib.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_attrib.c
|
||||
x_bignum.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
x_bignum.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
x_bignum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
x_bignum.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
x_bignum.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
x_bignum.o: ../../include/openssl/opensslconf.h
|
||||
x_bignum.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
x_bignum.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
x_bignum.o: ../../include/openssl/symhacks.h ../cryptlib.h x_bignum.c
|
||||
x_crl.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
x_crl.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
x_crl.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
|
||||
x_crl.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
x_crl.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
x_crl.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
x_crl.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
x_crl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
x_crl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
x_crl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
x_crl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
x_crl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
x_crl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
x_crl.o: ../../include/openssl/x509v3.h ../cryptlib.h asn1_locl.h x_crl.c
|
||||
x_exten.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
|
||||
x_exten.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
x_exten.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
x_exten.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
x_exten.o: ../../include/openssl/ecdsa.h ../../include/openssl/evp.h
|
||||
x_exten.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
x_exten.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
x_exten.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
x_exten.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
x_exten.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
x_exten.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
x_exten.o: ../../include/openssl/x509_vfy.h x_exten.c
|
||||
x_info.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
x_info.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
x_info.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
x_info.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
x_info.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
x_info.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
x_info.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
x_info.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
x_info.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
x_info.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
x_info.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
x_info.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_info.c
|
||||
x_long.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
x_long.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
x_long.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
x_long.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
x_long.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
x_long.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
x_long.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
x_long.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
x_long.o: ../cryptlib.h x_long.c
|
||||
x_name.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
x_name.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
x_name.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
x_name.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
x_name.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
x_name.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
x_name.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
x_name.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
x_name.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
x_name.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
x_name.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
x_name.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
x_name.o: ../../include/openssl/x509_vfy.h ../cryptlib.h asn1_locl.h x_name.c
|
||||
x_nx509.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
|
||||
x_nx509.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
x_nx509.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
x_nx509.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
x_nx509.o: ../../include/openssl/ecdsa.h ../../include/openssl/evp.h
|
||||
x_nx509.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
x_nx509.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
x_nx509.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
x_nx509.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
x_nx509.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
x_nx509.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
x_nx509.o: ../../include/openssl/x509_vfy.h x_nx509.c
|
||||
x_pkey.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
x_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h
|
||||
x_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
x_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
x_pkey.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
x_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
x_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
x_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
x_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
x_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
x_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
x_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
x_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_pkey.c
|
||||
x_pubkey.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
x_pubkey.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
x_pubkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
x_pubkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
||||
x_pubkey.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
x_pubkey.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
x_pubkey.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
x_pubkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
x_pubkey.o: ../../include/openssl/opensslconf.h
|
||||
x_pubkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
x_pubkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
|
||||
x_pubkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
x_pubkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
x_pubkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
x_pubkey.o: ../cryptlib.h asn1_locl.h x_pubkey.c
|
||||
x_req.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
x_req.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
x_req.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
x_req.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
x_req.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
x_req.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
x_req.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
x_req.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
x_req.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
x_req.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
x_req.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
x_req.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
x_req.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_req.c
|
||||
x_sig.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
x_sig.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
x_sig.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
x_sig.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
x_sig.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
x_sig.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
x_sig.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
x_sig.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
x_sig.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
x_sig.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
x_sig.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
x_sig.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
x_sig.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_sig.c
|
||||
x_spki.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
x_spki.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
x_spki.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
x_spki.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
x_spki.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
x_spki.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
x_spki.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
x_spki.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
x_spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
x_spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
x_spki.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
x_spki.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
x_spki.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_spki.c
|
||||
x_val.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
x_val.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
x_val.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
x_val.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
x_val.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
x_val.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
x_val.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
x_val.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
x_val.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
x_val.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
x_val.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
x_val.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
x_val.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_val.c
|
||||
x_x509.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
x_x509.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
x_x509.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
|
||||
x_x509.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
x_x509.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
x_x509.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
x_x509.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
x_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
x_x509.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
x_x509.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
x_x509.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
x_x509.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
x_x509.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
x_x509.o: ../../include/openssl/x509v3.h ../cryptlib.h x_x509.c
|
||||
x_x509a.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
x_x509a.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
x_x509a.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
x_x509a.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
x_x509a.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
x_x509a.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
x_x509a.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
x_x509a.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
x_x509a.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
x_x509a.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
x_x509a.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
x_x509a.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
x_x509a.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_x509a.c
|
|
@ -1,930 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/asn1/Makefile
|
||||
#
|
||||
|
||||
DIR= asn1
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile README
|
||||
TEST=
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= 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_set.c a_dup.c a_d2i_fp.c a_i2d_fp.c \
|
||||
a_enum.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_req.c x_attrib.c x_bignum.c \
|
||||
x_long.c x_name.c x_x509.c x_x509a.c x_crl.c x_info.c x_spki.c nsseq.c \
|
||||
x_nx509.c d2i_pu.c d2i_pr.c i2d_pu.c i2d_pr.c\
|
||||
t_req.c t_x509.c t_x509a.c t_crl.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 ameth_lib.c \
|
||||
f_int.c f_string.c n_pkey.c \
|
||||
f_enum.c x_pkey.c a_bool.c x_exten.c bio_asn1.c bio_ndef.c asn_mime.c \
|
||||
asn1_gen.c asn1_par.c asn1_lib.c asn1_err.c a_bytes.c a_strnid.c \
|
||||
evp_asn1.c asn_pack.c p5_pbe.c p5_pbev2.c p8_pkey.c asn_moid.c
|
||||
LIBOBJ= a_object.o a_bitstr.o a_utctm.o a_gentm.o a_time.o a_int.o a_octet.o \
|
||||
a_print.o a_type.o a_set.o a_dup.o a_d2i_fp.o a_i2d_fp.o \
|
||||
a_enum.o a_utf8.o a_sign.o a_digest.o a_verify.o a_mbstr.o a_strex.o \
|
||||
x_algor.o x_val.o x_pubkey.o x_sig.o x_req.o x_attrib.o x_bignum.o \
|
||||
x_long.o x_name.o x_x509.o x_x509a.o x_crl.o x_info.o x_spki.o nsseq.o \
|
||||
x_nx509.o d2i_pu.o d2i_pr.o i2d_pu.o i2d_pr.o \
|
||||
t_req.o t_x509.o t_x509a.o t_crl.o t_pkey.o t_spki.o t_bitst.o \
|
||||
tasn_new.o tasn_fre.o tasn_enc.o tasn_dec.o tasn_utl.o tasn_typ.o \
|
||||
tasn_prn.o ameth_lib.o \
|
||||
f_int.o f_string.o n_pkey.o \
|
||||
f_enum.o x_pkey.o a_bool.o x_exten.o bio_asn1.o bio_ndef.o asn_mime.o \
|
||||
asn1_gen.o asn1_par.o asn1_lib.o asn1_err.o a_bytes.o a_strnid.o \
|
||||
evp_asn1.o asn_pack.o p5_pbe.o p5_pbev2.o p8_pkey.o asn_moid.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= asn1.h asn1_mac.h asn1t.h
|
||||
HEADER= $(EXHEADER) asn1_locl.h
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
test: test.c
|
||||
cc -g -I../../include -c test.c
|
||||
cc -g -I../../include -o test test.o -L../.. -lcrypto
|
||||
|
||||
pk: pk.c
|
||||
cc -g -I../../include -c pk.c
|
||||
cc -g -I../../include -o pk pk.o -L../.. -lcrypto
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by top Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
a_bitstr.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
a_bitstr.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
a_bitstr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
a_bitstr.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
a_bitstr.o: ../../include/openssl/opensslconf.h
|
||||
a_bitstr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
a_bitstr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
a_bitstr.o: ../../include/openssl/symhacks.h ../cryptlib.h a_bitstr.c
|
||||
a_bool.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
a_bool.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
a_bool.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
a_bool.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
a_bool.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
a_bool.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
a_bool.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
a_bool.o: ../../include/openssl/symhacks.h ../cryptlib.h a_bool.c
|
||||
a_bytes.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
a_bytes.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
a_bytes.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
a_bytes.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
a_bytes.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
a_bytes.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
a_bytes.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
a_bytes.o: ../cryptlib.h a_bytes.c
|
||||
a_d2i_fp.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
a_d2i_fp.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h
|
||||
a_d2i_fp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
a_d2i_fp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
a_d2i_fp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
a_d2i_fp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
a_d2i_fp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
a_d2i_fp.o: ../../include/openssl/symhacks.h ../cryptlib.h a_d2i_fp.c
|
||||
a_digest.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
a_digest.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
a_digest.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
a_digest.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
a_digest.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
a_digest.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
a_digest.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
a_digest.o: ../../include/openssl/opensslconf.h
|
||||
a_digest.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
a_digest.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
a_digest.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
a_digest.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
a_digest.o: ../../include/openssl/x509_vfy.h ../cryptlib.h a_digest.c
|
||||
a_dup.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
a_dup.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
a_dup.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
a_dup.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
a_dup.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
a_dup.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
a_dup.o: ../../include/openssl/symhacks.h ../cryptlib.h a_dup.c
|
||||
a_enum.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
a_enum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
a_enum.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
a_enum.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
a_enum.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
a_enum.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
a_enum.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
a_enum.o: ../cryptlib.h a_enum.c
|
||||
a_gentm.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
a_gentm.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
a_gentm.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
a_gentm.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
a_gentm.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
a_gentm.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
a_gentm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
a_gentm.o: ../cryptlib.h ../o_time.h a_gentm.c
|
||||
a_i2d_fp.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
a_i2d_fp.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
a_i2d_fp.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
a_i2d_fp.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
a_i2d_fp.o: ../../include/openssl/opensslconf.h
|
||||
a_i2d_fp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
a_i2d_fp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
a_i2d_fp.o: ../../include/openssl/symhacks.h ../cryptlib.h a_i2d_fp.c
|
||||
a_int.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
a_int.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
a_int.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
a_int.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
a_int.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
a_int.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
a_int.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
a_int.o: ../cryptlib.h a_int.c
|
||||
a_mbstr.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
a_mbstr.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
a_mbstr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
a_mbstr.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
a_mbstr.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
a_mbstr.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
a_mbstr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
a_mbstr.o: ../cryptlib.h a_mbstr.c
|
||||
a_object.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
a_object.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
a_object.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
a_object.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
a_object.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
a_object.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
a_object.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
a_object.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
a_object.o: ../../include/openssl/symhacks.h ../cryptlib.h a_object.c
|
||||
a_octet.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
a_octet.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
a_octet.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
a_octet.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
a_octet.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
a_octet.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
a_octet.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
a_octet.o: ../cryptlib.h a_octet.c
|
||||
a_print.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
a_print.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
a_print.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
a_print.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
a_print.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
a_print.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
a_print.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
a_print.o: ../cryptlib.h a_print.c
|
||||
a_set.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
a_set.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h
|
||||
a_set.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
a_set.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
a_set.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
a_set.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
a_set.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
a_set.o: ../../include/openssl/symhacks.h ../cryptlib.h a_set.c
|
||||
a_sign.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
a_sign.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
a_sign.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
a_sign.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
a_sign.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
a_sign.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
a_sign.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
a_sign.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
a_sign.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
a_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
a_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
a_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
a_sign.o: ../cryptlib.h a_sign.c asn1_locl.h
|
||||
a_strex.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
a_strex.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
a_strex.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
a_strex.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
a_strex.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
a_strex.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
a_strex.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
a_strex.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
a_strex.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
a_strex.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
a_strex.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
a_strex.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
a_strex.o: ../cryptlib.h a_strex.c charmap.h
|
||||
a_strnid.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
a_strnid.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
a_strnid.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
a_strnid.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
a_strnid.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
a_strnid.o: ../../include/openssl/opensslconf.h
|
||||
a_strnid.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
a_strnid.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
a_strnid.o: ../../include/openssl/symhacks.h ../cryptlib.h a_strnid.c
|
||||
a_time.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
a_time.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
a_time.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
a_time.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
a_time.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
a_time.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
a_time.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
a_time.o: ../../include/openssl/symhacks.h ../cryptlib.h ../o_time.h a_time.c
|
||||
a_type.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
a_type.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
a_type.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
a_type.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
a_type.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
a_type.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
a_type.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
a_type.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
a_type.o: ../../include/openssl/symhacks.h ../cryptlib.h a_type.c
|
||||
a_utctm.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
a_utctm.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
a_utctm.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
a_utctm.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
a_utctm.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
a_utctm.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
a_utctm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
a_utctm.o: ../cryptlib.h ../o_time.h a_utctm.c
|
||||
a_utf8.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
a_utf8.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
a_utf8.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
a_utf8.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
a_utf8.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
a_utf8.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
a_utf8.o: ../../include/openssl/symhacks.h ../cryptlib.h a_utf8.c
|
||||
a_verify.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
a_verify.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
a_verify.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
a_verify.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
a_verify.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
a_verify.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
a_verify.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
a_verify.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
a_verify.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
a_verify.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
a_verify.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
a_verify.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
a_verify.o: ../../include/openssl/x509_vfy.h ../cryptlib.h a_verify.c
|
||||
a_verify.o: asn1_locl.h
|
||||
ameth_lib.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
ameth_lib.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
ameth_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
ameth_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ameth_lib.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
ameth_lib.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
||||
ameth_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
ameth_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
ameth_lib.o: ../../include/openssl/opensslconf.h
|
||||
ameth_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ameth_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
ameth_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
ameth_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
ameth_lib.o: ../../include/openssl/x509_vfy.h ../cryptlib.h ameth_lib.c
|
||||
ameth_lib.o: asn1_locl.h
|
||||
asn1_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
asn1_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
asn1_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
asn1_err.o: ../../include/openssl/opensslconf.h
|
||||
asn1_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
asn1_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
asn1_err.o: ../../include/openssl/symhacks.h asn1_err.c
|
||||
asn1_gen.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
asn1_gen.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
asn1_gen.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
asn1_gen.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
asn1_gen.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
asn1_gen.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
asn1_gen.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
asn1_gen.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
asn1_gen.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
asn1_gen.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
asn1_gen.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
asn1_gen.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
asn1_gen.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
asn1_gen.o: ../cryptlib.h asn1_gen.c
|
||||
asn1_lib.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
asn1_lib.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h
|
||||
asn1_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
asn1_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
asn1_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
asn1_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
asn1_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
asn1_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h asn1_lib.c
|
||||
asn1_par.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
asn1_par.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
asn1_par.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
asn1_par.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
asn1_par.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
asn1_par.o: ../../include/openssl/opensslconf.h
|
||||
asn1_par.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
asn1_par.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
asn1_par.o: ../../include/openssl/symhacks.h ../cryptlib.h asn1_par.c
|
||||
asn_mime.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
asn_mime.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
asn_mime.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
asn_mime.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
asn_mime.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
asn_mime.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
asn_mime.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
asn_mime.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
asn_mime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
asn_mime.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
asn_mime.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
asn_mime.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
asn_mime.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
asn_mime.o: ../cryptlib.h asn1_locl.h asn_mime.c
|
||||
asn_moid.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
asn_moid.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
asn_moid.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
asn_moid.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
|
||||
asn_moid.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
asn_moid.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
asn_moid.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
asn_moid.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
asn_moid.o: ../../include/openssl/opensslconf.h
|
||||
asn_moid.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
asn_moid.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
asn_moid.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
asn_moid.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
asn_moid.o: ../../include/openssl/x509_vfy.h ../cryptlib.h asn_moid.c
|
||||
asn_pack.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
asn_pack.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
asn_pack.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
asn_pack.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
asn_pack.o: ../../include/openssl/opensslconf.h
|
||||
asn_pack.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
asn_pack.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
asn_pack.o: ../../include/openssl/symhacks.h ../cryptlib.h asn_pack.c
|
||||
bio_asn1.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
bio_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
bio_asn1.o: ../../include/openssl/opensslconf.h
|
||||
bio_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bio_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bio_asn1.o: ../../include/openssl/symhacks.h bio_asn1.c
|
||||
bio_ndef.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
|
||||
bio_ndef.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
|
||||
bio_ndef.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bio_ndef.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bio_ndef.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bio_ndef.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bio_ndef.o: ../../include/openssl/symhacks.h bio_ndef.c
|
||||
d2i_pr.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
d2i_pr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
d2i_pr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
d2i_pr.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
d2i_pr.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
d2i_pr.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
d2i_pr.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
d2i_pr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
d2i_pr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
d2i_pr.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
d2i_pr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
d2i_pr.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
d2i_pr.o: ../../include/openssl/x509_vfy.h ../cryptlib.h asn1_locl.h d2i_pr.c
|
||||
d2i_pu.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
d2i_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
d2i_pu.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h
|
||||
d2i_pu.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
d2i_pu.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
d2i_pu.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
d2i_pu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
d2i_pu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
d2i_pu.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
d2i_pu.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
d2i_pu.o: ../cryptlib.h d2i_pu.c
|
||||
evp_asn1.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
evp_asn1.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h
|
||||
evp_asn1.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
evp_asn1.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
evp_asn1.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
evp_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
evp_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
evp_asn1.o: ../../include/openssl/symhacks.h ../cryptlib.h evp_asn1.c
|
||||
f_enum.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
f_enum.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
f_enum.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
f_enum.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
f_enum.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
f_enum.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
f_enum.o: ../../include/openssl/symhacks.h ../cryptlib.h f_enum.c
|
||||
f_int.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
f_int.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
f_int.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
f_int.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
f_int.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
f_int.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
f_int.o: ../../include/openssl/symhacks.h ../cryptlib.h f_int.c
|
||||
f_string.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
f_string.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
f_string.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
f_string.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
f_string.o: ../../include/openssl/opensslconf.h
|
||||
f_string.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
f_string.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
f_string.o: ../../include/openssl/symhacks.h ../cryptlib.h f_string.c
|
||||
i2d_pr.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
i2d_pr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
i2d_pr.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
i2d_pr.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
i2d_pr.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
i2d_pr.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
i2d_pr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
i2d_pr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
i2d_pr.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
i2d_pr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
i2d_pr.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
i2d_pr.o: ../../include/openssl/x509_vfy.h ../cryptlib.h asn1_locl.h i2d_pr.c
|
||||
i2d_pu.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
i2d_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
i2d_pu.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h
|
||||
i2d_pu.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
i2d_pu.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
i2d_pu.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
i2d_pu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
i2d_pu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
i2d_pu.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
i2d_pu.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
i2d_pu.o: ../cryptlib.h i2d_pu.c
|
||||
n_pkey.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
n_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/asn1t.h
|
||||
n_pkey.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
n_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
n_pkey.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
n_pkey.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
n_pkey.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
n_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
n_pkey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
n_pkey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
n_pkey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
n_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
n_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
n_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h n_pkey.c
|
||||
nsseq.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
|
||||
nsseq.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
nsseq.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
nsseq.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
nsseq.o: ../../include/openssl/ecdsa.h ../../include/openssl/evp.h
|
||||
nsseq.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
nsseq.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
nsseq.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
nsseq.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
nsseq.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
nsseq.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
nsseq.o: ../../include/openssl/x509_vfy.h nsseq.c
|
||||
p5_pbe.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
p5_pbe.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
p5_pbe.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
p5_pbe.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
p5_pbe.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
p5_pbe.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
p5_pbe.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
p5_pbe.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
p5_pbe.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
p5_pbe.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
p5_pbe.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
p5_pbe.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
p5_pbe.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
p5_pbe.o: ../cryptlib.h p5_pbe.c
|
||||
p5_pbev2.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
p5_pbev2.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
p5_pbev2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
p5_pbev2.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
p5_pbev2.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
p5_pbev2.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
p5_pbev2.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
p5_pbev2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
p5_pbev2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
p5_pbev2.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
p5_pbev2.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
p5_pbev2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
p5_pbev2.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
p5_pbev2.o: ../cryptlib.h p5_pbev2.c
|
||||
p8_pkey.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
p8_pkey.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
p8_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
p8_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
p8_pkey.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
p8_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
p8_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
p8_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
p8_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
p8_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
p8_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
p8_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
p8_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p8_pkey.c
|
||||
t_bitst.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
t_bitst.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
t_bitst.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
t_bitst.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
t_bitst.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
t_bitst.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
t_bitst.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
t_bitst.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
t_bitst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
t_bitst.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
t_bitst.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
t_bitst.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
t_bitst.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
t_bitst.o: ../cryptlib.h t_bitst.c
|
||||
t_crl.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
t_crl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
t_crl.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
t_crl.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
t_crl.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
t_crl.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
t_crl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
t_crl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
t_crl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
t_crl.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
t_crl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
t_crl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
t_crl.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
t_crl.o: ../cryptlib.h t_crl.c
|
||||
t_pkey.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
t_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
t_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
t_pkey.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
t_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
t_pkey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
t_pkey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
t_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
t_pkey.o: ../cryptlib.h t_pkey.c
|
||||
t_req.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
t_req.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
t_req.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
t_req.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
||||
t_req.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
t_req.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
t_req.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
t_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
t_req.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
t_req.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
t_req.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
t_req.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
t_req.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
t_req.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
t_req.o: ../cryptlib.h t_req.c
|
||||
t_spki.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
t_spki.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
t_spki.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h
|
||||
t_spki.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
t_spki.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
t_spki.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
t_spki.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
t_spki.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
t_spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
t_spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
|
||||
t_spki.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
t_spki.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
t_spki.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
t_spki.o: ../cryptlib.h t_spki.c
|
||||
t_x509.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
t_x509.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
t_x509.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
t_x509.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
||||
t_x509.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
t_x509.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
t_x509.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
t_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
t_x509.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
t_x509.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
t_x509.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
t_x509.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
t_x509.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
t_x509.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
t_x509.o: ../cryptlib.h asn1_locl.h t_x509.c
|
||||
t_x509a.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
t_x509a.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
t_x509a.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
t_x509a.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
t_x509a.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
t_x509a.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
t_x509a.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
t_x509a.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
t_x509a.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
t_x509a.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
t_x509a.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
t_x509a.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
t_x509a.o: ../cryptlib.h t_x509a.c
|
||||
tasn_dec.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
|
||||
tasn_dec.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
tasn_dec.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
tasn_dec.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
tasn_dec.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
tasn_dec.o: ../../include/openssl/opensslconf.h
|
||||
tasn_dec.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
tasn_dec.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
tasn_dec.o: ../../include/openssl/symhacks.h tasn_dec.c
|
||||
tasn_enc.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
tasn_enc.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
tasn_enc.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
tasn_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
tasn_enc.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
tasn_enc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
tasn_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
tasn_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
tasn_enc.o: ../../include/openssl/symhacks.h ../cryptlib.h tasn_enc.c
|
||||
tasn_fre.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
|
||||
tasn_fre.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
|
||||
tasn_fre.o: ../../include/openssl/e_os2.h ../../include/openssl/obj_mac.h
|
||||
tasn_fre.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
tasn_fre.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
tasn_fre.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
tasn_fre.o: ../../include/openssl/symhacks.h tasn_fre.c
|
||||
tasn_new.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
|
||||
tasn_new.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
|
||||
tasn_new.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
tasn_new.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
tasn_new.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
tasn_new.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
tasn_new.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
tasn_new.o: ../../include/openssl/symhacks.h tasn_new.c
|
||||
tasn_prn.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
tasn_prn.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
tasn_prn.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
|
||||
tasn_prn.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
tasn_prn.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
tasn_prn.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
tasn_prn.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
tasn_prn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
tasn_prn.o: ../../include/openssl/opensslconf.h
|
||||
tasn_prn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
tasn_prn.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
tasn_prn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
tasn_prn.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
tasn_prn.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
tasn_prn.o: ../cryptlib.h asn1_locl.h tasn_prn.c
|
||||
tasn_typ.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
|
||||
tasn_typ.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
|
||||
tasn_typ.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
tasn_typ.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
tasn_typ.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
tasn_typ.o: ../../include/openssl/symhacks.h tasn_typ.c
|
||||
tasn_utl.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
|
||||
tasn_utl.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
|
||||
tasn_utl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
tasn_utl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
tasn_utl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
tasn_utl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
tasn_utl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
tasn_utl.o: ../../include/openssl/symhacks.h tasn_utl.c
|
||||
x_algor.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
|
||||
x_algor.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
x_algor.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
x_algor.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
x_algor.o: ../../include/openssl/ecdsa.h ../../include/openssl/evp.h
|
||||
x_algor.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
x_algor.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
x_algor.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
x_algor.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
x_algor.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
x_algor.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
x_algor.o: ../../include/openssl/x509_vfy.h x_algor.c
|
||||
x_attrib.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
x_attrib.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
x_attrib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
x_attrib.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
x_attrib.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
x_attrib.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
x_attrib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
x_attrib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
x_attrib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
x_attrib.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
x_attrib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
x_attrib.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
x_attrib.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_attrib.c
|
||||
x_bignum.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
x_bignum.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
x_bignum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
x_bignum.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
x_bignum.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
x_bignum.o: ../../include/openssl/opensslconf.h
|
||||
x_bignum.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
x_bignum.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
x_bignum.o: ../../include/openssl/symhacks.h ../cryptlib.h x_bignum.c
|
||||
x_crl.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
x_crl.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
x_crl.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
|
||||
x_crl.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
x_crl.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
x_crl.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
x_crl.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
x_crl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
x_crl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
x_crl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
x_crl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
x_crl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
x_crl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
x_crl.o: ../../include/openssl/x509v3.h ../cryptlib.h asn1_locl.h x_crl.c
|
||||
x_exten.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
|
||||
x_exten.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
x_exten.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
x_exten.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
x_exten.o: ../../include/openssl/ecdsa.h ../../include/openssl/evp.h
|
||||
x_exten.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
x_exten.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
x_exten.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
x_exten.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
x_exten.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
x_exten.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
x_exten.o: ../../include/openssl/x509_vfy.h x_exten.c
|
||||
x_info.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
x_info.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
x_info.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
x_info.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
x_info.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
x_info.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
x_info.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
x_info.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
x_info.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
x_info.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
x_info.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
x_info.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_info.c
|
||||
x_long.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
x_long.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
x_long.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
x_long.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
x_long.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
x_long.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
x_long.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
x_long.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
x_long.o: ../cryptlib.h x_long.c
|
||||
x_name.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
x_name.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
x_name.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
x_name.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
x_name.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
x_name.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
x_name.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
x_name.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
x_name.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
x_name.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
x_name.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
x_name.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
x_name.o: ../../include/openssl/x509_vfy.h ../cryptlib.h asn1_locl.h x_name.c
|
||||
x_nx509.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
|
||||
x_nx509.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
x_nx509.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
x_nx509.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
x_nx509.o: ../../include/openssl/ecdsa.h ../../include/openssl/evp.h
|
||||
x_nx509.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
x_nx509.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
x_nx509.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
x_nx509.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
x_nx509.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
x_nx509.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
x_nx509.o: ../../include/openssl/x509_vfy.h x_nx509.c
|
||||
x_pkey.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
x_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h
|
||||
x_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
x_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
x_pkey.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
x_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
x_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
x_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
x_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
x_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
x_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
x_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
x_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_pkey.c
|
||||
x_pubkey.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
x_pubkey.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
x_pubkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
x_pubkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
||||
x_pubkey.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
x_pubkey.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
x_pubkey.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
x_pubkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
x_pubkey.o: ../../include/openssl/opensslconf.h
|
||||
x_pubkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
x_pubkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
|
||||
x_pubkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
x_pubkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
x_pubkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
x_pubkey.o: ../cryptlib.h asn1_locl.h x_pubkey.c
|
||||
x_req.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
x_req.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
x_req.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
x_req.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
x_req.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
x_req.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
x_req.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
x_req.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
x_req.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
x_req.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
x_req.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
x_req.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
x_req.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_req.c
|
||||
x_sig.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
x_sig.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
x_sig.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
x_sig.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
x_sig.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
x_sig.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
x_sig.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
x_sig.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
x_sig.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
x_sig.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
x_sig.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
x_sig.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
x_sig.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_sig.c
|
||||
x_spki.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
x_spki.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
x_spki.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
x_spki.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
x_spki.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
x_spki.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
x_spki.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
x_spki.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
x_spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
x_spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
x_spki.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
x_spki.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
x_spki.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_spki.c
|
||||
x_val.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
x_val.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
x_val.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
x_val.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
x_val.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
x_val.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
x_val.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
x_val.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
x_val.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
x_val.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
x_val.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
x_val.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
x_val.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_val.c
|
||||
x_x509.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
x_x509.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
x_x509.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
|
||||
x_x509.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
x_x509.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
x_x509.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
x_x509.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
x_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
x_x509.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
x_x509.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
x_x509.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
x_x509.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
x_x509.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
x_x509.o: ../../include/openssl/x509v3.h ../cryptlib.h x_x509.c
|
||||
x_x509a.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
x_x509a.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
x_x509a.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
x_x509a.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
x_x509a.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
x_x509a.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
x_x509a.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
x_x509a.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
x_x509a.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
x_x509a.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
x_x509a.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
x_x509a.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
x_x509a.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_x509a.c
|
|
@ -1,101 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/blowfish/Makefile
|
||||
#
|
||||
|
||||
DIR= bf
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
CPP= $(CC) -E
|
||||
INCLUDES=
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
BF_ENC= bf_enc.o
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
ASFLAGS= $(INCLUDES) $(ASFLAG)
|
||||
AFLAGS= $(ASFLAGS)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=bftest.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=bf_skey.c bf_ecb.c bf_enc.c bf_cfb64.c bf_ofb64.c
|
||||
LIBOBJ=bf_skey.o bf_ecb.o $(BF_ENC) bf_cfb64.o bf_ofb64.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= blowfish.h
|
||||
HEADER= bf_pi.h bf_locl.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
bf-586.s: asm/bf-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl
|
||||
$(PERL) asm/bf-586.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
# We need to use force because 'install' matches 'INSTALL' on case
|
||||
# insensitive systems
|
||||
FRC.install:
|
||||
install: FRC.install
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
bf_cfb64.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h
|
||||
bf_cfb64.o: ../../include/openssl/opensslconf.h bf_cfb64.c bf_locl.h
|
||||
bf_ecb.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h
|
||||
bf_ecb.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
bf_ecb.o: bf_ecb.c bf_locl.h
|
||||
bf_enc.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h
|
||||
bf_enc.o: ../../include/openssl/opensslconf.h bf_enc.c bf_locl.h
|
||||
bf_ofb64.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h
|
||||
bf_ofb64.o: ../../include/openssl/opensslconf.h bf_locl.h bf_ofb64.c
|
||||
bf_skey.o: ../../include/openssl/blowfish.h ../../include/openssl/crypto.h
|
||||
bf_skey.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
bf_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bf_skey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bf_skey.o: ../../include/openssl/symhacks.h bf_locl.h bf_pi.h bf_skey.c
|
|
@ -1,101 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/blowfish/Makefile
|
||||
#
|
||||
|
||||
DIR= bf
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
CPP= $(CC) -E
|
||||
INCLUDES=
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
BF_ENC= bf_enc.o
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
ASFLAGS= $(INCLUDES) $(ASFLAG)
|
||||
AFLAGS= $(ASFLAGS)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=bftest.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=bf_skey.c bf_ecb.c bf_enc.c bf_cfb64.c bf_ofb64.c
|
||||
LIBOBJ=bf_skey.o bf_ecb.o $(BF_ENC) bf_cfb64.o bf_ofb64.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= blowfish.h
|
||||
HEADER= bf_pi.h bf_locl.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
bf-586.s: asm/bf-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl
|
||||
$(PERL) asm/bf-586.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
# We need to use force because 'install' matches 'INSTALL' on case
|
||||
# insensitive systems
|
||||
FRC.install:
|
||||
install: FRC.install
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
bf_cfb64.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h
|
||||
bf_cfb64.o: ../../include/openssl/opensslconf.h bf_cfb64.c bf_locl.h
|
||||
bf_ecb.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h
|
||||
bf_ecb.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
bf_ecb.o: bf_ecb.c bf_locl.h
|
||||
bf_enc.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h
|
||||
bf_enc.o: ../../include/openssl/opensslconf.h bf_enc.c bf_locl.h
|
||||
bf_ofb64.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h
|
||||
bf_ofb64.o: ../../include/openssl/opensslconf.h bf_locl.h bf_ofb64.c
|
||||
bf_skey.o: ../../include/openssl/blowfish.h ../../include/openssl/crypto.h
|
||||
bf_skey.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
bf_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bf_skey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bf_skey.o: ../../include/openssl/symhacks.h bf_locl.h bf_pi.h bf_skey.c
|
|
@ -1,222 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/bio/Makefile
|
||||
#
|
||||
|
||||
DIR= bio
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= bio_lib.c bio_cb.c bio_err.c \
|
||||
bss_mem.c bss_null.c bss_fd.c \
|
||||
bss_file.c bss_sock.c bss_conn.c \
|
||||
bf_null.c bf_buff.c b_print.c b_dump.c \
|
||||
b_sock.c bss_acpt.c bf_nbio.c bss_log.c bss_bio.c \
|
||||
bss_dgram.c
|
||||
# bf_lbuf.c
|
||||
LIBOBJ= bio_lib.o bio_cb.o bio_err.o \
|
||||
bss_mem.o bss_null.o bss_fd.o \
|
||||
bss_file.o bss_sock.o bss_conn.o \
|
||||
bf_null.o bf_buff.o b_print.o b_dump.o \
|
||||
b_sock.o bss_acpt.o bf_nbio.o bss_log.o bss_bio.o \
|
||||
bss_dgram.o
|
||||
# bf_lbuf.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= bio.h
|
||||
HEADER= bio_lcl.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
b_dump.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
b_dump.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
b_dump.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
b_dump.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
b_dump.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
b_dump.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
b_dump.o: ../../include/openssl/symhacks.h ../cryptlib.h b_dump.c bio_lcl.h
|
||||
b_print.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
b_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
b_print.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
b_print.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
b_print.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
b_print.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
b_print.o: ../../include/openssl/symhacks.h ../cryptlib.h b_print.c
|
||||
b_sock.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
b_sock.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
b_sock.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
|
||||
b_sock.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
b_sock.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
b_sock.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
b_sock.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
b_sock.o: ../cryptlib.h b_sock.c
|
||||
bf_buff.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
bf_buff.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bf_buff.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bf_buff.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bf_buff.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bf_buff.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bf_buff.o: ../../include/openssl/symhacks.h ../cryptlib.h bf_buff.c
|
||||
bf_nbio.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
bf_nbio.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bf_nbio.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bf_nbio.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bf_nbio.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bf_nbio.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
bf_nbio.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
bf_nbio.o: ../cryptlib.h bf_nbio.c
|
||||
bf_null.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
bf_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bf_null.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bf_null.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bf_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bf_null.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bf_null.o: ../../include/openssl/symhacks.h ../cryptlib.h bf_null.c
|
||||
bio_cb.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
bio_cb.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bio_cb.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bio_cb.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bio_cb.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bio_cb.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bio_cb.o: ../../include/openssl/symhacks.h ../cryptlib.h bio_cb.c
|
||||
bio_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
|
||||
bio_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bio_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bio_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bio_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bio_err.o: ../../include/openssl/symhacks.h bio_err.c
|
||||
bio_lib.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
bio_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bio_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bio_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bio_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bio_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bio_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h bio_lib.c
|
||||
bss_acpt.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
bss_acpt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bss_acpt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bss_acpt.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bss_acpt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bss_acpt.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bss_acpt.o: ../../include/openssl/symhacks.h ../cryptlib.h bss_acpt.c
|
||||
bss_bio.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
bss_bio.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
bss_bio.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
bss_bio.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
bss_bio.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
bss_bio.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
bss_bio.o: bss_bio.c
|
||||
bss_conn.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
bss_conn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bss_conn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bss_conn.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bss_conn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bss_conn.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bss_conn.o: ../../include/openssl/symhacks.h ../cryptlib.h bss_conn.c
|
||||
bss_dgram.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
bss_dgram.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bss_dgram.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bss_dgram.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bss_dgram.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bss_dgram.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bss_dgram.o: ../../include/openssl/symhacks.h ../cryptlib.h bss_dgram.c
|
||||
bss_fd.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
bss_fd.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bss_fd.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bss_fd.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bss_fd.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bss_fd.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bss_fd.o: ../../include/openssl/symhacks.h ../cryptlib.h bio_lcl.h bss_fd.c
|
||||
bss_file.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
bss_file.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bss_file.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bss_file.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bss_file.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bss_file.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bss_file.o: ../../include/openssl/symhacks.h ../cryptlib.h bio_lcl.h bss_file.c
|
||||
bss_log.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
bss_log.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bss_log.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bss_log.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bss_log.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bss_log.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bss_log.o: ../../include/openssl/symhacks.h ../cryptlib.h bss_log.c
|
||||
bss_mem.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
bss_mem.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bss_mem.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bss_mem.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bss_mem.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bss_mem.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bss_mem.o: ../../include/openssl/symhacks.h ../cryptlib.h bss_mem.c
|
||||
bss_null.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
bss_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bss_null.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bss_null.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bss_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bss_null.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bss_null.o: ../../include/openssl/symhacks.h ../cryptlib.h bss_null.c
|
||||
bss_sock.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
bss_sock.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bss_sock.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bss_sock.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bss_sock.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bss_sock.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bss_sock.o: ../../include/openssl/symhacks.h ../cryptlib.h bss_sock.c
|
|
@ -1,222 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/bio/Makefile
|
||||
#
|
||||
|
||||
DIR= bio
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= bio_lib.c bio_cb.c bio_err.c \
|
||||
bss_mem.c bss_null.c bss_fd.c \
|
||||
bss_file.c bss_sock.c bss_conn.c \
|
||||
bf_null.c bf_buff.c b_print.c b_dump.c \
|
||||
b_sock.c bss_acpt.c bf_nbio.c bss_log.c bss_bio.c \
|
||||
bss_dgram.c
|
||||
# bf_lbuf.c
|
||||
LIBOBJ= bio_lib.o bio_cb.o bio_err.o \
|
||||
bss_mem.o bss_null.o bss_fd.o \
|
||||
bss_file.o bss_sock.o bss_conn.o \
|
||||
bf_null.o bf_buff.o b_print.o b_dump.o \
|
||||
b_sock.o bss_acpt.o bf_nbio.o bss_log.o bss_bio.o \
|
||||
bss_dgram.o
|
||||
# bf_lbuf.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= bio.h
|
||||
HEADER= bio_lcl.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
b_dump.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
b_dump.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
b_dump.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
b_dump.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
b_dump.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
b_dump.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
b_dump.o: ../../include/openssl/symhacks.h ../cryptlib.h b_dump.c bio_lcl.h
|
||||
b_print.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
b_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
b_print.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
b_print.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
b_print.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
b_print.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
b_print.o: ../../include/openssl/symhacks.h ../cryptlib.h b_print.c
|
||||
b_sock.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
b_sock.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
b_sock.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
|
||||
b_sock.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
b_sock.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
b_sock.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
b_sock.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
b_sock.o: ../cryptlib.h b_sock.c
|
||||
bf_buff.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
bf_buff.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bf_buff.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bf_buff.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bf_buff.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bf_buff.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bf_buff.o: ../../include/openssl/symhacks.h ../cryptlib.h bf_buff.c
|
||||
bf_nbio.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
bf_nbio.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bf_nbio.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bf_nbio.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bf_nbio.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bf_nbio.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
bf_nbio.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
bf_nbio.o: ../cryptlib.h bf_nbio.c
|
||||
bf_null.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
bf_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bf_null.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bf_null.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bf_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bf_null.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bf_null.o: ../../include/openssl/symhacks.h ../cryptlib.h bf_null.c
|
||||
bio_cb.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
bio_cb.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bio_cb.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bio_cb.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bio_cb.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bio_cb.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bio_cb.o: ../../include/openssl/symhacks.h ../cryptlib.h bio_cb.c
|
||||
bio_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
|
||||
bio_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bio_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bio_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bio_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bio_err.o: ../../include/openssl/symhacks.h bio_err.c
|
||||
bio_lib.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
bio_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bio_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bio_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bio_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bio_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bio_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h bio_lib.c
|
||||
bss_acpt.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
bss_acpt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bss_acpt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bss_acpt.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bss_acpt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bss_acpt.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bss_acpt.o: ../../include/openssl/symhacks.h ../cryptlib.h bss_acpt.c
|
||||
bss_bio.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
bss_bio.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
bss_bio.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
bss_bio.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
bss_bio.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
bss_bio.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
bss_bio.o: bss_bio.c
|
||||
bss_conn.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
bss_conn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bss_conn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bss_conn.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bss_conn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bss_conn.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bss_conn.o: ../../include/openssl/symhacks.h ../cryptlib.h bss_conn.c
|
||||
bss_dgram.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
bss_dgram.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bss_dgram.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bss_dgram.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bss_dgram.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bss_dgram.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bss_dgram.o: ../../include/openssl/symhacks.h ../cryptlib.h bss_dgram.c
|
||||
bss_fd.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
bss_fd.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bss_fd.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bss_fd.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bss_fd.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bss_fd.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bss_fd.o: ../../include/openssl/symhacks.h ../cryptlib.h bio_lcl.h bss_fd.c
|
||||
bss_file.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
bss_file.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bss_file.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bss_file.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bss_file.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bss_file.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bss_file.o: ../../include/openssl/symhacks.h ../cryptlib.h bio_lcl.h bss_file.c
|
||||
bss_log.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
bss_log.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bss_log.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bss_log.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bss_log.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bss_log.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bss_log.o: ../../include/openssl/symhacks.h ../cryptlib.h bss_log.c
|
||||
bss_mem.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
bss_mem.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bss_mem.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bss_mem.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bss_mem.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bss_mem.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bss_mem.o: ../../include/openssl/symhacks.h ../cryptlib.h bss_mem.c
|
||||
bss_null.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
bss_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bss_null.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bss_null.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bss_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bss_null.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bss_null.o: ../../include/openssl/symhacks.h ../cryptlib.h bss_null.c
|
||||
bss_sock.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
bss_sock.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bss_sock.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bss_sock.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bss_sock.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bss_sock.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bss_sock.o: ../../include/openssl/symhacks.h ../cryptlib.h bss_sock.c
|
|
@ -1,377 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/bn/Makefile
|
||||
#
|
||||
|
||||
DIR= bn
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
CPP= $(CC) -E
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
BN_ASM= bn_asm.o
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
ASFLAGS= $(INCLUDES) $(ASFLAG)
|
||||
AFLAGS= $(ASFLAGS)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=bntest.c exptest.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= bn_add.c bn_div.c bn_exp.c bn_lib.c bn_ctx.c bn_mul.c bn_mod.c \
|
||||
bn_print.c bn_rand.c bn_shift.c bn_word.c bn_blind.c \
|
||||
bn_kron.c bn_sqrt.c bn_gcd.c bn_prime.c bn_err.c bn_sqr.c bn_asm.c \
|
||||
bn_recp.c bn_mont.c bn_mpi.c bn_exp2.c bn_gf2m.c bn_nist.c \
|
||||
bn_depr.c bn_const.c bn_x931p.c
|
||||
|
||||
LIBOBJ= bn_add.o bn_div.o bn_exp.o bn_lib.o bn_ctx.o bn_mul.o bn_mod.o \
|
||||
bn_print.o bn_rand.o bn_shift.o bn_word.o bn_blind.o \
|
||||
bn_kron.o bn_sqrt.o bn_gcd.o bn_prime.o bn_err.o bn_sqr.o $(BN_ASM) \
|
||||
bn_recp.o bn_mont.o bn_mpi.o bn_exp2.o bn_gf2m.o bn_nist.o \
|
||||
bn_depr.o bn_const.o bn_x931p.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= bn.h
|
||||
HEADER= bn_lcl.h bn_prime.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
bn_prime.h: bn_prime.pl
|
||||
$(PERL) bn_prime.pl >bn_prime.h
|
||||
|
||||
divtest: divtest.c ../../libcrypto.a
|
||||
cc -I../../include divtest.c -o divtest ../../libcrypto.a
|
||||
|
||||
bnbug: bnbug.c ../../libcrypto.a top
|
||||
cc -g -I../../include bnbug.c -o bnbug ../../libcrypto.a
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
bn-586.s: asm/bn-586.pl ../perlasm/x86asm.pl
|
||||
$(PERL) asm/bn-586.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
|
||||
co-586.s: asm/co-586.pl ../perlasm/x86asm.pl
|
||||
$(PERL) asm/co-586.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
|
||||
x86-mont.s: asm/x86-mont.pl ../perlasm/x86asm.pl
|
||||
$(PERL) asm/x86-mont.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
|
||||
x86-gf2m.s: asm/x86-gf2m.pl ../perlasm/x86asm.pl
|
||||
$(PERL) asm/x86-gf2m.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
|
||||
|
||||
sparcv8.o: asm/sparcv8.S
|
||||
$(CC) $(CFLAGS) -c asm/sparcv8.S
|
||||
bn-sparcv9.o: asm/sparcv8plus.S
|
||||
$(CC) $(CFLAGS) -c -o $@ asm/sparcv8plus.S
|
||||
sparcv9a-mont.s: asm/sparcv9a-mont.pl
|
||||
$(PERL) asm/sparcv9a-mont.pl $(CFLAGS) > $@
|
||||
sparcv9-mont.s: asm/sparcv9-mont.pl
|
||||
$(PERL) asm/sparcv9-mont.pl $(CFLAGS) > $@
|
||||
|
||||
bn-mips3.o: asm/mips3.s
|
||||
@if [ "$(CC)" = "gcc" ]; then \
|
||||
ABI=`expr "$(CFLAGS)" : ".*-mabi=\([n3264]*\)"` && \
|
||||
as -$$ABI -O -o $@ asm/mips3.s; \
|
||||
else $(CC) -c $(CFLAGS) -o $@ asm/mips3.s; fi
|
||||
|
||||
bn-mips.s: asm/mips.pl
|
||||
$(PERL) asm/mips.pl $(PERLASM_SCHEME) $@
|
||||
mips-mont.s: asm/mips-mont.pl
|
||||
$(PERL) asm/mips-mont.pl $(PERLASM_SCHEME) $@
|
||||
|
||||
bn-s390x.o: asm/s390x.S
|
||||
$(CC) $(CFLAGS) -c -o $@ asm/s390x.S
|
||||
s390x-gf2m.s: asm/s390x-gf2m.pl
|
||||
$(PERL) asm/s390x-gf2m.pl $(PERLASM_SCHEME) $@
|
||||
|
||||
x86_64-gcc.o: asm/x86_64-gcc.c
|
||||
$(CC) $(CFLAGS) -c -o $@ asm/x86_64-gcc.c
|
||||
x86_64-mont.s: asm/x86_64-mont.pl
|
||||
$(PERL) asm/x86_64-mont.pl $(PERLASM_SCHEME) > $@
|
||||
x86_64-mont5.s: asm/x86_64-mont5.pl
|
||||
$(PERL) asm/x86_64-mont5.pl $(PERLASM_SCHEME) > $@
|
||||
x86_64-gf2m.s: asm/x86_64-gf2m.pl
|
||||
$(PERL) asm/x86_64-gf2m.pl $(PERLASM_SCHEME) > $@
|
||||
modexp512-x86_64.s: asm/modexp512-x86_64.pl
|
||||
$(PERL) asm/modexp512-x86_64.pl $(PERLASM_SCHEME) > $@
|
||||
|
||||
bn-ia64.s: asm/ia64.S
|
||||
$(CC) $(CFLAGS) -E asm/ia64.S > $@
|
||||
ia64-mont.s: asm/ia64-mont.pl
|
||||
$(PERL) asm/ia64-mont.pl $@ $(CFLAGS)
|
||||
|
||||
# GNU assembler fails to compile PA-RISC2 modules, insist on calling
|
||||
# vendor assembler...
|
||||
pa-risc2W.o: asm/pa-risc2W.s
|
||||
/usr/ccs/bin/as -o pa-risc2W.o asm/pa-risc2W.s
|
||||
pa-risc2.o: asm/pa-risc2.s
|
||||
/usr/ccs/bin/as -o pa-risc2.o asm/pa-risc2.s
|
||||
parisc-mont.s: asm/parisc-mont.pl
|
||||
$(PERL) asm/parisc-mont.pl $(PERLASM_SCHEME) $@
|
||||
|
||||
# ppc - AIX, Linux, MacOS X...
|
||||
bn-ppc.s: asm/ppc.pl; $(PERL) asm/ppc.pl $(PERLASM_SCHEME) $@
|
||||
ppc-mont.s: asm/ppc-mont.pl;$(PERL) asm/ppc-mont.pl $(PERLASM_SCHEME) $@
|
||||
ppc64-mont.s: asm/ppc64-mont.pl;$(PERL) asm/ppc64-mont.pl $(PERLASM_SCHEME) $@
|
||||
|
||||
alpha-mont.s: asm/alpha-mont.pl
|
||||
(preproc=/tmp/$$$$.$@; trap "rm $$preproc" INT; \
|
||||
$(PERL) asm/alpha-mont.pl > $$preproc && \
|
||||
$(CC) -E $$preproc > $@ && rm $$preproc)
|
||||
|
||||
# GNU make "catch all"
|
||||
%-mont.s: asm/%-mont.pl; $(PERL) $< $(PERLASM_SCHEME) $@
|
||||
%-gf2m.S: asm/%-gf2m.pl; $(PERL) $< $(PERLASM_SCHEME) $@
|
||||
|
||||
armv4-gf2m.o: armv4-gf2m.S
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
exptest:
|
||||
rm -f exptest
|
||||
gcc -I../../include -g2 -ggdb -o exptest exptest.c ../../libcrypto.a
|
||||
|
||||
div:
|
||||
rm -f a.out
|
||||
gcc -I.. -g div.c ../../libcrypto.a
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
bn_add.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_add.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_add.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_add.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_add.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_add.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_add.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_add.c bn_lcl.h
|
||||
bn_asm.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_asm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_asm.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_asm.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_asm.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_asm.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_asm.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_asm.c bn_lcl.h
|
||||
bn_blind.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_blind.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_blind.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_blind.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_blind.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_blind.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_blind.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_blind.c bn_lcl.h
|
||||
bn_const.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
bn_const.o: ../../include/openssl/opensslconf.h
|
||||
bn_const.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_const.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_const.o: ../../include/openssl/symhacks.h bn.h bn_const.c
|
||||
bn_ctx.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_ctx.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_ctx.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_ctx.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_ctx.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_ctx.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_ctx.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_ctx.c bn_lcl.h
|
||||
bn_depr.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_depr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_depr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_depr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_depr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_depr.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
bn_depr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
bn_depr.o: ../cryptlib.h bn_depr.c bn_lcl.h
|
||||
bn_div.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_div.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_div.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_div.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_div.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_div.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_div.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_div.c bn_lcl.h
|
||||
bn_err.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
bn_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
bn_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
bn_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
bn_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
bn_err.o: bn_err.c
|
||||
bn_exp.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_exp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_exp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_exp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_exp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_exp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_exp.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_exp.c bn_lcl.h
|
||||
bn_exp2.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_exp2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_exp2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_exp2.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_exp2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_exp2.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_exp2.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_exp2.c bn_lcl.h
|
||||
bn_gcd.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_gcd.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_gcd.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_gcd.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_gcd.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_gcd.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_gcd.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_gcd.c bn_lcl.h
|
||||
bn_gf2m.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_gf2m.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_gf2m.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_gf2m.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_gf2m.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_gf2m.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_gf2m.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_gf2m.c bn_lcl.h
|
||||
bn_kron.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_kron.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_kron.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_kron.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_kron.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_kron.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_kron.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_kron.c bn_lcl.h
|
||||
bn_lib.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_lib.c
|
||||
bn_mod.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_mod.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_mod.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_mod.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_mod.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_mod.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_mod.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_mod.c
|
||||
bn_mont.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_mont.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_mont.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_mont.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_mont.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_mont.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_mont.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_mont.c
|
||||
bn_mpi.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_mpi.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_mpi.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_mpi.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_mpi.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_mpi.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_mpi.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_mpi.c
|
||||
bn_mul.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_mul.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_mul.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_mul.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_mul.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_mul.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_mul.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_mul.c
|
||||
bn_nist.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_nist.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_nist.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_nist.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_nist.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_nist.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_nist.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_nist.c
|
||||
bn_prime.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_prime.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_prime.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_prime.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_prime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_prime.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
bn_prime.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
bn_prime.o: ../cryptlib.h bn_lcl.h bn_prime.c bn_prime.h
|
||||
bn_print.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_print.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_print.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_print.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_print.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_print.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_print.c
|
||||
bn_rand.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_rand.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_rand.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_rand.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_rand.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
bn_rand.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
bn_rand.o: ../cryptlib.h bn_lcl.h bn_rand.c
|
||||
bn_recp.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_recp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_recp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_recp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_recp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_recp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_recp.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_recp.c
|
||||
bn_shift.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_shift.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_shift.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_shift.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_shift.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_shift.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_shift.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_shift.c
|
||||
bn_sqr.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_sqr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_sqr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_sqr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_sqr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_sqr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_sqr.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_sqr.c
|
||||
bn_sqrt.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_sqrt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_sqrt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_sqrt.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_sqrt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_sqrt.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_sqrt.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_sqrt.c
|
||||
bn_word.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_word.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_word.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_word.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_word.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_word.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_word.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_word.c
|
||||
bn_x931p.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
|
||||
bn_x931p.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
bn_x931p.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_x931p.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_x931p.o: ../../include/openssl/symhacks.h bn_x931p.c
|
|
@ -1,377 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/bn/Makefile
|
||||
#
|
||||
|
||||
DIR= bn
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
CPP= $(CC) -E
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
BN_ASM= bn_asm.o
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
ASFLAGS= $(INCLUDES) $(ASFLAG)
|
||||
AFLAGS= $(ASFLAGS)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=bntest.c exptest.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= bn_add.c bn_div.c bn_exp.c bn_lib.c bn_ctx.c bn_mul.c bn_mod.c \
|
||||
bn_print.c bn_rand.c bn_shift.c bn_word.c bn_blind.c \
|
||||
bn_kron.c bn_sqrt.c bn_gcd.c bn_prime.c bn_err.c bn_sqr.c bn_asm.c \
|
||||
bn_recp.c bn_mont.c bn_mpi.c bn_exp2.c bn_gf2m.c bn_nist.c \
|
||||
bn_depr.c bn_const.c bn_x931p.c
|
||||
|
||||
LIBOBJ= bn_add.o bn_div.o bn_exp.o bn_lib.o bn_ctx.o bn_mul.o bn_mod.o \
|
||||
bn_print.o bn_rand.o bn_shift.o bn_word.o bn_blind.o \
|
||||
bn_kron.o bn_sqrt.o bn_gcd.o bn_prime.o bn_err.o bn_sqr.o $(BN_ASM) \
|
||||
bn_recp.o bn_mont.o bn_mpi.o bn_exp2.o bn_gf2m.o bn_nist.o \
|
||||
bn_depr.o bn_const.o bn_x931p.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= bn.h
|
||||
HEADER= bn_lcl.h bn_prime.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
bn_prime.h: bn_prime.pl
|
||||
$(PERL) bn_prime.pl >bn_prime.h
|
||||
|
||||
divtest: divtest.c ../../libcrypto.a
|
||||
cc -I../../include divtest.c -o divtest ../../libcrypto.a
|
||||
|
||||
bnbug: bnbug.c ../../libcrypto.a top
|
||||
cc -g -I../../include bnbug.c -o bnbug ../../libcrypto.a
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
bn-586.s: asm/bn-586.pl ../perlasm/x86asm.pl
|
||||
$(PERL) asm/bn-586.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
|
||||
co-586.s: asm/co-586.pl ../perlasm/x86asm.pl
|
||||
$(PERL) asm/co-586.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
|
||||
x86-mont.s: asm/x86-mont.pl ../perlasm/x86asm.pl
|
||||
$(PERL) asm/x86-mont.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
|
||||
x86-gf2m.s: asm/x86-gf2m.pl ../perlasm/x86asm.pl
|
||||
$(PERL) asm/x86-gf2m.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
|
||||
|
||||
sparcv8.o: asm/sparcv8.S
|
||||
$(CC) $(CFLAGS) -c asm/sparcv8.S
|
||||
bn-sparcv9.o: asm/sparcv8plus.S
|
||||
$(CC) $(CFLAGS) -c -o $@ asm/sparcv8plus.S
|
||||
sparcv9a-mont.s: asm/sparcv9a-mont.pl
|
||||
$(PERL) asm/sparcv9a-mont.pl $(CFLAGS) > $@
|
||||
sparcv9-mont.s: asm/sparcv9-mont.pl
|
||||
$(PERL) asm/sparcv9-mont.pl $(CFLAGS) > $@
|
||||
|
||||
bn-mips3.o: asm/mips3.s
|
||||
@if [ "$(CC)" = "gcc" ]; then \
|
||||
ABI=`expr "$(CFLAGS)" : ".*-mabi=\([n3264]*\)"` && \
|
||||
as -$$ABI -O -o $@ asm/mips3.s; \
|
||||
else $(CC) -c $(CFLAGS) -o $@ asm/mips3.s; fi
|
||||
|
||||
bn-mips.s: asm/mips.pl
|
||||
$(PERL) asm/mips.pl $(PERLASM_SCHEME) $@
|
||||
mips-mont.s: asm/mips-mont.pl
|
||||
$(PERL) asm/mips-mont.pl $(PERLASM_SCHEME) $@
|
||||
|
||||
bn-s390x.o: asm/s390x.S
|
||||
$(CC) $(CFLAGS) -c -o $@ asm/s390x.S
|
||||
s390x-gf2m.s: asm/s390x-gf2m.pl
|
||||
$(PERL) asm/s390x-gf2m.pl $(PERLASM_SCHEME) $@
|
||||
|
||||
x86_64-gcc.o: asm/x86_64-gcc.c
|
||||
$(CC) $(CFLAGS) -c -o $@ asm/x86_64-gcc.c
|
||||
x86_64-mont.s: asm/x86_64-mont.pl
|
||||
$(PERL) asm/x86_64-mont.pl $(PERLASM_SCHEME) > $@
|
||||
x86_64-mont5.s: asm/x86_64-mont5.pl
|
||||
$(PERL) asm/x86_64-mont5.pl $(PERLASM_SCHEME) > $@
|
||||
x86_64-gf2m.s: asm/x86_64-gf2m.pl
|
||||
$(PERL) asm/x86_64-gf2m.pl $(PERLASM_SCHEME) > $@
|
||||
modexp512-x86_64.s: asm/modexp512-x86_64.pl
|
||||
$(PERL) asm/modexp512-x86_64.pl $(PERLASM_SCHEME) > $@
|
||||
|
||||
bn-ia64.s: asm/ia64.S
|
||||
$(CC) $(CFLAGS) -E asm/ia64.S > $@
|
||||
ia64-mont.s: asm/ia64-mont.pl
|
||||
$(PERL) asm/ia64-mont.pl $@ $(CFLAGS)
|
||||
|
||||
# GNU assembler fails to compile PA-RISC2 modules, insist on calling
|
||||
# vendor assembler...
|
||||
pa-risc2W.o: asm/pa-risc2W.s
|
||||
/usr/ccs/bin/as -o pa-risc2W.o asm/pa-risc2W.s
|
||||
pa-risc2.o: asm/pa-risc2.s
|
||||
/usr/ccs/bin/as -o pa-risc2.o asm/pa-risc2.s
|
||||
parisc-mont.s: asm/parisc-mont.pl
|
||||
$(PERL) asm/parisc-mont.pl $(PERLASM_SCHEME) $@
|
||||
|
||||
# ppc - AIX, Linux, MacOS X...
|
||||
bn-ppc.s: asm/ppc.pl; $(PERL) asm/ppc.pl $(PERLASM_SCHEME) $@
|
||||
ppc-mont.s: asm/ppc-mont.pl;$(PERL) asm/ppc-mont.pl $(PERLASM_SCHEME) $@
|
||||
ppc64-mont.s: asm/ppc64-mont.pl;$(PERL) asm/ppc64-mont.pl $(PERLASM_SCHEME) $@
|
||||
|
||||
alpha-mont.s: asm/alpha-mont.pl
|
||||
(preproc=/tmp/$$$$.$@; trap "rm $$preproc" INT; \
|
||||
$(PERL) asm/alpha-mont.pl > $$preproc && \
|
||||
$(CC) -E $$preproc > $@ && rm $$preproc)
|
||||
|
||||
# GNU make "catch all"
|
||||
%-mont.s: asm/%-mont.pl; $(PERL) $< $(PERLASM_SCHEME) $@
|
||||
%-gf2m.S: asm/%-gf2m.pl; $(PERL) $< $(PERLASM_SCHEME) $@
|
||||
|
||||
armv4-gf2m.o: armv4-gf2m.S
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
exptest:
|
||||
rm -f exptest
|
||||
gcc -I../../include -g2 -ggdb -o exptest exptest.c ../../libcrypto.a
|
||||
|
||||
div:
|
||||
rm -f a.out
|
||||
gcc -I.. -g div.c ../../libcrypto.a
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
bn_add.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_add.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_add.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_add.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_add.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_add.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_add.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_add.c bn_lcl.h
|
||||
bn_asm.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_asm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_asm.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_asm.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_asm.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_asm.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_asm.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_asm.c bn_lcl.h
|
||||
bn_blind.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_blind.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_blind.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_blind.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_blind.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_blind.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_blind.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_blind.c bn_lcl.h
|
||||
bn_const.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
bn_const.o: ../../include/openssl/opensslconf.h
|
||||
bn_const.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_const.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_const.o: ../../include/openssl/symhacks.h bn.h bn_const.c
|
||||
bn_ctx.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_ctx.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_ctx.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_ctx.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_ctx.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_ctx.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_ctx.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_ctx.c bn_lcl.h
|
||||
bn_depr.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_depr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_depr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_depr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_depr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_depr.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
bn_depr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
bn_depr.o: ../cryptlib.h bn_depr.c bn_lcl.h
|
||||
bn_div.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_div.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_div.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_div.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_div.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_div.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_div.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_div.c bn_lcl.h
|
||||
bn_err.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
bn_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
bn_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
bn_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
bn_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
bn_err.o: bn_err.c
|
||||
bn_exp.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_exp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_exp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_exp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_exp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_exp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_exp.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_exp.c bn_lcl.h
|
||||
bn_exp2.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_exp2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_exp2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_exp2.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_exp2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_exp2.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_exp2.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_exp2.c bn_lcl.h
|
||||
bn_gcd.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_gcd.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_gcd.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_gcd.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_gcd.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_gcd.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_gcd.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_gcd.c bn_lcl.h
|
||||
bn_gf2m.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_gf2m.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_gf2m.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_gf2m.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_gf2m.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_gf2m.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_gf2m.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_gf2m.c bn_lcl.h
|
||||
bn_kron.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_kron.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_kron.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_kron.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_kron.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_kron.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_kron.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_kron.c bn_lcl.h
|
||||
bn_lib.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_lib.c
|
||||
bn_mod.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_mod.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_mod.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_mod.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_mod.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_mod.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_mod.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_mod.c
|
||||
bn_mont.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_mont.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_mont.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_mont.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_mont.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_mont.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_mont.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_mont.c
|
||||
bn_mpi.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_mpi.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_mpi.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_mpi.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_mpi.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_mpi.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_mpi.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_mpi.c
|
||||
bn_mul.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_mul.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_mul.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_mul.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_mul.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_mul.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_mul.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_mul.c
|
||||
bn_nist.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_nist.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_nist.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_nist.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_nist.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_nist.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_nist.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_nist.c
|
||||
bn_prime.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_prime.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_prime.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_prime.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_prime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_prime.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
bn_prime.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
bn_prime.o: ../cryptlib.h bn_lcl.h bn_prime.c bn_prime.h
|
||||
bn_print.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_print.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_print.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_print.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_print.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_print.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_print.c
|
||||
bn_rand.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_rand.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_rand.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_rand.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_rand.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
bn_rand.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
bn_rand.o: ../cryptlib.h bn_lcl.h bn_rand.c
|
||||
bn_recp.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_recp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_recp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_recp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_recp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_recp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_recp.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_recp.c
|
||||
bn_shift.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_shift.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_shift.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_shift.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_shift.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_shift.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_shift.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_shift.c
|
||||
bn_sqr.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_sqr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_sqr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_sqr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_sqr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_sqr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_sqr.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_sqr.c
|
||||
bn_sqrt.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_sqrt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_sqrt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_sqrt.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_sqrt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_sqrt.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_sqrt.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_sqrt.c
|
||||
bn_word.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
bn_word.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bn_word.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bn_word.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
bn_word.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_word.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_word.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_word.c
|
||||
bn_x931p.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
|
||||
bn_x931p.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
bn_x931p.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bn_x931p.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bn_x931p.o: ../../include/openssl/symhacks.h bn_x931p.c
|
|
@ -1,97 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/buffer/Makefile
|
||||
#
|
||||
|
||||
DIR= buffer
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= buffer.c buf_str.c buf_err.c
|
||||
LIBOBJ= buffer.o buf_str.o buf_err.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= buffer.h
|
||||
HEADER= $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
buf_err.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
buf_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
buf_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
buf_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
buf_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
buf_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
buf_err.o: buf_err.c
|
||||
buf_str.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
buf_str.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
buf_str.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
buf_str.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
buf_str.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
buf_str.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
buf_str.o: ../../include/openssl/symhacks.h ../cryptlib.h buf_str.c
|
||||
buffer.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
buffer.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
buffer.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
buffer.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
buffer.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
buffer.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
buffer.o: ../../include/openssl/symhacks.h ../cryptlib.h buffer.c
|
|
@ -1,97 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/buffer/Makefile
|
||||
#
|
||||
|
||||
DIR= buffer
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= buffer.c buf_str.c buf_err.c
|
||||
LIBOBJ= buffer.o buf_str.o buf_err.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= buffer.h
|
||||
HEADER= $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
buf_err.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
buf_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
buf_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
buf_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
buf_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
buf_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
buf_err.o: buf_err.c
|
||||
buf_str.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
buf_str.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
buf_str.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
buf_str.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
buf_str.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
buf_str.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
buf_str.o: ../../include/openssl/symhacks.h ../cryptlib.h buf_str.c
|
||||
buffer.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
buffer.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
buffer.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
buffer.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
buffer.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
buffer.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
buffer.o: ../../include/openssl/symhacks.h ../cryptlib.h buffer.c
|
|
@ -1,110 +0,0 @@
|
|||
#
|
||||
# crypto/camellia/Makefile
|
||||
#
|
||||
|
||||
DIR= camellia
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
CPP= $(CC) -E
|
||||
INCLUDES=
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CMLL_ENC= camellia.o cmll_misc.o cmll_cbc.o
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
ASFLAGS= $(INCLUDES) $(ASFLAG)
|
||||
AFLAGS= $(ASFLAGS)
|
||||
|
||||
GENERAL=Makefile
|
||||
#TEST=camelliatest.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=camellia.c cmll_misc.c cmll_ecb.c cmll_cbc.c cmll_ofb.c \
|
||||
cmll_cfb.c cmll_ctr.c cmll_utl.c
|
||||
|
||||
LIBOBJ= cmll_ecb.o cmll_ofb.o cmll_cfb.o cmll_ctr.o cmll_utl.o $(CMLL_ENC)
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= camellia.h
|
||||
HEADER= cmll_locl.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
cmll-x86.s: asm/cmll-x86.pl ../perlasm/x86asm.pl
|
||||
$(PERL) asm/cmll-x86.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
|
||||
cmll-x86_64.s: asm/cmll-x86_64.pl
|
||||
$(PERL) asm/cmll-x86_64.pl $(PERLASM_SCHEME) > $@
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
camellia.o: ../../include/openssl/opensslconf.h camellia.c camellia.h
|
||||
camellia.o: cmll_locl.h
|
||||
cmll_cbc.o: ../../include/openssl/camellia.h ../../include/openssl/modes.h
|
||||
cmll_cbc.o: ../../include/openssl/opensslconf.h cmll_cbc.c
|
||||
cmll_cfb.o: ../../include/openssl/camellia.h ../../include/openssl/modes.h
|
||||
cmll_cfb.o: ../../include/openssl/opensslconf.h cmll_cfb.c
|
||||
cmll_ctr.o: ../../include/openssl/camellia.h ../../include/openssl/modes.h
|
||||
cmll_ctr.o: ../../include/openssl/opensslconf.h cmll_ctr.c
|
||||
cmll_ecb.o: ../../include/openssl/camellia.h
|
||||
cmll_ecb.o: ../../include/openssl/opensslconf.h cmll_ecb.c cmll_locl.h
|
||||
cmll_misc.o: ../../include/openssl/camellia.h ../../include/openssl/crypto.h
|
||||
cmll_misc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
cmll_misc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
cmll_misc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
cmll_misc.o: ../../include/openssl/symhacks.h cmll_locl.h cmll_misc.c
|
||||
cmll_ofb.o: ../../include/openssl/camellia.h ../../include/openssl/modes.h
|
||||
cmll_ofb.o: ../../include/openssl/opensslconf.h cmll_ofb.c
|
||||
cmll_utl.o: ../../include/openssl/camellia.h ../../include/openssl/crypto.h
|
||||
cmll_utl.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
cmll_utl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
cmll_utl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
cmll_utl.o: ../../include/openssl/symhacks.h cmll_locl.h cmll_utl.c
|
|
@ -1,110 +0,0 @@
|
|||
#
|
||||
# crypto/camellia/Makefile
|
||||
#
|
||||
|
||||
DIR= camellia
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
CPP= $(CC) -E
|
||||
INCLUDES=
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CMLL_ENC= camellia.o cmll_misc.o cmll_cbc.o
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
ASFLAGS= $(INCLUDES) $(ASFLAG)
|
||||
AFLAGS= $(ASFLAGS)
|
||||
|
||||
GENERAL=Makefile
|
||||
#TEST=camelliatest.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=camellia.c cmll_misc.c cmll_ecb.c cmll_cbc.c cmll_ofb.c \
|
||||
cmll_cfb.c cmll_ctr.c cmll_utl.c
|
||||
|
||||
LIBOBJ= cmll_ecb.o cmll_ofb.o cmll_cfb.o cmll_ctr.o cmll_utl.o $(CMLL_ENC)
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= camellia.h
|
||||
HEADER= cmll_locl.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
cmll-x86.s: asm/cmll-x86.pl ../perlasm/x86asm.pl
|
||||
$(PERL) asm/cmll-x86.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
|
||||
cmll-x86_64.s: asm/cmll-x86_64.pl
|
||||
$(PERL) asm/cmll-x86_64.pl $(PERLASM_SCHEME) > $@
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
camellia.o: ../../include/openssl/opensslconf.h camellia.c camellia.h
|
||||
camellia.o: cmll_locl.h
|
||||
cmll_cbc.o: ../../include/openssl/camellia.h ../../include/openssl/modes.h
|
||||
cmll_cbc.o: ../../include/openssl/opensslconf.h cmll_cbc.c
|
||||
cmll_cfb.o: ../../include/openssl/camellia.h ../../include/openssl/modes.h
|
||||
cmll_cfb.o: ../../include/openssl/opensslconf.h cmll_cfb.c
|
||||
cmll_ctr.o: ../../include/openssl/camellia.h ../../include/openssl/modes.h
|
||||
cmll_ctr.o: ../../include/openssl/opensslconf.h cmll_ctr.c
|
||||
cmll_ecb.o: ../../include/openssl/camellia.h
|
||||
cmll_ecb.o: ../../include/openssl/opensslconf.h cmll_ecb.c cmll_locl.h
|
||||
cmll_misc.o: ../../include/openssl/camellia.h ../../include/openssl/crypto.h
|
||||
cmll_misc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
cmll_misc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
cmll_misc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
cmll_misc.o: ../../include/openssl/symhacks.h cmll_locl.h cmll_misc.c
|
||||
cmll_ofb.o: ../../include/openssl/camellia.h ../../include/openssl/modes.h
|
||||
cmll_ofb.o: ../../include/openssl/opensslconf.h cmll_ofb.c
|
||||
cmll_utl.o: ../../include/openssl/camellia.h ../../include/openssl/crypto.h
|
||||
cmll_utl.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
cmll_utl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
cmll_utl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
cmll_utl.o: ../../include/openssl/symhacks.h cmll_locl.h cmll_utl.c
|
|
@ -1,102 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/cast/Makefile
|
||||
#
|
||||
|
||||
DIR= cast
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
CPP= $(CC) -E
|
||||
INCLUDES=
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CAST_ENC=c_enc.o
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
ASFLAGS= $(INCLUDES) $(ASFLAG)
|
||||
AFLAGS= $(ASFLAGS)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=casttest.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=c_skey.c c_ecb.c c_enc.c c_cfb64.c c_ofb64.c
|
||||
LIBOBJ=c_skey.o c_ecb.o $(CAST_ENC) c_cfb64.o c_ofb64.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= cast.h
|
||||
HEADER= cast_s.h cast_lcl.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
cast-586.s: asm/cast-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl
|
||||
$(PERL) asm/cast-586.pl $(PERLASM_SCHEME) $(CLAGS) $(PROCESSOR) > $@
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
c_cfb64.o: ../../e_os.h ../../include/openssl/cast.h
|
||||
c_cfb64.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
c_cfb64.o: c_cfb64.c cast_lcl.h
|
||||
c_ecb.o: ../../e_os.h ../../include/openssl/cast.h
|
||||
c_ecb.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
c_ecb.o: ../../include/openssl/opensslv.h c_ecb.c cast_lcl.h
|
||||
c_enc.o: ../../e_os.h ../../include/openssl/cast.h
|
||||
c_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
c_enc.o: c_enc.c cast_lcl.h
|
||||
c_ofb64.o: ../../e_os.h ../../include/openssl/cast.h
|
||||
c_ofb64.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
c_ofb64.o: c_ofb64.c cast_lcl.h
|
||||
c_skey.o: ../../e_os.h ../../include/openssl/cast.h
|
||||
c_skey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
c_skey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
c_skey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
c_skey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
c_skey.o: c_skey.c cast_lcl.h cast_s.h
|
|
@ -1,102 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/cast/Makefile
|
||||
#
|
||||
|
||||
DIR= cast
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
CPP= $(CC) -E
|
||||
INCLUDES=
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CAST_ENC=c_enc.o
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
ASFLAGS= $(INCLUDES) $(ASFLAG)
|
||||
AFLAGS= $(ASFLAGS)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=casttest.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=c_skey.c c_ecb.c c_enc.c c_cfb64.c c_ofb64.c
|
||||
LIBOBJ=c_skey.o c_ecb.o $(CAST_ENC) c_cfb64.o c_ofb64.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= cast.h
|
||||
HEADER= cast_s.h cast_lcl.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
cast-586.s: asm/cast-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl
|
||||
$(PERL) asm/cast-586.pl $(PERLASM_SCHEME) $(CLAGS) $(PROCESSOR) > $@
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
c_cfb64.o: ../../e_os.h ../../include/openssl/cast.h
|
||||
c_cfb64.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
c_cfb64.o: c_cfb64.c cast_lcl.h
|
||||
c_ecb.o: ../../e_os.h ../../include/openssl/cast.h
|
||||
c_ecb.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
c_ecb.o: ../../include/openssl/opensslv.h c_ecb.c cast_lcl.h
|
||||
c_enc.o: ../../e_os.h ../../include/openssl/cast.h
|
||||
c_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
c_enc.o: c_enc.c cast_lcl.h
|
||||
c_ofb64.o: ../../e_os.h ../../include/openssl/cast.h
|
||||
c_ofb64.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
c_ofb64.o: c_ofb64.c cast_lcl.h
|
||||
c_skey.o: ../../e_os.h ../../include/openssl/cast.h
|
||||
c_skey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
c_skey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
c_skey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
c_skey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
c_skey.o: c_skey.c cast_lcl.h cast_s.h
|
|
@ -1,111 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/cmac/Makefile
|
||||
#
|
||||
|
||||
DIR= cmac
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES=
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=cmac.c cm_ameth.c cm_pmeth.c
|
||||
LIBOBJ=cmac.o cm_ameth.o cm_pmeth.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= cmac.h
|
||||
HEADER= $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
cm_ameth.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
cm_ameth.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
cm_ameth.o: ../../include/openssl/cmac.h ../../include/openssl/crypto.h
|
||||
cm_ameth.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
cm_ameth.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
cm_ameth.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
cm_ameth.o: ../../include/openssl/opensslconf.h
|
||||
cm_ameth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
cm_ameth.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
cm_ameth.o: ../../include/openssl/symhacks.h ../asn1/asn1_locl.h ../cryptlib.h
|
||||
cm_ameth.o: cm_ameth.c
|
||||
cm_pmeth.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
cm_pmeth.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
cm_pmeth.o: ../../include/openssl/cmac.h ../../include/openssl/conf.h
|
||||
cm_pmeth.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
cm_pmeth.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
cm_pmeth.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
cm_pmeth.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
cm_pmeth.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
cm_pmeth.o: ../../include/openssl/opensslconf.h
|
||||
cm_pmeth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
cm_pmeth.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
cm_pmeth.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
cm_pmeth.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
cm_pmeth.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
cm_pmeth.o: ../cryptlib.h ../evp/evp_locl.h cm_pmeth.c
|
||||
cmac.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
cmac.o: ../../include/openssl/buffer.h ../../include/openssl/cmac.h
|
||||
cmac.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
cmac.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
cmac.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
cmac.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
cmac.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
cmac.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
cmac.o: ../../include/openssl/symhacks.h ../cryptlib.h cmac.c
|
|
@ -1,111 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/cmac/Makefile
|
||||
#
|
||||
|
||||
DIR= cmac
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES=
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=cmac.c cm_ameth.c cm_pmeth.c
|
||||
LIBOBJ=cmac.o cm_ameth.o cm_pmeth.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= cmac.h
|
||||
HEADER= $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
cm_ameth.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
cm_ameth.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
cm_ameth.o: ../../include/openssl/cmac.h ../../include/openssl/crypto.h
|
||||
cm_ameth.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
cm_ameth.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
cm_ameth.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
cm_ameth.o: ../../include/openssl/opensslconf.h
|
||||
cm_ameth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
cm_ameth.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
cm_ameth.o: ../../include/openssl/symhacks.h ../asn1/asn1_locl.h ../cryptlib.h
|
||||
cm_ameth.o: cm_ameth.c
|
||||
cm_pmeth.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
cm_pmeth.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
cm_pmeth.o: ../../include/openssl/cmac.h ../../include/openssl/conf.h
|
||||
cm_pmeth.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
cm_pmeth.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
cm_pmeth.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
cm_pmeth.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
cm_pmeth.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
cm_pmeth.o: ../../include/openssl/opensslconf.h
|
||||
cm_pmeth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
cm_pmeth.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
cm_pmeth.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
cm_pmeth.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
cm_pmeth.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
cm_pmeth.o: ../cryptlib.h ../evp/evp_locl.h cm_pmeth.c
|
||||
cmac.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
cmac.o: ../../include/openssl/buffer.h ../../include/openssl/cmac.h
|
||||
cmac.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
cmac.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
cmac.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
cmac.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
cmac.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
cmac.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
cmac.o: ../../include/openssl/symhacks.h ../cryptlib.h cmac.c
|
|
@ -1,284 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/cms/Makefile
|
||||
#
|
||||
|
||||
DIR= cms
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= cms_lib.c cms_asn1.c cms_att.c cms_io.c cms_smime.c cms_err.c \
|
||||
cms_sd.c cms_dd.c cms_cd.c cms_env.c cms_enc.c cms_ess.c \
|
||||
cms_pwri.c
|
||||
LIBOBJ= cms_lib.o cms_asn1.o cms_att.o cms_io.o cms_smime.o cms_err.o \
|
||||
cms_sd.o cms_dd.o cms_cd.o cms_env.o cms_enc.o cms_ess.o \
|
||||
cms_pwri.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= cms.h
|
||||
HEADER= cms_lcl.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
test:
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
cms_asn1.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
|
||||
cms_asn1.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
cms_asn1.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
cms_asn1.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
cms_asn1.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
cms_asn1.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
cms_asn1.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
cms_asn1.o: ../../include/openssl/opensslconf.h
|
||||
cms_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
cms_asn1.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
|
||||
cms_asn1.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
cms_asn1.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
cms_asn1.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
cms_asn1.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
cms_asn1.o: cms.h cms_asn1.c cms_lcl.h
|
||||
cms_att.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
|
||||
cms_att.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
cms_att.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
cms_att.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
cms_att.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
cms_att.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
cms_att.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
cms_att.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
cms_att.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
cms_att.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
|
||||
cms_att.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
cms_att.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
cms_att.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
cms_att.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
cms_att.o: cms.h cms_att.c cms_lcl.h
|
||||
cms_cd.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
cms_cd.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
cms_cd.o: ../../include/openssl/buffer.h ../../include/openssl/cms.h
|
||||
cms_cd.o: ../../include/openssl/comp.h ../../include/openssl/conf.h
|
||||
cms_cd.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
cms_cd.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
cms_cd.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
cms_cd.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
cms_cd.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
cms_cd.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
cms_cd.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h
|
||||
cms_cd.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h
|
||||
cms_cd.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
cms_cd.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
cms_cd.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
cms_cd.o: ../../include/openssl/x509v3.h ../cryptlib.h cms_cd.c cms_lcl.h
|
||||
cms_dd.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
cms_dd.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
cms_dd.o: ../../include/openssl/buffer.h ../../include/openssl/cms.h
|
||||
cms_dd.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
cms_dd.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
cms_dd.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
cms_dd.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
cms_dd.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
cms_dd.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
cms_dd.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
cms_dd.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
|
||||
cms_dd.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
cms_dd.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
cms_dd.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
cms_dd.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
cms_dd.o: ../cryptlib.h cms_dd.c cms_lcl.h
|
||||
cms_enc.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
cms_enc.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
cms_enc.o: ../../include/openssl/buffer.h ../../include/openssl/cms.h
|
||||
cms_enc.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
cms_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
cms_enc.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
cms_enc.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
cms_enc.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
cms_enc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
cms_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
cms_enc.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
|
||||
cms_enc.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
cms_enc.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
cms_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
cms_enc.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
cms_enc.o: ../../include/openssl/x509v3.h ../cryptlib.h cms_enc.c cms_lcl.h
|
||||
cms_env.o: ../../e_os.h ../../include/openssl/aes.h
|
||||
cms_env.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
|
||||
cms_env.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
cms_env.o: ../../include/openssl/cms.h ../../include/openssl/conf.h
|
||||
cms_env.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
cms_env.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
cms_env.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
cms_env.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
cms_env.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
cms_env.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
cms_env.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h
|
||||
cms_env.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h
|
||||
cms_env.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
cms_env.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
cms_env.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
cms_env.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
cms_env.o: ../asn1/asn1_locl.h ../cryptlib.h cms_env.c cms_lcl.h
|
||||
cms_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
cms_err.o: ../../include/openssl/buffer.h ../../include/openssl/cms.h
|
||||
cms_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
cms_err.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
cms_err.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
cms_err.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
cms_err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
cms_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
cms_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
cms_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
cms_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
cms_err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
cms_err.o: cms_err.c
|
||||
cms_ess.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
cms_ess.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
cms_ess.o: ../../include/openssl/buffer.h ../../include/openssl/cms.h
|
||||
cms_ess.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
cms_ess.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
cms_ess.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
cms_ess.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
cms_ess.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
cms_ess.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
cms_ess.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
cms_ess.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
|
||||
cms_ess.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
cms_ess.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
cms_ess.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
cms_ess.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
cms_ess.o: ../../include/openssl/x509v3.h ../cryptlib.h cms_ess.c cms_lcl.h
|
||||
cms_io.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
|
||||
cms_io.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
cms_io.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
cms_io.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
cms_io.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
cms_io.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
cms_io.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
cms_io.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
cms_io.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h
|
||||
cms_io.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h
|
||||
cms_io.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
cms_io.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
cms_io.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h cms.h
|
||||
cms_io.o: cms_io.c cms_lcl.h
|
||||
cms_lib.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
|
||||
cms_lib.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
cms_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
cms_lib.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
cms_lib.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
cms_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
cms_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
cms_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
cms_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h
|
||||
cms_lib.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h
|
||||
cms_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
cms_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
cms_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h cms.h
|
||||
cms_lib.o: cms_lcl.h cms_lib.c
|
||||
cms_pwri.o: ../../e_os.h ../../include/openssl/aes.h
|
||||
cms_pwri.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
|
||||
cms_pwri.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
cms_pwri.o: ../../include/openssl/cms.h ../../include/openssl/conf.h
|
||||
cms_pwri.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
cms_pwri.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
cms_pwri.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
cms_pwri.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
cms_pwri.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
cms_pwri.o: ../../include/openssl/opensslconf.h
|
||||
cms_pwri.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
cms_pwri.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
|
||||
cms_pwri.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
cms_pwri.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
cms_pwri.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
cms_pwri.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
cms_pwri.o: ../../include/openssl/x509v3.h ../asn1/asn1_locl.h ../cryptlib.h
|
||||
cms_pwri.o: cms_lcl.h cms_pwri.c
|
||||
cms_sd.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
cms_sd.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
cms_sd.o: ../../include/openssl/buffer.h ../../include/openssl/cms.h
|
||||
cms_sd.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
cms_sd.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
cms_sd.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
cms_sd.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
cms_sd.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
cms_sd.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
cms_sd.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
cms_sd.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
|
||||
cms_sd.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
cms_sd.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
cms_sd.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
cms_sd.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
cms_sd.o: ../asn1/asn1_locl.h ../cryptlib.h cms_lcl.h cms_sd.c
|
||||
cms_smime.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
cms_smime.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
cms_smime.o: ../../include/openssl/buffer.h ../../include/openssl/cms.h
|
||||
cms_smime.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
cms_smime.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
cms_smime.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
cms_smime.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
cms_smime.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
cms_smime.o: ../../include/openssl/objects.h
|
||||
cms_smime.o: ../../include/openssl/opensslconf.h
|
||||
cms_smime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
cms_smime.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
cms_smime.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
cms_smime.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
cms_smime.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
cms_smime.o: ../cryptlib.h cms_lcl.h cms_smime.c
|
|
@ -1,284 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/cms/Makefile
|
||||
#
|
||||
|
||||
DIR= cms
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= cms_lib.c cms_asn1.c cms_att.c cms_io.c cms_smime.c cms_err.c \
|
||||
cms_sd.c cms_dd.c cms_cd.c cms_env.c cms_enc.c cms_ess.c \
|
||||
cms_pwri.c
|
||||
LIBOBJ= cms_lib.o cms_asn1.o cms_att.o cms_io.o cms_smime.o cms_err.o \
|
||||
cms_sd.o cms_dd.o cms_cd.o cms_env.o cms_enc.o cms_ess.o \
|
||||
cms_pwri.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= cms.h
|
||||
HEADER= cms_lcl.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
test:
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
cms_asn1.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
|
||||
cms_asn1.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
cms_asn1.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
cms_asn1.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
cms_asn1.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
cms_asn1.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
cms_asn1.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
cms_asn1.o: ../../include/openssl/opensslconf.h
|
||||
cms_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
cms_asn1.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
|
||||
cms_asn1.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
cms_asn1.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
cms_asn1.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
cms_asn1.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
cms_asn1.o: cms.h cms_asn1.c cms_lcl.h
|
||||
cms_att.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
|
||||
cms_att.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
cms_att.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
cms_att.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
cms_att.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
cms_att.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
cms_att.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
cms_att.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
cms_att.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
cms_att.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
|
||||
cms_att.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
cms_att.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
cms_att.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
cms_att.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
cms_att.o: cms.h cms_att.c cms_lcl.h
|
||||
cms_cd.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
cms_cd.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
cms_cd.o: ../../include/openssl/buffer.h ../../include/openssl/cms.h
|
||||
cms_cd.o: ../../include/openssl/comp.h ../../include/openssl/conf.h
|
||||
cms_cd.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
cms_cd.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
cms_cd.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
cms_cd.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
cms_cd.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
cms_cd.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
cms_cd.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h
|
||||
cms_cd.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h
|
||||
cms_cd.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
cms_cd.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
cms_cd.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
cms_cd.o: ../../include/openssl/x509v3.h ../cryptlib.h cms_cd.c cms_lcl.h
|
||||
cms_dd.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
cms_dd.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
cms_dd.o: ../../include/openssl/buffer.h ../../include/openssl/cms.h
|
||||
cms_dd.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
cms_dd.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
cms_dd.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
cms_dd.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
cms_dd.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
cms_dd.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
cms_dd.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
cms_dd.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
|
||||
cms_dd.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
cms_dd.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
cms_dd.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
cms_dd.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
cms_dd.o: ../cryptlib.h cms_dd.c cms_lcl.h
|
||||
cms_enc.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
cms_enc.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
cms_enc.o: ../../include/openssl/buffer.h ../../include/openssl/cms.h
|
||||
cms_enc.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
cms_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
cms_enc.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
cms_enc.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
cms_enc.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
cms_enc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
cms_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
cms_enc.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
|
||||
cms_enc.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
cms_enc.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
cms_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
cms_enc.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
cms_enc.o: ../../include/openssl/x509v3.h ../cryptlib.h cms_enc.c cms_lcl.h
|
||||
cms_env.o: ../../e_os.h ../../include/openssl/aes.h
|
||||
cms_env.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
|
||||
cms_env.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
cms_env.o: ../../include/openssl/cms.h ../../include/openssl/conf.h
|
||||
cms_env.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
cms_env.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
cms_env.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
cms_env.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
cms_env.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
cms_env.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
cms_env.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h
|
||||
cms_env.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h
|
||||
cms_env.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
cms_env.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
cms_env.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
cms_env.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
cms_env.o: ../asn1/asn1_locl.h ../cryptlib.h cms_env.c cms_lcl.h
|
||||
cms_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
cms_err.o: ../../include/openssl/buffer.h ../../include/openssl/cms.h
|
||||
cms_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
cms_err.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
cms_err.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
cms_err.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
cms_err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
cms_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
cms_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
cms_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
cms_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
cms_err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
cms_err.o: cms_err.c
|
||||
cms_ess.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
cms_ess.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
cms_ess.o: ../../include/openssl/buffer.h ../../include/openssl/cms.h
|
||||
cms_ess.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
cms_ess.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
cms_ess.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
cms_ess.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
cms_ess.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
cms_ess.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
cms_ess.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
cms_ess.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
|
||||
cms_ess.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
cms_ess.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
cms_ess.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
cms_ess.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
cms_ess.o: ../../include/openssl/x509v3.h ../cryptlib.h cms_ess.c cms_lcl.h
|
||||
cms_io.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
|
||||
cms_io.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
cms_io.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
cms_io.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
cms_io.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
cms_io.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
cms_io.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
cms_io.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
cms_io.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h
|
||||
cms_io.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h
|
||||
cms_io.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
cms_io.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
cms_io.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h cms.h
|
||||
cms_io.o: cms_io.c cms_lcl.h
|
||||
cms_lib.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
|
||||
cms_lib.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
cms_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
cms_lib.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
cms_lib.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
cms_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
cms_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
cms_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
cms_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h
|
||||
cms_lib.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h
|
||||
cms_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
cms_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
cms_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h cms.h
|
||||
cms_lib.o: cms_lcl.h cms_lib.c
|
||||
cms_pwri.o: ../../e_os.h ../../include/openssl/aes.h
|
||||
cms_pwri.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
|
||||
cms_pwri.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
cms_pwri.o: ../../include/openssl/cms.h ../../include/openssl/conf.h
|
||||
cms_pwri.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
cms_pwri.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
cms_pwri.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
cms_pwri.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
cms_pwri.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
cms_pwri.o: ../../include/openssl/opensslconf.h
|
||||
cms_pwri.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
cms_pwri.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
|
||||
cms_pwri.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
cms_pwri.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
cms_pwri.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
cms_pwri.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
cms_pwri.o: ../../include/openssl/x509v3.h ../asn1/asn1_locl.h ../cryptlib.h
|
||||
cms_pwri.o: cms_lcl.h cms_pwri.c
|
||||
cms_sd.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
cms_sd.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
cms_sd.o: ../../include/openssl/buffer.h ../../include/openssl/cms.h
|
||||
cms_sd.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
cms_sd.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
cms_sd.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
cms_sd.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
cms_sd.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
cms_sd.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
cms_sd.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
cms_sd.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
|
||||
cms_sd.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
cms_sd.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
cms_sd.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
cms_sd.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
cms_sd.o: ../asn1/asn1_locl.h ../cryptlib.h cms_lcl.h cms_sd.c
|
||||
cms_smime.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
cms_smime.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
cms_smime.o: ../../include/openssl/buffer.h ../../include/openssl/cms.h
|
||||
cms_smime.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
cms_smime.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
cms_smime.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
cms_smime.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
cms_smime.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
cms_smime.o: ../../include/openssl/objects.h
|
||||
cms_smime.o: ../../include/openssl/opensslconf.h
|
||||
cms_smime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
cms_smime.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
cms_smime.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
cms_smime.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
cms_smime.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
cms_smime.o: ../cryptlib.h cms_lcl.h cms_smime.c
|
|
@ -1,108 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/comp/Makefile
|
||||
#
|
||||
|
||||
DIR= comp
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= comp_lib.c comp_err.c \
|
||||
c_rle.c c_zlib.c
|
||||
|
||||
LIBOBJ= comp_lib.o comp_err.o \
|
||||
c_rle.o c_zlib.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= comp.h
|
||||
HEADER= $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
c_rle.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
c_rle.o: ../../include/openssl/comp.h ../../include/openssl/crypto.h
|
||||
c_rle.o: ../../include/openssl/e_os2.h ../../include/openssl/obj_mac.h
|
||||
c_rle.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
c_rle.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
c_rle.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
c_rle.o: ../../include/openssl/symhacks.h c_rle.c
|
||||
c_zlib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
c_zlib.o: ../../include/openssl/comp.h ../../include/openssl/crypto.h
|
||||
c_zlib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
c_zlib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
c_zlib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
c_zlib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
c_zlib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
c_zlib.o: ../../include/openssl/symhacks.h c_zlib.c
|
||||
comp_err.o: ../../include/openssl/bio.h ../../include/openssl/comp.h
|
||||
comp_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
comp_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
comp_err.o: ../../include/openssl/opensslconf.h
|
||||
comp_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
comp_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
comp_err.o: ../../include/openssl/symhacks.h comp_err.c
|
||||
comp_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
comp_lib.o: ../../include/openssl/comp.h ../../include/openssl/crypto.h
|
||||
comp_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/obj_mac.h
|
||||
comp_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
comp_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
comp_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
comp_lib.o: ../../include/openssl/symhacks.h comp_lib.c
|
|
@ -1,108 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/comp/Makefile
|
||||
#
|
||||
|
||||
DIR= comp
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= comp_lib.c comp_err.c \
|
||||
c_rle.c c_zlib.c
|
||||
|
||||
LIBOBJ= comp_lib.o comp_err.o \
|
||||
c_rle.o c_zlib.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= comp.h
|
||||
HEADER= $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
c_rle.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
c_rle.o: ../../include/openssl/comp.h ../../include/openssl/crypto.h
|
||||
c_rle.o: ../../include/openssl/e_os2.h ../../include/openssl/obj_mac.h
|
||||
c_rle.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
c_rle.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
c_rle.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
c_rle.o: ../../include/openssl/symhacks.h c_rle.c
|
||||
c_zlib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
c_zlib.o: ../../include/openssl/comp.h ../../include/openssl/crypto.h
|
||||
c_zlib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
c_zlib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
c_zlib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
c_zlib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
c_zlib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
c_zlib.o: ../../include/openssl/symhacks.h c_zlib.c
|
||||
comp_err.o: ../../include/openssl/bio.h ../../include/openssl/comp.h
|
||||
comp_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
comp_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
comp_err.o: ../../include/openssl/opensslconf.h
|
||||
comp_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
comp_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
comp_err.o: ../../include/openssl/symhacks.h comp_err.c
|
||||
comp_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
comp_lib.o: ../../include/openssl/comp.h ../../include/openssl/crypto.h
|
||||
comp_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/obj_mac.h
|
||||
comp_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
comp_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
comp_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
comp_lib.o: ../../include/openssl/symhacks.h comp_lib.c
|
|
@ -1,152 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/conf/Makefile
|
||||
#
|
||||
|
||||
DIR= conf
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= conf_err.c conf_lib.c conf_api.c conf_def.c conf_mod.c \
|
||||
conf_mall.c conf_sap.c
|
||||
|
||||
LIBOBJ= conf_err.o conf_lib.o conf_api.o conf_def.o conf_mod.o \
|
||||
conf_mall.o conf_sap.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= conf.h conf_api.h
|
||||
HEADER= conf_def.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
conf_api.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
conf_api.o: ../../include/openssl/conf.h ../../include/openssl/conf_api.h
|
||||
conf_api.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
conf_api.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
conf_api.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
conf_api.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
conf_api.o: ../../include/openssl/symhacks.h conf_api.c
|
||||
conf_def.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
conf_def.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
|
||||
conf_def.o: ../../include/openssl/conf_api.h ../../include/openssl/crypto.h
|
||||
conf_def.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
conf_def.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
conf_def.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
conf_def.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
conf_def.o: ../../include/openssl/symhacks.h ../cryptlib.h conf_def.c
|
||||
conf_def.o: conf_def.h
|
||||
conf_err.o: ../../include/openssl/bio.h ../../include/openssl/conf.h
|
||||
conf_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
conf_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
conf_err.o: ../../include/openssl/opensslconf.h
|
||||
conf_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
conf_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
conf_err.o: ../../include/openssl/symhacks.h conf_err.c
|
||||
conf_lib.o: ../../include/openssl/bio.h ../../include/openssl/conf.h
|
||||
conf_lib.o: ../../include/openssl/conf_api.h ../../include/openssl/crypto.h
|
||||
conf_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
conf_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
conf_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
conf_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
conf_lib.o: ../../include/openssl/symhacks.h conf_lib.c
|
||||
conf_mall.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
conf_mall.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
conf_mall.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
conf_mall.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
|
||||
conf_mall.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
conf_mall.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
conf_mall.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
conf_mall.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
conf_mall.o: ../../include/openssl/objects.h
|
||||
conf_mall.o: ../../include/openssl/opensslconf.h
|
||||
conf_mall.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
conf_mall.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
conf_mall.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
conf_mall.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
conf_mall.o: ../../include/openssl/x509_vfy.h ../cryptlib.h conf_mall.c
|
||||
conf_mod.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
conf_mod.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
conf_mod.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
conf_mod.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
|
||||
conf_mod.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
conf_mod.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
conf_mod.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
conf_mod.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
conf_mod.o: ../../include/openssl/opensslconf.h
|
||||
conf_mod.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
conf_mod.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
conf_mod.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
conf_mod.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
conf_mod.o: ../../include/openssl/x509_vfy.h ../cryptlib.h conf_mod.c
|
||||
conf_sap.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
conf_sap.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
conf_sap.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
conf_sap.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
|
||||
conf_sap.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
conf_sap.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
conf_sap.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
conf_sap.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
conf_sap.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
conf_sap.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
conf_sap.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
conf_sap.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
conf_sap.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
conf_sap.o: ../../include/openssl/x509_vfy.h ../cryptlib.h conf_sap.c
|
|
@ -1,152 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/conf/Makefile
|
||||
#
|
||||
|
||||
DIR= conf
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= conf_err.c conf_lib.c conf_api.c conf_def.c conf_mod.c \
|
||||
conf_mall.c conf_sap.c
|
||||
|
||||
LIBOBJ= conf_err.o conf_lib.o conf_api.o conf_def.o conf_mod.o \
|
||||
conf_mall.o conf_sap.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= conf.h conf_api.h
|
||||
HEADER= conf_def.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
conf_api.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
conf_api.o: ../../include/openssl/conf.h ../../include/openssl/conf_api.h
|
||||
conf_api.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
conf_api.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
conf_api.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
conf_api.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
conf_api.o: ../../include/openssl/symhacks.h conf_api.c
|
||||
conf_def.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
conf_def.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
|
||||
conf_def.o: ../../include/openssl/conf_api.h ../../include/openssl/crypto.h
|
||||
conf_def.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
conf_def.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
conf_def.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
conf_def.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
conf_def.o: ../../include/openssl/symhacks.h ../cryptlib.h conf_def.c
|
||||
conf_def.o: conf_def.h
|
||||
conf_err.o: ../../include/openssl/bio.h ../../include/openssl/conf.h
|
||||
conf_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
conf_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
conf_err.o: ../../include/openssl/opensslconf.h
|
||||
conf_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
conf_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
conf_err.o: ../../include/openssl/symhacks.h conf_err.c
|
||||
conf_lib.o: ../../include/openssl/bio.h ../../include/openssl/conf.h
|
||||
conf_lib.o: ../../include/openssl/conf_api.h ../../include/openssl/crypto.h
|
||||
conf_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
conf_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
conf_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
conf_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
conf_lib.o: ../../include/openssl/symhacks.h conf_lib.c
|
||||
conf_mall.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
conf_mall.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
conf_mall.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
conf_mall.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
|
||||
conf_mall.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
conf_mall.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
conf_mall.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
conf_mall.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
conf_mall.o: ../../include/openssl/objects.h
|
||||
conf_mall.o: ../../include/openssl/opensslconf.h
|
||||
conf_mall.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
conf_mall.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
conf_mall.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
conf_mall.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
conf_mall.o: ../../include/openssl/x509_vfy.h ../cryptlib.h conf_mall.c
|
||||
conf_mod.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
conf_mod.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
conf_mod.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
conf_mod.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
|
||||
conf_mod.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
conf_mod.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
conf_mod.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
conf_mod.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
conf_mod.o: ../../include/openssl/opensslconf.h
|
||||
conf_mod.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
conf_mod.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
conf_mod.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
conf_mod.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
conf_mod.o: ../../include/openssl/x509_vfy.h ../cryptlib.h conf_mod.c
|
||||
conf_sap.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
conf_sap.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
conf_sap.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
conf_sap.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
|
||||
conf_sap.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
conf_sap.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
conf_sap.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
conf_sap.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
conf_sap.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
conf_sap.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
conf_sap.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
conf_sap.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
conf_sap.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
conf_sap.o: ../../include/openssl/x509_vfy.h ../cryptlib.h conf_sap.c
|
|
@ -1,35 +0,0 @@
|
|||
# This Imakefile has not been tested for a while but it should still
|
||||
# work when placed in the correct directory in the kerberos v 4 distribution
|
||||
|
||||
SRCS= cbc_cksm.c cbc_enc.c ecb_enc.c pcbc_enc.c \
|
||||
qud_cksm.c rand_key.c read_pwd.c set_key.c str2key.c \
|
||||
enc_read.c enc_writ.c fcrypt.c cfb_enc.c \
|
||||
ecb3_enc.c ofb_enc.c ofb64enc.c
|
||||
|
||||
OBJS= cbc_cksm.o cbc_enc.o ecb_enc.o pcbc_enc.o \
|
||||
qud_cksm.o rand_key.o read_pwd.o set_key.o str2key.o \
|
||||
enc_read.o enc_writ.o fcrypt.o cfb_enc.o \
|
||||
ecb3_enc.o ofb_enc.o ofb64enc.o
|
||||
|
||||
GENERAL=COPYRIGHT FILES INSTALL Imakefile README VERSION makefile times \
|
||||
vms.com KERBEROS
|
||||
DES= des.c des.man
|
||||
TESTING=destest.c speed.c rpw.c
|
||||
LIBDES= des_crypt.man des.h des_locl.h podd.h sk.h spr.h
|
||||
|
||||
PERL= des.pl testdes.pl doIP doPC1 doPC2 PC1 PC2 shifts.pl
|
||||
|
||||
CODE= $(GENERAL) $(DES) $(TESTING) $(SRCS) $(LIBDES) $(PERL)
|
||||
|
||||
SRCDIR=$(SRCTOP)/lib/des
|
||||
|
||||
DBG= -O
|
||||
INCLUDE= -I$(SRCDIR)
|
||||
CC= cc
|
||||
|
||||
library_obj_rule()
|
||||
|
||||
install_library_target(des,$(OBJS),$(SRCS),)
|
||||
|
||||
test(destest,libdes.a,)
|
||||
test(rpw,libdes.a,)
|
|
@ -1,279 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/des/Makefile
|
||||
#
|
||||
|
||||
DIR= des
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
CPP= $(CC) -E
|
||||
INCLUDES=-I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
RANLIB= ranlib
|
||||
DES_ENC= des_enc.o fcrypt_b.o
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
ASFLAGS= $(INCLUDES) $(ASFLAG)
|
||||
AFLAGS= $(ASFLAGS)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=destest.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= cbc_cksm.c cbc_enc.c cfb64enc.c cfb_enc.c \
|
||||
ecb3_enc.c ecb_enc.c enc_read.c enc_writ.c \
|
||||
fcrypt.c ofb64enc.c ofb_enc.c pcbc_enc.c \
|
||||
qud_cksm.c rand_key.c rpc_enc.c set_key.c \
|
||||
des_enc.c fcrypt_b.c \
|
||||
xcbc_enc.c \
|
||||
str2key.c cfb64ede.c ofb64ede.c ede_cbcm_enc.c des_old.c des_old2.c \
|
||||
read2pwd.c
|
||||
|
||||
LIBOBJ= set_key.o ecb_enc.o cbc_enc.o \
|
||||
ecb3_enc.o cfb64enc.o cfb64ede.o cfb_enc.o ofb64ede.o \
|
||||
enc_read.o enc_writ.o ofb64enc.o \
|
||||
ofb_enc.o str2key.o pcbc_enc.o qud_cksm.o rand_key.o \
|
||||
${DES_ENC} \
|
||||
fcrypt.o xcbc_enc.o rpc_enc.o cbc_cksm.o \
|
||||
ede_cbcm_enc.o des_old.o des_old2.o read2pwd.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= des.h des_old.h
|
||||
HEADER= des_locl.h rpc_des.h spr.h des_ver.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
des: des.o cbc3_enc.o lib
|
||||
$(CC) $(CFLAGS) -o des des.o cbc3_enc.o $(LIB)
|
||||
|
||||
des_enc-sparc.S: asm/des_enc.m4
|
||||
m4 -B 8192 asm/des_enc.m4 > des_enc-sparc.S
|
||||
|
||||
des-586.s: asm/des-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl
|
||||
$(PERL) asm/des-586.pl $(PERLASM_SCHEME) $(CFLAGS) > $@
|
||||
crypt586.s: asm/crypt586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl
|
||||
$(PERL) asm/crypt586.pl $(PERLASM_SCHEME) $(CFLAGS) > $@
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
# We need to use force because 'install' matches 'INSTALL' on case
|
||||
# insensitive systems
|
||||
FRC.install:
|
||||
install: FRC.install
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.s *.o *.obj des lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
cbc_cksm.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
cbc_cksm.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
cbc_cksm.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
cbc_cksm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
cbc_cksm.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
|
||||
cbc_cksm.o: cbc_cksm.c des_locl.h
|
||||
cbc_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
cbc_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
cbc_enc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
cbc_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
cbc_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
|
||||
cbc_enc.o: cbc_enc.c des_locl.h ncbc_enc.c
|
||||
cfb64ede.o: ../../e_os.h ../../include/openssl/des.h
|
||||
cfb64ede.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
|
||||
cfb64ede.o: ../../include/openssl/opensslconf.h
|
||||
cfb64ede.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
cfb64ede.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
cfb64ede.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
|
||||
cfb64ede.o: cfb64ede.c des_locl.h
|
||||
cfb64enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
cfb64enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
cfb64enc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
cfb64enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
cfb64enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
|
||||
cfb64enc.o: cfb64enc.c des_locl.h
|
||||
cfb_enc.o: ../../e_os.h ../../include/openssl/des.h
|
||||
cfb_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
|
||||
cfb_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/ossl_typ.h
|
||||
cfb_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
cfb_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
|
||||
cfb_enc.o: ../../include/openssl/ui_compat.h cfb_enc.c des_locl.h
|
||||
des_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
des_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
des_enc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
des_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
des_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
|
||||
des_enc.o: des_enc.c des_locl.h ncbc_enc.c spr.h
|
||||
des_old.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
des_old.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
des_old.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
|
||||
des_old.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
des_old.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
|
||||
des_old.o: ../../include/openssl/ui_compat.h des_old.c
|
||||
des_old2.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
des_old2.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
des_old2.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
|
||||
des_old2.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
des_old2.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
|
||||
des_old2.o: ../../include/openssl/ui_compat.h des_old2.c
|
||||
ecb3_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
ecb3_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
ecb3_enc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
ecb3_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
ecb3_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
|
||||
ecb3_enc.o: des_locl.h ecb3_enc.c
|
||||
ecb_enc.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
|
||||
ecb_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
ecb_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
ecb_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ecb_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ecb_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
|
||||
ecb_enc.o: ../../include/openssl/ui_compat.h des_locl.h des_ver.h ecb_enc.c
|
||||
ede_cbcm_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
ede_cbcm_enc.o: ../../include/openssl/e_os2.h
|
||||
ede_cbcm_enc.o: ../../include/openssl/opensslconf.h
|
||||
ede_cbcm_enc.o: ../../include/openssl/ossl_typ.h
|
||||
ede_cbcm_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ede_cbcm_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
|
||||
ede_cbcm_enc.o: ../../include/openssl/ui_compat.h des_locl.h ede_cbcm_enc.c
|
||||
enc_read.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
enc_read.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
enc_read.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
enc_read.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
enc_read.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
enc_read.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
enc_read.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
enc_read.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
|
||||
enc_read.o: ../../include/openssl/ui_compat.h ../cryptlib.h des_locl.h
|
||||
enc_read.o: enc_read.c
|
||||
enc_writ.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
enc_writ.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
enc_writ.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
enc_writ.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
enc_writ.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
enc_writ.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
enc_writ.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
enc_writ.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
enc_writ.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
|
||||
enc_writ.o: ../cryptlib.h des_locl.h enc_writ.c
|
||||
fcrypt.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
fcrypt.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
fcrypt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
fcrypt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
fcrypt.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
|
||||
fcrypt.o: des_locl.h fcrypt.c
|
||||
fcrypt_b.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
fcrypt_b.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
fcrypt_b.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
fcrypt_b.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
fcrypt_b.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
|
||||
fcrypt_b.o: des_locl.h fcrypt_b.c
|
||||
ofb64ede.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
ofb64ede.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
ofb64ede.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
ofb64ede.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
ofb64ede.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
|
||||
ofb64ede.o: des_locl.h ofb64ede.c
|
||||
ofb64enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
ofb64enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
ofb64enc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
ofb64enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
ofb64enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
|
||||
ofb64enc.o: des_locl.h ofb64enc.c
|
||||
ofb_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
ofb_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
ofb_enc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
ofb_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
ofb_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
|
||||
ofb_enc.o: des_locl.h ofb_enc.c
|
||||
pcbc_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
pcbc_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
pcbc_enc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
pcbc_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
pcbc_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
|
||||
pcbc_enc.o: des_locl.h pcbc_enc.c
|
||||
qud_cksm.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
qud_cksm.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
qud_cksm.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
qud_cksm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
qud_cksm.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
|
||||
qud_cksm.o: des_locl.h qud_cksm.c
|
||||
rand_key.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
rand_key.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
rand_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
|
||||
rand_key.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
rand_key.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
|
||||
rand_key.o: ../../include/openssl/ui_compat.h rand_key.c
|
||||
read2pwd.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
read2pwd.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
|
||||
read2pwd.o: ../../include/openssl/opensslconf.h
|
||||
read2pwd.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
read2pwd.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
read2pwd.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
|
||||
read2pwd.o: ../../include/openssl/ui_compat.h read2pwd.c
|
||||
rpc_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
rpc_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
rpc_enc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
rpc_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
rpc_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
|
||||
rpc_enc.o: des_locl.h des_ver.h rpc_des.h rpc_enc.c
|
||||
set_key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
set_key.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
|
||||
set_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
set_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
set_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
set_key.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
|
||||
set_key.o: des_locl.h set_key.c
|
||||
str2key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
str2key.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
|
||||
str2key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
str2key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
str2key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
str2key.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
|
||||
str2key.o: des_locl.h str2key.c
|
||||
xcbc_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
xcbc_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
xcbc_enc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
xcbc_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
xcbc_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
|
||||
xcbc_enc.o: des_locl.h xcbc_enc.c
|
|
@ -1,279 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/des/Makefile
|
||||
#
|
||||
|
||||
DIR= des
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
CPP= $(CC) -E
|
||||
INCLUDES=-I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
RANLIB= ranlib
|
||||
DES_ENC= des_enc.o fcrypt_b.o
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
ASFLAGS= $(INCLUDES) $(ASFLAG)
|
||||
AFLAGS= $(ASFLAGS)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=destest.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= cbc_cksm.c cbc_enc.c cfb64enc.c cfb_enc.c \
|
||||
ecb3_enc.c ecb_enc.c enc_read.c enc_writ.c \
|
||||
fcrypt.c ofb64enc.c ofb_enc.c pcbc_enc.c \
|
||||
qud_cksm.c rand_key.c rpc_enc.c set_key.c \
|
||||
des_enc.c fcrypt_b.c \
|
||||
xcbc_enc.c \
|
||||
str2key.c cfb64ede.c ofb64ede.c ede_cbcm_enc.c des_old.c des_old2.c \
|
||||
read2pwd.c
|
||||
|
||||
LIBOBJ= set_key.o ecb_enc.o cbc_enc.o \
|
||||
ecb3_enc.o cfb64enc.o cfb64ede.o cfb_enc.o ofb64ede.o \
|
||||
enc_read.o enc_writ.o ofb64enc.o \
|
||||
ofb_enc.o str2key.o pcbc_enc.o qud_cksm.o rand_key.o \
|
||||
${DES_ENC} \
|
||||
fcrypt.o xcbc_enc.o rpc_enc.o cbc_cksm.o \
|
||||
ede_cbcm_enc.o des_old.o des_old2.o read2pwd.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= des.h des_old.h
|
||||
HEADER= des_locl.h rpc_des.h spr.h des_ver.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
des: des.o cbc3_enc.o lib
|
||||
$(CC) $(CFLAGS) -o des des.o cbc3_enc.o $(LIB)
|
||||
|
||||
des_enc-sparc.S: asm/des_enc.m4
|
||||
m4 -B 8192 asm/des_enc.m4 > des_enc-sparc.S
|
||||
|
||||
des-586.s: asm/des-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl
|
||||
$(PERL) asm/des-586.pl $(PERLASM_SCHEME) $(CFLAGS) > $@
|
||||
crypt586.s: asm/crypt586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl
|
||||
$(PERL) asm/crypt586.pl $(PERLASM_SCHEME) $(CFLAGS) > $@
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
# We need to use force because 'install' matches 'INSTALL' on case
|
||||
# insensitive systems
|
||||
FRC.install:
|
||||
install: FRC.install
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.s *.o *.obj des lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
cbc_cksm.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
cbc_cksm.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
cbc_cksm.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
cbc_cksm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
cbc_cksm.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
|
||||
cbc_cksm.o: cbc_cksm.c des_locl.h
|
||||
cbc_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
cbc_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
cbc_enc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
cbc_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
cbc_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
|
||||
cbc_enc.o: cbc_enc.c des_locl.h ncbc_enc.c
|
||||
cfb64ede.o: ../../e_os.h ../../include/openssl/des.h
|
||||
cfb64ede.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
|
||||
cfb64ede.o: ../../include/openssl/opensslconf.h
|
||||
cfb64ede.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
cfb64ede.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
cfb64ede.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
|
||||
cfb64ede.o: cfb64ede.c des_locl.h
|
||||
cfb64enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
cfb64enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
cfb64enc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
cfb64enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
cfb64enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
|
||||
cfb64enc.o: cfb64enc.c des_locl.h
|
||||
cfb_enc.o: ../../e_os.h ../../include/openssl/des.h
|
||||
cfb_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
|
||||
cfb_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/ossl_typ.h
|
||||
cfb_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
cfb_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
|
||||
cfb_enc.o: ../../include/openssl/ui_compat.h cfb_enc.c des_locl.h
|
||||
des_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
des_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
des_enc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
des_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
des_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
|
||||
des_enc.o: des_enc.c des_locl.h ncbc_enc.c spr.h
|
||||
des_old.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
des_old.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
des_old.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
|
||||
des_old.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
des_old.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
|
||||
des_old.o: ../../include/openssl/ui_compat.h des_old.c
|
||||
des_old2.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
des_old2.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
des_old2.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
|
||||
des_old2.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
des_old2.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
|
||||
des_old2.o: ../../include/openssl/ui_compat.h des_old2.c
|
||||
ecb3_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
ecb3_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
ecb3_enc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
ecb3_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
ecb3_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
|
||||
ecb3_enc.o: des_locl.h ecb3_enc.c
|
||||
ecb_enc.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
|
||||
ecb_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
ecb_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
ecb_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ecb_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ecb_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
|
||||
ecb_enc.o: ../../include/openssl/ui_compat.h des_locl.h des_ver.h ecb_enc.c
|
||||
ede_cbcm_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
ede_cbcm_enc.o: ../../include/openssl/e_os2.h
|
||||
ede_cbcm_enc.o: ../../include/openssl/opensslconf.h
|
||||
ede_cbcm_enc.o: ../../include/openssl/ossl_typ.h
|
||||
ede_cbcm_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ede_cbcm_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
|
||||
ede_cbcm_enc.o: ../../include/openssl/ui_compat.h des_locl.h ede_cbcm_enc.c
|
||||
enc_read.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
enc_read.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
enc_read.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
enc_read.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
enc_read.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
enc_read.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
enc_read.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
enc_read.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
|
||||
enc_read.o: ../../include/openssl/ui_compat.h ../cryptlib.h des_locl.h
|
||||
enc_read.o: enc_read.c
|
||||
enc_writ.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
enc_writ.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
enc_writ.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
enc_writ.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
enc_writ.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
enc_writ.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
enc_writ.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
enc_writ.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
enc_writ.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
|
||||
enc_writ.o: ../cryptlib.h des_locl.h enc_writ.c
|
||||
fcrypt.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
fcrypt.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
fcrypt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
fcrypt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
fcrypt.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
|
||||
fcrypt.o: des_locl.h fcrypt.c
|
||||
fcrypt_b.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
fcrypt_b.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
fcrypt_b.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
fcrypt_b.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
fcrypt_b.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
|
||||
fcrypt_b.o: des_locl.h fcrypt_b.c
|
||||
ofb64ede.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
ofb64ede.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
ofb64ede.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
ofb64ede.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
ofb64ede.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
|
||||
ofb64ede.o: des_locl.h ofb64ede.c
|
||||
ofb64enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
ofb64enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
ofb64enc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
ofb64enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
ofb64enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
|
||||
ofb64enc.o: des_locl.h ofb64enc.c
|
||||
ofb_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
ofb_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
ofb_enc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
ofb_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
ofb_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
|
||||
ofb_enc.o: des_locl.h ofb_enc.c
|
||||
pcbc_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
pcbc_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
pcbc_enc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
pcbc_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
pcbc_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
|
||||
pcbc_enc.o: des_locl.h pcbc_enc.c
|
||||
qud_cksm.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
qud_cksm.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
qud_cksm.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
qud_cksm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
qud_cksm.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
|
||||
qud_cksm.o: des_locl.h qud_cksm.c
|
||||
rand_key.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
rand_key.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
rand_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
|
||||
rand_key.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
rand_key.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
|
||||
rand_key.o: ../../include/openssl/ui_compat.h rand_key.c
|
||||
read2pwd.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
read2pwd.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
|
||||
read2pwd.o: ../../include/openssl/opensslconf.h
|
||||
read2pwd.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
read2pwd.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
read2pwd.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
|
||||
read2pwd.o: ../../include/openssl/ui_compat.h read2pwd.c
|
||||
rpc_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
rpc_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
rpc_enc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
rpc_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
rpc_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
|
||||
rpc_enc.o: des_locl.h des_ver.h rpc_des.h rpc_enc.c
|
||||
set_key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
set_key.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
|
||||
set_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
set_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
set_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
set_key.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
|
||||
set_key.o: des_locl.h set_key.c
|
||||
str2key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
str2key.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
|
||||
str2key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
str2key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
str2key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
str2key.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
|
||||
str2key.o: des_locl.h str2key.c
|
||||
xcbc_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
xcbc_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
||||
xcbc_enc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
xcbc_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
xcbc_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h
|
||||
xcbc_enc.o: des_locl.h xcbc_enc.c
|
|
@ -1,50 +0,0 @@
|
|||
#
|
||||
# Origional BC Makefile from Teun <Teun.Nijssen@kub.nl>
|
||||
#
|
||||
#
|
||||
CC = bcc
|
||||
TLIB = tlib /0 /C
|
||||
# note: the -3 flag produces code for 386, 486, Pentium etc; omit it for 286s
|
||||
OPTIMIZE= -3 -O2
|
||||
#WINDOWS= -W
|
||||
CFLAGS = -c -ml -d $(OPTIMIZE) $(WINDOWS) -DMSDOS
|
||||
LFLAGS = -ml $(WINDOWS)
|
||||
|
||||
.c.obj:
|
||||
$(CC) $(CFLAGS) $*.c
|
||||
|
||||
.obj.exe:
|
||||
$(CC) $(LFLAGS) -e$*.exe $*.obj libdes.lib
|
||||
|
||||
all: $(LIB) destest.exe rpw.exe des.exe speed.exe
|
||||
|
||||
# "make clean": use a directory containing only libdes .exe and .obj files...
|
||||
clean:
|
||||
del *.exe
|
||||
del *.obj
|
||||
del libdes.lib
|
||||
del libdes.rsp
|
||||
|
||||
OBJS= cbc_cksm.obj cbc_enc.obj ecb_enc.obj pcbc_enc.obj \
|
||||
qud_cksm.obj rand_key.obj set_key.obj str2key.obj \
|
||||
enc_read.obj enc_writ.obj fcrypt.obj cfb_enc.obj \
|
||||
ecb3_enc.obj ofb_enc.obj cbc3_enc.obj read_pwd.obj\
|
||||
cfb64enc.obj ofb64enc.obj ede_enc.obj cfb64ede.obj\
|
||||
ofb64ede.obj supp.obj
|
||||
|
||||
LIB= libdes.lib
|
||||
|
||||
$(LIB): $(OBJS)
|
||||
del $(LIB)
|
||||
makersp "+%s &\n" &&|
|
||||
$(OBJS)
|
||||
| >libdes.rsp
|
||||
$(TLIB) libdes.lib @libdes.rsp,nul
|
||||
del libdes.rsp
|
||||
|
||||
destest.exe: destest.obj libdes.lib
|
||||
rpw.exe: rpw.obj libdes.lib
|
||||
speed.exe: speed.obj libdes.lib
|
||||
des.exe: des.obj libdes.lib
|
||||
|
||||
|
|
@ -1,180 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/dh/Makefile
|
||||
#
|
||||
|
||||
DIR= dh
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST= dhtest.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= dh_asn1.c dh_gen.c dh_key.c dh_lib.c dh_check.c dh_err.c dh_depr.c \
|
||||
dh_ameth.c dh_pmeth.c dh_prn.c
|
||||
LIBOBJ= dh_asn1.o dh_gen.o dh_key.o dh_lib.o dh_check.o dh_err.o dh_depr.o \
|
||||
dh_ameth.o dh_pmeth.o dh_prn.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= dh.h
|
||||
HEADER= $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
dh_ameth.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
dh_ameth.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
dh_ameth.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dh_ameth.o: ../../include/openssl/dh.h ../../include/openssl/e_os2.h
|
||||
dh_ameth.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
dh_ameth.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
dh_ameth.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
dh_ameth.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
dh_ameth.o: ../../include/openssl/opensslconf.h
|
||||
dh_ameth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
dh_ameth.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
dh_ameth.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
dh_ameth.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
dh_ameth.o: ../../include/openssl/x509_vfy.h ../asn1/asn1_locl.h ../cryptlib.h
|
||||
dh_ameth.o: dh_ameth.c
|
||||
dh_asn1.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
dh_asn1.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
dh_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
dh_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
|
||||
dh_asn1.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
dh_asn1.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
dh_asn1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
dh_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
dh_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
dh_asn1.o: ../../include/openssl/symhacks.h ../cryptlib.h dh_asn1.c
|
||||
dh_check.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
dh_check.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dh_check.o: ../../include/openssl/dh.h ../../include/openssl/e_os2.h
|
||||
dh_check.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dh_check.o: ../../include/openssl/opensslconf.h
|
||||
dh_check.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
dh_check.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
dh_check.o: ../../include/openssl/symhacks.h ../cryptlib.h dh_check.c
|
||||
dh_depr.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
dh_depr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dh_depr.o: ../../include/openssl/dh.h ../../include/openssl/e_os2.h
|
||||
dh_depr.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dh_depr.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
dh_depr.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
dh_depr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
dh_depr.o: ../cryptlib.h dh_depr.c
|
||||
dh_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
|
||||
dh_err.o: ../../include/openssl/dh.h ../../include/openssl/e_os2.h
|
||||
dh_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dh_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
dh_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
dh_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
dh_err.o: dh_err.c
|
||||
dh_gen.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
dh_gen.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dh_gen.o: ../../include/openssl/dh.h ../../include/openssl/e_os2.h
|
||||
dh_gen.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dh_gen.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
dh_gen.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
dh_gen.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
dh_gen.o: ../cryptlib.h dh_gen.c
|
||||
dh_key.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
dh_key.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dh_key.o: ../../include/openssl/dh.h ../../include/openssl/e_os2.h
|
||||
dh_key.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dh_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
dh_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
|
||||
dh_key.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
dh_key.o: ../../include/openssl/symhacks.h ../cryptlib.h dh_key.c
|
||||
dh_lib.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
dh_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
dh_lib.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
|
||||
dh_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
dh_lib.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
dh_lib.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
||||
dh_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
dh_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
dh_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
dh_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
dh_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
dh_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
dh_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
dh_lib.o: ../cryptlib.h dh_lib.c
|
||||
dh_pmeth.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
dh_pmeth.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
dh_pmeth.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
dh_pmeth.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
|
||||
dh_pmeth.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
dh_pmeth.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
dh_pmeth.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
dh_pmeth.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
dh_pmeth.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
dh_pmeth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
dh_pmeth.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
dh_pmeth.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
dh_pmeth.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
dh_pmeth.o: ../../include/openssl/x509_vfy.h ../cryptlib.h ../evp/evp_locl.h
|
||||
dh_pmeth.o: dh_pmeth.c
|
||||
dh_prn.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
dh_prn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dh_prn.o: ../../include/openssl/dh.h ../../include/openssl/e_os2.h
|
||||
dh_prn.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
dh_prn.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
dh_prn.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
dh_prn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
dh_prn.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
dh_prn.o: ../../include/openssl/symhacks.h ../cryptlib.h dh_prn.c
|
|
@ -1,180 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/dh/Makefile
|
||||
#
|
||||
|
||||
DIR= dh
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST= dhtest.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= dh_asn1.c dh_gen.c dh_key.c dh_lib.c dh_check.c dh_err.c dh_depr.c \
|
||||
dh_ameth.c dh_pmeth.c dh_prn.c
|
||||
LIBOBJ= dh_asn1.o dh_gen.o dh_key.o dh_lib.o dh_check.o dh_err.o dh_depr.o \
|
||||
dh_ameth.o dh_pmeth.o dh_prn.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= dh.h
|
||||
HEADER= $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
dh_ameth.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
dh_ameth.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
dh_ameth.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dh_ameth.o: ../../include/openssl/dh.h ../../include/openssl/e_os2.h
|
||||
dh_ameth.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
dh_ameth.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
dh_ameth.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
dh_ameth.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
dh_ameth.o: ../../include/openssl/opensslconf.h
|
||||
dh_ameth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
dh_ameth.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
dh_ameth.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
dh_ameth.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
dh_ameth.o: ../../include/openssl/x509_vfy.h ../asn1/asn1_locl.h ../cryptlib.h
|
||||
dh_ameth.o: dh_ameth.c
|
||||
dh_asn1.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
dh_asn1.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
dh_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
dh_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
|
||||
dh_asn1.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
dh_asn1.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
dh_asn1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
dh_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
dh_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
dh_asn1.o: ../../include/openssl/symhacks.h ../cryptlib.h dh_asn1.c
|
||||
dh_check.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
dh_check.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dh_check.o: ../../include/openssl/dh.h ../../include/openssl/e_os2.h
|
||||
dh_check.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dh_check.o: ../../include/openssl/opensslconf.h
|
||||
dh_check.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
dh_check.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
dh_check.o: ../../include/openssl/symhacks.h ../cryptlib.h dh_check.c
|
||||
dh_depr.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
dh_depr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dh_depr.o: ../../include/openssl/dh.h ../../include/openssl/e_os2.h
|
||||
dh_depr.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dh_depr.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
dh_depr.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
dh_depr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
dh_depr.o: ../cryptlib.h dh_depr.c
|
||||
dh_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
|
||||
dh_err.o: ../../include/openssl/dh.h ../../include/openssl/e_os2.h
|
||||
dh_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dh_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
dh_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
dh_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
dh_err.o: dh_err.c
|
||||
dh_gen.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
dh_gen.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dh_gen.o: ../../include/openssl/dh.h ../../include/openssl/e_os2.h
|
||||
dh_gen.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dh_gen.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
dh_gen.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
dh_gen.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
dh_gen.o: ../cryptlib.h dh_gen.c
|
||||
dh_key.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
dh_key.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dh_key.o: ../../include/openssl/dh.h ../../include/openssl/e_os2.h
|
||||
dh_key.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dh_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
dh_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
|
||||
dh_key.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
dh_key.o: ../../include/openssl/symhacks.h ../cryptlib.h dh_key.c
|
||||
dh_lib.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
dh_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
dh_lib.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
|
||||
dh_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
dh_lib.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
dh_lib.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
||||
dh_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
dh_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
dh_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
dh_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
dh_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
dh_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
dh_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
dh_lib.o: ../cryptlib.h dh_lib.c
|
||||
dh_pmeth.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
dh_pmeth.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
dh_pmeth.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
dh_pmeth.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
|
||||
dh_pmeth.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
dh_pmeth.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
dh_pmeth.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
dh_pmeth.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
dh_pmeth.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
dh_pmeth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
dh_pmeth.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
dh_pmeth.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
dh_pmeth.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
dh_pmeth.o: ../../include/openssl/x509_vfy.h ../cryptlib.h ../evp/evp_locl.h
|
||||
dh_pmeth.o: dh_pmeth.c
|
||||
dh_prn.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
dh_prn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dh_prn.o: ../../include/openssl/dh.h ../../include/openssl/e_os2.h
|
||||
dh_prn.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
dh_prn.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
dh_prn.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
dh_prn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
dh_prn.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
dh_prn.o: ../../include/openssl/symhacks.h ../cryptlib.h dh_prn.c
|
|
@ -1,209 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/dsa/Makefile
|
||||
#
|
||||
|
||||
DIR= dsa
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=dsatest.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= dsa_gen.c dsa_key.c dsa_lib.c dsa_asn1.c dsa_vrf.c dsa_sign.c \
|
||||
dsa_err.c dsa_ossl.c dsa_depr.c dsa_ameth.c dsa_pmeth.c dsa_prn.c
|
||||
LIBOBJ= dsa_gen.o dsa_key.o dsa_lib.o dsa_asn1.o dsa_vrf.o dsa_sign.o \
|
||||
dsa_err.o dsa_ossl.o dsa_depr.o dsa_ameth.o dsa_pmeth.o dsa_prn.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= dsa.h
|
||||
HEADER= dsa_locl.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
dsa_ameth.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
dsa_ameth.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
dsa_ameth.o: ../../include/openssl/buffer.h ../../include/openssl/cms.h
|
||||
dsa_ameth.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h
|
||||
dsa_ameth.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
dsa_ameth.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
dsa_ameth.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
dsa_ameth.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
dsa_ameth.o: ../../include/openssl/objects.h
|
||||
dsa_ameth.o: ../../include/openssl/opensslconf.h
|
||||
dsa_ameth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
dsa_ameth.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
dsa_ameth.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
dsa_ameth.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
dsa_ameth.o: ../../include/openssl/x509_vfy.h ../asn1/asn1_locl.h ../cryptlib.h
|
||||
dsa_ameth.o: dsa_ameth.c
|
||||
dsa_asn1.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
dsa_asn1.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
dsa_asn1.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dsa_asn1.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
||||
dsa_asn1.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dsa_asn1.o: ../../include/openssl/opensslconf.h
|
||||
dsa_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
dsa_asn1.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
dsa_asn1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
dsa_asn1.o: ../cryptlib.h dsa_asn1.c
|
||||
dsa_depr.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
dsa_depr.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
dsa_depr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dsa_depr.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
||||
dsa_depr.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
dsa_depr.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
dsa_depr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
dsa_depr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
dsa_depr.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
dsa_depr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
dsa_depr.o: ../../include/openssl/symhacks.h ../cryptlib.h dsa_depr.c
|
||||
dsa_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
|
||||
dsa_err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
||||
dsa_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dsa_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
dsa_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
dsa_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
dsa_err.o: dsa_err.c
|
||||
dsa_gen.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
dsa_gen.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
dsa_gen.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dsa_gen.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
||||
dsa_gen.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
dsa_gen.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
dsa_gen.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
dsa_gen.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
dsa_gen.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
dsa_gen.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
dsa_gen.o: ../../include/openssl/symhacks.h ../cryptlib.h dsa_gen.c dsa_locl.h
|
||||
dsa_key.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
dsa_key.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dsa_key.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
||||
dsa_key.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dsa_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
dsa_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
|
||||
dsa_key.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
dsa_key.o: ../../include/openssl/symhacks.h ../cryptlib.h dsa_key.c
|
||||
dsa_lib.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
dsa_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
dsa_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dsa_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
dsa_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
dsa_lib.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
dsa_lib.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
||||
dsa_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
dsa_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
dsa_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
dsa_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
dsa_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
dsa_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
dsa_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
dsa_lib.o: ../cryptlib.h dsa_lib.c
|
||||
dsa_ossl.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
dsa_ossl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
dsa_ossl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dsa_ossl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
||||
dsa_ossl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dsa_ossl.o: ../../include/openssl/opensslconf.h
|
||||
dsa_ossl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
dsa_ossl.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
dsa_ossl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
dsa_ossl.o: ../../include/openssl/symhacks.h ../cryptlib.h dsa_ossl.c
|
||||
dsa_pmeth.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
dsa_pmeth.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
dsa_pmeth.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
dsa_pmeth.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h
|
||||
dsa_pmeth.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
dsa_pmeth.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
dsa_pmeth.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
dsa_pmeth.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
dsa_pmeth.o: ../../include/openssl/objects.h
|
||||
dsa_pmeth.o: ../../include/openssl/opensslconf.h
|
||||
dsa_pmeth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
dsa_pmeth.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
dsa_pmeth.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
dsa_pmeth.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
dsa_pmeth.o: ../../include/openssl/x509_vfy.h ../cryptlib.h ../evp/evp_locl.h
|
||||
dsa_pmeth.o: dsa_locl.h dsa_pmeth.c
|
||||
dsa_prn.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
dsa_prn.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
dsa_prn.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h
|
||||
dsa_prn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
dsa_prn.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
dsa_prn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
dsa_prn.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
dsa_prn.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
dsa_prn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
dsa_prn.o: ../cryptlib.h dsa_prn.c
|
||||
dsa_sign.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
dsa_sign.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dsa_sign.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
||||
dsa_sign.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dsa_sign.o: ../../include/openssl/opensslconf.h
|
||||
dsa_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
dsa_sign.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
dsa_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
dsa_sign.o: ../cryptlib.h dsa_sign.c
|
||||
dsa_vrf.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
dsa_vrf.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dsa_vrf.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
||||
dsa_vrf.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dsa_vrf.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
dsa_vrf.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
dsa_vrf.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
dsa_vrf.o: ../cryptlib.h dsa_vrf.c
|
|
@ -1,209 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/dsa/Makefile
|
||||
#
|
||||
|
||||
DIR= dsa
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=dsatest.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= dsa_gen.c dsa_key.c dsa_lib.c dsa_asn1.c dsa_vrf.c dsa_sign.c \
|
||||
dsa_err.c dsa_ossl.c dsa_depr.c dsa_ameth.c dsa_pmeth.c dsa_prn.c
|
||||
LIBOBJ= dsa_gen.o dsa_key.o dsa_lib.o dsa_asn1.o dsa_vrf.o dsa_sign.o \
|
||||
dsa_err.o dsa_ossl.o dsa_depr.o dsa_ameth.o dsa_pmeth.o dsa_prn.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= dsa.h
|
||||
HEADER= dsa_locl.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
dsa_ameth.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
dsa_ameth.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
dsa_ameth.o: ../../include/openssl/buffer.h ../../include/openssl/cms.h
|
||||
dsa_ameth.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h
|
||||
dsa_ameth.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
dsa_ameth.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
dsa_ameth.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
dsa_ameth.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
dsa_ameth.o: ../../include/openssl/objects.h
|
||||
dsa_ameth.o: ../../include/openssl/opensslconf.h
|
||||
dsa_ameth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
dsa_ameth.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
dsa_ameth.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
dsa_ameth.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
dsa_ameth.o: ../../include/openssl/x509_vfy.h ../asn1/asn1_locl.h ../cryptlib.h
|
||||
dsa_ameth.o: dsa_ameth.c
|
||||
dsa_asn1.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
dsa_asn1.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
dsa_asn1.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dsa_asn1.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
||||
dsa_asn1.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dsa_asn1.o: ../../include/openssl/opensslconf.h
|
||||
dsa_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
dsa_asn1.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
dsa_asn1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
dsa_asn1.o: ../cryptlib.h dsa_asn1.c
|
||||
dsa_depr.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
dsa_depr.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
dsa_depr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dsa_depr.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
||||
dsa_depr.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
dsa_depr.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
dsa_depr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
dsa_depr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
dsa_depr.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
dsa_depr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
dsa_depr.o: ../../include/openssl/symhacks.h ../cryptlib.h dsa_depr.c
|
||||
dsa_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
|
||||
dsa_err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
||||
dsa_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dsa_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
dsa_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
dsa_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
dsa_err.o: dsa_err.c
|
||||
dsa_gen.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
dsa_gen.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
dsa_gen.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dsa_gen.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
||||
dsa_gen.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
dsa_gen.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
dsa_gen.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
dsa_gen.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
dsa_gen.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
dsa_gen.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
dsa_gen.o: ../../include/openssl/symhacks.h ../cryptlib.h dsa_gen.c dsa_locl.h
|
||||
dsa_key.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
dsa_key.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dsa_key.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
||||
dsa_key.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dsa_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
dsa_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
|
||||
dsa_key.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
dsa_key.o: ../../include/openssl/symhacks.h ../cryptlib.h dsa_key.c
|
||||
dsa_lib.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
dsa_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
dsa_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dsa_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
dsa_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
dsa_lib.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
dsa_lib.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
||||
dsa_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
dsa_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
dsa_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
dsa_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
dsa_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
dsa_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
dsa_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
dsa_lib.o: ../cryptlib.h dsa_lib.c
|
||||
dsa_ossl.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
dsa_ossl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
dsa_ossl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dsa_ossl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
||||
dsa_ossl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dsa_ossl.o: ../../include/openssl/opensslconf.h
|
||||
dsa_ossl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
dsa_ossl.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
dsa_ossl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
dsa_ossl.o: ../../include/openssl/symhacks.h ../cryptlib.h dsa_ossl.c
|
||||
dsa_pmeth.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
dsa_pmeth.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
dsa_pmeth.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
dsa_pmeth.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h
|
||||
dsa_pmeth.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
dsa_pmeth.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
dsa_pmeth.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
dsa_pmeth.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
dsa_pmeth.o: ../../include/openssl/objects.h
|
||||
dsa_pmeth.o: ../../include/openssl/opensslconf.h
|
||||
dsa_pmeth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
dsa_pmeth.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
dsa_pmeth.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
dsa_pmeth.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
dsa_pmeth.o: ../../include/openssl/x509_vfy.h ../cryptlib.h ../evp/evp_locl.h
|
||||
dsa_pmeth.o: dsa_locl.h dsa_pmeth.c
|
||||
dsa_prn.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
dsa_prn.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
dsa_prn.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h
|
||||
dsa_prn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
dsa_prn.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
dsa_prn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
dsa_prn.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
dsa_prn.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
dsa_prn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
dsa_prn.o: ../cryptlib.h dsa_prn.c
|
||||
dsa_sign.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
dsa_sign.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dsa_sign.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
||||
dsa_sign.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dsa_sign.o: ../../include/openssl/opensslconf.h
|
||||
dsa_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
dsa_sign.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
dsa_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
dsa_sign.o: ../cryptlib.h dsa_sign.c
|
||||
dsa_vrf.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
dsa_vrf.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dsa_vrf.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
||||
dsa_vrf.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dsa_vrf.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
dsa_vrf.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
dsa_vrf.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
dsa_vrf.o: ../cryptlib.h dsa_vrf.c
|
|
@ -1,150 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/dso/Makefile
|
||||
#
|
||||
|
||||
DIR= dso
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= dso_dl.c dso_dlfcn.c dso_err.c dso_lib.c dso_null.c \
|
||||
dso_openssl.c dso_win32.c dso_vms.c dso_beos.c
|
||||
LIBOBJ= dso_dl.o dso_dlfcn.o dso_err.o dso_lib.o dso_null.o \
|
||||
dso_openssl.o dso_win32.o dso_vms.o dso_beos.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= dso.h
|
||||
HEADER= $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
dso_beos.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
dso_beos.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dso_beos.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
|
||||
dso_beos.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dso_beos.o: ../../include/openssl/opensslconf.h
|
||||
dso_beos.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
dso_beos.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
dso_beos.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_beos.c
|
||||
dso_dl.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
dso_dl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dso_dl.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
|
||||
dso_dl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dso_dl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
dso_dl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
dso_dl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
dso_dl.o: ../cryptlib.h dso_dl.c
|
||||
dso_dlfcn.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
dso_dlfcn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dso_dlfcn.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
|
||||
dso_dlfcn.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dso_dlfcn.o: ../../include/openssl/opensslconf.h
|
||||
dso_dlfcn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
dso_dlfcn.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
dso_dlfcn.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_dlfcn.c
|
||||
dso_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
|
||||
dso_err.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
|
||||
dso_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dso_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
dso_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
dso_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
dso_err.o: dso_err.c
|
||||
dso_lib.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
dso_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dso_lib.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
|
||||
dso_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dso_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
dso_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
dso_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
dso_lib.o: ../cryptlib.h dso_lib.c
|
||||
dso_null.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
dso_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dso_null.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
|
||||
dso_null.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dso_null.o: ../../include/openssl/opensslconf.h
|
||||
dso_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
dso_null.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
dso_null.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_null.c
|
||||
dso_openssl.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
dso_openssl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dso_openssl.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
|
||||
dso_openssl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dso_openssl.o: ../../include/openssl/opensslconf.h
|
||||
dso_openssl.o: ../../include/openssl/opensslv.h
|
||||
dso_openssl.o: ../../include/openssl/ossl_typ.h
|
||||
dso_openssl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
dso_openssl.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_openssl.c
|
||||
dso_vms.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
dso_vms.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dso_vms.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
|
||||
dso_vms.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dso_vms.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
dso_vms.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
dso_vms.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
dso_vms.o: ../cryptlib.h dso_vms.c
|
||||
dso_win32.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
dso_win32.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dso_win32.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
|
||||
dso_win32.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dso_win32.o: ../../include/openssl/opensslconf.h
|
||||
dso_win32.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
dso_win32.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
dso_win32.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_win32.c
|
|
@ -1,150 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/dso/Makefile
|
||||
#
|
||||
|
||||
DIR= dso
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= dso_dl.c dso_dlfcn.c dso_err.c dso_lib.c dso_null.c \
|
||||
dso_openssl.c dso_win32.c dso_vms.c dso_beos.c
|
||||
LIBOBJ= dso_dl.o dso_dlfcn.o dso_err.o dso_lib.o dso_null.o \
|
||||
dso_openssl.o dso_win32.o dso_vms.o dso_beos.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= dso.h
|
||||
HEADER= $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
dso_beos.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
dso_beos.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dso_beos.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
|
||||
dso_beos.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dso_beos.o: ../../include/openssl/opensslconf.h
|
||||
dso_beos.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
dso_beos.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
dso_beos.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_beos.c
|
||||
dso_dl.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
dso_dl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dso_dl.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
|
||||
dso_dl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dso_dl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
dso_dl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
dso_dl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
dso_dl.o: ../cryptlib.h dso_dl.c
|
||||
dso_dlfcn.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
dso_dlfcn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dso_dlfcn.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
|
||||
dso_dlfcn.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dso_dlfcn.o: ../../include/openssl/opensslconf.h
|
||||
dso_dlfcn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
dso_dlfcn.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
dso_dlfcn.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_dlfcn.c
|
||||
dso_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
|
||||
dso_err.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
|
||||
dso_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dso_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
dso_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
dso_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
dso_err.o: dso_err.c
|
||||
dso_lib.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
dso_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dso_lib.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
|
||||
dso_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dso_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
dso_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
dso_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
dso_lib.o: ../cryptlib.h dso_lib.c
|
||||
dso_null.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
dso_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dso_null.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
|
||||
dso_null.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dso_null.o: ../../include/openssl/opensslconf.h
|
||||
dso_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
dso_null.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
dso_null.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_null.c
|
||||
dso_openssl.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
dso_openssl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dso_openssl.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
|
||||
dso_openssl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dso_openssl.o: ../../include/openssl/opensslconf.h
|
||||
dso_openssl.o: ../../include/openssl/opensslv.h
|
||||
dso_openssl.o: ../../include/openssl/ossl_typ.h
|
||||
dso_openssl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
dso_openssl.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_openssl.c
|
||||
dso_vms.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
dso_vms.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dso_vms.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
|
||||
dso_vms.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dso_vms.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
dso_vms.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
dso_vms.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
dso_vms.o: ../cryptlib.h dso_vms.c
|
||||
dso_win32.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
dso_win32.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
dso_win32.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
|
||||
dso_win32.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
dso_win32.o: ../../include/openssl/opensslconf.h
|
||||
dso_win32.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
dso_win32.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
dso_win32.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_win32.c
|
|
@ -1,263 +0,0 @@
|
|||
#
|
||||
# crypto/ec/Makefile
|
||||
#
|
||||
|
||||
DIR= ec
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=ectest.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= ec_lib.c ecp_smpl.c ecp_mont.c ecp_nist.c ec_cvt.c ec_mult.c\
|
||||
ec_err.c ec_curve.c ec_check.c ec_print.c ec_asn1.c ec_key.c\
|
||||
ec2_smpl.c ec2_mult.c ec_ameth.c ec_pmeth.c eck_prn.c \
|
||||
ecp_nistp224.c ecp_nistp256.c ecp_nistp521.c ecp_nistputil.c \
|
||||
ecp_oct.c ec2_oct.c ec_oct.c
|
||||
|
||||
LIBOBJ= ec_lib.o ecp_smpl.o ecp_mont.o ecp_nist.o ec_cvt.o ec_mult.o\
|
||||
ec_err.o ec_curve.o ec_check.o ec_print.o ec_asn1.o ec_key.o\
|
||||
ec2_smpl.o ec2_mult.o ec_ameth.o ec_pmeth.o eck_prn.o \
|
||||
ecp_nistp224.o ecp_nistp256.o ecp_nistp521.o ecp_nistputil.o \
|
||||
ecp_oct.o ec2_oct.o ec_oct.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= ec.h
|
||||
HEADER= ec_lcl.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
ec2_mult.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ec2_mult.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
|
||||
ec2_mult.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ec2_mult.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
ec2_mult.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h
|
||||
ec2_mult.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ec2_mult.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ec2_mult.o: ../../include/openssl/symhacks.h ec2_mult.c ec_lcl.h
|
||||
ec2_oct.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ec2_oct.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
|
||||
ec2_oct.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ec2_oct.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
ec2_oct.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h
|
||||
ec2_oct.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ec2_oct.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ec2_oct.o: ../../include/openssl/symhacks.h ec2_oct.c ec_lcl.h
|
||||
ec2_smpl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ec2_smpl.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
|
||||
ec2_smpl.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ec2_smpl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
ec2_smpl.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h
|
||||
ec2_smpl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ec2_smpl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ec2_smpl.o: ../../include/openssl/symhacks.h ec2_smpl.c ec_lcl.h
|
||||
ec_ameth.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
ec_ameth.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
ec_ameth.o: ../../include/openssl/buffer.h ../../include/openssl/cms.h
|
||||
ec_ameth.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
ec_ameth.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
ec_ameth.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
ec_ameth.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
ec_ameth.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
ec_ameth.o: ../../include/openssl/opensslconf.h
|
||||
ec_ameth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ec_ameth.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
ec_ameth.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
ec_ameth.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
ec_ameth.o: ../../include/openssl/x509_vfy.h ../asn1/asn1_locl.h ../cryptlib.h
|
||||
ec_ameth.o: ec_ameth.c
|
||||
ec_asn1.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
|
||||
ec_asn1.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
ec_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
ec_asn1.o: ../../include/openssl/ec.h ../../include/openssl/err.h
|
||||
ec_asn1.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
ec_asn1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
ec_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ec_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ec_asn1.o: ../../include/openssl/symhacks.h ec_asn1.c ec_lcl.h
|
||||
ec_check.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ec_check.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
|
||||
ec_check.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ec_check.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
ec_check.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h
|
||||
ec_check.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ec_check.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ec_check.o: ../../include/openssl/symhacks.h ec_check.c ec_lcl.h
|
||||
ec_curve.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ec_curve.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
|
||||
ec_curve.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ec_curve.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
ec_curve.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h
|
||||
ec_curve.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ec_curve.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ec_curve.o: ../../include/openssl/symhacks.h ec_curve.c ec_lcl.h
|
||||
ec_cvt.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ec_cvt.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
|
||||
ec_cvt.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ec_cvt.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
ec_cvt.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h
|
||||
ec_cvt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ec_cvt.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ec_cvt.o: ../../include/openssl/symhacks.h ec_cvt.c ec_lcl.h
|
||||
ec_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ec_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
ec_err.o: ../../include/openssl/ec.h ../../include/openssl/err.h
|
||||
ec_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
ec_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ec_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ec_err.o: ../../include/openssl/symhacks.h ec_err.c
|
||||
ec_key.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ec_key.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
|
||||
ec_key.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ec_key.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
ec_key.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h
|
||||
ec_key.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ec_key.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ec_key.o: ../../include/openssl/symhacks.h ec_key.c ec_lcl.h
|
||||
ec_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ec_lib.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
|
||||
ec_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ec_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
ec_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h
|
||||
ec_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ec_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ec_lib.o: ../../include/openssl/symhacks.h ec_lcl.h ec_lib.c
|
||||
ec_mult.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ec_mult.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
|
||||
ec_mult.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ec_mult.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
ec_mult.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h
|
||||
ec_mult.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ec_mult.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ec_mult.o: ../../include/openssl/symhacks.h ec_lcl.h ec_mult.c
|
||||
ec_oct.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ec_oct.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
|
||||
ec_oct.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ec_oct.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
ec_oct.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h
|
||||
ec_oct.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ec_oct.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ec_oct.o: ../../include/openssl/symhacks.h ec_lcl.h ec_oct.c
|
||||
ec_pmeth.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
ec_pmeth.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
ec_pmeth.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
ec_pmeth.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ec_pmeth.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
ec_pmeth.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
ec_pmeth.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
ec_pmeth.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
ec_pmeth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ec_pmeth.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
ec_pmeth.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
ec_pmeth.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
ec_pmeth.o: ../../include/openssl/x509_vfy.h ../cryptlib.h ../evp/evp_locl.h
|
||||
ec_pmeth.o: ec_pmeth.c
|
||||
ec_print.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ec_print.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
|
||||
ec_print.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ec_print.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h
|
||||
ec_print.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ec_print.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ec_print.o: ../../include/openssl/symhacks.h ec_lcl.h ec_print.c
|
||||
eck_prn.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
eck_prn.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
eck_prn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
eck_prn.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
eck_prn.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
eck_prn.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
eck_prn.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
eck_prn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
eck_prn.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
eck_prn.o: ../../include/openssl/symhacks.h ../cryptlib.h eck_prn.c
|
||||
ecp_mont.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ecp_mont.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
|
||||
ecp_mont.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ecp_mont.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
ecp_mont.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h
|
||||
ecp_mont.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ecp_mont.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ecp_mont.o: ../../include/openssl/symhacks.h ec_lcl.h ecp_mont.c
|
||||
ecp_nist.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ecp_nist.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
|
||||
ecp_nist.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ecp_nist.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
ecp_nist.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h
|
||||
ecp_nist.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ecp_nist.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ecp_nist.o: ../../include/openssl/symhacks.h ec_lcl.h ecp_nist.c
|
||||
ecp_nistp224.o: ../../include/openssl/opensslconf.h ecp_nistp224.c
|
||||
ecp_nistp256.o: ../../include/openssl/opensslconf.h ecp_nistp256.c
|
||||
ecp_nistp521.o: ../../include/openssl/opensslconf.h ecp_nistp521.c
|
||||
ecp_nistputil.o: ../../include/openssl/opensslconf.h ecp_nistputil.c
|
||||
ecp_oct.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ecp_oct.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
|
||||
ecp_oct.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ecp_oct.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
ecp_oct.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h
|
||||
ecp_oct.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ecp_oct.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ecp_oct.o: ../../include/openssl/symhacks.h ec_lcl.h ecp_oct.c
|
||||
ecp_smpl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ecp_smpl.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
|
||||
ecp_smpl.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ecp_smpl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
ecp_smpl.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h
|
||||
ecp_smpl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ecp_smpl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ecp_smpl.o: ../../include/openssl/symhacks.h ec_lcl.h ecp_smpl.c
|
|
@ -1,263 +0,0 @@
|
|||
#
|
||||
# crypto/ec/Makefile
|
||||
#
|
||||
|
||||
DIR= ec
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=ectest.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= ec_lib.c ecp_smpl.c ecp_mont.c ecp_nist.c ec_cvt.c ec_mult.c\
|
||||
ec_err.c ec_curve.c ec_check.c ec_print.c ec_asn1.c ec_key.c\
|
||||
ec2_smpl.c ec2_mult.c ec_ameth.c ec_pmeth.c eck_prn.c \
|
||||
ecp_nistp224.c ecp_nistp256.c ecp_nistp521.c ecp_nistputil.c \
|
||||
ecp_oct.c ec2_oct.c ec_oct.c
|
||||
|
||||
LIBOBJ= ec_lib.o ecp_smpl.o ecp_mont.o ecp_nist.o ec_cvt.o ec_mult.o\
|
||||
ec_err.o ec_curve.o ec_check.o ec_print.o ec_asn1.o ec_key.o\
|
||||
ec2_smpl.o ec2_mult.o ec_ameth.o ec_pmeth.o eck_prn.o \
|
||||
ecp_nistp224.o ecp_nistp256.o ecp_nistp521.o ecp_nistputil.o \
|
||||
ecp_oct.o ec2_oct.o ec_oct.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= ec.h
|
||||
HEADER= ec_lcl.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
ec2_mult.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ec2_mult.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
|
||||
ec2_mult.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ec2_mult.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
ec2_mult.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h
|
||||
ec2_mult.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ec2_mult.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ec2_mult.o: ../../include/openssl/symhacks.h ec2_mult.c ec_lcl.h
|
||||
ec2_oct.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ec2_oct.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
|
||||
ec2_oct.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ec2_oct.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
ec2_oct.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h
|
||||
ec2_oct.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ec2_oct.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ec2_oct.o: ../../include/openssl/symhacks.h ec2_oct.c ec_lcl.h
|
||||
ec2_smpl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ec2_smpl.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
|
||||
ec2_smpl.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ec2_smpl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
ec2_smpl.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h
|
||||
ec2_smpl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ec2_smpl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ec2_smpl.o: ../../include/openssl/symhacks.h ec2_smpl.c ec_lcl.h
|
||||
ec_ameth.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
ec_ameth.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
ec_ameth.o: ../../include/openssl/buffer.h ../../include/openssl/cms.h
|
||||
ec_ameth.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
ec_ameth.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
ec_ameth.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
ec_ameth.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
ec_ameth.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
ec_ameth.o: ../../include/openssl/opensslconf.h
|
||||
ec_ameth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ec_ameth.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
ec_ameth.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
ec_ameth.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
ec_ameth.o: ../../include/openssl/x509_vfy.h ../asn1/asn1_locl.h ../cryptlib.h
|
||||
ec_ameth.o: ec_ameth.c
|
||||
ec_asn1.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
|
||||
ec_asn1.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
ec_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
ec_asn1.o: ../../include/openssl/ec.h ../../include/openssl/err.h
|
||||
ec_asn1.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
ec_asn1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
ec_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ec_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ec_asn1.o: ../../include/openssl/symhacks.h ec_asn1.c ec_lcl.h
|
||||
ec_check.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ec_check.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
|
||||
ec_check.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ec_check.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
ec_check.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h
|
||||
ec_check.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ec_check.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ec_check.o: ../../include/openssl/symhacks.h ec_check.c ec_lcl.h
|
||||
ec_curve.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ec_curve.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
|
||||
ec_curve.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ec_curve.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
ec_curve.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h
|
||||
ec_curve.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ec_curve.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ec_curve.o: ../../include/openssl/symhacks.h ec_curve.c ec_lcl.h
|
||||
ec_cvt.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ec_cvt.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
|
||||
ec_cvt.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ec_cvt.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
ec_cvt.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h
|
||||
ec_cvt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ec_cvt.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ec_cvt.o: ../../include/openssl/symhacks.h ec_cvt.c ec_lcl.h
|
||||
ec_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ec_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
ec_err.o: ../../include/openssl/ec.h ../../include/openssl/err.h
|
||||
ec_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
ec_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ec_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ec_err.o: ../../include/openssl/symhacks.h ec_err.c
|
||||
ec_key.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ec_key.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
|
||||
ec_key.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ec_key.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
ec_key.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h
|
||||
ec_key.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ec_key.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ec_key.o: ../../include/openssl/symhacks.h ec_key.c ec_lcl.h
|
||||
ec_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ec_lib.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
|
||||
ec_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ec_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
ec_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h
|
||||
ec_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ec_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ec_lib.o: ../../include/openssl/symhacks.h ec_lcl.h ec_lib.c
|
||||
ec_mult.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ec_mult.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
|
||||
ec_mult.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ec_mult.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
ec_mult.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h
|
||||
ec_mult.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ec_mult.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ec_mult.o: ../../include/openssl/symhacks.h ec_lcl.h ec_mult.c
|
||||
ec_oct.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ec_oct.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
|
||||
ec_oct.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ec_oct.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
ec_oct.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h
|
||||
ec_oct.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ec_oct.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ec_oct.o: ../../include/openssl/symhacks.h ec_lcl.h ec_oct.c
|
||||
ec_pmeth.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
ec_pmeth.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
ec_pmeth.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
ec_pmeth.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ec_pmeth.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
ec_pmeth.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
ec_pmeth.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
ec_pmeth.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
ec_pmeth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ec_pmeth.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
ec_pmeth.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
ec_pmeth.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
ec_pmeth.o: ../../include/openssl/x509_vfy.h ../cryptlib.h ../evp/evp_locl.h
|
||||
ec_pmeth.o: ec_pmeth.c
|
||||
ec_print.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ec_print.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
|
||||
ec_print.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ec_print.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h
|
||||
ec_print.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ec_print.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ec_print.o: ../../include/openssl/symhacks.h ec_lcl.h ec_print.c
|
||||
eck_prn.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
eck_prn.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
eck_prn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
eck_prn.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
eck_prn.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
eck_prn.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
eck_prn.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
eck_prn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
eck_prn.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
eck_prn.o: ../../include/openssl/symhacks.h ../cryptlib.h eck_prn.c
|
||||
ecp_mont.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ecp_mont.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
|
||||
ecp_mont.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ecp_mont.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
ecp_mont.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h
|
||||
ecp_mont.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ecp_mont.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ecp_mont.o: ../../include/openssl/symhacks.h ec_lcl.h ecp_mont.c
|
||||
ecp_nist.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ecp_nist.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
|
||||
ecp_nist.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ecp_nist.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
ecp_nist.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h
|
||||
ecp_nist.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ecp_nist.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ecp_nist.o: ../../include/openssl/symhacks.h ec_lcl.h ecp_nist.c
|
||||
ecp_nistp224.o: ../../include/openssl/opensslconf.h ecp_nistp224.c
|
||||
ecp_nistp256.o: ../../include/openssl/opensslconf.h ecp_nistp256.c
|
||||
ecp_nistp521.o: ../../include/openssl/opensslconf.h ecp_nistp521.c
|
||||
ecp_nistputil.o: ../../include/openssl/opensslconf.h ecp_nistputil.c
|
||||
ecp_oct.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ecp_oct.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
|
||||
ecp_oct.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ecp_oct.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
ecp_oct.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h
|
||||
ecp_oct.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ecp_oct.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ecp_oct.o: ../../include/openssl/symhacks.h ec_lcl.h ecp_oct.c
|
||||
ecp_smpl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ecp_smpl.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
|
||||
ecp_smpl.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ecp_smpl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
ecp_smpl.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h
|
||||
ecp_smpl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ecp_smpl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ecp_smpl.o: ../../include/openssl/symhacks.h ec_lcl.h ecp_smpl.c
|
|
@ -1,116 +0,0 @@
|
|||
#
|
||||
# crypto/ecdh/Makefile
|
||||
#
|
||||
|
||||
DIR= ecdh
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g -Wall
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=ecdhtest.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= ech_lib.c ech_ossl.c ech_key.c ech_err.c
|
||||
|
||||
LIBOBJ= ech_lib.o ech_ossl.o ech_key.o ech_err.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= ecdh.h
|
||||
HEADER= ech_locl.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
ech_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ech_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
ech_err.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
ech_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
ech_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
ech_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
ech_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
ech_err.o: ech_err.c
|
||||
ech_key.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ech_key.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
ech_key.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
ech_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
ech_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
ech_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
ech_key.o: ech_key.c ech_locl.h
|
||||
ech_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ech_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
ech_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ech_lib.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
ech_lib.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
||||
ech_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
ech_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
ech_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
ech_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
ech_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
ech_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
ech_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
ech_lib.o: ech_lib.c ech_locl.h
|
||||
ech_ossl.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
ech_ossl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
ech_ossl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
ech_ossl.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ech_ossl.o: ../../include/openssl/ecdh.h ../../include/openssl/err.h
|
||||
ech_ossl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
ech_ossl.o: ../../include/openssl/opensslconf.h
|
||||
ech_ossl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ech_ossl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
ech_ossl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
ech_ossl.o: ../cryptlib.h ech_locl.h ech_ossl.c
|
|
@ -1,116 +0,0 @@
|
|||
#
|
||||
# crypto/ecdh/Makefile
|
||||
#
|
||||
|
||||
DIR= ecdh
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g -Wall
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=ecdhtest.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= ech_lib.c ech_ossl.c ech_key.c ech_err.c
|
||||
|
||||
LIBOBJ= ech_lib.o ech_ossl.o ech_key.o ech_err.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= ecdh.h
|
||||
HEADER= ech_locl.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
ech_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ech_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
ech_err.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
ech_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
ech_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
ech_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
ech_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
ech_err.o: ech_err.c
|
||||
ech_key.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ech_key.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
ech_key.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
ech_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
ech_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
ech_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
ech_key.o: ech_key.c ech_locl.h
|
||||
ech_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ech_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
ech_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ech_lib.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
ech_lib.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
||||
ech_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
ech_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
ech_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
ech_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
ech_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
ech_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
ech_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
ech_lib.o: ech_lib.c ech_locl.h
|
||||
ech_ossl.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
ech_ossl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
ech_ossl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
ech_ossl.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ech_ossl.o: ../../include/openssl/ecdh.h ../../include/openssl/err.h
|
||||
ech_ossl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
ech_ossl.o: ../../include/openssl/opensslconf.h
|
||||
ech_ossl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ech_ossl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
ech_ossl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
ech_ossl.o: ../cryptlib.h ech_locl.h ech_ossl.c
|
|
@ -1,140 +0,0 @@
|
|||
#
|
||||
# crypto/ecdsa/Makefile
|
||||
#
|
||||
|
||||
DIR= ecdsa
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g -Wall
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=ecdsatest.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= ecs_lib.c ecs_asn1.c ecs_ossl.c ecs_sign.c ecs_vrf.c ecs_err.c
|
||||
|
||||
LIBOBJ= ecs_lib.o ecs_asn1.o ecs_ossl.o ecs_sign.o ecs_vrf.o ecs_err.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= ecdsa.h
|
||||
HEADER= ecs_locl.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
ecs_asn1.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
|
||||
ecs_asn1.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
|
||||
ecs_asn1.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ecs_asn1.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
ecs_asn1.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
ecs_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ecs_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ecs_asn1.o: ../../include/openssl/symhacks.h ecs_asn1.c ecs_locl.h
|
||||
ecs_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ecs_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
ecs_err.o: ../../include/openssl/ec.h ../../include/openssl/ecdsa.h
|
||||
ecs_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
ecs_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
ecs_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
ecs_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
ecs_err.o: ecs_err.c
|
||||
ecs_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ecs_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
ecs_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
ecs_lib.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
ecs_lib.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
ecs_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
ecs_lib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
ecs_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
ecs_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ecs_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
ecs_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
ecs_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
ecs_lib.o: ../../include/openssl/x509_vfy.h ecs_lib.c ecs_locl.h
|
||||
ecs_ossl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ecs_ossl.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
|
||||
ecs_ossl.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ecs_ossl.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
ecs_ossl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
ecs_ossl.o: ../../include/openssl/opensslconf.h
|
||||
ecs_ossl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ecs_ossl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ecs_ossl.o: ../../include/openssl/symhacks.h ecs_locl.h ecs_ossl.c
|
||||
ecs_sign.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ecs_sign.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
ecs_sign.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ecs_sign.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
ecs_sign.o: ../../include/openssl/engine.h ../../include/openssl/evp.h
|
||||
ecs_sign.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
ecs_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
ecs_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ecs_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
ecs_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
ecs_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
ecs_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
ecs_sign.o: ecs_locl.h ecs_sign.c
|
||||
ecs_vrf.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ecs_vrf.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
ecs_vrf.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ecs_vrf.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
ecs_vrf.o: ../../include/openssl/engine.h ../../include/openssl/evp.h
|
||||
ecs_vrf.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
ecs_vrf.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
ecs_vrf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ecs_vrf.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
ecs_vrf.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
ecs_vrf.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
ecs_vrf.o: ../../include/openssl/x509_vfy.h ecs_locl.h ecs_vrf.c
|
|
@ -1,140 +0,0 @@
|
|||
#
|
||||
# crypto/ecdsa/Makefile
|
||||
#
|
||||
|
||||
DIR= ecdsa
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g -Wall
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=ecdsatest.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= ecs_lib.c ecs_asn1.c ecs_ossl.c ecs_sign.c ecs_vrf.c ecs_err.c
|
||||
|
||||
LIBOBJ= ecs_lib.o ecs_asn1.o ecs_ossl.o ecs_sign.o ecs_vrf.o ecs_err.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= ecdsa.h
|
||||
HEADER= ecs_locl.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
ecs_asn1.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
|
||||
ecs_asn1.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
|
||||
ecs_asn1.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ecs_asn1.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
ecs_asn1.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
ecs_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ecs_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ecs_asn1.o: ../../include/openssl/symhacks.h ecs_asn1.c ecs_locl.h
|
||||
ecs_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ecs_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
ecs_err.o: ../../include/openssl/ec.h ../../include/openssl/ecdsa.h
|
||||
ecs_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
ecs_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
ecs_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
ecs_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
ecs_err.o: ecs_err.c
|
||||
ecs_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ecs_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
ecs_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
ecs_lib.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
ecs_lib.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
ecs_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
ecs_lib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
ecs_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
ecs_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ecs_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
ecs_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
ecs_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
ecs_lib.o: ../../include/openssl/x509_vfy.h ecs_lib.c ecs_locl.h
|
||||
ecs_ossl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ecs_ossl.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
|
||||
ecs_ossl.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ecs_ossl.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
ecs_ossl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
ecs_ossl.o: ../../include/openssl/opensslconf.h
|
||||
ecs_ossl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ecs_ossl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ecs_ossl.o: ../../include/openssl/symhacks.h ecs_locl.h ecs_ossl.c
|
||||
ecs_sign.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ecs_sign.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
ecs_sign.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ecs_sign.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
ecs_sign.o: ../../include/openssl/engine.h ../../include/openssl/evp.h
|
||||
ecs_sign.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
ecs_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
ecs_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ecs_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
ecs_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
ecs_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
ecs_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
ecs_sign.o: ecs_locl.h ecs_sign.c
|
||||
ecs_vrf.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ecs_vrf.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
ecs_vrf.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ecs_vrf.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
ecs_vrf.o: ../../include/openssl/engine.h ../../include/openssl/evp.h
|
||||
ecs_vrf.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
ecs_vrf.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
ecs_vrf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ecs_vrf.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
ecs_vrf.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
ecs_vrf.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
ecs_vrf.o: ../../include/openssl/x509_vfy.h ecs_locl.h ecs_vrf.c
|
|
@ -1,447 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/engine/Makefile
|
||||
#
|
||||
|
||||
DIR= engine
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST= enginetest.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= eng_err.c eng_lib.c eng_list.c eng_init.c eng_ctrl.c \
|
||||
eng_table.c eng_pkey.c eng_fat.c eng_all.c \
|
||||
tb_rsa.c tb_dsa.c tb_ecdsa.c tb_dh.c tb_ecdh.c tb_rand.c tb_store.c \
|
||||
tb_cipher.c tb_digest.c tb_pkmeth.c tb_asnmth.c \
|
||||
eng_openssl.c eng_cnf.c eng_dyn.c eng_cryptodev.c \
|
||||
eng_rsax.c eng_rdrand.c
|
||||
LIBOBJ= eng_err.o eng_lib.o eng_list.o eng_init.o eng_ctrl.o \
|
||||
eng_table.o eng_pkey.o eng_fat.o eng_all.o \
|
||||
tb_rsa.o tb_dsa.o tb_ecdsa.o tb_dh.o tb_ecdh.o tb_rand.o tb_store.o \
|
||||
tb_cipher.o tb_digest.o tb_pkmeth.o tb_asnmth.o \
|
||||
eng_openssl.o eng_cnf.o eng_dyn.o eng_cryptodev.o \
|
||||
eng_rsax.o eng_rdrand.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= engine.h
|
||||
HEADER= $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
eng_all.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
eng_all.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
eng_all.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
eng_all.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
eng_all.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
eng_all.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
eng_all.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
eng_all.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
eng_all.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
eng_all.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
eng_all.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
eng_all.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
eng_all.o: ../../include/openssl/x509_vfy.h ../cryptlib.h eng_all.c eng_int.h
|
||||
eng_cnf.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
eng_cnf.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
eng_cnf.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
eng_cnf.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
eng_cnf.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
eng_cnf.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
||||
eng_cnf.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
eng_cnf.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
eng_cnf.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
eng_cnf.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
eng_cnf.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
eng_cnf.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
eng_cnf.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
eng_cnf.o: ../cryptlib.h eng_cnf.c eng_int.h
|
||||
eng_cryptodev.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
eng_cryptodev.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
eng_cryptodev.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
eng_cryptodev.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
eng_cryptodev.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
eng_cryptodev.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
eng_cryptodev.o: ../../include/openssl/obj_mac.h
|
||||
eng_cryptodev.o: ../../include/openssl/objects.h
|
||||
eng_cryptodev.o: ../../include/openssl/opensslconf.h
|
||||
eng_cryptodev.o: ../../include/openssl/opensslv.h
|
||||
eng_cryptodev.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
eng_cryptodev.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
eng_cryptodev.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
eng_cryptodev.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
eng_cryptodev.o: eng_cryptodev.c
|
||||
eng_ctrl.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
eng_ctrl.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
eng_ctrl.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
eng_ctrl.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
eng_ctrl.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
eng_ctrl.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
eng_ctrl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
eng_ctrl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
eng_ctrl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
eng_ctrl.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
eng_ctrl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
eng_ctrl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
eng_ctrl.o: ../../include/openssl/x509_vfy.h ../cryptlib.h eng_ctrl.c eng_int.h
|
||||
eng_dyn.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
eng_dyn.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
eng_dyn.o: ../../include/openssl/crypto.h ../../include/openssl/dso.h
|
||||
eng_dyn.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
eng_dyn.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
eng_dyn.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
||||
eng_dyn.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
eng_dyn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
eng_dyn.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
eng_dyn.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
eng_dyn.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
eng_dyn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
eng_dyn.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
eng_dyn.o: ../cryptlib.h eng_dyn.c eng_int.h
|
||||
eng_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
eng_err.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
eng_err.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
eng_err.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
eng_err.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
||||
eng_err.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
eng_err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
eng_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
eng_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
eng_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
eng_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
eng_err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
eng_err.o: eng_err.c
|
||||
eng_fat.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
eng_fat.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
eng_fat.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
eng_fat.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
eng_fat.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
eng_fat.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
||||
eng_fat.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
eng_fat.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
eng_fat.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
eng_fat.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
eng_fat.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
eng_fat.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
eng_fat.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
eng_fat.o: ../cryptlib.h eng_fat.c eng_int.h
|
||||
eng_init.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
eng_init.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
eng_init.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
eng_init.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
eng_init.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
eng_init.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
eng_init.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
eng_init.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
eng_init.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
eng_init.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
eng_init.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
eng_init.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
eng_init.o: ../../include/openssl/x509_vfy.h ../cryptlib.h eng_init.c eng_int.h
|
||||
eng_lib.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
eng_lib.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
eng_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
eng_lib.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
eng_lib.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
eng_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
eng_lib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
eng_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
eng_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
eng_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
eng_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
eng_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
eng_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
eng_lib.o: ../cryptlib.h eng_int.h eng_lib.c
|
||||
eng_list.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
eng_list.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
eng_list.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
eng_list.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
eng_list.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
eng_list.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
eng_list.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
eng_list.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
eng_list.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
eng_list.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
eng_list.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
eng_list.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
eng_list.o: ../../include/openssl/x509_vfy.h ../cryptlib.h eng_int.h eng_list.c
|
||||
eng_openssl.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
eng_openssl.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
eng_openssl.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
|
||||
eng_openssl.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h
|
||||
eng_openssl.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
eng_openssl.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
eng_openssl.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
||||
eng_openssl.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
eng_openssl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
eng_openssl.o: ../../include/openssl/opensslconf.h
|
||||
eng_openssl.o: ../../include/openssl/opensslv.h
|
||||
eng_openssl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h
|
||||
eng_openssl.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h
|
||||
eng_openssl.o: ../../include/openssl/rand.h ../../include/openssl/rc4.h
|
||||
eng_openssl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
eng_openssl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
eng_openssl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
eng_openssl.o: ../../include/openssl/x509_vfy.h ../cryptlib.h eng_openssl.c
|
||||
eng_pkey.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
eng_pkey.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
eng_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
eng_pkey.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
eng_pkey.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
eng_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
eng_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
eng_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
eng_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
eng_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
eng_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
eng_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
eng_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h eng_int.h eng_pkey.c
|
||||
eng_rdrand.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
eng_rdrand.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
eng_rdrand.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
eng_rdrand.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
eng_rdrand.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
||||
eng_rdrand.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
eng_rdrand.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
eng_rdrand.o: ../../include/openssl/opensslconf.h
|
||||
eng_rdrand.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
eng_rdrand.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
eng_rdrand.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
eng_rdrand.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
eng_rdrand.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
eng_rdrand.o: eng_rdrand.c
|
||||
eng_rsax.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
eng_rsax.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
eng_rsax.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
eng_rsax.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
eng_rsax.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
eng_rsax.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
eng_rsax.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
eng_rsax.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
eng_rsax.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
eng_rsax.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
|
||||
eng_rsax.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
eng_rsax.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
eng_rsax.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
eng_rsax.o: eng_rsax.c
|
||||
eng_table.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
eng_table.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
eng_table.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
eng_table.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
eng_table.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
eng_table.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
eng_table.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
eng_table.o: ../../include/openssl/objects.h
|
||||
eng_table.o: ../../include/openssl/opensslconf.h
|
||||
eng_table.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
eng_table.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
eng_table.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
eng_table.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
eng_table.o: ../../include/openssl/x509_vfy.h ../cryptlib.h eng_int.h
|
||||
eng_table.o: eng_table.c
|
||||
tb_asnmth.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
tb_asnmth.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
tb_asnmth.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
tb_asnmth.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
tb_asnmth.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
tb_asnmth.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
tb_asnmth.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
tb_asnmth.o: ../../include/openssl/objects.h
|
||||
tb_asnmth.o: ../../include/openssl/opensslconf.h
|
||||
tb_asnmth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
tb_asnmth.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
tb_asnmth.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
tb_asnmth.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
tb_asnmth.o: ../../include/openssl/x509_vfy.h ../asn1/asn1_locl.h ../cryptlib.h
|
||||
tb_asnmth.o: eng_int.h tb_asnmth.c
|
||||
tb_cipher.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
tb_cipher.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
tb_cipher.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
tb_cipher.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
tb_cipher.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
tb_cipher.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
tb_cipher.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
tb_cipher.o: ../../include/openssl/objects.h
|
||||
tb_cipher.o: ../../include/openssl/opensslconf.h
|
||||
tb_cipher.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
tb_cipher.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
tb_cipher.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
tb_cipher.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
tb_cipher.o: ../../include/openssl/x509_vfy.h ../cryptlib.h eng_int.h
|
||||
tb_cipher.o: tb_cipher.c
|
||||
tb_dh.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
tb_dh.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
tb_dh.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
tb_dh.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
tb_dh.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
||||
tb_dh.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
tb_dh.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
tb_dh.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
tb_dh.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
tb_dh.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
tb_dh.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
tb_dh.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
tb_dh.o: ../cryptlib.h eng_int.h tb_dh.c
|
||||
tb_digest.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
tb_digest.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
tb_digest.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
tb_digest.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
tb_digest.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
tb_digest.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
tb_digest.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
tb_digest.o: ../../include/openssl/objects.h
|
||||
tb_digest.o: ../../include/openssl/opensslconf.h
|
||||
tb_digest.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
tb_digest.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
tb_digest.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
tb_digest.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
tb_digest.o: ../../include/openssl/x509_vfy.h ../cryptlib.h eng_int.h
|
||||
tb_digest.o: tb_digest.c
|
||||
tb_dsa.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
tb_dsa.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
tb_dsa.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
tb_dsa.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
tb_dsa.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
||||
tb_dsa.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
tb_dsa.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
tb_dsa.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
tb_dsa.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
tb_dsa.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
tb_dsa.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
tb_dsa.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
tb_dsa.o: ../cryptlib.h eng_int.h tb_dsa.c
|
||||
tb_ecdh.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
tb_ecdh.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
tb_ecdh.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
tb_ecdh.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
tb_ecdh.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
tb_ecdh.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
tb_ecdh.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
tb_ecdh.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
tb_ecdh.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
tb_ecdh.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
tb_ecdh.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
tb_ecdh.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
tb_ecdh.o: ../../include/openssl/x509_vfy.h ../cryptlib.h eng_int.h tb_ecdh.c
|
||||
tb_ecdsa.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
tb_ecdsa.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
tb_ecdsa.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
tb_ecdsa.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
tb_ecdsa.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
tb_ecdsa.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
tb_ecdsa.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
tb_ecdsa.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
tb_ecdsa.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
tb_ecdsa.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
tb_ecdsa.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
tb_ecdsa.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
tb_ecdsa.o: ../../include/openssl/x509_vfy.h ../cryptlib.h eng_int.h tb_ecdsa.c
|
||||
tb_pkmeth.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
tb_pkmeth.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
tb_pkmeth.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
tb_pkmeth.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
tb_pkmeth.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
tb_pkmeth.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
tb_pkmeth.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
tb_pkmeth.o: ../../include/openssl/objects.h
|
||||
tb_pkmeth.o: ../../include/openssl/opensslconf.h
|
||||
tb_pkmeth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
tb_pkmeth.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
tb_pkmeth.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
tb_pkmeth.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
tb_pkmeth.o: ../../include/openssl/x509_vfy.h ../cryptlib.h eng_int.h
|
||||
tb_pkmeth.o: tb_pkmeth.c
|
||||
tb_rand.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
tb_rand.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
tb_rand.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
tb_rand.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
tb_rand.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
tb_rand.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
tb_rand.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
tb_rand.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
tb_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
tb_rand.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
tb_rand.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
tb_rand.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
tb_rand.o: ../../include/openssl/x509_vfy.h ../cryptlib.h eng_int.h tb_rand.c
|
||||
tb_rsa.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
tb_rsa.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
tb_rsa.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
tb_rsa.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
tb_rsa.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
||||
tb_rsa.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
tb_rsa.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
tb_rsa.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
tb_rsa.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
tb_rsa.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
tb_rsa.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
tb_rsa.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
tb_rsa.o: ../cryptlib.h eng_int.h tb_rsa.c
|
||||
tb_store.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
tb_store.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
tb_store.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
tb_store.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
tb_store.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
tb_store.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
tb_store.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
tb_store.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
tb_store.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
tb_store.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
tb_store.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
tb_store.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
tb_store.o: ../../include/openssl/x509_vfy.h ../cryptlib.h eng_int.h tb_store.c
|
|
@ -1,447 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/engine/Makefile
|
||||
#
|
||||
|
||||
DIR= engine
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST= enginetest.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= eng_err.c eng_lib.c eng_list.c eng_init.c eng_ctrl.c \
|
||||
eng_table.c eng_pkey.c eng_fat.c eng_all.c \
|
||||
tb_rsa.c tb_dsa.c tb_ecdsa.c tb_dh.c tb_ecdh.c tb_rand.c tb_store.c \
|
||||
tb_cipher.c tb_digest.c tb_pkmeth.c tb_asnmth.c \
|
||||
eng_openssl.c eng_cnf.c eng_dyn.c eng_cryptodev.c \
|
||||
eng_rsax.c eng_rdrand.c
|
||||
LIBOBJ= eng_err.o eng_lib.o eng_list.o eng_init.o eng_ctrl.o \
|
||||
eng_table.o eng_pkey.o eng_fat.o eng_all.o \
|
||||
tb_rsa.o tb_dsa.o tb_ecdsa.o tb_dh.o tb_ecdh.o tb_rand.o tb_store.o \
|
||||
tb_cipher.o tb_digest.o tb_pkmeth.o tb_asnmth.o \
|
||||
eng_openssl.o eng_cnf.o eng_dyn.o eng_cryptodev.o \
|
||||
eng_rsax.o eng_rdrand.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= engine.h
|
||||
HEADER= $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
eng_all.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
eng_all.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
eng_all.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
eng_all.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
eng_all.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
eng_all.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
eng_all.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
eng_all.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
eng_all.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
eng_all.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
eng_all.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
eng_all.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
eng_all.o: ../../include/openssl/x509_vfy.h ../cryptlib.h eng_all.c eng_int.h
|
||||
eng_cnf.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
eng_cnf.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
eng_cnf.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
eng_cnf.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
eng_cnf.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
eng_cnf.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
||||
eng_cnf.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
eng_cnf.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
eng_cnf.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
eng_cnf.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
eng_cnf.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
eng_cnf.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
eng_cnf.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
eng_cnf.o: ../cryptlib.h eng_cnf.c eng_int.h
|
||||
eng_cryptodev.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
eng_cryptodev.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
eng_cryptodev.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
eng_cryptodev.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
eng_cryptodev.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
eng_cryptodev.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
eng_cryptodev.o: ../../include/openssl/obj_mac.h
|
||||
eng_cryptodev.o: ../../include/openssl/objects.h
|
||||
eng_cryptodev.o: ../../include/openssl/opensslconf.h
|
||||
eng_cryptodev.o: ../../include/openssl/opensslv.h
|
||||
eng_cryptodev.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
eng_cryptodev.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
eng_cryptodev.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
eng_cryptodev.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
eng_cryptodev.o: eng_cryptodev.c
|
||||
eng_ctrl.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
eng_ctrl.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
eng_ctrl.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
eng_ctrl.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
eng_ctrl.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
eng_ctrl.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
eng_ctrl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
eng_ctrl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
eng_ctrl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
eng_ctrl.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
eng_ctrl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
eng_ctrl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
eng_ctrl.o: ../../include/openssl/x509_vfy.h ../cryptlib.h eng_ctrl.c eng_int.h
|
||||
eng_dyn.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
eng_dyn.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
eng_dyn.o: ../../include/openssl/crypto.h ../../include/openssl/dso.h
|
||||
eng_dyn.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
eng_dyn.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
eng_dyn.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
||||
eng_dyn.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
eng_dyn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
eng_dyn.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
eng_dyn.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
eng_dyn.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
eng_dyn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
eng_dyn.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
eng_dyn.o: ../cryptlib.h eng_dyn.c eng_int.h
|
||||
eng_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
eng_err.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
eng_err.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
eng_err.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
eng_err.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
||||
eng_err.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
eng_err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
eng_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
eng_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
eng_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
eng_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
eng_err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
eng_err.o: eng_err.c
|
||||
eng_fat.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
eng_fat.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
eng_fat.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
eng_fat.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
eng_fat.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
eng_fat.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
||||
eng_fat.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
eng_fat.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
eng_fat.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
eng_fat.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
eng_fat.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
eng_fat.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
eng_fat.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
eng_fat.o: ../cryptlib.h eng_fat.c eng_int.h
|
||||
eng_init.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
eng_init.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
eng_init.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
eng_init.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
eng_init.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
eng_init.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
eng_init.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
eng_init.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
eng_init.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
eng_init.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
eng_init.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
eng_init.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
eng_init.o: ../../include/openssl/x509_vfy.h ../cryptlib.h eng_init.c eng_int.h
|
||||
eng_lib.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
eng_lib.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
eng_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
eng_lib.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
eng_lib.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
eng_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
eng_lib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
eng_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
eng_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
eng_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
eng_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
eng_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
eng_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
eng_lib.o: ../cryptlib.h eng_int.h eng_lib.c
|
||||
eng_list.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
eng_list.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
eng_list.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
eng_list.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
eng_list.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
eng_list.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
eng_list.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
eng_list.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
eng_list.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
eng_list.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
eng_list.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
eng_list.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
eng_list.o: ../../include/openssl/x509_vfy.h ../cryptlib.h eng_int.h eng_list.c
|
||||
eng_openssl.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
eng_openssl.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
eng_openssl.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
|
||||
eng_openssl.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h
|
||||
eng_openssl.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
eng_openssl.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
eng_openssl.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
||||
eng_openssl.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
eng_openssl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
eng_openssl.o: ../../include/openssl/opensslconf.h
|
||||
eng_openssl.o: ../../include/openssl/opensslv.h
|
||||
eng_openssl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h
|
||||
eng_openssl.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h
|
||||
eng_openssl.o: ../../include/openssl/rand.h ../../include/openssl/rc4.h
|
||||
eng_openssl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
eng_openssl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
eng_openssl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
eng_openssl.o: ../../include/openssl/x509_vfy.h ../cryptlib.h eng_openssl.c
|
||||
eng_pkey.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
eng_pkey.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
eng_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
eng_pkey.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
eng_pkey.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
eng_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
eng_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
eng_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
eng_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
eng_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
eng_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
eng_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
eng_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h eng_int.h eng_pkey.c
|
||||
eng_rdrand.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
eng_rdrand.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
eng_rdrand.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
eng_rdrand.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
eng_rdrand.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
||||
eng_rdrand.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
eng_rdrand.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
eng_rdrand.o: ../../include/openssl/opensslconf.h
|
||||
eng_rdrand.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
eng_rdrand.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
eng_rdrand.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
eng_rdrand.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
eng_rdrand.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
eng_rdrand.o: eng_rdrand.c
|
||||
eng_rsax.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
eng_rsax.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
eng_rsax.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
eng_rsax.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
eng_rsax.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
eng_rsax.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
eng_rsax.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
eng_rsax.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
eng_rsax.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
eng_rsax.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
|
||||
eng_rsax.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
eng_rsax.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
eng_rsax.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
eng_rsax.o: eng_rsax.c
|
||||
eng_table.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
eng_table.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
eng_table.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
eng_table.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
eng_table.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
eng_table.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
eng_table.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
eng_table.o: ../../include/openssl/objects.h
|
||||
eng_table.o: ../../include/openssl/opensslconf.h
|
||||
eng_table.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
eng_table.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
eng_table.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
eng_table.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
eng_table.o: ../../include/openssl/x509_vfy.h ../cryptlib.h eng_int.h
|
||||
eng_table.o: eng_table.c
|
||||
tb_asnmth.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
tb_asnmth.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
tb_asnmth.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
tb_asnmth.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
tb_asnmth.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
tb_asnmth.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
tb_asnmth.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
tb_asnmth.o: ../../include/openssl/objects.h
|
||||
tb_asnmth.o: ../../include/openssl/opensslconf.h
|
||||
tb_asnmth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
tb_asnmth.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
tb_asnmth.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
tb_asnmth.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
tb_asnmth.o: ../../include/openssl/x509_vfy.h ../asn1/asn1_locl.h ../cryptlib.h
|
||||
tb_asnmth.o: eng_int.h tb_asnmth.c
|
||||
tb_cipher.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
tb_cipher.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
tb_cipher.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
tb_cipher.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
tb_cipher.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
tb_cipher.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
tb_cipher.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
tb_cipher.o: ../../include/openssl/objects.h
|
||||
tb_cipher.o: ../../include/openssl/opensslconf.h
|
||||
tb_cipher.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
tb_cipher.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
tb_cipher.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
tb_cipher.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
tb_cipher.o: ../../include/openssl/x509_vfy.h ../cryptlib.h eng_int.h
|
||||
tb_cipher.o: tb_cipher.c
|
||||
tb_dh.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
tb_dh.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
tb_dh.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
tb_dh.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
tb_dh.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
||||
tb_dh.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
tb_dh.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
tb_dh.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
tb_dh.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
tb_dh.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
tb_dh.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
tb_dh.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
tb_dh.o: ../cryptlib.h eng_int.h tb_dh.c
|
||||
tb_digest.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
tb_digest.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
tb_digest.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
tb_digest.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
tb_digest.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
tb_digest.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
tb_digest.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
tb_digest.o: ../../include/openssl/objects.h
|
||||
tb_digest.o: ../../include/openssl/opensslconf.h
|
||||
tb_digest.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
tb_digest.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
tb_digest.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
tb_digest.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
tb_digest.o: ../../include/openssl/x509_vfy.h ../cryptlib.h eng_int.h
|
||||
tb_digest.o: tb_digest.c
|
||||
tb_dsa.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
tb_dsa.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
tb_dsa.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
tb_dsa.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
tb_dsa.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
||||
tb_dsa.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
tb_dsa.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
tb_dsa.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
tb_dsa.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
tb_dsa.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
tb_dsa.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
tb_dsa.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
tb_dsa.o: ../cryptlib.h eng_int.h tb_dsa.c
|
||||
tb_ecdh.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
tb_ecdh.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
tb_ecdh.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
tb_ecdh.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
tb_ecdh.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
tb_ecdh.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
tb_ecdh.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
tb_ecdh.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
tb_ecdh.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
tb_ecdh.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
tb_ecdh.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
tb_ecdh.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
tb_ecdh.o: ../../include/openssl/x509_vfy.h ../cryptlib.h eng_int.h tb_ecdh.c
|
||||
tb_ecdsa.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
tb_ecdsa.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
tb_ecdsa.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
tb_ecdsa.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
tb_ecdsa.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
tb_ecdsa.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
tb_ecdsa.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
tb_ecdsa.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
tb_ecdsa.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
tb_ecdsa.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
tb_ecdsa.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
tb_ecdsa.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
tb_ecdsa.o: ../../include/openssl/x509_vfy.h ../cryptlib.h eng_int.h tb_ecdsa.c
|
||||
tb_pkmeth.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
tb_pkmeth.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
tb_pkmeth.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
tb_pkmeth.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
tb_pkmeth.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
tb_pkmeth.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
tb_pkmeth.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
tb_pkmeth.o: ../../include/openssl/objects.h
|
||||
tb_pkmeth.o: ../../include/openssl/opensslconf.h
|
||||
tb_pkmeth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
tb_pkmeth.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
tb_pkmeth.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
tb_pkmeth.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
tb_pkmeth.o: ../../include/openssl/x509_vfy.h ../cryptlib.h eng_int.h
|
||||
tb_pkmeth.o: tb_pkmeth.c
|
||||
tb_rand.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
tb_rand.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
tb_rand.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
tb_rand.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
tb_rand.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
tb_rand.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
tb_rand.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
tb_rand.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
tb_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
tb_rand.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
tb_rand.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
tb_rand.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
tb_rand.o: ../../include/openssl/x509_vfy.h ../cryptlib.h eng_int.h tb_rand.c
|
||||
tb_rsa.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
tb_rsa.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
tb_rsa.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
tb_rsa.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
tb_rsa.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
||||
tb_rsa.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
tb_rsa.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
tb_rsa.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
tb_rsa.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
tb_rsa.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
tb_rsa.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
tb_rsa.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
tb_rsa.o: ../cryptlib.h eng_int.h tb_rsa.c
|
||||
tb_store.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
tb_store.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
tb_store.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
tb_store.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
tb_store.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
tb_store.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
tb_store.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
tb_store.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
tb_store.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
tb_store.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
tb_store.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
tb_store.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
tb_store.o: ../../include/openssl/x509_vfy.h ../cryptlib.h eng_int.h tb_store.c
|
|
@ -1,110 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/err/Makefile
|
||||
#
|
||||
|
||||
DIR= err
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=err.c err_all.c err_prn.c
|
||||
LIBOBJ=err.o err_all.o err_prn.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= err.h
|
||||
HEADER= $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
err.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
err.o: ../cryptlib.h err.c
|
||||
err_all.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
err_all.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
err_all.o: ../../include/openssl/cms.h ../../include/openssl/comp.h
|
||||
err_all.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
err_all.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
err_all.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
|
||||
err_all.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
err_all.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
err_all.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
err_all.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
err_all.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h
|
||||
err_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
err_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem2.h
|
||||
err_all.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
|
||||
err_all.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
|
||||
err_all.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
err_all.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
err_all.o: ../../include/openssl/ts.h ../../include/openssl/ui.h
|
||||
err_all.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
err_all.o: ../../include/openssl/x509v3.h err_all.c
|
||||
err_prn.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
err_prn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
err_prn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
err_prn.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
err_prn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
err_prn.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
err_prn.o: ../../include/openssl/symhacks.h ../cryptlib.h err_prn.c
|
|
@ -1,110 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/err/Makefile
|
||||
#
|
||||
|
||||
DIR= err
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=err.c err_all.c err_prn.c
|
||||
LIBOBJ=err.o err_all.o err_prn.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= err.h
|
||||
HEADER= $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
err.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
err.o: ../cryptlib.h err.c
|
||||
err_all.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
err_all.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
err_all.o: ../../include/openssl/cms.h ../../include/openssl/comp.h
|
||||
err_all.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
err_all.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
||||
err_all.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
|
||||
err_all.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
err_all.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
err_all.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
err_all.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
err_all.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h
|
||||
err_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
err_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem2.h
|
||||
err_all.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
|
||||
err_all.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
|
||||
err_all.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
err_all.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
err_all.o: ../../include/openssl/ts.h ../../include/openssl/ui.h
|
||||
err_all.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
err_all.o: ../../include/openssl/x509v3.h err_all.c
|
||||
err_prn.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
err_prn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
err_prn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
err_prn.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
err_prn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
err_prn.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
err_prn.o: ../../include/openssl/symhacks.h ../cryptlib.h err_prn.c
|
|
@ -1,776 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/evp/Makefile
|
||||
#
|
||||
|
||||
DIR= evp
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=evp_test.c
|
||||
TESTDATA=evptests.txt
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= encode.c digest.c evp_enc.c evp_key.c evp_acnf.c evp_cnf.c \
|
||||
e_des.c e_bf.c e_idea.c e_des3.c e_camellia.c\
|
||||
e_rc4.c e_aes.c names.c e_seed.c \
|
||||
e_xcbc_d.c e_rc2.c e_cast.c e_rc5.c \
|
||||
m_null.c m_md2.c m_md4.c m_md5.c m_sha.c m_sha1.c m_wp.c \
|
||||
m_dss.c m_dss1.c m_mdc2.c m_ripemd.c m_ecdsa.c\
|
||||
p_open.c p_seal.c p_sign.c p_verify.c p_lib.c p_enc.c p_dec.c \
|
||||
bio_md.c bio_b64.c bio_enc.c evp_err.c e_null.c \
|
||||
c_all.c c_allc.c c_alld.c evp_lib.c bio_ok.c \
|
||||
evp_pkey.c evp_pbe.c p5_crpt.c p5_crpt2.c \
|
||||
e_old.c pmeth_lib.c pmeth_fn.c pmeth_gn.c m_sigver.c evp_fips.c \
|
||||
e_aes_cbc_hmac_sha1.c e_rc4_hmac_md5.c
|
||||
|
||||
LIBOBJ= encode.o digest.o evp_enc.o evp_key.o evp_acnf.o evp_cnf.o \
|
||||
e_des.o e_bf.o e_idea.o e_des3.o e_camellia.o\
|
||||
e_rc4.o e_aes.o names.o e_seed.o \
|
||||
e_xcbc_d.o e_rc2.o e_cast.o e_rc5.o \
|
||||
m_null.o m_md2.o m_md4.o m_md5.o m_sha.o m_sha1.o m_wp.o \
|
||||
m_dss.o m_dss1.o m_mdc2.o m_ripemd.o m_ecdsa.o\
|
||||
p_open.o p_seal.o p_sign.o p_verify.o p_lib.o p_enc.o p_dec.o \
|
||||
bio_md.o bio_b64.o bio_enc.o evp_err.o e_null.o \
|
||||
c_all.o c_allc.o c_alld.o evp_lib.o bio_ok.o \
|
||||
evp_pkey.o evp_pbe.o p5_crpt.o p5_crpt2.o \
|
||||
e_old.o pmeth_lib.o pmeth_fn.o pmeth_gn.o m_sigver.o evp_fips.o \
|
||||
e_aes_cbc_hmac_sha1.o e_rc4_hmac_md5.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= evp.h
|
||||
HEADER= evp_locl.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@[ -f $(TESTDATA) ] && cp $(TESTDATA) ../../test && echo "$(TESTDATA) -> ../../test/$(TESTDATA)"
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
bio_b64.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
bio_b64.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
bio_b64.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
bio_b64.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
bio_b64.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
bio_b64.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
bio_b64.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bio_b64.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bio_b64.o: ../../include/openssl/symhacks.h ../cryptlib.h bio_b64.c
|
||||
bio_enc.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
bio_enc.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
bio_enc.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
bio_enc.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
bio_enc.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
bio_enc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
bio_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bio_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bio_enc.o: ../../include/openssl/symhacks.h ../cryptlib.h bio_enc.c
|
||||
bio_md.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
bio_md.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bio_md.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bio_md.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
bio_md.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
bio_md.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
bio_md.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
bio_md.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
bio_md.o: ../cryptlib.h bio_md.c
|
||||
bio_ok.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
bio_ok.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bio_ok.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bio_ok.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
bio_ok.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
bio_ok.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
bio_ok.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
|
||||
bio_ok.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bio_ok.o: ../../include/openssl/symhacks.h ../cryptlib.h bio_ok.c
|
||||
c_all.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
c_all.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
c_all.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
c_all.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
c_all.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
||||
c_all.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
c_all.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
c_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
c_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
c_all.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
c_all.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
c_all.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
c_all.o: ../cryptlib.h c_all.c
|
||||
c_allc.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
c_allc.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
c_allc.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
c_allc.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
c_allc.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
c_allc.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
c_allc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
c_allc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
c_allc.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
|
||||
c_allc.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
c_allc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
c_allc.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
c_allc.o: ../cryptlib.h c_allc.c
|
||||
c_alld.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
c_alld.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
c_alld.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
c_alld.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
c_alld.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
c_alld.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
c_alld.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
c_alld.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
c_alld.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
|
||||
c_alld.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
c_alld.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
c_alld.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
c_alld.o: ../cryptlib.h c_alld.c
|
||||
digest.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
digest.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
digest.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
digest.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
digest.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
||||
digest.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
digest.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
digest.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
digest.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
digest.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
digest.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
digest.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
digest.o: ../cryptlib.h digest.c
|
||||
e_aes.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h
|
||||
e_aes.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
|
||||
e_aes.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
e_aes.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
e_aes.o: ../../include/openssl/modes.h ../../include/openssl/obj_mac.h
|
||||
e_aes.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
e_aes.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
e_aes.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
e_aes.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
e_aes.o: ../modes/modes_lcl.h e_aes.c evp_locl.h
|
||||
e_aes_cbc_hmac_sha1.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h
|
||||
e_aes_cbc_hmac_sha1.o: ../../include/openssl/bio.h
|
||||
e_aes_cbc_hmac_sha1.o: ../../include/openssl/crypto.h
|
||||
e_aes_cbc_hmac_sha1.o: ../../include/openssl/e_os2.h
|
||||
e_aes_cbc_hmac_sha1.o: ../../include/openssl/evp.h
|
||||
e_aes_cbc_hmac_sha1.o: ../../include/openssl/obj_mac.h
|
||||
e_aes_cbc_hmac_sha1.o: ../../include/openssl/objects.h
|
||||
e_aes_cbc_hmac_sha1.o: ../../include/openssl/opensslconf.h
|
||||
e_aes_cbc_hmac_sha1.o: ../../include/openssl/opensslv.h
|
||||
e_aes_cbc_hmac_sha1.o: ../../include/openssl/ossl_typ.h
|
||||
e_aes_cbc_hmac_sha1.o: ../../include/openssl/safestack.h
|
||||
e_aes_cbc_hmac_sha1.o: ../../include/openssl/sha.h
|
||||
e_aes_cbc_hmac_sha1.o: ../../include/openssl/stack.h
|
||||
e_aes_cbc_hmac_sha1.o: ../../include/openssl/symhacks.h e_aes_cbc_hmac_sha1.c
|
||||
e_aes_cbc_hmac_sha1.o: evp_locl.h
|
||||
e_bf.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
e_bf.o: ../../include/openssl/blowfish.h ../../include/openssl/buffer.h
|
||||
e_bf.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
e_bf.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
e_bf.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
e_bf.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
e_bf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
e_bf.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
e_bf.o: ../../include/openssl/symhacks.h ../cryptlib.h e_bf.c evp_locl.h
|
||||
e_camellia.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
e_camellia.o: ../../include/openssl/camellia.h ../../include/openssl/crypto.h
|
||||
e_camellia.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
e_camellia.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
e_camellia.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
e_camellia.o: ../../include/openssl/opensslconf.h
|
||||
e_camellia.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
e_camellia.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
e_camellia.o: ../../include/openssl/symhacks.h e_camellia.c evp_locl.h
|
||||
e_cast.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
e_cast.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
e_cast.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
e_cast.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
e_cast.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
e_cast.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
e_cast.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
e_cast.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
e_cast.o: ../../include/openssl/symhacks.h ../cryptlib.h e_cast.c evp_locl.h
|
||||
e_des.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
e_des.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
e_des.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
e_des.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
e_des.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
e_des.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
e_des.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
e_des.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
|
||||
e_des.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
e_des.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
|
||||
e_des.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_des.c evp_locl.h
|
||||
e_des3.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
e_des3.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
e_des3.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
e_des3.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
e_des3.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
e_des3.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
e_des3.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
e_des3.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
|
||||
e_des3.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
e_des3.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
|
||||
e_des3.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_des3.c evp_locl.h
|
||||
e_idea.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
e_idea.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
e_idea.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
e_idea.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
||||
e_idea.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
e_idea.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
e_idea.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
e_idea.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
e_idea.o: ../../include/openssl/symhacks.h ../cryptlib.h e_idea.c evp_locl.h
|
||||
e_null.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
e_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
e_null.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
e_null.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
e_null.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
e_null.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
e_null.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
e_null.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
e_null.o: ../cryptlib.h e_null.c
|
||||
e_old.o: e_old.c
|
||||
e_rc2.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
e_rc2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
e_rc2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
e_rc2.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
e_rc2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
e_rc2.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
e_rc2.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rc2.h
|
||||
e_rc2.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
e_rc2.o: ../../include/openssl/symhacks.h ../cryptlib.h e_rc2.c evp_locl.h
|
||||
e_rc4.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
e_rc4.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
e_rc4.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
e_rc4.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
e_rc4.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
e_rc4.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
e_rc4.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rc4.h
|
||||
e_rc4.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
e_rc4.o: ../../include/openssl/symhacks.h ../cryptlib.h e_rc4.c evp_locl.h
|
||||
e_rc4_hmac_md5.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
e_rc4_hmac_md5.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
e_rc4_hmac_md5.o: ../../include/openssl/evp.h ../../include/openssl/md5.h
|
||||
e_rc4_hmac_md5.o: ../../include/openssl/obj_mac.h
|
||||
e_rc4_hmac_md5.o: ../../include/openssl/objects.h
|
||||
e_rc4_hmac_md5.o: ../../include/openssl/opensslconf.h
|
||||
e_rc4_hmac_md5.o: ../../include/openssl/opensslv.h
|
||||
e_rc4_hmac_md5.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rc4.h
|
||||
e_rc4_hmac_md5.o: ../../include/openssl/safestack.h
|
||||
e_rc4_hmac_md5.o: ../../include/openssl/stack.h
|
||||
e_rc4_hmac_md5.o: ../../include/openssl/symhacks.h e_rc4_hmac_md5.c
|
||||
e_rc5.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
e_rc5.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
e_rc5.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
e_rc5.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
e_rc5.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
e_rc5.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
e_rc5.o: ../../include/openssl/symhacks.h ../cryptlib.h e_rc5.c
|
||||
e_seed.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
e_seed.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
e_seed.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
e_seed.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
e_seed.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
e_seed.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
e_seed.o: ../../include/openssl/safestack.h ../../include/openssl/seed.h
|
||||
e_seed.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
e_seed.o: e_seed.c evp_locl.h
|
||||
e_xcbc_d.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
e_xcbc_d.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
e_xcbc_d.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
e_xcbc_d.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
|
||||
e_xcbc_d.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
e_xcbc_d.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
e_xcbc_d.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
e_xcbc_d.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
e_xcbc_d.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
e_xcbc_d.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
|
||||
e_xcbc_d.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_xcbc_d.c
|
||||
e_xcbc_d.o: evp_locl.h
|
||||
encode.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
encode.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
encode.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
encode.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
encode.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
encode.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
encode.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
encode.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
encode.o: ../cryptlib.h encode.c
|
||||
evp_acnf.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
evp_acnf.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
evp_acnf.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
evp_acnf.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
evp_acnf.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
evp_acnf.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
evp_acnf.o: ../../include/openssl/opensslconf.h
|
||||
evp_acnf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
evp_acnf.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
evp_acnf.o: ../../include/openssl/symhacks.h ../cryptlib.h evp_acnf.c
|
||||
evp_cnf.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
evp_cnf.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
evp_cnf.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
evp_cnf.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
|
||||
evp_cnf.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
evp_cnf.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
evp_cnf.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
evp_cnf.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
evp_cnf.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
evp_cnf.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
evp_cnf.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
evp_cnf.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
evp_cnf.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
evp_cnf.o: ../../include/openssl/x509v3.h ../cryptlib.h evp_cnf.c
|
||||
evp_enc.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
evp_enc.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
evp_enc.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
evp_enc.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
evp_enc.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
evp_enc.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
evp_enc.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
evp_enc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
evp_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
evp_enc.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
evp_enc.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
evp_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
evp_enc.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
evp_enc.o: ../cryptlib.h evp_enc.c evp_locl.h
|
||||
evp_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
evp_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
evp_err.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
evp_err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
evp_err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
evp_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
evp_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
evp_err.o: ../../include/openssl/symhacks.h evp_err.c
|
||||
evp_fips.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
evp_fips.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
evp_fips.o: ../../include/openssl/evp.h ../../include/openssl/obj_mac.h
|
||||
evp_fips.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
evp_fips.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
evp_fips.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
evp_fips.o: ../../include/openssl/symhacks.h evp_fips.c
|
||||
evp_key.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
evp_key.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
evp_key.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
evp_key.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
evp_key.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
evp_key.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
evp_key.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
evp_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
evp_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
evp_key.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
evp_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
evp_key.o: ../../include/openssl/ui.h ../../include/openssl/x509.h
|
||||
evp_key.o: ../../include/openssl/x509_vfy.h ../cryptlib.h evp_key.c
|
||||
evp_lib.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
evp_lib.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
evp_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
evp_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
evp_lib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
evp_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
evp_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
evp_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
evp_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h evp_lib.c
|
||||
evp_pbe.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
evp_pbe.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
evp_pbe.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
evp_pbe.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
evp_pbe.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
evp_pbe.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
evp_pbe.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
evp_pbe.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
evp_pbe.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h
|
||||
evp_pbe.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
evp_pbe.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
evp_pbe.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
evp_pbe.o: ../../include/openssl/x509_vfy.h ../cryptlib.h evp_locl.h evp_pbe.c
|
||||
evp_pkey.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
evp_pkey.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
evp_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
evp_pkey.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
evp_pkey.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
evp_pkey.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
evp_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
evp_pkey.o: ../../include/openssl/opensslconf.h
|
||||
evp_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
evp_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
evp_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
evp_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
evp_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
evp_pkey.o: ../asn1/asn1_locl.h ../cryptlib.h evp_pkey.c
|
||||
m_dss.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
m_dss.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
m_dss.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
||||
m_dss.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
m_dss.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
m_dss.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
m_dss.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
m_dss.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
m_dss.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
m_dss.o: ../cryptlib.h m_dss.c
|
||||
m_dss1.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
m_dss1.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
m_dss1.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
||||
m_dss1.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
m_dss1.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
m_dss1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
m_dss1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
m_dss1.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
m_dss1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
m_dss1.o: ../cryptlib.h m_dss1.c
|
||||
m_ecdsa.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
m_ecdsa.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
m_ecdsa.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
m_ecdsa.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
m_ecdsa.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
m_ecdsa.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
m_ecdsa.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
m_ecdsa.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
m_ecdsa.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
m_ecdsa.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
m_ecdsa.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
m_ecdsa.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
m_ecdsa.o: ../cryptlib.h m_ecdsa.c
|
||||
m_md2.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
m_md2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
m_md2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
m_md2.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
m_md2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
m_md2.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
m_md2.o: ../../include/openssl/symhacks.h ../cryptlib.h m_md2.c
|
||||
m_md4.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
m_md4.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
m_md4.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
m_md4.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
m_md4.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
m_md4.o: ../../include/openssl/lhash.h ../../include/openssl/md4.h
|
||||
m_md4.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
m_md4.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
m_md4.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
m_md4.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
m_md4.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
m_md4.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
m_md4.o: ../../include/openssl/x509_vfy.h ../cryptlib.h evp_locl.h m_md4.c
|
||||
m_md5.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
m_md5.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
m_md5.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
m_md5.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
m_md5.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
m_md5.o: ../../include/openssl/lhash.h ../../include/openssl/md5.h
|
||||
m_md5.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
m_md5.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
m_md5.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
m_md5.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
m_md5.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
m_md5.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
m_md5.o: ../../include/openssl/x509_vfy.h ../cryptlib.h evp_locl.h m_md5.c
|
||||
m_mdc2.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
m_mdc2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
m_mdc2.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
m_mdc2.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
m_mdc2.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
m_mdc2.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
m_mdc2.o: ../../include/openssl/lhash.h ../../include/openssl/mdc2.h
|
||||
m_mdc2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
m_mdc2.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
m_mdc2.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
m_mdc2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
m_mdc2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
m_mdc2.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
|
||||
m_mdc2.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h
|
||||
m_mdc2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h evp_locl.h m_mdc2.c
|
||||
m_null.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
m_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
m_null.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
m_null.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
m_null.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
m_null.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
m_null.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
m_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
m_null.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
m_null.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
m_null.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
m_null.o: ../../include/openssl/x509_vfy.h ../cryptlib.h m_null.c
|
||||
m_ripemd.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
m_ripemd.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
m_ripemd.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
m_ripemd.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
m_ripemd.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
m_ripemd.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
m_ripemd.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
m_ripemd.o: ../../include/openssl/opensslconf.h
|
||||
m_ripemd.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
m_ripemd.o: ../../include/openssl/pkcs7.h ../../include/openssl/ripemd.h
|
||||
m_ripemd.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
m_ripemd.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
m_ripemd.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
m_ripemd.o: ../../include/openssl/x509_vfy.h ../cryptlib.h evp_locl.h
|
||||
m_ripemd.o: m_ripemd.c
|
||||
m_sha.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
m_sha.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
m_sha.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
m_sha.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
m_sha.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
m_sha.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
m_sha.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
m_sha.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
m_sha.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
|
||||
m_sha.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
m_sha.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
m_sha.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
m_sha.o: ../cryptlib.h evp_locl.h m_sha.c
|
||||
m_sha1.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
m_sha1.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
m_sha1.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
m_sha1.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
m_sha1.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
m_sha1.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
m_sha1.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rsa.h
|
||||
m_sha1.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
m_sha1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
m_sha1.o: ../cryptlib.h m_sha1.c
|
||||
m_sigver.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
m_sigver.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
m_sigver.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
m_sigver.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
m_sigver.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
m_sigver.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
m_sigver.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
m_sigver.o: ../../include/openssl/opensslconf.h
|
||||
m_sigver.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
m_sigver.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
m_sigver.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
m_sigver.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
m_sigver.o: ../../include/openssl/x509_vfy.h ../cryptlib.h evp_locl.h
|
||||
m_sigver.o: m_sigver.c
|
||||
m_wp.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
m_wp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
m_wp.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
m_wp.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
m_wp.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
m_wp.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
m_wp.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
m_wp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
m_wp.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
m_wp.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
m_wp.o: ../../include/openssl/symhacks.h ../../include/openssl/whrlpool.h
|
||||
m_wp.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
m_wp.o: ../cryptlib.h evp_locl.h m_wp.c
|
||||
names.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
names.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
names.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
names.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
names.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
names.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
names.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
names.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
names.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
names.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
names.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
names.o: ../../include/openssl/x509_vfy.h ../cryptlib.h names.c
|
||||
p5_crpt.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
p5_crpt.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
p5_crpt.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
p5_crpt.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
p5_crpt.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
p5_crpt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
p5_crpt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
p5_crpt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
p5_crpt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
p5_crpt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
p5_crpt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
p5_crpt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
p5_crpt.o: ../cryptlib.h p5_crpt.c
|
||||
p5_crpt2.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
p5_crpt2.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
p5_crpt2.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
p5_crpt2.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
p5_crpt2.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
p5_crpt2.o: ../../include/openssl/evp.h ../../include/openssl/hmac.h
|
||||
p5_crpt2.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
p5_crpt2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
p5_crpt2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
p5_crpt2.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
p5_crpt2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
p5_crpt2.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
p5_crpt2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h evp_locl.h
|
||||
p5_crpt2.o: p5_crpt2.c
|
||||
p_dec.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
p_dec.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
p_dec.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
p_dec.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
p_dec.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
p_dec.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
p_dec.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
p_dec.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
p_dec.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
p_dec.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
p_dec.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
p_dec.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
p_dec.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_dec.c
|
||||
p_enc.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
p_enc.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
p_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
p_enc.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
p_enc.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
p_enc.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
p_enc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
p_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
p_enc.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
p_enc.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
p_enc.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
p_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
p_enc.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_enc.c
|
||||
p_lib.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
p_lib.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h
|
||||
p_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
p_lib.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
|
||||
p_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
||||
p_lib.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
p_lib.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
p_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
p_lib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
p_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
p_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
p_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
|
||||
p_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
p_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
p_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
p_lib.o: ../asn1/asn1_locl.h ../cryptlib.h p_lib.c
|
||||
p_open.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
p_open.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
p_open.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
p_open.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
p_open.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
p_open.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
p_open.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
p_open.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
p_open.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
|
||||
p_open.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
p_open.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
p_open.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
p_open.o: ../cryptlib.h p_open.c
|
||||
p_seal.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
p_seal.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
p_seal.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
p_seal.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
p_seal.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
p_seal.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
p_seal.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
p_seal.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
p_seal.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
p_seal.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
p_seal.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
p_seal.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
p_seal.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_seal.c
|
||||
p_sign.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
p_sign.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
p_sign.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
p_sign.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
p_sign.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
p_sign.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
p_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
p_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
p_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
p_sign.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
p_sign.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
p_sign.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_sign.c
|
||||
p_verify.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
p_verify.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
p_verify.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
p_verify.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
p_verify.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
p_verify.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
p_verify.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
p_verify.o: ../../include/openssl/opensslconf.h
|
||||
p_verify.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
p_verify.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
p_verify.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
p_verify.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
p_verify.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_verify.c
|
||||
pmeth_fn.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
pmeth_fn.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
pmeth_fn.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
pmeth_fn.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
pmeth_fn.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
pmeth_fn.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
pmeth_fn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
pmeth_fn.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
pmeth_fn.o: ../../include/openssl/symhacks.h ../cryptlib.h evp_locl.h
|
||||
pmeth_fn.o: pmeth_fn.c
|
||||
pmeth_gn.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
pmeth_gn.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
pmeth_gn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
pmeth_gn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
pmeth_gn.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
pmeth_gn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
pmeth_gn.o: ../../include/openssl/opensslconf.h
|
||||
pmeth_gn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
pmeth_gn.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
pmeth_gn.o: ../../include/openssl/symhacks.h ../cryptlib.h evp_locl.h
|
||||
pmeth_gn.o: pmeth_gn.c
|
||||
pmeth_lib.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
pmeth_lib.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
pmeth_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
pmeth_lib.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
pmeth_lib.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
pmeth_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
pmeth_lib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
pmeth_lib.o: ../../include/openssl/objects.h
|
||||
pmeth_lib.o: ../../include/openssl/opensslconf.h
|
||||
pmeth_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
pmeth_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
pmeth_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
pmeth_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
pmeth_lib.o: ../../include/openssl/x509_vfy.h ../asn1/asn1_locl.h ../cryptlib.h
|
||||
pmeth_lib.o: evp_locl.h pmeth_lib.c
|
|
@ -1,776 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/evp/Makefile
|
||||
#
|
||||
|
||||
DIR= evp
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=evp_test.c
|
||||
TESTDATA=evptests.txt
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= encode.c digest.c evp_enc.c evp_key.c evp_acnf.c evp_cnf.c \
|
||||
e_des.c e_bf.c e_idea.c e_des3.c e_camellia.c\
|
||||
e_rc4.c e_aes.c names.c e_seed.c \
|
||||
e_xcbc_d.c e_rc2.c e_cast.c e_rc5.c \
|
||||
m_null.c m_md2.c m_md4.c m_md5.c m_sha.c m_sha1.c m_wp.c \
|
||||
m_dss.c m_dss1.c m_mdc2.c m_ripemd.c m_ecdsa.c\
|
||||
p_open.c p_seal.c p_sign.c p_verify.c p_lib.c p_enc.c p_dec.c \
|
||||
bio_md.c bio_b64.c bio_enc.c evp_err.c e_null.c \
|
||||
c_all.c c_allc.c c_alld.c evp_lib.c bio_ok.c \
|
||||
evp_pkey.c evp_pbe.c p5_crpt.c p5_crpt2.c \
|
||||
e_old.c pmeth_lib.c pmeth_fn.c pmeth_gn.c m_sigver.c evp_fips.c \
|
||||
e_aes_cbc_hmac_sha1.c e_rc4_hmac_md5.c
|
||||
|
||||
LIBOBJ= encode.o digest.o evp_enc.o evp_key.o evp_acnf.o evp_cnf.o \
|
||||
e_des.o e_bf.o e_idea.o e_des3.o e_camellia.o\
|
||||
e_rc4.o e_aes.o names.o e_seed.o \
|
||||
e_xcbc_d.o e_rc2.o e_cast.o e_rc5.o \
|
||||
m_null.o m_md2.o m_md4.o m_md5.o m_sha.o m_sha1.o m_wp.o \
|
||||
m_dss.o m_dss1.o m_mdc2.o m_ripemd.o m_ecdsa.o\
|
||||
p_open.o p_seal.o p_sign.o p_verify.o p_lib.o p_enc.o p_dec.o \
|
||||
bio_md.o bio_b64.o bio_enc.o evp_err.o e_null.o \
|
||||
c_all.o c_allc.o c_alld.o evp_lib.o bio_ok.o \
|
||||
evp_pkey.o evp_pbe.o p5_crpt.o p5_crpt2.o \
|
||||
e_old.o pmeth_lib.o pmeth_fn.o pmeth_gn.o m_sigver.o evp_fips.o \
|
||||
e_aes_cbc_hmac_sha1.o e_rc4_hmac_md5.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= evp.h
|
||||
HEADER= evp_locl.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@[ -f $(TESTDATA) ] && cp $(TESTDATA) ../../test && echo "$(TESTDATA) -> ../../test/$(TESTDATA)"
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
bio_b64.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
bio_b64.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
bio_b64.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
bio_b64.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
bio_b64.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
bio_b64.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
bio_b64.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bio_b64.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bio_b64.o: ../../include/openssl/symhacks.h ../cryptlib.h bio_b64.c
|
||||
bio_enc.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
bio_enc.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
bio_enc.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
bio_enc.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
bio_enc.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
bio_enc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
bio_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
bio_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bio_enc.o: ../../include/openssl/symhacks.h ../cryptlib.h bio_enc.c
|
||||
bio_md.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
bio_md.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bio_md.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bio_md.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
bio_md.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
bio_md.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
bio_md.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
bio_md.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
bio_md.o: ../cryptlib.h bio_md.c
|
||||
bio_ok.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
bio_ok.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
bio_ok.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
bio_ok.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
bio_ok.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
bio_ok.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
bio_ok.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
|
||||
bio_ok.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bio_ok.o: ../../include/openssl/symhacks.h ../cryptlib.h bio_ok.c
|
||||
c_all.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
c_all.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
c_all.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
c_all.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
c_all.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
||||
c_all.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
c_all.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
c_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
c_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
c_all.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
c_all.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
c_all.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
c_all.o: ../cryptlib.h c_all.c
|
||||
c_allc.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
c_allc.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
c_allc.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
c_allc.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
c_allc.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
c_allc.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
c_allc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
c_allc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
c_allc.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
|
||||
c_allc.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
c_allc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
c_allc.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
c_allc.o: ../cryptlib.h c_allc.c
|
||||
c_alld.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
c_alld.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
c_alld.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
c_alld.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
c_alld.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
c_alld.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
c_alld.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
c_alld.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
c_alld.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
|
||||
c_alld.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
c_alld.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
c_alld.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
c_alld.o: ../cryptlib.h c_alld.c
|
||||
digest.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
digest.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
digest.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
digest.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
digest.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
||||
digest.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
digest.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
digest.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
digest.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
digest.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
digest.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
digest.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
digest.o: ../cryptlib.h digest.c
|
||||
e_aes.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h
|
||||
e_aes.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
|
||||
e_aes.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
e_aes.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
e_aes.o: ../../include/openssl/modes.h ../../include/openssl/obj_mac.h
|
||||
e_aes.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
e_aes.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
e_aes.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
e_aes.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
e_aes.o: ../modes/modes_lcl.h e_aes.c evp_locl.h
|
||||
e_aes_cbc_hmac_sha1.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h
|
||||
e_aes_cbc_hmac_sha1.o: ../../include/openssl/bio.h
|
||||
e_aes_cbc_hmac_sha1.o: ../../include/openssl/crypto.h
|
||||
e_aes_cbc_hmac_sha1.o: ../../include/openssl/e_os2.h
|
||||
e_aes_cbc_hmac_sha1.o: ../../include/openssl/evp.h
|
||||
e_aes_cbc_hmac_sha1.o: ../../include/openssl/obj_mac.h
|
||||
e_aes_cbc_hmac_sha1.o: ../../include/openssl/objects.h
|
||||
e_aes_cbc_hmac_sha1.o: ../../include/openssl/opensslconf.h
|
||||
e_aes_cbc_hmac_sha1.o: ../../include/openssl/opensslv.h
|
||||
e_aes_cbc_hmac_sha1.o: ../../include/openssl/ossl_typ.h
|
||||
e_aes_cbc_hmac_sha1.o: ../../include/openssl/safestack.h
|
||||
e_aes_cbc_hmac_sha1.o: ../../include/openssl/sha.h
|
||||
e_aes_cbc_hmac_sha1.o: ../../include/openssl/stack.h
|
||||
e_aes_cbc_hmac_sha1.o: ../../include/openssl/symhacks.h e_aes_cbc_hmac_sha1.c
|
||||
e_aes_cbc_hmac_sha1.o: evp_locl.h
|
||||
e_bf.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
e_bf.o: ../../include/openssl/blowfish.h ../../include/openssl/buffer.h
|
||||
e_bf.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
e_bf.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
e_bf.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
e_bf.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
e_bf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
e_bf.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
e_bf.o: ../../include/openssl/symhacks.h ../cryptlib.h e_bf.c evp_locl.h
|
||||
e_camellia.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
e_camellia.o: ../../include/openssl/camellia.h ../../include/openssl/crypto.h
|
||||
e_camellia.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
e_camellia.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
e_camellia.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
e_camellia.o: ../../include/openssl/opensslconf.h
|
||||
e_camellia.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
e_camellia.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
e_camellia.o: ../../include/openssl/symhacks.h e_camellia.c evp_locl.h
|
||||
e_cast.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
e_cast.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
||||
e_cast.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
e_cast.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
e_cast.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
e_cast.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
e_cast.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
e_cast.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
e_cast.o: ../../include/openssl/symhacks.h ../cryptlib.h e_cast.c evp_locl.h
|
||||
e_des.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
e_des.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
e_des.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
e_des.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
e_des.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
e_des.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
e_des.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
e_des.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
|
||||
e_des.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
e_des.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
|
||||
e_des.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_des.c evp_locl.h
|
||||
e_des3.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
e_des3.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
e_des3.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
e_des3.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
e_des3.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
e_des3.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
e_des3.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
e_des3.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
|
||||
e_des3.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
e_des3.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
|
||||
e_des3.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_des3.c evp_locl.h
|
||||
e_idea.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
e_idea.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
e_idea.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
e_idea.o: ../../include/openssl/evp.h ../../include/openssl/idea.h
|
||||
e_idea.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
e_idea.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
e_idea.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
e_idea.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
e_idea.o: ../../include/openssl/symhacks.h ../cryptlib.h e_idea.c evp_locl.h
|
||||
e_null.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
e_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
e_null.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
e_null.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
e_null.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
e_null.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
e_null.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
e_null.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
e_null.o: ../cryptlib.h e_null.c
|
||||
e_old.o: e_old.c
|
||||
e_rc2.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
e_rc2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
e_rc2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
e_rc2.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
e_rc2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
e_rc2.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
e_rc2.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rc2.h
|
||||
e_rc2.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
e_rc2.o: ../../include/openssl/symhacks.h ../cryptlib.h e_rc2.c evp_locl.h
|
||||
e_rc4.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
e_rc4.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
e_rc4.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
e_rc4.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
e_rc4.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
e_rc4.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
e_rc4.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rc4.h
|
||||
e_rc4.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
e_rc4.o: ../../include/openssl/symhacks.h ../cryptlib.h e_rc4.c evp_locl.h
|
||||
e_rc4_hmac_md5.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
e_rc4_hmac_md5.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
e_rc4_hmac_md5.o: ../../include/openssl/evp.h ../../include/openssl/md5.h
|
||||
e_rc4_hmac_md5.o: ../../include/openssl/obj_mac.h
|
||||
e_rc4_hmac_md5.o: ../../include/openssl/objects.h
|
||||
e_rc4_hmac_md5.o: ../../include/openssl/opensslconf.h
|
||||
e_rc4_hmac_md5.o: ../../include/openssl/opensslv.h
|
||||
e_rc4_hmac_md5.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rc4.h
|
||||
e_rc4_hmac_md5.o: ../../include/openssl/safestack.h
|
||||
e_rc4_hmac_md5.o: ../../include/openssl/stack.h
|
||||
e_rc4_hmac_md5.o: ../../include/openssl/symhacks.h e_rc4_hmac_md5.c
|
||||
e_rc5.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
e_rc5.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
e_rc5.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
e_rc5.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
e_rc5.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
e_rc5.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
e_rc5.o: ../../include/openssl/symhacks.h ../cryptlib.h e_rc5.c
|
||||
e_seed.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
e_seed.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
e_seed.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
e_seed.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
e_seed.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
e_seed.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
e_seed.o: ../../include/openssl/safestack.h ../../include/openssl/seed.h
|
||||
e_seed.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
e_seed.o: e_seed.c evp_locl.h
|
||||
e_xcbc_d.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
e_xcbc_d.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
e_xcbc_d.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
e_xcbc_d.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
|
||||
e_xcbc_d.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
e_xcbc_d.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
e_xcbc_d.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
e_xcbc_d.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
e_xcbc_d.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
e_xcbc_d.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
|
||||
e_xcbc_d.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_xcbc_d.c
|
||||
e_xcbc_d.o: evp_locl.h
|
||||
encode.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
encode.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
encode.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
encode.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
encode.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
encode.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
encode.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
encode.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
encode.o: ../cryptlib.h encode.c
|
||||
evp_acnf.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
evp_acnf.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
evp_acnf.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
evp_acnf.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
evp_acnf.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
evp_acnf.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
evp_acnf.o: ../../include/openssl/opensslconf.h
|
||||
evp_acnf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
evp_acnf.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
evp_acnf.o: ../../include/openssl/symhacks.h ../cryptlib.h evp_acnf.c
|
||||
evp_cnf.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
evp_cnf.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
evp_cnf.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
evp_cnf.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
|
||||
evp_cnf.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
evp_cnf.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
evp_cnf.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
evp_cnf.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
evp_cnf.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
evp_cnf.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
evp_cnf.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
evp_cnf.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
evp_cnf.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
evp_cnf.o: ../../include/openssl/x509v3.h ../cryptlib.h evp_cnf.c
|
||||
evp_enc.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
evp_enc.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
evp_enc.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
evp_enc.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
evp_enc.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
evp_enc.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
evp_enc.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
evp_enc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
evp_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
evp_enc.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
evp_enc.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
evp_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
evp_enc.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
evp_enc.o: ../cryptlib.h evp_enc.c evp_locl.h
|
||||
evp_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
evp_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
evp_err.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
evp_err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
evp_err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
evp_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
evp_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
evp_err.o: ../../include/openssl/symhacks.h evp_err.c
|
||||
evp_fips.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
evp_fips.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
evp_fips.o: ../../include/openssl/evp.h ../../include/openssl/obj_mac.h
|
||||
evp_fips.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
evp_fips.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
evp_fips.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
evp_fips.o: ../../include/openssl/symhacks.h evp_fips.c
|
||||
evp_key.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
evp_key.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
evp_key.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
evp_key.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
evp_key.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
evp_key.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
evp_key.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
evp_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
evp_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
evp_key.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
evp_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
evp_key.o: ../../include/openssl/ui.h ../../include/openssl/x509.h
|
||||
evp_key.o: ../../include/openssl/x509_vfy.h ../cryptlib.h evp_key.c
|
||||
evp_lib.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
evp_lib.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
evp_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
evp_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
evp_lib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
evp_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
evp_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
evp_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
evp_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h evp_lib.c
|
||||
evp_pbe.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
evp_pbe.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
evp_pbe.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
evp_pbe.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
evp_pbe.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
evp_pbe.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
evp_pbe.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
evp_pbe.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
evp_pbe.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h
|
||||
evp_pbe.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
evp_pbe.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
evp_pbe.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
evp_pbe.o: ../../include/openssl/x509_vfy.h ../cryptlib.h evp_locl.h evp_pbe.c
|
||||
evp_pkey.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
evp_pkey.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
evp_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
evp_pkey.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
evp_pkey.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
evp_pkey.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
evp_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
evp_pkey.o: ../../include/openssl/opensslconf.h
|
||||
evp_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
evp_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
evp_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
evp_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
evp_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
evp_pkey.o: ../asn1/asn1_locl.h ../cryptlib.h evp_pkey.c
|
||||
m_dss.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
m_dss.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
m_dss.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
||||
m_dss.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
m_dss.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
m_dss.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
m_dss.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
m_dss.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
m_dss.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
m_dss.o: ../cryptlib.h m_dss.c
|
||||
m_dss1.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
m_dss1.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
m_dss1.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
||||
m_dss1.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
m_dss1.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
m_dss1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
m_dss1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
m_dss1.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
m_dss1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
m_dss1.o: ../cryptlib.h m_dss1.c
|
||||
m_ecdsa.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
m_ecdsa.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
m_ecdsa.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
m_ecdsa.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
m_ecdsa.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
m_ecdsa.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
m_ecdsa.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
m_ecdsa.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
m_ecdsa.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
m_ecdsa.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
m_ecdsa.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
m_ecdsa.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
m_ecdsa.o: ../cryptlib.h m_ecdsa.c
|
||||
m_md2.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
m_md2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
m_md2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
m_md2.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
m_md2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
m_md2.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
m_md2.o: ../../include/openssl/symhacks.h ../cryptlib.h m_md2.c
|
||||
m_md4.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
m_md4.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
m_md4.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
m_md4.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
m_md4.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
m_md4.o: ../../include/openssl/lhash.h ../../include/openssl/md4.h
|
||||
m_md4.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
m_md4.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
m_md4.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
m_md4.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
m_md4.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
m_md4.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
m_md4.o: ../../include/openssl/x509_vfy.h ../cryptlib.h evp_locl.h m_md4.c
|
||||
m_md5.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
m_md5.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
m_md5.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
m_md5.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
m_md5.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
m_md5.o: ../../include/openssl/lhash.h ../../include/openssl/md5.h
|
||||
m_md5.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
m_md5.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
m_md5.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
m_md5.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
m_md5.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
m_md5.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
m_md5.o: ../../include/openssl/x509_vfy.h ../cryptlib.h evp_locl.h m_md5.c
|
||||
m_mdc2.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
m_mdc2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
m_mdc2.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
m_mdc2.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
m_mdc2.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
m_mdc2.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
m_mdc2.o: ../../include/openssl/lhash.h ../../include/openssl/mdc2.h
|
||||
m_mdc2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
m_mdc2.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
m_mdc2.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
m_mdc2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
m_mdc2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
m_mdc2.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
|
||||
m_mdc2.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h
|
||||
m_mdc2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h evp_locl.h m_mdc2.c
|
||||
m_null.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
m_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
m_null.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
m_null.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
m_null.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
m_null.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
m_null.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
m_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
m_null.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
m_null.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
m_null.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
m_null.o: ../../include/openssl/x509_vfy.h ../cryptlib.h m_null.c
|
||||
m_ripemd.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
m_ripemd.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
m_ripemd.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
m_ripemd.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
m_ripemd.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
m_ripemd.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
m_ripemd.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
m_ripemd.o: ../../include/openssl/opensslconf.h
|
||||
m_ripemd.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
m_ripemd.o: ../../include/openssl/pkcs7.h ../../include/openssl/ripemd.h
|
||||
m_ripemd.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
m_ripemd.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
m_ripemd.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
m_ripemd.o: ../../include/openssl/x509_vfy.h ../cryptlib.h evp_locl.h
|
||||
m_ripemd.o: m_ripemd.c
|
||||
m_sha.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
m_sha.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
m_sha.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
m_sha.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
m_sha.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
m_sha.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
m_sha.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
m_sha.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
m_sha.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
|
||||
m_sha.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
m_sha.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
m_sha.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
m_sha.o: ../cryptlib.h evp_locl.h m_sha.c
|
||||
m_sha1.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
m_sha1.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
m_sha1.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
m_sha1.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
m_sha1.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
m_sha1.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
m_sha1.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rsa.h
|
||||
m_sha1.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
m_sha1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
m_sha1.o: ../cryptlib.h m_sha1.c
|
||||
m_sigver.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
m_sigver.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
m_sigver.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
m_sigver.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
m_sigver.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
m_sigver.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
m_sigver.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
m_sigver.o: ../../include/openssl/opensslconf.h
|
||||
m_sigver.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
m_sigver.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
m_sigver.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
m_sigver.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
m_sigver.o: ../../include/openssl/x509_vfy.h ../cryptlib.h evp_locl.h
|
||||
m_sigver.o: m_sigver.c
|
||||
m_wp.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
m_wp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
m_wp.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
m_wp.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
m_wp.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
m_wp.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
m_wp.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
m_wp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
m_wp.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
m_wp.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
m_wp.o: ../../include/openssl/symhacks.h ../../include/openssl/whrlpool.h
|
||||
m_wp.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
m_wp.o: ../cryptlib.h evp_locl.h m_wp.c
|
||||
names.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
names.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
names.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
names.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
names.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
names.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
names.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
names.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
names.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
names.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
names.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
names.o: ../../include/openssl/x509_vfy.h ../cryptlib.h names.c
|
||||
p5_crpt.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
p5_crpt.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
p5_crpt.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
p5_crpt.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
p5_crpt.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
p5_crpt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
p5_crpt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
p5_crpt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
p5_crpt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
p5_crpt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
p5_crpt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
p5_crpt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
p5_crpt.o: ../cryptlib.h p5_crpt.c
|
||||
p5_crpt2.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
p5_crpt2.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
p5_crpt2.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
p5_crpt2.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
p5_crpt2.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
p5_crpt2.o: ../../include/openssl/evp.h ../../include/openssl/hmac.h
|
||||
p5_crpt2.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
p5_crpt2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
p5_crpt2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
p5_crpt2.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
p5_crpt2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
p5_crpt2.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
p5_crpt2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h evp_locl.h
|
||||
p5_crpt2.o: p5_crpt2.c
|
||||
p_dec.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
p_dec.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
p_dec.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
p_dec.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
p_dec.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
p_dec.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
p_dec.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
p_dec.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
p_dec.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
p_dec.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
p_dec.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
p_dec.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
p_dec.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_dec.c
|
||||
p_enc.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
p_enc.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
p_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
p_enc.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
p_enc.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
p_enc.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
p_enc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
p_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
p_enc.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
p_enc.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
p_enc.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
p_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
p_enc.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_enc.c
|
||||
p_lib.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
p_lib.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h
|
||||
p_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
p_lib.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
|
||||
p_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
||||
p_lib.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
p_lib.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
p_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
p_lib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
p_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
p_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
p_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
|
||||
p_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
p_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
p_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
p_lib.o: ../asn1/asn1_locl.h ../cryptlib.h p_lib.c
|
||||
p_open.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
p_open.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
p_open.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
p_open.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
p_open.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
p_open.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
p_open.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
p_open.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
p_open.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
|
||||
p_open.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
p_open.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
p_open.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
p_open.o: ../cryptlib.h p_open.c
|
||||
p_seal.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
p_seal.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
p_seal.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
p_seal.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
p_seal.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
p_seal.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
p_seal.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
p_seal.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
p_seal.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
p_seal.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
p_seal.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
p_seal.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
p_seal.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_seal.c
|
||||
p_sign.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
p_sign.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
p_sign.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
p_sign.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
p_sign.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
p_sign.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
p_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
p_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
p_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
p_sign.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
p_sign.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
p_sign.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_sign.c
|
||||
p_verify.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
p_verify.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
p_verify.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
p_verify.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
p_verify.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
p_verify.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
p_verify.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
p_verify.o: ../../include/openssl/opensslconf.h
|
||||
p_verify.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
p_verify.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
p_verify.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
p_verify.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
p_verify.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_verify.c
|
||||
pmeth_fn.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
pmeth_fn.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
pmeth_fn.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
pmeth_fn.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
pmeth_fn.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
pmeth_fn.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
pmeth_fn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
pmeth_fn.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
pmeth_fn.o: ../../include/openssl/symhacks.h ../cryptlib.h evp_locl.h
|
||||
pmeth_fn.o: pmeth_fn.c
|
||||
pmeth_gn.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
pmeth_gn.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
pmeth_gn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
pmeth_gn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
pmeth_gn.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
pmeth_gn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
pmeth_gn.o: ../../include/openssl/opensslconf.h
|
||||
pmeth_gn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
pmeth_gn.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
pmeth_gn.o: ../../include/openssl/symhacks.h ../cryptlib.h evp_locl.h
|
||||
pmeth_gn.o: pmeth_gn.c
|
||||
pmeth_lib.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
pmeth_lib.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
pmeth_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
pmeth_lib.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
pmeth_lib.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
pmeth_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
pmeth_lib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
pmeth_lib.o: ../../include/openssl/objects.h
|
||||
pmeth_lib.o: ../../include/openssl/opensslconf.h
|
||||
pmeth_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
pmeth_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
pmeth_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
pmeth_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
pmeth_lib.o: ../../include/openssl/x509_vfy.h ../asn1/asn1_locl.h ../cryptlib.h
|
||||
pmeth_lib.o: evp_locl.h pmeth_lib.c
|
|
@ -1,110 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/md/Makefile
|
||||
#
|
||||
|
||||
DIR= hmac
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES=
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=hmactest.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=hmac.c hm_ameth.c hm_pmeth.c
|
||||
LIBOBJ=hmac.o hm_ameth.o hm_pmeth.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= hmac.h
|
||||
HEADER= $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
hm_ameth.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
hm_ameth.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
hm_ameth.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
hm_ameth.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
hm_ameth.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
hm_ameth.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
hm_ameth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
hm_ameth.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
hm_ameth.o: ../../include/openssl/symhacks.h ../asn1/asn1_locl.h ../cryptlib.h
|
||||
hm_ameth.o: hm_ameth.c
|
||||
hm_pmeth.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
hm_pmeth.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
hm_pmeth.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
hm_pmeth.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
hm_pmeth.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
hm_pmeth.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
hm_pmeth.o: ../../include/openssl/hmac.h ../../include/openssl/lhash.h
|
||||
hm_pmeth.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
hm_pmeth.o: ../../include/openssl/opensslconf.h
|
||||
hm_pmeth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
hm_pmeth.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
hm_pmeth.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
hm_pmeth.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
hm_pmeth.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
hm_pmeth.o: ../cryptlib.h ../evp/evp_locl.h hm_pmeth.c
|
||||
hmac.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
hmac.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
hmac.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
hmac.o: ../../include/openssl/evp.h ../../include/openssl/hmac.h
|
||||
hmac.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
hmac.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
hmac.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
hmac.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
hmac.o: ../../include/openssl/symhacks.h ../cryptlib.h hmac.c
|
|
@ -1,110 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/md/Makefile
|
||||
#
|
||||
|
||||
DIR= hmac
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES=
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=hmactest.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=hmac.c hm_ameth.c hm_pmeth.c
|
||||
LIBOBJ=hmac.o hm_ameth.o hm_pmeth.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= hmac.h
|
||||
HEADER= $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
hm_ameth.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
hm_ameth.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
hm_ameth.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
hm_ameth.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
hm_ameth.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
hm_ameth.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
hm_ameth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
hm_ameth.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
hm_ameth.o: ../../include/openssl/symhacks.h ../asn1/asn1_locl.h ../cryptlib.h
|
||||
hm_ameth.o: hm_ameth.c
|
||||
hm_pmeth.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
hm_pmeth.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
hm_pmeth.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
hm_pmeth.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
hm_pmeth.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
hm_pmeth.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
hm_pmeth.o: ../../include/openssl/hmac.h ../../include/openssl/lhash.h
|
||||
hm_pmeth.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
hm_pmeth.o: ../../include/openssl/opensslconf.h
|
||||
hm_pmeth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
hm_pmeth.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
hm_pmeth.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
hm_pmeth.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
hm_pmeth.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
hm_pmeth.o: ../cryptlib.h ../evp/evp_locl.h hm_pmeth.c
|
||||
hmac.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
hmac.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
hmac.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
hmac.o: ../../include/openssl/evp.h ../../include/openssl/hmac.h
|
||||
hmac.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
hmac.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
hmac.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
hmac.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
hmac.o: ../../include/openssl/symhacks.h ../cryptlib.h hmac.c
|
|
@ -1,89 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/idea/Makefile
|
||||
#
|
||||
|
||||
DIR= idea
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES=
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=ideatest.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=i_cbc.c i_cfb64.c i_ofb64.c i_ecb.c i_skey.c
|
||||
LIBOBJ=i_cbc.o i_cfb64.o i_ofb64.o i_ecb.o i_skey.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= idea.h
|
||||
HEADER= idea_lcl.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
i_cbc.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h
|
||||
i_cbc.o: i_cbc.c idea_lcl.h
|
||||
i_cfb64.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h
|
||||
i_cfb64.o: i_cfb64.c idea_lcl.h
|
||||
i_ecb.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h
|
||||
i_ecb.o: ../../include/openssl/opensslv.h i_ecb.c idea_lcl.h
|
||||
i_ofb64.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h
|
||||
i_ofb64.o: i_ofb64.c idea_lcl.h
|
||||
i_skey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
i_skey.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h
|
||||
i_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
i_skey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
i_skey.o: ../../include/openssl/symhacks.h i_skey.c idea_lcl.h
|
|
@ -1,89 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/idea/Makefile
|
||||
#
|
||||
|
||||
DIR= idea
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES=
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=ideatest.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=i_cbc.c i_cfb64.c i_ofb64.c i_ecb.c i_skey.c
|
||||
LIBOBJ=i_cbc.o i_cfb64.o i_ofb64.o i_ecb.o i_skey.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= idea.h
|
||||
HEADER= idea_lcl.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
i_cbc.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h
|
||||
i_cbc.o: i_cbc.c idea_lcl.h
|
||||
i_cfb64.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h
|
||||
i_cfb64.o: i_cfb64.c idea_lcl.h
|
||||
i_ecb.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h
|
||||
i_ecb.o: ../../include/openssl/opensslv.h i_ecb.c idea_lcl.h
|
||||
i_ofb64.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h
|
||||
i_ofb64.o: i_ofb64.c idea_lcl.h
|
||||
i_skey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
i_skey.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h
|
||||
i_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
i_skey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
i_skey.o: ../../include/openssl/symhacks.h i_skey.c idea_lcl.h
|
|
@ -1,64 +0,0 @@
|
|||
DIR=jpake
|
||||
TOP=../..
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBOBJ=jpake.o jpake_err.o
|
||||
LIBSRC=jpake.c jpake_err.c
|
||||
|
||||
EXHEADER=jpake.h
|
||||
TEST=jpaketest.c
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.s *.o *.obj des lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
jpaketest: top jpaketest.c $(LIB)
|
||||
$(CC) $(CFLAGS) -Wall -Werror -g -o jpaketest jpaketest.c $(LIB)
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
jpake.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
jpake.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
jpake.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
jpake.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
jpake.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
jpake.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
jpake.o: ../../include/openssl/symhacks.h jpake.c jpake.h
|
||||
jpake_err.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
jpake_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
jpake_err.o: ../../include/openssl/err.h ../../include/openssl/jpake.h
|
||||
jpake_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
jpake_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
jpake_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
jpake_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
jpake_err.o: jpake_err.c
|
|
@ -1,84 +0,0 @@
|
|||
#
|
||||
# OpenSSL/krb5/Makefile
|
||||
#
|
||||
|
||||
DIR= krb5
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile README
|
||||
TEST=
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= krb5_asn.c
|
||||
|
||||
LIBOBJ= krb5_asn.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= krb5_asn.h
|
||||
HEADER= $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
krb5_asn.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
|
||||
krb5_asn.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
|
||||
krb5_asn.o: ../../include/openssl/e_os2.h ../../include/openssl/krb5_asn.h
|
||||
krb5_asn.o: ../../include/openssl/opensslconf.h
|
||||
krb5_asn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
krb5_asn.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
krb5_asn.o: ../../include/openssl/symhacks.h krb5_asn.c
|
|
@ -1,84 +0,0 @@
|
|||
#
|
||||
# OpenSSL/krb5/Makefile
|
||||
#
|
||||
|
||||
DIR= krb5
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile README
|
||||
TEST=
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= krb5_asn.c
|
||||
|
||||
LIBOBJ= krb5_asn.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= krb5_asn.h
|
||||
HEADER= $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
krb5_asn.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
|
||||
krb5_asn.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
|
||||
krb5_asn.o: ../../include/openssl/e_os2.h ../../include/openssl/krb5_asn.h
|
||||
krb5_asn.o: ../../include/openssl/opensslconf.h
|
||||
krb5_asn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
krb5_asn.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
krb5_asn.o: ../../include/openssl/symhacks.h krb5_asn.c
|
|
@ -1,88 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/lhash/Makefile
|
||||
#
|
||||
|
||||
DIR= lhash
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES=
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=lhash.c lh_stats.c
|
||||
LIBOBJ=lhash.o lh_stats.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= lhash.h
|
||||
HEADER= $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
lh_stats.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
lh_stats.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
lh_stats.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
lh_stats.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
lh_stats.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
lh_stats.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
lh_stats.o: ../../include/openssl/symhacks.h ../cryptlib.h lh_stats.c
|
||||
lhash.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
|
||||
lhash.o: ../../include/openssl/e_os2.h ../../include/openssl/lhash.h
|
||||
lhash.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
lhash.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
lhash.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h lhash.c
|
|
@ -1,88 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/lhash/Makefile
|
||||
#
|
||||
|
||||
DIR= lhash
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES=
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=lhash.c lh_stats.c
|
||||
LIBOBJ=lhash.o lh_stats.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= lhash.h
|
||||
HEADER= $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
lh_stats.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
lh_stats.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
lh_stats.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
lh_stats.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
lh_stats.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
lh_stats.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
lh_stats.o: ../../include/openssl/symhacks.h ../cryptlib.h lh_stats.c
|
||||
lhash.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
|
||||
lhash.o: ../../include/openssl/e_os2.h ../../include/openssl/lhash.h
|
||||
lhash.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
lhash.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
lhash.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h lhash.c
|
|
@ -1,89 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/md/Makefile
|
||||
#
|
||||
|
||||
DIR= md2
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES=
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=md2test.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=md2_dgst.c md2_one.c
|
||||
LIBOBJ=md2_dgst.o md2_one.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= md2.h
|
||||
HEADER= $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
md2_dgst.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
md2_dgst.o: ../../include/openssl/md2.h ../../include/openssl/opensslconf.h
|
||||
md2_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
md2_dgst.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
md2_dgst.o: ../../include/openssl/symhacks.h md2_dgst.c
|
||||
md2_one.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
md2_one.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
md2_one.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
md2_one.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h
|
||||
md2_one.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
md2_one.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
md2_one.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
md2_one.o: ../cryptlib.h md2_one.c
|
|
@ -1,89 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/md4/Makefile
|
||||
#
|
||||
|
||||
DIR= md4
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
CPP= $(CC) -E
|
||||
INCLUDES=
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=md4test.c
|
||||
APPS=md4.c
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=md4_dgst.c md4_one.c
|
||||
LIBOBJ=md4_dgst.o md4_one.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= md4.h
|
||||
HEADER= md4_locl.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
rm -f ../../include/openssl/$(EXHEADER) ../../test/$(TEST) ../../apps/$(APPS)
|
||||
|
||||
clean:
|
||||
rm -f asm/mx86unix.cpp *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
md4_dgst.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
md4_dgst.o: ../../include/openssl/md4.h ../../include/openssl/opensslconf.h
|
||||
md4_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
md4_dgst.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
md4_dgst.o: ../../include/openssl/symhacks.h ../md32_common.h md4_dgst.c
|
||||
md4_dgst.o: md4_locl.h
|
||||
md4_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
md4_one.o: ../../include/openssl/md4.h ../../include/openssl/opensslconf.h
|
||||
md4_one.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
md4_one.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
md4_one.o: ../../include/openssl/symhacks.h md4_one.c
|
|
@ -1,89 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/md4/Makefile
|
||||
#
|
||||
|
||||
DIR= md4
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
CPP= $(CC) -E
|
||||
INCLUDES=
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=md4test.c
|
||||
APPS=md4.c
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=md4_dgst.c md4_one.c
|
||||
LIBOBJ=md4_dgst.o md4_one.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= md4.h
|
||||
HEADER= md4_locl.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
rm -f ../../include/openssl/$(EXHEADER) ../../test/$(TEST) ../../apps/$(APPS)
|
||||
|
||||
clean:
|
||||
rm -f asm/mx86unix.cpp *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
md4_dgst.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
md4_dgst.o: ../../include/openssl/md4.h ../../include/openssl/opensslconf.h
|
||||
md4_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
md4_dgst.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
md4_dgst.o: ../../include/openssl/symhacks.h ../md32_common.h md4_dgst.c
|
||||
md4_dgst.o: md4_locl.h
|
||||
md4_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
md4_one.o: ../../include/openssl/md4.h ../../include/openssl/opensslconf.h
|
||||
md4_one.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
md4_one.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
md4_one.o: ../../include/openssl/symhacks.h md4_one.c
|
|
@ -1,102 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/md5/Makefile
|
||||
#
|
||||
|
||||
DIR= md5
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
CPP= $(CC) -E
|
||||
INCLUDES=-I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
MD5_ASM_OBJ=
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
ASFLAGS= $(INCLUDES) $(ASFLAG)
|
||||
AFLAGS= $(ASFLAGS)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=md5test.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=md5_dgst.c md5_one.c
|
||||
LIBOBJ=md5_dgst.o md5_one.o $(MD5_ASM_OBJ)
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= md5.h
|
||||
HEADER= md5_locl.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
md5-586.s: asm/md5-586.pl ../perlasm/x86asm.pl
|
||||
$(PERL) asm/md5-586.pl $(PERLASM_SCHEME) $(CFLAGS) > $@
|
||||
|
||||
md5-x86_64.s: asm/md5-x86_64.pl
|
||||
$(PERL) asm/md5-x86_64.pl $(PERLASM_SCHEME) > $@
|
||||
|
||||
md5-ia64.s: asm/md5-ia64.S
|
||||
$(CC) $(CFLAGS) -E asm/md5-ia64.S | \
|
||||
$(PERL) -ne 's/;\s+/;\n/g; print;' > $@
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
md5_dgst.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
md5_dgst.o: ../../include/openssl/md5.h ../../include/openssl/opensslconf.h
|
||||
md5_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
md5_dgst.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
md5_dgst.o: ../../include/openssl/symhacks.h ../md32_common.h md5_dgst.c
|
||||
md5_dgst.o: md5_locl.h
|
||||
md5_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
md5_one.o: ../../include/openssl/md5.h ../../include/openssl/opensslconf.h
|
||||
md5_one.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
md5_one.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
md5_one.o: ../../include/openssl/symhacks.h md5_one.c
|
|
@ -1,102 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/md5/Makefile
|
||||
#
|
||||
|
||||
DIR= md5
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
CPP= $(CC) -E
|
||||
INCLUDES=-I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
MD5_ASM_OBJ=
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
ASFLAGS= $(INCLUDES) $(ASFLAG)
|
||||
AFLAGS= $(ASFLAGS)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=md5test.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=md5_dgst.c md5_one.c
|
||||
LIBOBJ=md5_dgst.o md5_one.o $(MD5_ASM_OBJ)
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= md5.h
|
||||
HEADER= md5_locl.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
md5-586.s: asm/md5-586.pl ../perlasm/x86asm.pl
|
||||
$(PERL) asm/md5-586.pl $(PERLASM_SCHEME) $(CFLAGS) > $@
|
||||
|
||||
md5-x86_64.s: asm/md5-x86_64.pl
|
||||
$(PERL) asm/md5-x86_64.pl $(PERLASM_SCHEME) > $@
|
||||
|
||||
md5-ia64.s: asm/md5-ia64.S
|
||||
$(CC) $(CFLAGS) -E asm/md5-ia64.S | \
|
||||
$(PERL) -ne 's/;\s+/;\n/g; print;' > $@
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
md5_dgst.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
md5_dgst.o: ../../include/openssl/md5.h ../../include/openssl/opensslconf.h
|
||||
md5_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
md5_dgst.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
md5_dgst.o: ../../include/openssl/symhacks.h ../md32_common.h md5_dgst.c
|
||||
md5_dgst.o: md5_locl.h
|
||||
md5_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
md5_one.o: ../../include/openssl/md5.h ../../include/openssl/opensslconf.h
|
||||
md5_one.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
md5_one.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
md5_one.o: ../../include/openssl/symhacks.h md5_one.c
|
|
@ -1,93 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/mdc2/Makefile
|
||||
#
|
||||
|
||||
DIR= mdc2
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES=
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST= mdc2test.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=mdc2dgst.c mdc2_one.c
|
||||
LIBOBJ=mdc2dgst.o mdc2_one.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= mdc2.h
|
||||
HEADER= $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
mdc2_one.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
mdc2_one.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
mdc2_one.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
mdc2_one.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
mdc2_one.o: ../../include/openssl/lhash.h ../../include/openssl/mdc2.h
|
||||
mdc2_one.o: ../../include/openssl/opensslconf.h
|
||||
mdc2_one.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
mdc2_one.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
mdc2_one.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
|
||||
mdc2_one.o: ../../include/openssl/ui_compat.h ../cryptlib.h mdc2_one.c
|
||||
mdc2dgst.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
mdc2dgst.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
|
||||
mdc2dgst.o: ../../include/openssl/mdc2.h ../../include/openssl/opensslconf.h
|
||||
mdc2dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
mdc2dgst.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
mdc2dgst.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
|
||||
mdc2dgst.o: ../../include/openssl/ui_compat.h mdc2dgst.c
|
|
@ -1,93 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/mdc2/Makefile
|
||||
#
|
||||
|
||||
DIR= mdc2
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES=
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST= mdc2test.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=mdc2dgst.c mdc2_one.c
|
||||
LIBOBJ=mdc2dgst.o mdc2_one.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= mdc2.h
|
||||
HEADER= $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
mdc2_one.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
mdc2_one.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
mdc2_one.o: ../../include/openssl/des.h ../../include/openssl/des_old.h
|
||||
mdc2_one.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
mdc2_one.o: ../../include/openssl/lhash.h ../../include/openssl/mdc2.h
|
||||
mdc2_one.o: ../../include/openssl/opensslconf.h
|
||||
mdc2_one.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
mdc2_one.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
mdc2_one.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
|
||||
mdc2_one.o: ../../include/openssl/ui_compat.h ../cryptlib.h mdc2_one.c
|
||||
mdc2dgst.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
mdc2dgst.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
|
||||
mdc2dgst.o: ../../include/openssl/mdc2.h ../../include/openssl/opensslconf.h
|
||||
mdc2dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
mdc2dgst.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
mdc2dgst.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
|
||||
mdc2dgst.o: ../../include/openssl/ui_compat.h mdc2dgst.c
|
|
@ -1,144 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/modes/Makefile
|
||||
#
|
||||
|
||||
DIR= modes
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
MODES_ASM_OBJ=
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
ASFLAGS= $(INCLUDES) $(ASFLAG)
|
||||
AFLAGS= $(ASFLAGS)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= cbc128.c ctr128.c cts128.c cfb128.c ofb128.c gcm128.c \
|
||||
ccm128.c xts128.c
|
||||
LIBOBJ= cbc128.o ctr128.o cts128.o cfb128.o ofb128.o gcm128.o \
|
||||
ccm128.o xts128.o $(MODES_ASM_OBJ)
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
#EXHEADER= store.h str_compat.h
|
||||
EXHEADER= modes.h
|
||||
HEADER= modes_lcl.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
ghash-ia64.s: asm/ghash-ia64.pl
|
||||
$(PERL) asm/ghash-ia64.pl $@ $(CFLAGS)
|
||||
ghash-x86.s: asm/ghash-x86.pl
|
||||
$(PERL) asm/ghash-x86.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
|
||||
ghash-x86_64.s: asm/ghash-x86_64.pl
|
||||
$(PERL) asm/ghash-x86_64.pl $(PERLASM_SCHEME) > $@
|
||||
ghash-sparcv9.s: asm/ghash-sparcv9.pl
|
||||
$(PERL) asm/ghash-sparcv9.pl $@ $(CFLAGS)
|
||||
ghash-alpha.s: asm/ghash-alpha.pl
|
||||
(preproc=/tmp/$$$$.$@; trap "rm $$preproc" INT; \
|
||||
$(PERL) asm/ghash-alpha.pl > $$preproc && \
|
||||
$(CC) -E $$preproc > $@ && rm $$preproc)
|
||||
|
||||
ghash-parisc.s: asm/ghash-parisc.pl
|
||||
$(PERL) asm/ghash-parisc.pl $(PERLASM_SCHEME) $@
|
||||
|
||||
# GNU make "catch all"
|
||||
ghash-%.S: asm/ghash-%.pl; $(PERL) $< $(PERLASM_SCHEME) $@
|
||||
|
||||
ghash-armv4.o: ghash-armv4.S
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.s *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
cbc128.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
cbc128.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
|
||||
cbc128.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
cbc128.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
cbc128.o: ../../include/openssl/symhacks.h cbc128.c modes_lcl.h
|
||||
ccm128.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
ccm128.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
|
||||
ccm128.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ccm128.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ccm128.o: ../../include/openssl/symhacks.h ccm128.c modes_lcl.h
|
||||
cfb128.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
cfb128.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
|
||||
cfb128.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
cfb128.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
cfb128.o: ../../include/openssl/symhacks.h cfb128.c modes_lcl.h
|
||||
ctr128.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
ctr128.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
|
||||
ctr128.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ctr128.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ctr128.o: ../../include/openssl/symhacks.h ctr128.c modes_lcl.h
|
||||
cts128.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
cts128.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
|
||||
cts128.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
cts128.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
cts128.o: ../../include/openssl/symhacks.h cts128.c modes_lcl.h
|
||||
gcm128.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
gcm128.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
|
||||
gcm128.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
gcm128.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
gcm128.o: ../../include/openssl/symhacks.h gcm128.c modes_lcl.h
|
||||
ofb128.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
ofb128.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
|
||||
ofb128.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ofb128.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ofb128.o: ../../include/openssl/symhacks.h modes_lcl.h ofb128.c
|
||||
xts128.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
xts128.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
|
||||
xts128.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
xts128.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
xts128.o: ../../include/openssl/symhacks.h modes_lcl.h xts128.c
|
|
@ -1,144 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/modes/Makefile
|
||||
#
|
||||
|
||||
DIR= modes
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
MODES_ASM_OBJ=
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
ASFLAGS= $(INCLUDES) $(ASFLAG)
|
||||
AFLAGS= $(ASFLAGS)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= cbc128.c ctr128.c cts128.c cfb128.c ofb128.c gcm128.c \
|
||||
ccm128.c xts128.c
|
||||
LIBOBJ= cbc128.o ctr128.o cts128.o cfb128.o ofb128.o gcm128.o \
|
||||
ccm128.o xts128.o $(MODES_ASM_OBJ)
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
#EXHEADER= store.h str_compat.h
|
||||
EXHEADER= modes.h
|
||||
HEADER= modes_lcl.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
ghash-ia64.s: asm/ghash-ia64.pl
|
||||
$(PERL) asm/ghash-ia64.pl $@ $(CFLAGS)
|
||||
ghash-x86.s: asm/ghash-x86.pl
|
||||
$(PERL) asm/ghash-x86.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
|
||||
ghash-x86_64.s: asm/ghash-x86_64.pl
|
||||
$(PERL) asm/ghash-x86_64.pl $(PERLASM_SCHEME) > $@
|
||||
ghash-sparcv9.s: asm/ghash-sparcv9.pl
|
||||
$(PERL) asm/ghash-sparcv9.pl $@ $(CFLAGS)
|
||||
ghash-alpha.s: asm/ghash-alpha.pl
|
||||
(preproc=/tmp/$$$$.$@; trap "rm $$preproc" INT; \
|
||||
$(PERL) asm/ghash-alpha.pl > $$preproc && \
|
||||
$(CC) -E $$preproc > $@ && rm $$preproc)
|
||||
|
||||
ghash-parisc.s: asm/ghash-parisc.pl
|
||||
$(PERL) asm/ghash-parisc.pl $(PERLASM_SCHEME) $@
|
||||
|
||||
# GNU make "catch all"
|
||||
ghash-%.S: asm/ghash-%.pl; $(PERL) $< $(PERLASM_SCHEME) $@
|
||||
|
||||
ghash-armv4.o: ghash-armv4.S
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.s *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
cbc128.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
cbc128.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
|
||||
cbc128.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
cbc128.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
cbc128.o: ../../include/openssl/symhacks.h cbc128.c modes_lcl.h
|
||||
ccm128.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
ccm128.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
|
||||
ccm128.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ccm128.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ccm128.o: ../../include/openssl/symhacks.h ccm128.c modes_lcl.h
|
||||
cfb128.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
cfb128.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
|
||||
cfb128.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
cfb128.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
cfb128.o: ../../include/openssl/symhacks.h cfb128.c modes_lcl.h
|
||||
ctr128.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
ctr128.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
|
||||
ctr128.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ctr128.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ctr128.o: ../../include/openssl/symhacks.h ctr128.c modes_lcl.h
|
||||
cts128.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
cts128.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
|
||||
cts128.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
cts128.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
cts128.o: ../../include/openssl/symhacks.h cts128.c modes_lcl.h
|
||||
gcm128.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
gcm128.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
|
||||
gcm128.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
gcm128.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
gcm128.o: ../../include/openssl/symhacks.h gcm128.c modes_lcl.h
|
||||
ofb128.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
ofb128.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
|
||||
ofb128.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ofb128.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
ofb128.o: ../../include/openssl/symhacks.h modes_lcl.h ofb128.c
|
||||
xts128.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
xts128.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
|
||||
xts128.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
xts128.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
xts128.o: ../../include/openssl/symhacks.h modes_lcl.h xts128.c
|
|
@ -62,7 +62,9 @@
|
|||
|
||||
#if !defined(OPENSSL_IMPLEMENTS_strncasecmp) && \
|
||||
!defined(OPENSSL_SYSNAME_WIN32) && \
|
||||
!defined(NETWARE_CLIB)
|
||||
!defined(NETWARE_CLIB) && \
|
||||
!defined(_WIN32)
|
||||
|
||||
# include <strings.h>
|
||||
#endif
|
||||
|
||||
|
|
|
@ -1,130 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/objects/Makefile
|
||||
#
|
||||
|
||||
DIR= objects
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
PERL= perl
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile README
|
||||
TEST=
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= o_names.c obj_dat.c obj_lib.c obj_err.c obj_xref.c
|
||||
LIBOBJ= o_names.o obj_dat.o obj_lib.o obj_err.o obj_xref.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= objects.h obj_mac.h
|
||||
HEADER= $(EXHEADER) obj_dat.h obj_xref.h
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: obj_dat.h obj_xref.h lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
obj_dat.h: obj_dat.pl obj_mac.h
|
||||
$(PERL) obj_dat.pl obj_mac.h obj_dat.h
|
||||
|
||||
# objects.pl both reads and writes obj_mac.num
|
||||
obj_mac.h: objects.pl objects.txt obj_mac.num
|
||||
$(PERL) objects.pl objects.txt obj_mac.num obj_mac.h
|
||||
@sleep 1; touch obj_mac.h; sleep 1
|
||||
|
||||
obj_xref.h: objxref.pl obj_xref.txt obj_mac.num
|
||||
$(PERL) objxref.pl obj_mac.num obj_xref.txt > obj_xref.h
|
||||
@sleep 1; touch obj_xref.h; sleep 1
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
o_names.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
o_names.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
o_names.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
o_names.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
o_names.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
o_names.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
o_names.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
o_names.o: o_names.c
|
||||
obj_dat.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
obj_dat.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
obj_dat.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
obj_dat.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
obj_dat.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
obj_dat.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
obj_dat.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
obj_dat.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
obj_dat.o: ../../include/openssl/symhacks.h ../cryptlib.h obj_dat.c obj_dat.h
|
||||
obj_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
obj_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
obj_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
obj_err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
obj_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
obj_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
obj_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
obj_err.o: obj_err.c
|
||||
obj_lib.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
obj_lib.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
obj_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
obj_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
obj_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
obj_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
obj_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
obj_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
obj_lib.o: ../cryptlib.h obj_lib.c
|
||||
obj_xref.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
obj_xref.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
obj_xref.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
obj_xref.o: ../../include/openssl/opensslconf.h
|
||||
obj_xref.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
obj_xref.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
obj_xref.o: ../../include/openssl/symhacks.h obj_xref.c obj_xref.h
|
|
@ -1,130 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/objects/Makefile
|
||||
#
|
||||
|
||||
DIR= objects
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
PERL= perl
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile README
|
||||
TEST=
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= o_names.c obj_dat.c obj_lib.c obj_err.c obj_xref.c
|
||||
LIBOBJ= o_names.o obj_dat.o obj_lib.o obj_err.o obj_xref.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= objects.h obj_mac.h
|
||||
HEADER= $(EXHEADER) obj_dat.h obj_xref.h
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: obj_dat.h obj_xref.h lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
obj_dat.h: obj_dat.pl obj_mac.h
|
||||
$(PERL) obj_dat.pl obj_mac.h obj_dat.h
|
||||
|
||||
# objects.pl both reads and writes obj_mac.num
|
||||
obj_mac.h: objects.pl objects.txt obj_mac.num
|
||||
$(PERL) objects.pl objects.txt obj_mac.num obj_mac.h
|
||||
@sleep 1; touch obj_mac.h; sleep 1
|
||||
|
||||
obj_xref.h: objxref.pl obj_xref.txt obj_mac.num
|
||||
$(PERL) objxref.pl obj_mac.num obj_xref.txt > obj_xref.h
|
||||
@sleep 1; touch obj_xref.h; sleep 1
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
o_names.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
o_names.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
o_names.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
o_names.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
o_names.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
o_names.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
o_names.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
o_names.o: o_names.c
|
||||
obj_dat.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
obj_dat.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
obj_dat.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
obj_dat.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
obj_dat.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
obj_dat.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
obj_dat.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
obj_dat.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
obj_dat.o: ../../include/openssl/symhacks.h ../cryptlib.h obj_dat.c obj_dat.h
|
||||
obj_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
obj_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
obj_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
obj_err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
obj_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
obj_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
obj_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
obj_err.o: obj_err.c
|
||||
obj_lib.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
obj_lib.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
obj_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
obj_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
obj_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
obj_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
obj_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
obj_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
obj_lib.o: ../cryptlib.h obj_lib.c
|
||||
obj_xref.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
obj_xref.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
obj_xref.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
obj_xref.o: ../../include/openssl/opensslconf.h
|
||||
obj_xref.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
obj_xref.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
obj_xref.o: ../../include/openssl/symhacks.h obj_xref.c obj_xref.h
|
|
@ -1,213 +0,0 @@
|
|||
#
|
||||
# OpenSSL/ocsp/Makefile
|
||||
#
|
||||
|
||||
DIR= ocsp
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile README
|
||||
TEST=
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= ocsp_asn.c ocsp_ext.c ocsp_ht.c ocsp_lib.c ocsp_cl.c \
|
||||
ocsp_srv.c ocsp_prn.c ocsp_vfy.c ocsp_err.c
|
||||
|
||||
LIBOBJ= ocsp_asn.o ocsp_ext.o ocsp_ht.o ocsp_lib.o ocsp_cl.o \
|
||||
ocsp_srv.o ocsp_prn.o ocsp_vfy.o ocsp_err.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= ocsp.h
|
||||
HEADER= $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
ocsp_asn.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
|
||||
ocsp_asn.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
ocsp_asn.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
ocsp_asn.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ocsp_asn.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
ocsp_asn.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
ocsp_asn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
ocsp_asn.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h
|
||||
ocsp_asn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ocsp_asn.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
ocsp_asn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
ocsp_asn.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
ocsp_asn.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
ocsp_asn.o: ocsp_asn.c
|
||||
ocsp_cl.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
ocsp_cl.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
ocsp_cl.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
ocsp_cl.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ocsp_cl.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
ocsp_cl.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
ocsp_cl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
ocsp_cl.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h
|
||||
ocsp_cl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
ocsp_cl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h
|
||||
ocsp_cl.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h
|
||||
ocsp_cl.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
ocsp_cl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
ocsp_cl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
ocsp_cl.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
ocsp_cl.o: ../cryptlib.h ocsp_cl.c
|
||||
ocsp_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ocsp_err.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
|
||||
ocsp_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
ocsp_err.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
ocsp_err.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
ocsp_err.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
ocsp_err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
ocsp_err.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h
|
||||
ocsp_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ocsp_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
ocsp_err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
ocsp_err.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
ocsp_err.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
ocsp_err.o: ocsp_err.c
|
||||
ocsp_ext.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
ocsp_ext.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
ocsp_ext.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
ocsp_ext.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ocsp_ext.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
ocsp_ext.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
ocsp_ext.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
ocsp_ext.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h
|
||||
ocsp_ext.o: ../../include/openssl/opensslconf.h
|
||||
ocsp_ext.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ocsp_ext.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
ocsp_ext.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
ocsp_ext.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
ocsp_ext.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
ocsp_ext.o: ../../include/openssl/x509v3.h ../cryptlib.h ocsp_ext.c
|
||||
ocsp_ht.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
ocsp_ht.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
ocsp_ht.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
ocsp_ht.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ocsp_ht.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
ocsp_ht.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
ocsp_ht.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
ocsp_ht.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h
|
||||
ocsp_ht.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
ocsp_ht.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
ocsp_ht.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
ocsp_ht.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
ocsp_ht.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
ocsp_ht.o: ../../include/openssl/x509v3.h ocsp_ht.c
|
||||
ocsp_lib.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
ocsp_lib.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
ocsp_lib.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
|
||||
ocsp_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
ocsp_lib.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
ocsp_lib.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
ocsp_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
ocsp_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
ocsp_lib.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h
|
||||
ocsp_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ocsp_lib.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
|
||||
ocsp_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
ocsp_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
ocsp_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
ocsp_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
ocsp_lib.o: ../../include/openssl/x509v3.h ../cryptlib.h ocsp_lib.c
|
||||
ocsp_prn.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ocsp_prn.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
|
||||
ocsp_prn.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
ocsp_prn.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
ocsp_prn.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
ocsp_prn.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
ocsp_prn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
ocsp_prn.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h
|
||||
ocsp_prn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ocsp_prn.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
|
||||
ocsp_prn.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
ocsp_prn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
ocsp_prn.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
ocsp_prn.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
ocsp_prn.o: ocsp_prn.c
|
||||
ocsp_srv.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
ocsp_srv.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
ocsp_srv.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
ocsp_srv.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ocsp_srv.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
ocsp_srv.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
ocsp_srv.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
ocsp_srv.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h
|
||||
ocsp_srv.o: ../../include/openssl/opensslconf.h
|
||||
ocsp_srv.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ocsp_srv.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
|
||||
ocsp_srv.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
ocsp_srv.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
ocsp_srv.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
ocsp_srv.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
ocsp_srv.o: ../../include/openssl/x509v3.h ../cryptlib.h ocsp_srv.c
|
||||
ocsp_vfy.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ocsp_vfy.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
|
||||
ocsp_vfy.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
ocsp_vfy.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
ocsp_vfy.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
ocsp_vfy.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
ocsp_vfy.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
ocsp_vfy.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h
|
||||
ocsp_vfy.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ocsp_vfy.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
ocsp_vfy.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
ocsp_vfy.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
ocsp_vfy.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
ocsp_vfy.o: ocsp_vfy.c
|
|
@ -1,213 +0,0 @@
|
|||
#
|
||||
# OpenSSL/ocsp/Makefile
|
||||
#
|
||||
|
||||
DIR= ocsp
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile README
|
||||
TEST=
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= ocsp_asn.c ocsp_ext.c ocsp_ht.c ocsp_lib.c ocsp_cl.c \
|
||||
ocsp_srv.c ocsp_prn.c ocsp_vfy.c ocsp_err.c
|
||||
|
||||
LIBOBJ= ocsp_asn.o ocsp_ext.o ocsp_ht.o ocsp_lib.o ocsp_cl.o \
|
||||
ocsp_srv.o ocsp_prn.o ocsp_vfy.o ocsp_err.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= ocsp.h
|
||||
HEADER= $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
ocsp_asn.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
|
||||
ocsp_asn.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
ocsp_asn.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
ocsp_asn.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ocsp_asn.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
ocsp_asn.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
ocsp_asn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
ocsp_asn.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h
|
||||
ocsp_asn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ocsp_asn.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
ocsp_asn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
ocsp_asn.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
ocsp_asn.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
ocsp_asn.o: ocsp_asn.c
|
||||
ocsp_cl.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
ocsp_cl.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
ocsp_cl.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
ocsp_cl.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ocsp_cl.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
ocsp_cl.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
ocsp_cl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
ocsp_cl.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h
|
||||
ocsp_cl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
ocsp_cl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h
|
||||
ocsp_cl.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h
|
||||
ocsp_cl.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
ocsp_cl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
ocsp_cl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
ocsp_cl.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
ocsp_cl.o: ../cryptlib.h ocsp_cl.c
|
||||
ocsp_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ocsp_err.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
|
||||
ocsp_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
ocsp_err.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
ocsp_err.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
ocsp_err.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
ocsp_err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
ocsp_err.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h
|
||||
ocsp_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ocsp_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
ocsp_err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
ocsp_err.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
ocsp_err.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
ocsp_err.o: ocsp_err.c
|
||||
ocsp_ext.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
ocsp_ext.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
ocsp_ext.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
ocsp_ext.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ocsp_ext.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
ocsp_ext.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
ocsp_ext.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
ocsp_ext.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h
|
||||
ocsp_ext.o: ../../include/openssl/opensslconf.h
|
||||
ocsp_ext.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ocsp_ext.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
ocsp_ext.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
ocsp_ext.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
ocsp_ext.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
ocsp_ext.o: ../../include/openssl/x509v3.h ../cryptlib.h ocsp_ext.c
|
||||
ocsp_ht.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
ocsp_ht.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
ocsp_ht.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
ocsp_ht.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ocsp_ht.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
ocsp_ht.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
ocsp_ht.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
ocsp_ht.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h
|
||||
ocsp_ht.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
ocsp_ht.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
ocsp_ht.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
ocsp_ht.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
ocsp_ht.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
ocsp_ht.o: ../../include/openssl/x509v3.h ocsp_ht.c
|
||||
ocsp_lib.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
ocsp_lib.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
ocsp_lib.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
|
||||
ocsp_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
ocsp_lib.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
ocsp_lib.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
ocsp_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
ocsp_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
ocsp_lib.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h
|
||||
ocsp_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ocsp_lib.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
|
||||
ocsp_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
ocsp_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
ocsp_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
ocsp_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
ocsp_lib.o: ../../include/openssl/x509v3.h ../cryptlib.h ocsp_lib.c
|
||||
ocsp_prn.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ocsp_prn.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
|
||||
ocsp_prn.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
ocsp_prn.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
ocsp_prn.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
ocsp_prn.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
ocsp_prn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
ocsp_prn.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h
|
||||
ocsp_prn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ocsp_prn.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
|
||||
ocsp_prn.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
ocsp_prn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
ocsp_prn.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
ocsp_prn.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
ocsp_prn.o: ocsp_prn.c
|
||||
ocsp_srv.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
ocsp_srv.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
ocsp_srv.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
ocsp_srv.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
ocsp_srv.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
ocsp_srv.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
ocsp_srv.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
ocsp_srv.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h
|
||||
ocsp_srv.o: ../../include/openssl/opensslconf.h
|
||||
ocsp_srv.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ocsp_srv.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
|
||||
ocsp_srv.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
ocsp_srv.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
ocsp_srv.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
ocsp_srv.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
ocsp_srv.o: ../../include/openssl/x509v3.h ../cryptlib.h ocsp_srv.c
|
||||
ocsp_vfy.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
ocsp_vfy.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
|
||||
ocsp_vfy.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
ocsp_vfy.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
ocsp_vfy.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
ocsp_vfy.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
ocsp_vfy.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
ocsp_vfy.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h
|
||||
ocsp_vfy.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
ocsp_vfy.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
ocsp_vfy.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
ocsp_vfy.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
ocsp_vfy.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
ocsp_vfy.o: ocsp_vfy.c
|
|
@ -1,6 +1,30 @@
|
|||
/* opensslconf.h */
|
||||
/* WARNING: Generated automatically from opensslconf.h.in by Configure. */
|
||||
|
||||
//sorry godot needs a single file for multiple builds
|
||||
|
||||
// Check windows
|
||||
|
||||
#ifdef USE_64BITS
|
||||
//weirder platforms that don't use GCC, LLVM or MSVC must define this
|
||||
# define OPENSSL_USE_64_BITS
|
||||
#elif _WIN32 || _WIN64
|
||||
# if _WIN64
|
||||
# define OPENSSL_USE_64_BITS
|
||||
# endif
|
||||
// Check GCC
|
||||
#elif __GNUC__
|
||||
# if __x86_64__ || __ppc64__
|
||||
# define OPENSSL_USE_64_BITS
|
||||
# endif
|
||||
#endif
|
||||
|
||||
#ifndef OPENSSL_USE_64_BITS
|
||||
wqerw
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
/* OpenSSL was configured with the following options: */
|
||||
#ifndef OPENSSL_DOING_MAKEDEPEND
|
||||
|
||||
|
@ -117,7 +141,12 @@
|
|||
* - Intel P6 because partial register stalls are very expensive;
|
||||
* - elder Alpha because it lacks byte load/store instructions;
|
||||
*/
|
||||
#ifdef OPENSSL_USE_64_BITS
|
||||
#define RC4_INT unsigned int
|
||||
#else
|
||||
#define RC4_INT unsigned char
|
||||
#endif
|
||||
|
||||
#endif
|
||||
#if !defined(RC4_CHUNK)
|
||||
/*
|
||||
|
@ -138,14 +167,34 @@
|
|||
|
||||
#if defined(HEADER_BN_H) && !defined(CONFIG_HEADER_BN_H)
|
||||
#define CONFIG_HEADER_BN_H
|
||||
#ifdef OPENSSL_USE_64_BITS
|
||||
#undef BN_LLONG
|
||||
#else
|
||||
#define BN_LLONG
|
||||
#endif
|
||||
|
||||
/* Should we define BN_DIV2W here? */
|
||||
|
||||
/* Only one for the following should be defined */
|
||||
|
||||
#ifdef OPENSSL_USE_64_BITS
|
||||
|
||||
#define SIXTY_FOUR_BIT_LONG
|
||||
#undef SIXTY_FOUR_BIT
|
||||
#undef THIRTY_TWO_BIT
|
||||
|
||||
#else
|
||||
|
||||
#undef SIXTY_FOUR_BIT_LONG
|
||||
#undef SIXTY_FOUR_BIT
|
||||
#define THIRTY_TWO_BIT
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
#if defined(HEADER_RC4_LOCL_H) && !defined(CONFIG_HEADER_RC4_LOCL_H)
|
||||
|
|
|
@ -1,258 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/pem/Makefile
|
||||
#
|
||||
|
||||
DIR= pem
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= pem_sign.c pem_seal.c pem_info.c pem_lib.c pem_all.c pem_err.c \
|
||||
pem_x509.c pem_xaux.c pem_oth.c pem_pk8.c pem_pkey.c pvkfmt.c
|
||||
|
||||
LIBOBJ= pem_sign.o pem_seal.o pem_info.o pem_lib.o pem_all.o pem_err.o \
|
||||
pem_x509.o pem_xaux.o pem_oth.o pem_pk8.o pem_pkey.o pvkfmt.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= pem.h pem2.h
|
||||
HEADER= $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links: $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
pem_all.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
pem_all.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
pem_all.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
|
||||
pem_all.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
||||
pem_all.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
pem_all.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
pem_all.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
pem_all.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
pem_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
pem_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h
|
||||
pem_all.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h
|
||||
pem_all.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
pem_all.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
pem_all.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
pem_all.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_all.c
|
||||
pem_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
pem_err.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
pem_err.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
pem_err.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
pem_err.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
pem_err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
pem_err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
pem_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
pem_err.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
|
||||
pem_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
pem_err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
pem_err.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
pem_err.o: ../../include/openssl/x509_vfy.h pem_err.c
|
||||
pem_info.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
pem_info.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
pem_info.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h
|
||||
pem_info.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
pem_info.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
pem_info.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
pem_info.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
pem_info.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
pem_info.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
pem_info.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
|
||||
pem_info.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
|
||||
pem_info.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
pem_info.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
pem_info.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
pem_info.o: ../cryptlib.h pem_info.c
|
||||
pem_lib.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
pem_lib.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
pem_lib.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
pem_lib.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
|
||||
pem_lib.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
pem_lib.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
pem_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
pem_lib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
pem_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
pem_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
pem_lib.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
|
||||
pem_lib.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
|
||||
pem_lib.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
pem_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
pem_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
|
||||
pem_lib.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h
|
||||
pem_lib.o: ../../include/openssl/x509_vfy.h ../asn1/asn1_locl.h ../cryptlib.h
|
||||
pem_lib.o: pem_lib.c
|
||||
pem_oth.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
pem_oth.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
pem_oth.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
pem_oth.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
pem_oth.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
pem_oth.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
pem_oth.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
pem_oth.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
pem_oth.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h
|
||||
pem_oth.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h
|
||||
pem_oth.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
pem_oth.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
pem_oth.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
pem_oth.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_oth.c
|
||||
pem_pk8.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
pem_pk8.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
pem_pk8.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
pem_pk8.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
pem_pk8.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
pem_pk8.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
pem_pk8.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
pem_pk8.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
pem_pk8.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h
|
||||
pem_pk8.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs12.h
|
||||
pem_pk8.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
pem_pk8.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
pem_pk8.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
pem_pk8.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
pem_pk8.o: ../cryptlib.h pem_pk8.c
|
||||
pem_pkey.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
pem_pkey.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
pem_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
pem_pkey.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
pem_pkey.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
pem_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
pem_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
pem_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
pem_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
pem_pkey.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
|
||||
pem_pkey.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
|
||||
pem_pkey.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
pem_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
pem_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
pem_pkey.o: ../../include/openssl/x509_vfy.h ../asn1/asn1_locl.h ../cryptlib.h
|
||||
pem_pkey.o: pem_pkey.c
|
||||
pem_seal.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
pem_seal.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
pem_seal.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
pem_seal.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
pem_seal.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
pem_seal.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
pem_seal.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
pem_seal.o: ../../include/openssl/opensslconf.h
|
||||
pem_seal.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
pem_seal.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
|
||||
pem_seal.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
pem_seal.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
pem_seal.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
pem_seal.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
pem_seal.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_seal.c
|
||||
pem_sign.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
pem_sign.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
pem_sign.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
pem_sign.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
pem_sign.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
pem_sign.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
pem_sign.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
pem_sign.o: ../../include/openssl/opensslconf.h
|
||||
pem_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
pem_sign.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
|
||||
pem_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
pem_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
pem_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
pem_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
pem_sign.o: ../cryptlib.h pem_sign.c
|
||||
pem_x509.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
pem_x509.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
pem_x509.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
pem_x509.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
pem_x509.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
pem_x509.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
pem_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
pem_x509.o: ../../include/openssl/opensslconf.h
|
||||
pem_x509.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
pem_x509.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
|
||||
pem_x509.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
pem_x509.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
pem_x509.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
pem_x509.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_x509.c
|
||||
pem_xaux.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
pem_xaux.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
pem_xaux.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
pem_xaux.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
pem_xaux.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
pem_xaux.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
pem_xaux.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
pem_xaux.o: ../../include/openssl/opensslconf.h
|
||||
pem_xaux.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
pem_xaux.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
|
||||
pem_xaux.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
pem_xaux.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
pem_xaux.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
pem_xaux.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_xaux.c
|
||||
pvkfmt.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
pvkfmt.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
pvkfmt.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h
|
||||
pvkfmt.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
pvkfmt.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
pvkfmt.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
pvkfmt.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
pvkfmt.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
pvkfmt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
pvkfmt.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
|
||||
pvkfmt.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
pvkfmt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
pvkfmt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
pvkfmt.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
pvkfmt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pvkfmt.c
|
|
@ -1,258 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/pem/Makefile
|
||||
#
|
||||
|
||||
DIR= pem
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= pem_sign.c pem_seal.c pem_info.c pem_lib.c pem_all.c pem_err.c \
|
||||
pem_x509.c pem_xaux.c pem_oth.c pem_pk8.c pem_pkey.c pvkfmt.c
|
||||
|
||||
LIBOBJ= pem_sign.o pem_seal.o pem_info.o pem_lib.o pem_all.o pem_err.o \
|
||||
pem_x509.o pem_xaux.o pem_oth.o pem_pk8.o pem_pkey.o pvkfmt.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= pem.h pem2.h
|
||||
HEADER= $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links: $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
pem_all.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
pem_all.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
pem_all.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
|
||||
pem_all.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
||||
pem_all.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
pem_all.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
pem_all.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
pem_all.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
pem_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
pem_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h
|
||||
pem_all.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h
|
||||
pem_all.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
pem_all.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
pem_all.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
pem_all.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_all.c
|
||||
pem_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
pem_err.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
pem_err.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
pem_err.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
pem_err.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
pem_err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
pem_err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
pem_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
pem_err.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
|
||||
pem_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
pem_err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
pem_err.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
pem_err.o: ../../include/openssl/x509_vfy.h pem_err.c
|
||||
pem_info.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
pem_info.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
pem_info.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h
|
||||
pem_info.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
pem_info.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
pem_info.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
pem_info.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
pem_info.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
pem_info.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
pem_info.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
|
||||
pem_info.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
|
||||
pem_info.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
pem_info.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
pem_info.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
pem_info.o: ../cryptlib.h pem_info.c
|
||||
pem_lib.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
pem_lib.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
pem_lib.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
||||
pem_lib.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h
|
||||
pem_lib.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
pem_lib.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
pem_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
pem_lib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
pem_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
pem_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
pem_lib.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
|
||||
pem_lib.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
|
||||
pem_lib.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
pem_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
pem_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
|
||||
pem_lib.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h
|
||||
pem_lib.o: ../../include/openssl/x509_vfy.h ../asn1/asn1_locl.h ../cryptlib.h
|
||||
pem_lib.o: pem_lib.c
|
||||
pem_oth.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
pem_oth.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
pem_oth.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
pem_oth.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
pem_oth.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
pem_oth.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
pem_oth.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
pem_oth.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
pem_oth.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h
|
||||
pem_oth.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h
|
||||
pem_oth.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
pem_oth.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
pem_oth.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
pem_oth.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_oth.c
|
||||
pem_pk8.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
pem_pk8.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
pem_pk8.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
pem_pk8.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
pem_pk8.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
pem_pk8.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
pem_pk8.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
pem_pk8.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
pem_pk8.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h
|
||||
pem_pk8.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs12.h
|
||||
pem_pk8.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
pem_pk8.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
pem_pk8.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
pem_pk8.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
pem_pk8.o: ../cryptlib.h pem_pk8.c
|
||||
pem_pkey.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
pem_pkey.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
pem_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
pem_pkey.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
pem_pkey.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
pem_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
pem_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
pem_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
pem_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
pem_pkey.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
|
||||
pem_pkey.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
|
||||
pem_pkey.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
pem_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
pem_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
pem_pkey.o: ../../include/openssl/x509_vfy.h ../asn1/asn1_locl.h ../cryptlib.h
|
||||
pem_pkey.o: pem_pkey.c
|
||||
pem_seal.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
pem_seal.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
pem_seal.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
pem_seal.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
pem_seal.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
pem_seal.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
pem_seal.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
pem_seal.o: ../../include/openssl/opensslconf.h
|
||||
pem_seal.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
pem_seal.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
|
||||
pem_seal.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
pem_seal.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
pem_seal.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
pem_seal.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
pem_seal.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_seal.c
|
||||
pem_sign.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
pem_sign.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
pem_sign.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
pem_sign.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
pem_sign.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
pem_sign.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
pem_sign.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
pem_sign.o: ../../include/openssl/opensslconf.h
|
||||
pem_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
pem_sign.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
|
||||
pem_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
pem_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
pem_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
pem_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
pem_sign.o: ../cryptlib.h pem_sign.c
|
||||
pem_x509.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
pem_x509.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
pem_x509.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
pem_x509.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
pem_x509.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
pem_x509.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
pem_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
pem_x509.o: ../../include/openssl/opensslconf.h
|
||||
pem_x509.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
pem_x509.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
|
||||
pem_x509.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
pem_x509.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
pem_x509.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
pem_x509.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_x509.c
|
||||
pem_xaux.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
pem_xaux.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
pem_xaux.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
pem_xaux.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
pem_xaux.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
pem_xaux.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
pem_xaux.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
pem_xaux.o: ../../include/openssl/opensslconf.h
|
||||
pem_xaux.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
pem_xaux.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
|
||||
pem_xaux.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
pem_xaux.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
pem_xaux.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
pem_xaux.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_xaux.c
|
||||
pvkfmt.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
pvkfmt.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
pvkfmt.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h
|
||||
pvkfmt.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
pvkfmt.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
pvkfmt.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
pvkfmt.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
pvkfmt.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
pvkfmt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
pvkfmt.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
|
||||
pvkfmt.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
pvkfmt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
pvkfmt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
pvkfmt.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
pvkfmt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pvkfmt.c
|
|
@ -1,286 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/pkcs12/Makefile
|
||||
#
|
||||
|
||||
DIR= pkcs12
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= p12_add.c p12_asn.c p12_attr.c p12_crpt.c p12_crt.c p12_decr.c \
|
||||
p12_init.c p12_key.c p12_kiss.c p12_mutl.c\
|
||||
p12_utl.c p12_npas.c pk12err.c p12_p8d.c p12_p8e.c
|
||||
LIBOBJ= p12_add.o p12_asn.o p12_attr.o p12_crpt.o p12_crt.o p12_decr.o \
|
||||
p12_init.o p12_key.o p12_kiss.o p12_mutl.o\
|
||||
p12_utl.o p12_npas.o pk12err.o p12_p8d.o p12_p8e.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= pkcs12.h
|
||||
HEADER= $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
test:
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
p12_add.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
p12_add.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
p12_add.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
p12_add.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
p12_add.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
p12_add.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
p12_add.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
p12_add.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
p12_add.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h
|
||||
p12_add.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
p12_add.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
p12_add.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
p12_add.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_add.c
|
||||
p12_asn.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
p12_asn.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
p12_asn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
p12_asn.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
p12_asn.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
p12_asn.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
p12_asn.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
p12_asn.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
p12_asn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
p12_asn.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
|
||||
p12_asn.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
p12_asn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
p12_asn.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
p12_asn.o: ../cryptlib.h p12_asn.c
|
||||
p12_attr.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
p12_attr.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
p12_attr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
p12_attr.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
p12_attr.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
p12_attr.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
p12_attr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
p12_attr.o: ../../include/openssl/opensslconf.h
|
||||
p12_attr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
p12_attr.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
|
||||
p12_attr.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
p12_attr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
p12_attr.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
p12_attr.o: ../cryptlib.h p12_attr.c
|
||||
p12_crpt.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
p12_crpt.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
p12_crpt.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
p12_crpt.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
p12_crpt.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
p12_crpt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
p12_crpt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
p12_crpt.o: ../../include/openssl/opensslconf.h
|
||||
p12_crpt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
p12_crpt.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
|
||||
p12_crpt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
p12_crpt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
p12_crpt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
p12_crpt.o: ../cryptlib.h p12_crpt.c
|
||||
p12_crt.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
p12_crt.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
p12_crt.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
p12_crt.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
p12_crt.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
p12_crt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
p12_crt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
p12_crt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
p12_crt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h
|
||||
p12_crt.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
p12_crt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
p12_crt.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
p12_crt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_crt.c
|
||||
p12_decr.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
p12_decr.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
p12_decr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
p12_decr.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
p12_decr.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
p12_decr.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
p12_decr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
p12_decr.o: ../../include/openssl/opensslconf.h
|
||||
p12_decr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
p12_decr.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
|
||||
p12_decr.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
p12_decr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
p12_decr.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
p12_decr.o: ../cryptlib.h p12_decr.c
|
||||
p12_init.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
p12_init.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
p12_init.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
p12_init.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
p12_init.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
p12_init.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
p12_init.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
p12_init.o: ../../include/openssl/opensslconf.h
|
||||
p12_init.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
p12_init.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
|
||||
p12_init.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
p12_init.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
p12_init.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
p12_init.o: ../cryptlib.h p12_init.c
|
||||
p12_key.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
p12_key.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
p12_key.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
p12_key.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
p12_key.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
p12_key.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
p12_key.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
p12_key.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
p12_key.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
p12_key.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
|
||||
p12_key.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
p12_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
p12_key.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
p12_key.o: ../cryptlib.h p12_key.c
|
||||
p12_kiss.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
p12_kiss.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
p12_kiss.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
p12_kiss.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
p12_kiss.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
p12_kiss.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
p12_kiss.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
p12_kiss.o: ../../include/openssl/opensslconf.h
|
||||
p12_kiss.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
p12_kiss.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
|
||||
p12_kiss.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
p12_kiss.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
p12_kiss.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
p12_kiss.o: ../cryptlib.h p12_kiss.c
|
||||
p12_mutl.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
p12_mutl.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
p12_mutl.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
p12_mutl.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
p12_mutl.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
p12_mutl.o: ../../include/openssl/evp.h ../../include/openssl/hmac.h
|
||||
p12_mutl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
p12_mutl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
p12_mutl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
p12_mutl.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
|
||||
p12_mutl.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
p12_mutl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
p12_mutl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
p12_mutl.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_mutl.c
|
||||
p12_npas.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
p12_npas.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
p12_npas.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
p12_npas.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
p12_npas.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
p12_npas.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
p12_npas.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
p12_npas.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
p12_npas.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
|
||||
p12_npas.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
|
||||
p12_npas.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
p12_npas.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
p12_npas.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
p12_npas.o: p12_npas.c
|
||||
p12_p8d.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
p12_p8d.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
p12_p8d.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
p12_p8d.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
p12_p8d.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
p12_p8d.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
p12_p8d.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
p12_p8d.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
p12_p8d.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h
|
||||
p12_p8d.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
p12_p8d.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
p12_p8d.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
p12_p8d.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_p8d.c
|
||||
p12_p8e.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
p12_p8e.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
p12_p8e.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
p12_p8e.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
p12_p8e.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
p12_p8e.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
p12_p8e.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
p12_p8e.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
p12_p8e.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h
|
||||
p12_p8e.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
p12_p8e.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
p12_p8e.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
p12_p8e.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_p8e.c
|
||||
p12_utl.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
p12_utl.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
p12_utl.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
p12_utl.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
p12_utl.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
p12_utl.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
p12_utl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
p12_utl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
p12_utl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h
|
||||
p12_utl.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
p12_utl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
p12_utl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
p12_utl.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_utl.c
|
||||
pk12err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
pk12err.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
pk12err.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
pk12err.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
pk12err.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
pk12err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
pk12err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
pk12err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
pk12err.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
|
||||
pk12err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
pk12err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
pk12err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
pk12err.o: pk12err.c
|
|
@ -1,286 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/pkcs12/Makefile
|
||||
#
|
||||
|
||||
DIR= pkcs12
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= p12_add.c p12_asn.c p12_attr.c p12_crpt.c p12_crt.c p12_decr.c \
|
||||
p12_init.c p12_key.c p12_kiss.c p12_mutl.c\
|
||||
p12_utl.c p12_npas.c pk12err.c p12_p8d.c p12_p8e.c
|
||||
LIBOBJ= p12_add.o p12_asn.o p12_attr.o p12_crpt.o p12_crt.o p12_decr.o \
|
||||
p12_init.o p12_key.o p12_kiss.o p12_mutl.o\
|
||||
p12_utl.o p12_npas.o pk12err.o p12_p8d.o p12_p8e.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= pkcs12.h
|
||||
HEADER= $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
test:
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
p12_add.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
p12_add.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
p12_add.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
p12_add.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
p12_add.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
p12_add.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
p12_add.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
p12_add.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
p12_add.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h
|
||||
p12_add.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
p12_add.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
p12_add.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
p12_add.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_add.c
|
||||
p12_asn.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
p12_asn.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
p12_asn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
p12_asn.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
p12_asn.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
p12_asn.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
p12_asn.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
p12_asn.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
p12_asn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
p12_asn.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
|
||||
p12_asn.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
p12_asn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
p12_asn.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
p12_asn.o: ../cryptlib.h p12_asn.c
|
||||
p12_attr.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
p12_attr.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
p12_attr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
p12_attr.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
p12_attr.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
p12_attr.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
p12_attr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
p12_attr.o: ../../include/openssl/opensslconf.h
|
||||
p12_attr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
p12_attr.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
|
||||
p12_attr.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
p12_attr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
p12_attr.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
p12_attr.o: ../cryptlib.h p12_attr.c
|
||||
p12_crpt.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
p12_crpt.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
p12_crpt.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
p12_crpt.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
p12_crpt.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
p12_crpt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
p12_crpt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
p12_crpt.o: ../../include/openssl/opensslconf.h
|
||||
p12_crpt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
p12_crpt.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
|
||||
p12_crpt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
p12_crpt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
p12_crpt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
p12_crpt.o: ../cryptlib.h p12_crpt.c
|
||||
p12_crt.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
p12_crt.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
p12_crt.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
p12_crt.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
p12_crt.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
p12_crt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
p12_crt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
p12_crt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
p12_crt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h
|
||||
p12_crt.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
p12_crt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
p12_crt.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
p12_crt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_crt.c
|
||||
p12_decr.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
p12_decr.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
p12_decr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
p12_decr.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
p12_decr.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
p12_decr.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
p12_decr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
p12_decr.o: ../../include/openssl/opensslconf.h
|
||||
p12_decr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
p12_decr.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
|
||||
p12_decr.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
p12_decr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
p12_decr.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
p12_decr.o: ../cryptlib.h p12_decr.c
|
||||
p12_init.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
p12_init.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
p12_init.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
p12_init.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
p12_init.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
p12_init.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
p12_init.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
p12_init.o: ../../include/openssl/opensslconf.h
|
||||
p12_init.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
p12_init.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
|
||||
p12_init.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
p12_init.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
p12_init.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
p12_init.o: ../cryptlib.h p12_init.c
|
||||
p12_key.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
p12_key.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
p12_key.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
p12_key.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
p12_key.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
p12_key.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
p12_key.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
p12_key.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
p12_key.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
p12_key.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
|
||||
p12_key.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
p12_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
p12_key.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
p12_key.o: ../cryptlib.h p12_key.c
|
||||
p12_kiss.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
p12_kiss.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
p12_kiss.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
p12_kiss.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
p12_kiss.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
p12_kiss.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
p12_kiss.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
p12_kiss.o: ../../include/openssl/opensslconf.h
|
||||
p12_kiss.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
p12_kiss.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
|
||||
p12_kiss.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
p12_kiss.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
p12_kiss.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
p12_kiss.o: ../cryptlib.h p12_kiss.c
|
||||
p12_mutl.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
p12_mutl.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
p12_mutl.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
p12_mutl.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
p12_mutl.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
p12_mutl.o: ../../include/openssl/evp.h ../../include/openssl/hmac.h
|
||||
p12_mutl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
p12_mutl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
p12_mutl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
p12_mutl.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
|
||||
p12_mutl.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
p12_mutl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
p12_mutl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
p12_mutl.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_mutl.c
|
||||
p12_npas.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
p12_npas.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
p12_npas.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
p12_npas.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
p12_npas.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
p12_npas.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
p12_npas.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
p12_npas.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
p12_npas.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
|
||||
p12_npas.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
|
||||
p12_npas.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
p12_npas.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
p12_npas.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
p12_npas.o: p12_npas.c
|
||||
p12_p8d.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
p12_p8d.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
p12_p8d.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
p12_p8d.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
p12_p8d.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
p12_p8d.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
p12_p8d.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
p12_p8d.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
p12_p8d.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h
|
||||
p12_p8d.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
p12_p8d.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
p12_p8d.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
p12_p8d.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_p8d.c
|
||||
p12_p8e.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
p12_p8e.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
p12_p8e.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
p12_p8e.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
p12_p8e.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
p12_p8e.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
p12_p8e.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
p12_p8e.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
p12_p8e.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h
|
||||
p12_p8e.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
p12_p8e.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
p12_p8e.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
p12_p8e.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_p8e.c
|
||||
p12_utl.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
p12_utl.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
p12_utl.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
p12_utl.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
p12_utl.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
p12_utl.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
p12_utl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
p12_utl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
p12_utl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h
|
||||
p12_utl.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
p12_utl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
p12_utl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
p12_utl.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_utl.c
|
||||
pk12err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
pk12err.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
pk12err.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
pk12err.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
pk12err.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
pk12err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
pk12err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
pk12err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
pk12err.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h
|
||||
pk12err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
pk12err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
pk12err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
pk12err.o: pk12err.c
|
|
@ -1,194 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/pkcs7/Makefile
|
||||
#
|
||||
|
||||
DIR= pkcs7
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
PEX_LIBS=
|
||||
EX_LIBS=
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile README
|
||||
TEST=
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= pk7_asn1.c pk7_lib.c pkcs7err.c pk7_doit.c pk7_smime.c pk7_attr.c \
|
||||
pk7_mime.c bio_pk7.c
|
||||
LIBOBJ= pk7_asn1.o pk7_lib.o pkcs7err.o pk7_doit.o pk7_smime.o pk7_attr.o \
|
||||
pk7_mime.o bio_pk7.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= pkcs7.h
|
||||
HEADER= $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
test:
|
||||
|
||||
all: lib
|
||||
|
||||
testapps: enc dec sign verify
|
||||
|
||||
enc: enc.o lib
|
||||
$(CC) $(CFLAGS) -o enc enc.o $(PEX_LIBS) $(LIB) $(EX_LIBS)
|
||||
|
||||
dec: dec.o lib
|
||||
$(CC) $(CFLAGS) -o dec dec.o $(PEX_LIBS) $(LIB) $(EX_LIBS)
|
||||
|
||||
sign: sign.o lib
|
||||
$(CC) $(CFLAGS) -o sign sign.o $(PEX_LIBS) $(LIB) $(EX_LIBS)
|
||||
|
||||
verify: verify.o example.o lib
|
||||
$(CC) $(CFLAGS) -o verify verify.o $(PEX_LIBS) example.o $(LIB) $(EX_LIBS)
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff enc dec sign verify
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
bio_pk7.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
bio_pk7.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
bio_pk7.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
bio_pk7.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
bio_pk7.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bio_pk7.o: ../../include/openssl/symhacks.h bio_pk7.c
|
||||
pk7_asn1.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
pk7_asn1.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
pk7_asn1.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
pk7_asn1.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
pk7_asn1.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
pk7_asn1.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
pk7_asn1.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
pk7_asn1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
pk7_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
pk7_asn1.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
pk7_asn1.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
pk7_asn1.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
pk7_asn1.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pk7_asn1.c
|
||||
pk7_attr.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
|
||||
pk7_attr.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
pk7_attr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
pk7_attr.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
pk7_attr.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
pk7_attr.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
pk7_attr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
pk7_attr.o: ../../include/openssl/opensslconf.h
|
||||
pk7_attr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
pk7_attr.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
|
||||
pk7_attr.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
pk7_attr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
pk7_attr.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
pk7_attr.o: ../../include/openssl/x509_vfy.h pk7_attr.c
|
||||
pk7_doit.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
pk7_doit.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
pk7_doit.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
pk7_doit.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
pk7_doit.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
pk7_doit.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
pk7_doit.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
pk7_doit.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
pk7_doit.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
pk7_doit.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
pk7_doit.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
pk7_doit.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
pk7_doit.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
pk7_doit.o: ../../include/openssl/x509v3.h ../cryptlib.h pk7_doit.c
|
||||
pk7_lib.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
pk7_lib.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
pk7_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
pk7_lib.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
pk7_lib.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
pk7_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
pk7_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
pk7_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
pk7_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
pk7_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
pk7_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
pk7_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
pk7_lib.o: ../asn1/asn1_locl.h ../cryptlib.h pk7_lib.c
|
||||
pk7_mime.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
pk7_mime.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
pk7_mime.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
pk7_mime.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
pk7_mime.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
pk7_mime.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
pk7_mime.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
pk7_mime.o: ../../include/openssl/opensslconf.h
|
||||
pk7_mime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
pk7_mime.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
pk7_mime.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
pk7_mime.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
pk7_mime.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
pk7_mime.o: ../cryptlib.h pk7_mime.c
|
||||
pk7_smime.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
pk7_smime.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
pk7_smime.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
pk7_smime.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
pk7_smime.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
pk7_smime.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
pk7_smime.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
pk7_smime.o: ../../include/openssl/objects.h
|
||||
pk7_smime.o: ../../include/openssl/opensslconf.h
|
||||
pk7_smime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
pk7_smime.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
pk7_smime.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
pk7_smime.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
pk7_smime.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
pk7_smime.o: ../cryptlib.h pk7_smime.c
|
||||
pkcs7err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
pkcs7err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
pkcs7err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
pkcs7err.o: ../../include/openssl/opensslconf.h
|
||||
pkcs7err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
pkcs7err.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
pkcs7err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
pkcs7err.o: pkcs7err.c
|
|
@ -1,194 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/pkcs7/Makefile
|
||||
#
|
||||
|
||||
DIR= pkcs7
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
PEX_LIBS=
|
||||
EX_LIBS=
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile README
|
||||
TEST=
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= pk7_asn1.c pk7_lib.c pkcs7err.c pk7_doit.c pk7_smime.c pk7_attr.c \
|
||||
pk7_mime.c bio_pk7.c
|
||||
LIBOBJ= pk7_asn1.o pk7_lib.o pkcs7err.o pk7_doit.o pk7_smime.o pk7_attr.o \
|
||||
pk7_mime.o bio_pk7.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= pkcs7.h
|
||||
HEADER= $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
test:
|
||||
|
||||
all: lib
|
||||
|
||||
testapps: enc dec sign verify
|
||||
|
||||
enc: enc.o lib
|
||||
$(CC) $(CFLAGS) -o enc enc.o $(PEX_LIBS) $(LIB) $(EX_LIBS)
|
||||
|
||||
dec: dec.o lib
|
||||
$(CC) $(CFLAGS) -o dec dec.o $(PEX_LIBS) $(LIB) $(EX_LIBS)
|
||||
|
||||
sign: sign.o lib
|
||||
$(CC) $(CFLAGS) -o sign sign.o $(PEX_LIBS) $(LIB) $(EX_LIBS)
|
||||
|
||||
verify: verify.o example.o lib
|
||||
$(CC) $(CFLAGS) -o verify verify.o $(PEX_LIBS) example.o $(LIB) $(EX_LIBS)
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff enc dec sign verify
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
bio_pk7.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
bio_pk7.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
bio_pk7.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
bio_pk7.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
bio_pk7.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
bio_pk7.o: ../../include/openssl/symhacks.h bio_pk7.c
|
||||
pk7_asn1.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
pk7_asn1.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
pk7_asn1.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
pk7_asn1.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
pk7_asn1.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
pk7_asn1.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
pk7_asn1.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
pk7_asn1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
pk7_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
pk7_asn1.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
pk7_asn1.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
pk7_asn1.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
pk7_asn1.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pk7_asn1.c
|
||||
pk7_attr.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
|
||||
pk7_attr.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
pk7_attr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
pk7_attr.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
pk7_attr.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
pk7_attr.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
pk7_attr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
pk7_attr.o: ../../include/openssl/opensslconf.h
|
||||
pk7_attr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
pk7_attr.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h
|
||||
pk7_attr.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
pk7_attr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
pk7_attr.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
pk7_attr.o: ../../include/openssl/x509_vfy.h pk7_attr.c
|
||||
pk7_doit.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
pk7_doit.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
pk7_doit.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
pk7_doit.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
pk7_doit.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
pk7_doit.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
pk7_doit.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
pk7_doit.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
pk7_doit.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
pk7_doit.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
pk7_doit.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
pk7_doit.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
pk7_doit.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
pk7_doit.o: ../../include/openssl/x509v3.h ../cryptlib.h pk7_doit.c
|
||||
pk7_lib.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
pk7_lib.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
pk7_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
pk7_lib.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
pk7_lib.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
pk7_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
pk7_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
pk7_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
pk7_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
pk7_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
pk7_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
pk7_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
pk7_lib.o: ../asn1/asn1_locl.h ../cryptlib.h pk7_lib.c
|
||||
pk7_mime.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
pk7_mime.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
pk7_mime.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
pk7_mime.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
pk7_mime.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
pk7_mime.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
pk7_mime.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
pk7_mime.o: ../../include/openssl/opensslconf.h
|
||||
pk7_mime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
pk7_mime.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
pk7_mime.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
pk7_mime.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
pk7_mime.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
pk7_mime.o: ../cryptlib.h pk7_mime.c
|
||||
pk7_smime.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
pk7_smime.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
pk7_smime.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
||||
pk7_smime.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
pk7_smime.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
pk7_smime.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
pk7_smime.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
pk7_smime.o: ../../include/openssl/objects.h
|
||||
pk7_smime.o: ../../include/openssl/opensslconf.h
|
||||
pk7_smime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
pk7_smime.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
pk7_smime.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
pk7_smime.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
pk7_smime.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
|
||||
pk7_smime.o: ../cryptlib.h pk7_smime.c
|
||||
pkcs7err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
pkcs7err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
pkcs7err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
pkcs7err.o: ../../include/openssl/opensslconf.h
|
||||
pkcs7err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
pkcs7err.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h
|
||||
pkcs7err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
pkcs7err.o: pkcs7err.c
|
|
@ -1,83 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/pqueue/Makefile
|
||||
#
|
||||
|
||||
DIR= pqueue
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES=
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=pqueue.c
|
||||
LIBOBJ=pqueue.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= pqueue.h
|
||||
HEADER= $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
pqueue.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
pqueue.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
pqueue.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
pqueue.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
pqueue.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
pqueue.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
pqueue.o: ../../include/openssl/symhacks.h ../cryptlib.h pqueue.c pqueue.h
|
|
@ -1,83 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/pqueue/Makefile
|
||||
#
|
||||
|
||||
DIR= pqueue
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES=
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=pqueue.c
|
||||
LIBOBJ=pqueue.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= pqueue.h
|
||||
HEADER= $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
pqueue.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
pqueue.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
pqueue.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
pqueue.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
pqueue.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
pqueue.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
pqueue.o: ../../include/openssl/symhacks.h ../cryptlib.h pqueue.c pqueue.h
|
|
@ -1,164 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/rand/Makefile
|
||||
#
|
||||
|
||||
DIR= rand
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES=
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST= randtest.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=md_rand.c randfile.c rand_lib.c rand_err.c rand_egd.c \
|
||||
rand_win.c rand_unix.c rand_os2.c rand_nw.c
|
||||
LIBOBJ=md_rand.o randfile.o rand_lib.o rand_err.o rand_egd.o \
|
||||
rand_win.o rand_unix.o rand_os2.o rand_nw.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= rand.h
|
||||
HEADER= $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
md_rand.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
md_rand.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
|
||||
md_rand.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
md_rand.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
md_rand.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
md_rand.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
md_rand.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
|
||||
md_rand.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
md_rand.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
md_rand.o: md_rand.c rand_lcl.h
|
||||
rand_egd.o: ../../include/openssl/buffer.h ../../include/openssl/e_os2.h
|
||||
rand_egd.o: ../../include/openssl/opensslconf.h
|
||||
rand_egd.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
|
||||
rand_egd.o: rand_egd.c
|
||||
rand_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
|
||||
rand_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
rand_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
rand_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rand_err.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
rand_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
rand_err.o: rand_err.c
|
||||
rand_lib.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rand_lib.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
rand_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
rand_lib.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
rand_lib.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
rand_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
rand_lib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
rand_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
rand_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rand_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
rand_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
rand_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
rand_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
rand_lib.o: ../cryptlib.h rand_lib.c
|
||||
rand_nw.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rand_nw.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
rand_nw.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
rand_nw.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
rand_nw.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
rand_nw.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
rand_nw.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rand_nw.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
rand_nw.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
rand_nw.o: ../../include/openssl/symhacks.h ../cryptlib.h rand_lcl.h rand_nw.c
|
||||
rand_os2.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rand_os2.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
rand_os2.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
rand_os2.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
rand_os2.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
rand_os2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
rand_os2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rand_os2.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
rand_os2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
rand_os2.o: ../../include/openssl/symhacks.h ../cryptlib.h rand_lcl.h
|
||||
rand_os2.o: rand_os2.c
|
||||
rand_unix.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rand_unix.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
rand_unix.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
rand_unix.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
rand_unix.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
rand_unix.o: ../../include/openssl/objects.h
|
||||
rand_unix.o: ../../include/openssl/opensslconf.h
|
||||
rand_unix.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rand_unix.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
rand_unix.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
rand_unix.o: ../../include/openssl/symhacks.h ../cryptlib.h rand_lcl.h
|
||||
rand_unix.o: rand_unix.c
|
||||
rand_win.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rand_win.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
rand_win.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
rand_win.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
rand_win.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
rand_win.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
rand_win.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rand_win.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
rand_win.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
rand_win.o: ../../include/openssl/symhacks.h ../cryptlib.h rand_lcl.h
|
||||
rand_win.o: rand_win.c
|
||||
randfile.o: ../../e_os.h ../../include/openssl/buffer.h
|
||||
randfile.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
randfile.o: ../../include/openssl/opensslconf.h
|
||||
randfile.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
randfile.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
randfile.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
randfile.o: randfile.c
|
|
@ -1,164 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/rand/Makefile
|
||||
#
|
||||
|
||||
DIR= rand
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES=
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST= randtest.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=md_rand.c randfile.c rand_lib.c rand_err.c rand_egd.c \
|
||||
rand_win.c rand_unix.c rand_os2.c rand_nw.c
|
||||
LIBOBJ=md_rand.o randfile.o rand_lib.o rand_err.o rand_egd.o \
|
||||
rand_win.o rand_unix.o rand_os2.o rand_nw.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= rand.h
|
||||
HEADER= $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
md_rand.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
md_rand.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
|
||||
md_rand.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
md_rand.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
md_rand.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
md_rand.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
md_rand.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
|
||||
md_rand.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
md_rand.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
md_rand.o: md_rand.c rand_lcl.h
|
||||
rand_egd.o: ../../include/openssl/buffer.h ../../include/openssl/e_os2.h
|
||||
rand_egd.o: ../../include/openssl/opensslconf.h
|
||||
rand_egd.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
|
||||
rand_egd.o: rand_egd.c
|
||||
rand_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
|
||||
rand_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
rand_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
rand_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rand_err.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
rand_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
rand_err.o: rand_err.c
|
||||
rand_lib.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rand_lib.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
rand_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
rand_lib.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
rand_lib.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
||||
rand_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
rand_lib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
rand_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
rand_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rand_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
rand_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
rand_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
rand_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
rand_lib.o: ../cryptlib.h rand_lib.c
|
||||
rand_nw.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rand_nw.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
rand_nw.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
rand_nw.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
rand_nw.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
rand_nw.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
rand_nw.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rand_nw.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
rand_nw.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
rand_nw.o: ../../include/openssl/symhacks.h ../cryptlib.h rand_lcl.h rand_nw.c
|
||||
rand_os2.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rand_os2.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
rand_os2.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
rand_os2.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
rand_os2.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
rand_os2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
rand_os2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rand_os2.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
rand_os2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
rand_os2.o: ../../include/openssl/symhacks.h ../cryptlib.h rand_lcl.h
|
||||
rand_os2.o: rand_os2.c
|
||||
rand_unix.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rand_unix.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
rand_unix.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
rand_unix.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
rand_unix.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
rand_unix.o: ../../include/openssl/objects.h
|
||||
rand_unix.o: ../../include/openssl/opensslconf.h
|
||||
rand_unix.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rand_unix.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
rand_unix.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
rand_unix.o: ../../include/openssl/symhacks.h ../cryptlib.h rand_lcl.h
|
||||
rand_unix.o: rand_unix.c
|
||||
rand_win.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rand_win.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
rand_win.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
rand_win.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
rand_win.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
rand_win.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
rand_win.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rand_win.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
rand_win.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
rand_win.o: ../../include/openssl/symhacks.h ../cryptlib.h rand_lcl.h
|
||||
rand_win.o: rand_win.c
|
||||
randfile.o: ../../e_os.h ../../include/openssl/buffer.h
|
||||
randfile.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
randfile.o: ../../include/openssl/opensslconf.h
|
||||
randfile.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
randfile.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
||||
randfile.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
randfile.o: randfile.c
|
|
@ -1,90 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/rc2/Makefile
|
||||
#
|
||||
|
||||
DIR= rc2
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES=
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=rc2test.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=rc2_ecb.c rc2_skey.c rc2_cbc.c rc2cfb64.c rc2ofb64.c
|
||||
LIBOBJ=rc2_ecb.o rc2_skey.o rc2_cbc.o rc2cfb64.o rc2ofb64.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= rc2.h
|
||||
HEADER= rc2_locl.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
rc2_cbc.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h
|
||||
rc2_cbc.o: rc2_cbc.c rc2_locl.h
|
||||
rc2_ecb.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
rc2_ecb.o: ../../include/openssl/rc2.h rc2_ecb.c rc2_locl.h
|
||||
rc2_skey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
rc2_skey.o: ../../include/openssl/opensslconf.h
|
||||
rc2_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rc2_skey.o: ../../include/openssl/rc2.h ../../include/openssl/safestack.h
|
||||
rc2_skey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
rc2_skey.o: rc2_locl.h rc2_skey.c
|
||||
rc2cfb64.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h
|
||||
rc2cfb64.o: rc2_locl.h rc2cfb64.c
|
||||
rc2ofb64.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h
|
||||
rc2ofb64.o: rc2_locl.h rc2ofb64.c
|
|
@ -1,90 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/rc2/Makefile
|
||||
#
|
||||
|
||||
DIR= rc2
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES=
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=rc2test.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=rc2_ecb.c rc2_skey.c rc2_cbc.c rc2cfb64.c rc2ofb64.c
|
||||
LIBOBJ=rc2_ecb.o rc2_skey.o rc2_cbc.o rc2cfb64.o rc2ofb64.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= rc2.h
|
||||
HEADER= rc2_locl.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
rc2_cbc.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h
|
||||
rc2_cbc.o: rc2_cbc.c rc2_locl.h
|
||||
rc2_ecb.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
rc2_ecb.o: ../../include/openssl/rc2.h rc2_ecb.c rc2_locl.h
|
||||
rc2_skey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
rc2_skey.o: ../../include/openssl/opensslconf.h
|
||||
rc2_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rc2_skey.o: ../../include/openssl/rc2.h ../../include/openssl/safestack.h
|
||||
rc2_skey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
rc2_skey.o: rc2_locl.h rc2_skey.c
|
||||
rc2cfb64.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h
|
||||
rc2cfb64.o: rc2_locl.h rc2cfb64.c
|
||||
rc2ofb64.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h
|
||||
rc2ofb64.o: rc2_locl.h rc2ofb64.c
|
|
@ -1,125 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/rc4/Makefile
|
||||
#
|
||||
|
||||
DIR= rc4
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
CPP= $(CC) -E
|
||||
INCLUDES=
|
||||
CFLAG=-g
|
||||
AR= ar r
|
||||
|
||||
RC4_ENC=rc4_enc.o rc4_skey.o
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
ASFLAGS= $(INCLUDES) $(ASFLAG)
|
||||
AFLAGS= $(ASFLAGS)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=rc4test.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=rc4_skey.c rc4_enc.c rc4_utl.c
|
||||
LIBOBJ=$(RC4_ENC) rc4_utl.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= rc4.h
|
||||
HEADER= $(EXHEADER) rc4_locl.h
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
rc4-586.s: asm/rc4-586.pl ../perlasm/x86asm.pl
|
||||
$(PERL) asm/rc4-586.pl $(PERLASM_SCHEME) $(CFLAGS) > $@
|
||||
|
||||
rc4-x86_64.s: asm/rc4-x86_64.pl
|
||||
$(PERL) asm/rc4-x86_64.pl $(PERLASM_SCHEME) > $@
|
||||
rc4-md5-x86_64.s: asm/rc4-md5-x86_64.pl
|
||||
$(PERL) asm/rc4-md5-x86_64.pl $(PERLASM_SCHEME) > $@
|
||||
|
||||
rc4-ia64.S: asm/rc4-ia64.pl
|
||||
$(PERL) asm/rc4-ia64.pl $(CFLAGS) > $@
|
||||
|
||||
rc4-parisc.s: asm/rc4-parisc.pl
|
||||
$(PERL) asm/rc4-parisc.pl $(PERLASM_SCHEME) $@
|
||||
|
||||
rc4-ia64.s: rc4-ia64.S
|
||||
@case `awk '/^#define RC4_INT/{print$$NF}' $(TOP)/include/openssl/opensslconf.h` in \
|
||||
int) set -x; $(CC) $(CFLAGS) -DSZ=4 -E rc4-ia64.S > $@ ;; \
|
||||
char) set -x; $(CC) $(CFLAGS) -DSZ=1 -E rc4-ia64.S > $@ ;; \
|
||||
*) exit 1 ;; \
|
||||
esac
|
||||
|
||||
# GNU make "catch all"
|
||||
rc4-%.s: asm/rc4-%.pl; $(PERL) $< $(PERLASM_SCHEME) $@
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
rc4_enc.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
rc4_enc.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
rc4_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
rc4_enc.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
rc4_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rc4_enc.o: ../../include/openssl/rc4.h ../../include/openssl/safestack.h
|
||||
rc4_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
rc4_enc.o: ../cryptlib.h rc4_enc.c rc4_locl.h
|
||||
rc4_skey.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
rc4_skey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
rc4_skey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
rc4_skey.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
rc4_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rc4_skey.o: ../../include/openssl/rc4.h ../../include/openssl/safestack.h
|
||||
rc4_skey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
rc4_skey.o: ../cryptlib.h rc4_locl.h rc4_skey.c
|
||||
rc4_utl.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
rc4_utl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
rc4_utl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rc4.h
|
||||
rc4_utl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
rc4_utl.o: ../../include/openssl/symhacks.h rc4_utl.c
|
|
@ -1,125 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/rc4/Makefile
|
||||
#
|
||||
|
||||
DIR= rc4
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
CPP= $(CC) -E
|
||||
INCLUDES=
|
||||
CFLAG=-g
|
||||
AR= ar r
|
||||
|
||||
RC4_ENC=rc4_enc.o rc4_skey.o
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
ASFLAGS= $(INCLUDES) $(ASFLAG)
|
||||
AFLAGS= $(ASFLAGS)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=rc4test.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=rc4_skey.c rc4_enc.c rc4_utl.c
|
||||
LIBOBJ=$(RC4_ENC) rc4_utl.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= rc4.h
|
||||
HEADER= $(EXHEADER) rc4_locl.h
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
rc4-586.s: asm/rc4-586.pl ../perlasm/x86asm.pl
|
||||
$(PERL) asm/rc4-586.pl $(PERLASM_SCHEME) $(CFLAGS) > $@
|
||||
|
||||
rc4-x86_64.s: asm/rc4-x86_64.pl
|
||||
$(PERL) asm/rc4-x86_64.pl $(PERLASM_SCHEME) > $@
|
||||
rc4-md5-x86_64.s: asm/rc4-md5-x86_64.pl
|
||||
$(PERL) asm/rc4-md5-x86_64.pl $(PERLASM_SCHEME) > $@
|
||||
|
||||
rc4-ia64.S: asm/rc4-ia64.pl
|
||||
$(PERL) asm/rc4-ia64.pl $(CFLAGS) > $@
|
||||
|
||||
rc4-parisc.s: asm/rc4-parisc.pl
|
||||
$(PERL) asm/rc4-parisc.pl $(PERLASM_SCHEME) $@
|
||||
|
||||
rc4-ia64.s: rc4-ia64.S
|
||||
@case `awk '/^#define RC4_INT/{print$$NF}' $(TOP)/include/openssl/opensslconf.h` in \
|
||||
int) set -x; $(CC) $(CFLAGS) -DSZ=4 -E rc4-ia64.S > $@ ;; \
|
||||
char) set -x; $(CC) $(CFLAGS) -DSZ=1 -E rc4-ia64.S > $@ ;; \
|
||||
*) exit 1 ;; \
|
||||
esac
|
||||
|
||||
# GNU make "catch all"
|
||||
rc4-%.s: asm/rc4-%.pl; $(PERL) $< $(PERLASM_SCHEME) $@
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
rc4_enc.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
rc4_enc.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
rc4_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
rc4_enc.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
rc4_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rc4_enc.o: ../../include/openssl/rc4.h ../../include/openssl/safestack.h
|
||||
rc4_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
rc4_enc.o: ../cryptlib.h rc4_enc.c rc4_locl.h
|
||||
rc4_skey.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
rc4_skey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
rc4_skey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
rc4_skey.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
rc4_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rc4_skey.o: ../../include/openssl/rc4.h ../../include/openssl/safestack.h
|
||||
rc4_skey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
rc4_skey.o: ../cryptlib.h rc4_locl.h rc4_skey.c
|
||||
rc4_utl.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
rc4_utl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
rc4_utl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rc4.h
|
||||
rc4_utl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
rc4_utl.o: ../../include/openssl/symhacks.h rc4_utl.c
|
|
@ -1,94 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/rc5/Makefile
|
||||
#
|
||||
|
||||
DIR= rc5
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
CPP= $(CC) -E
|
||||
INCLUDES=
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
RC5_ENC= rc5_enc.o
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
ASFLAGS= $(INCLUDES) $(ASFLAG)
|
||||
AFLAGS= $(ASFLAGS)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=rc5test.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=rc5_skey.c rc5_ecb.c rc5_enc.c rc5cfb64.c rc5ofb64.c
|
||||
LIBOBJ=rc5_skey.o rc5_ecb.o $(RC5_ENC) rc5cfb64.o rc5ofb64.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= rc5.h
|
||||
HEADER= rc5_locl.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
rc5-586.s: asm/rc5-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl
|
||||
$(PERL) asm/rc5-586.pl $(PERLASM_SCHEME) $(CFLAGS) > $@
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
rc5_ecb.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
rc5_ecb.o: ../../include/openssl/rc5.h rc5_ecb.c rc5_locl.h
|
||||
rc5_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc5.h
|
||||
rc5_enc.o: rc5_enc.c rc5_locl.h
|
||||
rc5_skey.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc5.h
|
||||
rc5_skey.o: rc5_locl.h rc5_skey.c
|
||||
rc5cfb64.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc5.h
|
||||
rc5cfb64.o: rc5_locl.h rc5cfb64.c
|
||||
rc5ofb64.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc5.h
|
||||
rc5ofb64.o: rc5_locl.h rc5ofb64.c
|
|
@ -1,95 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/ripemd/Makefile
|
||||
#
|
||||
|
||||
DIR= ripemd
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
CPP= $(CC) -E
|
||||
INCLUDES=
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
RIP_ASM_OBJ=
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
ASFLAGS= $(INCLUDES) $(ASFLAG)
|
||||
AFLAGS= $(ASFLAGS)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=rmdtest.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=rmd_dgst.c rmd_one.c
|
||||
LIBOBJ=rmd_dgst.o rmd_one.o $(RMD160_ASM_OBJ)
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= ripemd.h
|
||||
HEADER= rmd_locl.h rmdconst.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
rmd-586.s: asm/rmd-586.pl ../perlasm/x86asm.pl
|
||||
$(PERL) asm/rmd-586.pl $(PERLASM_SCHEME) $(CFLAGS) > $@
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
rmd_dgst.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
rmd_dgst.o: ../../include/openssl/opensslconf.h
|
||||
rmd_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rmd_dgst.o: ../../include/openssl/ripemd.h ../../include/openssl/safestack.h
|
||||
rmd_dgst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
rmd_dgst.o: ../md32_common.h rmd_dgst.c rmd_locl.h rmdconst.h
|
||||
rmd_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
rmd_one.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
rmd_one.o: ../../include/openssl/ossl_typ.h ../../include/openssl/ripemd.h
|
||||
rmd_one.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
rmd_one.o: ../../include/openssl/symhacks.h rmd_one.c
|
|
@ -1,95 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/ripemd/Makefile
|
||||
#
|
||||
|
||||
DIR= ripemd
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
CPP= $(CC) -E
|
||||
INCLUDES=
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
RIP_ASM_OBJ=
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
ASFLAGS= $(INCLUDES) $(ASFLAG)
|
||||
AFLAGS= $(ASFLAGS)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=rmdtest.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=rmd_dgst.c rmd_one.c
|
||||
LIBOBJ=rmd_dgst.o rmd_one.o $(RMD160_ASM_OBJ)
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= ripemd.h
|
||||
HEADER= rmd_locl.h rmdconst.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
rmd-586.s: asm/rmd-586.pl ../perlasm/x86asm.pl
|
||||
$(PERL) asm/rmd-586.pl $(PERLASM_SCHEME) $(CFLAGS) > $@
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
rmd_dgst.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
rmd_dgst.o: ../../include/openssl/opensslconf.h
|
||||
rmd_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rmd_dgst.o: ../../include/openssl/ripemd.h ../../include/openssl/safestack.h
|
||||
rmd_dgst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
rmd_dgst.o: ../md32_common.h rmd_dgst.c rmd_locl.h rmdconst.h
|
||||
rmd_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
rmd_one.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
rmd_one.o: ../../include/openssl/ossl_typ.h ../../include/openssl/ripemd.h
|
||||
rmd_one.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
rmd_one.o: ../../include/openssl/symhacks.h rmd_one.c
|
|
@ -1,308 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/rsa/Makefile
|
||||
#
|
||||
|
||||
DIR= rsa
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=rsa_test.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= rsa_eay.c rsa_gen.c rsa_lib.c rsa_sign.c rsa_saos.c rsa_err.c \
|
||||
rsa_pk1.c rsa_ssl.c rsa_none.c rsa_oaep.c rsa_chk.c rsa_null.c \
|
||||
rsa_pss.c rsa_x931.c rsa_asn1.c rsa_depr.c rsa_ameth.c rsa_prn.c \
|
||||
rsa_pmeth.c rsa_crpt.c
|
||||
LIBOBJ= rsa_eay.o rsa_gen.o rsa_lib.o rsa_sign.o rsa_saos.o rsa_err.o \
|
||||
rsa_pk1.o rsa_ssl.o rsa_none.o rsa_oaep.o rsa_chk.o rsa_null.o \
|
||||
rsa_pss.o rsa_x931.o rsa_asn1.o rsa_depr.o rsa_ameth.o rsa_prn.o \
|
||||
rsa_pmeth.o rsa_crpt.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= rsa.h
|
||||
HEADER= $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
rsa_ameth.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rsa_ameth.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
rsa_ameth.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
rsa_ameth.o: ../../include/openssl/cms.h ../../include/openssl/crypto.h
|
||||
rsa_ameth.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
rsa_ameth.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
rsa_ameth.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
rsa_ameth.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
rsa_ameth.o: ../../include/openssl/objects.h
|
||||
rsa_ameth.o: ../../include/openssl/opensslconf.h
|
||||
rsa_ameth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rsa_ameth.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
|
||||
rsa_ameth.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
rsa_ameth.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
rsa_ameth.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
rsa_ameth.o: ../asn1/asn1_locl.h ../cryptlib.h rsa_ameth.c
|
||||
rsa_asn1.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rsa_asn1.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
rsa_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
rsa_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
rsa_asn1.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
rsa_asn1.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
rsa_asn1.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
rsa_asn1.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
rsa_asn1.o: ../../include/openssl/opensslconf.h
|
||||
rsa_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rsa_asn1.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
|
||||
rsa_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
rsa_asn1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
rsa_asn1.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
rsa_asn1.o: ../cryptlib.h rsa_asn1.c
|
||||
rsa_chk.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
rsa_chk.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
|
||||
rsa_chk.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
rsa_chk.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
rsa_chk.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rsa_chk.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
rsa_chk.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
rsa_chk.o: rsa_chk.c
|
||||
rsa_crpt.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rsa_crpt.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
rsa_crpt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
rsa_crpt.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
rsa_crpt.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
rsa_crpt.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
||||
rsa_crpt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
rsa_crpt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
rsa_crpt.o: ../../include/openssl/opensslconf.h
|
||||
rsa_crpt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rsa_crpt.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
rsa_crpt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
rsa_crpt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
rsa_crpt.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
rsa_crpt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h rsa_crpt.c
|
||||
rsa_depr.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rsa_depr.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
rsa_depr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
rsa_depr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
rsa_depr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
rsa_depr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rsa_depr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
rsa_depr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
rsa_depr.o: ../cryptlib.h rsa_depr.c
|
||||
rsa_eay.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rsa_eay.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
rsa_eay.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
rsa_eay.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
rsa_eay.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
rsa_eay.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rsa_eay.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
|
||||
rsa_eay.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
rsa_eay.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_eay.c
|
||||
rsa_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
rsa_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
rsa_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
rsa_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
rsa_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rsa.h
|
||||
rsa_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
rsa_err.o: ../../include/openssl/symhacks.h rsa_err.c
|
||||
rsa_gen.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rsa_gen.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
rsa_gen.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
rsa_gen.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
rsa_gen.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
rsa_gen.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rsa_gen.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
rsa_gen.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
rsa_gen.o: ../cryptlib.h rsa_gen.c
|
||||
rsa_lib.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rsa_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
rsa_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
rsa_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
rsa_lib.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
rsa_lib.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
||||
rsa_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
rsa_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
rsa_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
rsa_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
rsa_lib.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
|
||||
rsa_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
rsa_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
rsa_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
rsa_lib.o: ../cryptlib.h rsa_lib.c
|
||||
rsa_none.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rsa_none.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
rsa_none.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
rsa_none.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
rsa_none.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
rsa_none.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rsa_none.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
|
||||
rsa_none.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
rsa_none.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_none.c
|
||||
rsa_null.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rsa_null.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
rsa_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
rsa_null.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
rsa_null.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
rsa_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rsa_null.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
|
||||
rsa_null.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
rsa_null.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_null.c
|
||||
rsa_oaep.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rsa_oaep.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
rsa_oaep.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
rsa_oaep.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
rsa_oaep.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
rsa_oaep.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
rsa_oaep.o: ../../include/openssl/opensslconf.h
|
||||
rsa_oaep.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rsa_oaep.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
|
||||
rsa_oaep.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
rsa_oaep.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
rsa_oaep.o: ../cryptlib.h rsa_oaep.c
|
||||
rsa_pk1.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rsa_pk1.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
rsa_pk1.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
rsa_pk1.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
rsa_pk1.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
rsa_pk1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rsa_pk1.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
|
||||
rsa_pk1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
rsa_pk1.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_pk1.c
|
||||
rsa_pmeth.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rsa_pmeth.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
rsa_pmeth.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
rsa_pmeth.o: ../../include/openssl/cms.h ../../include/openssl/crypto.h
|
||||
rsa_pmeth.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
rsa_pmeth.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
rsa_pmeth.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
rsa_pmeth.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
rsa_pmeth.o: ../../include/openssl/objects.h
|
||||
rsa_pmeth.o: ../../include/openssl/opensslconf.h
|
||||
rsa_pmeth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rsa_pmeth.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
|
||||
rsa_pmeth.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
rsa_pmeth.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
rsa_pmeth.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
rsa_pmeth.o: ../cryptlib.h ../evp/evp_locl.h rsa_locl.h rsa_pmeth.c
|
||||
rsa_prn.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rsa_prn.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
rsa_prn.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
rsa_prn.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
rsa_prn.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
rsa_prn.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
rsa_prn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rsa_prn.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
rsa_prn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
rsa_prn.o: ../cryptlib.h rsa_prn.c
|
||||
rsa_pss.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rsa_pss.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
rsa_pss.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
rsa_pss.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
rsa_pss.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
rsa_pss.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
rsa_pss.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
rsa_pss.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
|
||||
rsa_pss.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
rsa_pss.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
rsa_pss.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_pss.c
|
||||
rsa_saos.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rsa_saos.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
rsa_saos.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
rsa_saos.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
rsa_saos.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
rsa_saos.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
rsa_saos.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
rsa_saos.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
rsa_saos.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rsa_saos.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
|
||||
rsa_saos.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
rsa_saos.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
rsa_saos.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
rsa_saos.o: ../cryptlib.h rsa_saos.c
|
||||
rsa_sign.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rsa_sign.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
rsa_sign.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
rsa_sign.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
rsa_sign.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
rsa_sign.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
rsa_sign.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
rsa_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
rsa_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rsa_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
|
||||
rsa_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
rsa_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
rsa_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
rsa_sign.o: ../cryptlib.h rsa_locl.h rsa_sign.c
|
||||
rsa_ssl.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rsa_ssl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
rsa_ssl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
rsa_ssl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
rsa_ssl.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
rsa_ssl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rsa_ssl.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
|
||||
rsa_ssl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
rsa_ssl.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_ssl.c
|
||||
rsa_x931.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rsa_x931.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
rsa_x931.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
rsa_x931.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
rsa_x931.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
rsa_x931.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
rsa_x931.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rsa_x931.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
|
||||
rsa_x931.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
rsa_x931.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_x931.c
|
|
@ -1,308 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/rsa/Makefile
|
||||
#
|
||||
|
||||
DIR= rsa
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=rsa_test.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC= rsa_eay.c rsa_gen.c rsa_lib.c rsa_sign.c rsa_saos.c rsa_err.c \
|
||||
rsa_pk1.c rsa_ssl.c rsa_none.c rsa_oaep.c rsa_chk.c rsa_null.c \
|
||||
rsa_pss.c rsa_x931.c rsa_asn1.c rsa_depr.c rsa_ameth.c rsa_prn.c \
|
||||
rsa_pmeth.c rsa_crpt.c
|
||||
LIBOBJ= rsa_eay.o rsa_gen.o rsa_lib.o rsa_sign.o rsa_saos.o rsa_err.o \
|
||||
rsa_pk1.o rsa_ssl.o rsa_none.o rsa_oaep.o rsa_chk.o rsa_null.o \
|
||||
rsa_pss.o rsa_x931.o rsa_asn1.o rsa_depr.o rsa_ameth.o rsa_prn.o \
|
||||
rsa_pmeth.o rsa_crpt.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= rsa.h
|
||||
HEADER= $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
rsa_ameth.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rsa_ameth.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
rsa_ameth.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
rsa_ameth.o: ../../include/openssl/cms.h ../../include/openssl/crypto.h
|
||||
rsa_ameth.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
rsa_ameth.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
rsa_ameth.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
rsa_ameth.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
rsa_ameth.o: ../../include/openssl/objects.h
|
||||
rsa_ameth.o: ../../include/openssl/opensslconf.h
|
||||
rsa_ameth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rsa_ameth.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
|
||||
rsa_ameth.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
rsa_ameth.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
rsa_ameth.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
rsa_ameth.o: ../asn1/asn1_locl.h ../cryptlib.h rsa_ameth.c
|
||||
rsa_asn1.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rsa_asn1.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
rsa_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
rsa_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
rsa_asn1.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
||||
rsa_asn1.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h
|
||||
rsa_asn1.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
rsa_asn1.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
rsa_asn1.o: ../../include/openssl/opensslconf.h
|
||||
rsa_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rsa_asn1.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
|
||||
rsa_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
rsa_asn1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
rsa_asn1.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
rsa_asn1.o: ../cryptlib.h rsa_asn1.c
|
||||
rsa_chk.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
rsa_chk.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
|
||||
rsa_chk.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
rsa_chk.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
rsa_chk.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rsa_chk.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
rsa_chk.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
rsa_chk.o: rsa_chk.c
|
||||
rsa_crpt.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rsa_crpt.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
rsa_crpt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
rsa_crpt.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
rsa_crpt.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
rsa_crpt.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
||||
rsa_crpt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
rsa_crpt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
rsa_crpt.o: ../../include/openssl/opensslconf.h
|
||||
rsa_crpt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rsa_crpt.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
|
||||
rsa_crpt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
rsa_crpt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
rsa_crpt.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
|
||||
rsa_crpt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h rsa_crpt.c
|
||||
rsa_depr.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rsa_depr.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
rsa_depr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
rsa_depr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
rsa_depr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
rsa_depr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rsa_depr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
rsa_depr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
rsa_depr.o: ../cryptlib.h rsa_depr.c
|
||||
rsa_eay.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rsa_eay.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
rsa_eay.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
rsa_eay.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
rsa_eay.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
rsa_eay.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rsa_eay.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
|
||||
rsa_eay.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
rsa_eay.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_eay.c
|
||||
rsa_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
||||
rsa_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
rsa_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
||||
rsa_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
rsa_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rsa.h
|
||||
rsa_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
rsa_err.o: ../../include/openssl/symhacks.h rsa_err.c
|
||||
rsa_gen.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rsa_gen.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
rsa_gen.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
rsa_gen.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
rsa_gen.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
rsa_gen.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rsa_gen.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
rsa_gen.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
rsa_gen.o: ../cryptlib.h rsa_gen.c
|
||||
rsa_lib.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rsa_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
rsa_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
rsa_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
rsa_lib.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
rsa_lib.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
||||
rsa_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
rsa_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
rsa_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
rsa_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
|
||||
rsa_lib.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
|
||||
rsa_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
rsa_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
rsa_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
rsa_lib.o: ../cryptlib.h rsa_lib.c
|
||||
rsa_none.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rsa_none.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
rsa_none.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
rsa_none.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
rsa_none.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
rsa_none.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rsa_none.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
|
||||
rsa_none.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
rsa_none.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_none.c
|
||||
rsa_null.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rsa_null.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
rsa_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
rsa_null.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
rsa_null.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
rsa_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rsa_null.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
|
||||
rsa_null.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
rsa_null.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_null.c
|
||||
rsa_oaep.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rsa_oaep.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
rsa_oaep.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
rsa_oaep.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
rsa_oaep.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
rsa_oaep.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
rsa_oaep.o: ../../include/openssl/opensslconf.h
|
||||
rsa_oaep.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rsa_oaep.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
|
||||
rsa_oaep.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
rsa_oaep.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
rsa_oaep.o: ../cryptlib.h rsa_oaep.c
|
||||
rsa_pk1.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rsa_pk1.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
rsa_pk1.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
rsa_pk1.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
rsa_pk1.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
rsa_pk1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rsa_pk1.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
|
||||
rsa_pk1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
rsa_pk1.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_pk1.c
|
||||
rsa_pmeth.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rsa_pmeth.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
||||
rsa_pmeth.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
||||
rsa_pmeth.o: ../../include/openssl/cms.h ../../include/openssl/crypto.h
|
||||
rsa_pmeth.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
rsa_pmeth.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
rsa_pmeth.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
rsa_pmeth.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
rsa_pmeth.o: ../../include/openssl/objects.h
|
||||
rsa_pmeth.o: ../../include/openssl/opensslconf.h
|
||||
rsa_pmeth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rsa_pmeth.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
|
||||
rsa_pmeth.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
rsa_pmeth.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
rsa_pmeth.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
rsa_pmeth.o: ../cryptlib.h ../evp/evp_locl.h rsa_locl.h rsa_pmeth.c
|
||||
rsa_prn.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rsa_prn.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
||||
rsa_prn.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
rsa_prn.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
rsa_prn.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
rsa_prn.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
rsa_prn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rsa_prn.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
rsa_prn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
rsa_prn.o: ../cryptlib.h rsa_prn.c
|
||||
rsa_pss.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rsa_pss.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
rsa_pss.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
rsa_pss.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
rsa_pss.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
rsa_pss.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
rsa_pss.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
rsa_pss.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
|
||||
rsa_pss.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
||||
rsa_pss.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
rsa_pss.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_pss.c
|
||||
rsa_saos.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rsa_saos.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
rsa_saos.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
rsa_saos.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
rsa_saos.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
rsa_saos.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
rsa_saos.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
rsa_saos.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
rsa_saos.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rsa_saos.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
|
||||
rsa_saos.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
rsa_saos.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
rsa_saos.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
rsa_saos.o: ../cryptlib.h rsa_saos.c
|
||||
rsa_sign.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rsa_sign.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
rsa_sign.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
rsa_sign.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
||||
rsa_sign.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
||||
rsa_sign.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
||||
rsa_sign.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
rsa_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
rsa_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rsa_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
|
||||
rsa_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
rsa_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
rsa_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
|
||||
rsa_sign.o: ../cryptlib.h rsa_locl.h rsa_sign.c
|
||||
rsa_ssl.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rsa_ssl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
rsa_ssl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
rsa_ssl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
rsa_ssl.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
rsa_ssl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rsa_ssl.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
|
||||
rsa_ssl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
rsa_ssl.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_ssl.c
|
||||
rsa_x931.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
rsa_x931.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
rsa_x931.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
rsa_x931.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
rsa_x931.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
||||
rsa_x931.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
||||
rsa_x931.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
rsa_x931.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
|
||||
rsa_x931.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
||||
rsa_x931.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_x931.c
|
|
@ -172,6 +172,7 @@ int int_rsa_verify(int dtype, const unsigned char *m,
|
|||
|
||||
if (siglen != (unsigned int)RSA_size(rsa))
|
||||
{
|
||||
printf("siglen: %i - RSAs: %i\n",siglen,(unsigned int)RSA_size(rsa));
|
||||
RSAerr(RSA_F_INT_RSA_VERIFY,RSA_R_WRONG_SIGNATURE_LENGTH);
|
||||
return(0);
|
||||
}
|
||||
|
|
|
@ -1,106 +0,0 @@
|
|||
#
|
||||
# crypto/seed/Makefile
|
||||
#
|
||||
|
||||
DIR= seed
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
CPP= $(CC) -E
|
||||
INCLUDES=
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=seed.c seed_ecb.c seed_cbc.c seed_cfb.c seed_ofb.c
|
||||
LIBOBJ=seed.o seed_ecb.o seed_cbc.o seed_cfb.o seed_ofb.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= seed.h
|
||||
HEADER= seed_locl.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
seed.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
seed.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
seed.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
seed.o: ../../include/openssl/seed.h ../../include/openssl/stack.h
|
||||
seed.o: ../../include/openssl/symhacks.h seed.c seed_locl.h
|
||||
seed_cbc.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
seed_cbc.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
|
||||
seed_cbc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
seed_cbc.o: ../../include/openssl/safestack.h ../../include/openssl/seed.h
|
||||
seed_cbc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
seed_cbc.o: seed_cbc.c
|
||||
seed_cfb.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
seed_cfb.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
|
||||
seed_cfb.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
seed_cfb.o: ../../include/openssl/safestack.h ../../include/openssl/seed.h
|
||||
seed_cfb.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
seed_cfb.o: seed_cfb.c
|
||||
seed_ecb.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
seed_ecb.o: ../../include/openssl/opensslconf.h
|
||||
seed_ecb.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
seed_ecb.o: ../../include/openssl/safestack.h ../../include/openssl/seed.h
|
||||
seed_ecb.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
seed_ecb.o: seed_ecb.c
|
||||
seed_ofb.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
seed_ofb.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
|
||||
seed_ofb.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
seed_ofb.o: ../../include/openssl/safestack.h ../../include/openssl/seed.h
|
||||
seed_ofb.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
seed_ofb.o: seed_ofb.c
|
|
@ -1,106 +0,0 @@
|
|||
#
|
||||
# crypto/seed/Makefile
|
||||
#
|
||||
|
||||
DIR= seed
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
CPP= $(CC) -E
|
||||
INCLUDES=
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=seed.c seed_ecb.c seed_cbc.c seed_cfb.c seed_ofb.c
|
||||
LIBOBJ=seed.o seed_ecb.o seed_cbc.o seed_cfb.o seed_ofb.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= seed.h
|
||||
HEADER= seed_locl.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
seed.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
seed.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
seed.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
seed.o: ../../include/openssl/seed.h ../../include/openssl/stack.h
|
||||
seed.o: ../../include/openssl/symhacks.h seed.c seed_locl.h
|
||||
seed_cbc.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
seed_cbc.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
|
||||
seed_cbc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
seed_cbc.o: ../../include/openssl/safestack.h ../../include/openssl/seed.h
|
||||
seed_cbc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
seed_cbc.o: seed_cbc.c
|
||||
seed_cfb.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
seed_cfb.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
|
||||
seed_cfb.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
seed_cfb.o: ../../include/openssl/safestack.h ../../include/openssl/seed.h
|
||||
seed_cfb.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
seed_cfb.o: seed_cfb.c
|
||||
seed_ecb.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
seed_ecb.o: ../../include/openssl/opensslconf.h
|
||||
seed_ecb.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
seed_ecb.o: ../../include/openssl/safestack.h ../../include/openssl/seed.h
|
||||
seed_ecb.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
seed_ecb.o: seed_ecb.c
|
||||
seed_ofb.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
seed_ofb.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
|
||||
seed_ofb.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
seed_ofb.o: ../../include/openssl/safestack.h ../../include/openssl/seed.h
|
||||
seed_ofb.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
seed_ofb.o: seed_ofb.c
|
|
@ -1,168 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/sha/Makefile
|
||||
#
|
||||
|
||||
DIR= sha
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
CPP= $(CC) -E
|
||||
INCLUDES=
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
SHA1_ASM_OBJ=
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
ASFLAGS= $(INCLUDES) $(ASFLAG)
|
||||
AFLAGS= $(ASFLAGS)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=shatest.c sha1test.c sha256t.c sha512t.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=sha_dgst.c sha1dgst.c sha_one.c sha1_one.c sha256.c sha512.c
|
||||
LIBOBJ=sha_dgst.o sha1dgst.o sha_one.o sha1_one.o sha256.o sha512.o $(SHA1_ASM_OBJ)
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= sha.h
|
||||
HEADER= sha_locl.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
sha1-586.s: asm/sha1-586.pl ../perlasm/x86asm.pl
|
||||
$(PERL) asm/sha1-586.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
|
||||
sha256-586.s: asm/sha256-586.pl ../perlasm/x86asm.pl
|
||||
$(PERL) asm/sha256-586.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
|
||||
sha512-586.s: asm/sha512-586.pl ../perlasm/x86asm.pl
|
||||
$(PERL) asm/sha512-586.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
|
||||
|
||||
sha1-ia64.s: asm/sha1-ia64.pl
|
||||
(cd asm; $(PERL) sha1-ia64.pl ../$@ $(CFLAGS))
|
||||
sha256-ia64.s: asm/sha512-ia64.pl
|
||||
(cd asm; $(PERL) sha512-ia64.pl ../$@ $(CFLAGS))
|
||||
sha512-ia64.s: asm/sha512-ia64.pl
|
||||
(cd asm; $(PERL) sha512-ia64.pl ../$@ $(CFLAGS))
|
||||
|
||||
sha256-armv4.S: asm/sha256-armv4.pl
|
||||
$(PERL) $< $(PERLASM_SCHEME) $@
|
||||
|
||||
sha1-alpha.s: asm/sha1-alpha.pl
|
||||
(preproc=/tmp/$$$$.$@; trap "rm $$preproc" INT; \
|
||||
$(PERL) asm/sha1-alpha.pl > $$preproc && \
|
||||
$(CC) -E $$preproc > $@ && rm $$preproc)
|
||||
|
||||
# Solaris make has to be explicitly told
|
||||
sha1-x86_64.s: asm/sha1-x86_64.pl; $(PERL) asm/sha1-x86_64.pl $(PERLASM_SCHEME) > $@
|
||||
sha256-x86_64.s:asm/sha512-x86_64.pl; $(PERL) asm/sha512-x86_64.pl $(PERLASM_SCHEME) $@
|
||||
sha512-x86_64.s:asm/sha512-x86_64.pl; $(PERL) asm/sha512-x86_64.pl $(PERLASM_SCHEME) $@
|
||||
sha1-sparcv9.s: asm/sha1-sparcv9.pl; $(PERL) asm/sha1-sparcv9.pl $@ $(CFLAGS)
|
||||
sha256-sparcv9.s:asm/sha512-sparcv9.pl; $(PERL) asm/sha512-sparcv9.pl $@ $(CFLAGS)
|
||||
sha512-sparcv9.s:asm/sha512-sparcv9.pl; $(PERL) asm/sha512-sparcv9.pl $@ $(CFLAGS)
|
||||
|
||||
sha1-ppc.s: asm/sha1-ppc.pl; $(PERL) asm/sha1-ppc.pl $(PERLASM_SCHEME) $@
|
||||
sha256-ppc.s: asm/sha512-ppc.pl; $(PERL) asm/sha512-ppc.pl $(PERLASM_SCHEME) $@
|
||||
sha512-ppc.s: asm/sha512-ppc.pl; $(PERL) asm/sha512-ppc.pl $(PERLASM_SCHEME) $@
|
||||
|
||||
sha1-parisc.s: asm/sha1-parisc.pl; $(PERL) asm/sha1-parisc.pl $(PERLASM_SCHEME) $@
|
||||
sha256-parisc.s:asm/sha512-parisc.pl; $(PERL) asm/sha512-parisc.pl $(PERLASM_SCHEME) $@
|
||||
sha512-parisc.s:asm/sha512-parisc.pl; $(PERL) asm/sha512-parisc.pl $(PERLASM_SCHEME) $@
|
||||
|
||||
sha1-mips.S: asm/sha1-mips.pl; $(PERL) asm/sha1-mips.pl $(PERLASM_SCHEME) $@
|
||||
sha256-mips.S: asm/sha512-mips.pl; $(PERL) asm/sha512-mips.pl $(PERLASM_SCHEME) $@
|
||||
sha512-mips.S: asm/sha512-mips.pl; $(PERL) asm/sha512-mips.pl $(PERLASM_SCHEME) $@
|
||||
|
||||
# GNU make "catch all"
|
||||
sha1-%.S: asm/sha1-%.pl; $(PERL) $< $(PERLASM_SCHEME) $@
|
||||
sha256-%.S: asm/sha512-%.pl; $(PERL) $< $(PERLASM_SCHEME) $@
|
||||
sha512-%.S: asm/sha512-%.pl; $(PERL) $< $(PERLASM_SCHEME) $@
|
||||
|
||||
sha1-armv4-large.o: sha1-armv4-large.S
|
||||
sha256-armv4.o: sha256-armv4.S
|
||||
sha512-armv4.o: sha512-armv4.S
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
sha1_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
sha1_one.o: ../../include/openssl/opensslconf.h
|
||||
sha1_one.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
sha1_one.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
sha1_one.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
sha1_one.o: sha1_one.c
|
||||
sha1dgst.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
sha1dgst.o: ../../include/openssl/opensslconf.h
|
||||
sha1dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
sha1dgst.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
sha1dgst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
sha1dgst.o: ../md32_common.h sha1dgst.c sha_locl.h
|
||||
sha256.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
sha256.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
sha256.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
sha256.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
sha256.o: ../../include/openssl/symhacks.h ../md32_common.h sha256.c
|
||||
sha512.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
sha512.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
sha512.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
sha512.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
sha512.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
sha512.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
sha512.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
sha512.o: ../cryptlib.h sha512.c
|
||||
sha_dgst.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
sha_dgst.o: ../../include/openssl/opensslconf.h
|
||||
sha_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
sha_dgst.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
sha_dgst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
sha_dgst.o: ../md32_common.h sha_dgst.c sha_locl.h
|
||||
sha_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
sha_one.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
sha_one.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
sha_one.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
sha_one.o: ../../include/openssl/symhacks.h sha_one.c
|
|
@ -1,168 +0,0 @@
|
|||
#
|
||||
# OpenSSL/crypto/sha/Makefile
|
||||
#
|
||||
|
||||
DIR= sha
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
CPP= $(CC) -E
|
||||
INCLUDES=
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
SHA1_ASM_OBJ=
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
ASFLAGS= $(INCLUDES) $(ASFLAG)
|
||||
AFLAGS= $(ASFLAGS)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=shatest.c sha1test.c sha256t.c sha512t.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=sha_dgst.c sha1dgst.c sha_one.c sha1_one.c sha256.c sha512.c
|
||||
LIBOBJ=sha_dgst.o sha1dgst.o sha_one.o sha1_one.o sha256.o sha512.o $(SHA1_ASM_OBJ)
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= sha.h
|
||||
HEADER= sha_locl.h $(EXHEADER)
|
||||
|
||||
ALL= $(GENERAL) $(SRC) $(HEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
sha1-586.s: asm/sha1-586.pl ../perlasm/x86asm.pl
|
||||
$(PERL) asm/sha1-586.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
|
||||
sha256-586.s: asm/sha256-586.pl ../perlasm/x86asm.pl
|
||||
$(PERL) asm/sha256-586.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
|
||||
sha512-586.s: asm/sha512-586.pl ../perlasm/x86asm.pl
|
||||
$(PERL) asm/sha512-586.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
|
||||
|
||||
sha1-ia64.s: asm/sha1-ia64.pl
|
||||
(cd asm; $(PERL) sha1-ia64.pl ../$@ $(CFLAGS))
|
||||
sha256-ia64.s: asm/sha512-ia64.pl
|
||||
(cd asm; $(PERL) sha512-ia64.pl ../$@ $(CFLAGS))
|
||||
sha512-ia64.s: asm/sha512-ia64.pl
|
||||
(cd asm; $(PERL) sha512-ia64.pl ../$@ $(CFLAGS))
|
||||
|
||||
sha256-armv4.S: asm/sha256-armv4.pl
|
||||
$(PERL) $< $(PERLASM_SCHEME) $@
|
||||
|
||||
sha1-alpha.s: asm/sha1-alpha.pl
|
||||
(preproc=/tmp/$$$$.$@; trap "rm $$preproc" INT; \
|
||||
$(PERL) asm/sha1-alpha.pl > $$preproc && \
|
||||
$(CC) -E $$preproc > $@ && rm $$preproc)
|
||||
|
||||
# Solaris make has to be explicitly told
|
||||
sha1-x86_64.s: asm/sha1-x86_64.pl; $(PERL) asm/sha1-x86_64.pl $(PERLASM_SCHEME) > $@
|
||||
sha256-x86_64.s:asm/sha512-x86_64.pl; $(PERL) asm/sha512-x86_64.pl $(PERLASM_SCHEME) $@
|
||||
sha512-x86_64.s:asm/sha512-x86_64.pl; $(PERL) asm/sha512-x86_64.pl $(PERLASM_SCHEME) $@
|
||||
sha1-sparcv9.s: asm/sha1-sparcv9.pl; $(PERL) asm/sha1-sparcv9.pl $@ $(CFLAGS)
|
||||
sha256-sparcv9.s:asm/sha512-sparcv9.pl; $(PERL) asm/sha512-sparcv9.pl $@ $(CFLAGS)
|
||||
sha512-sparcv9.s:asm/sha512-sparcv9.pl; $(PERL) asm/sha512-sparcv9.pl $@ $(CFLAGS)
|
||||
|
||||
sha1-ppc.s: asm/sha1-ppc.pl; $(PERL) asm/sha1-ppc.pl $(PERLASM_SCHEME) $@
|
||||
sha256-ppc.s: asm/sha512-ppc.pl; $(PERL) asm/sha512-ppc.pl $(PERLASM_SCHEME) $@
|
||||
sha512-ppc.s: asm/sha512-ppc.pl; $(PERL) asm/sha512-ppc.pl $(PERLASM_SCHEME) $@
|
||||
|
||||
sha1-parisc.s: asm/sha1-parisc.pl; $(PERL) asm/sha1-parisc.pl $(PERLASM_SCHEME) $@
|
||||
sha256-parisc.s:asm/sha512-parisc.pl; $(PERL) asm/sha512-parisc.pl $(PERLASM_SCHEME) $@
|
||||
sha512-parisc.s:asm/sha512-parisc.pl; $(PERL) asm/sha512-parisc.pl $(PERLASM_SCHEME) $@
|
||||
|
||||
sha1-mips.S: asm/sha1-mips.pl; $(PERL) asm/sha1-mips.pl $(PERLASM_SCHEME) $@
|
||||
sha256-mips.S: asm/sha512-mips.pl; $(PERL) asm/sha512-mips.pl $(PERLASM_SCHEME) $@
|
||||
sha512-mips.S: asm/sha512-mips.pl; $(PERL) asm/sha512-mips.pl $(PERLASM_SCHEME) $@
|
||||
|
||||
# GNU make "catch all"
|
||||
sha1-%.S: asm/sha1-%.pl; $(PERL) $< $(PERLASM_SCHEME) $@
|
||||
sha256-%.S: asm/sha512-%.pl; $(PERL) $< $(PERLASM_SCHEME) $@
|
||||
sha512-%.S: asm/sha512-%.pl; $(PERL) $< $(PERLASM_SCHEME) $@
|
||||
|
||||
sha1-armv4-large.o: sha1-armv4-large.S
|
||||
sha256-armv4.o: sha256-armv4.S
|
||||
sha512-armv4.o: sha512-armv4.S
|
||||
|
||||
files:
|
||||
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
sha1_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
sha1_one.o: ../../include/openssl/opensslconf.h
|
||||
sha1_one.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
sha1_one.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
sha1_one.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
sha1_one.o: sha1_one.c
|
||||
sha1dgst.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
sha1dgst.o: ../../include/openssl/opensslconf.h
|
||||
sha1dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
sha1dgst.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
sha1dgst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
sha1dgst.o: ../md32_common.h sha1dgst.c sha_locl.h
|
||||
sha256.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
sha256.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
sha256.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
sha256.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
sha256.o: ../../include/openssl/symhacks.h ../md32_common.h sha256.c
|
||||
sha512.o: ../../e_os.h ../../include/openssl/bio.h
|
||||
sha512.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
sha512.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
sha512.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
||||
sha512.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
sha512.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
sha512.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
sha512.o: ../cryptlib.h sha512.c
|
||||
sha_dgst.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
sha_dgst.o: ../../include/openssl/opensslconf.h
|
||||
sha_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
sha_dgst.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
sha_dgst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
sha_dgst.o: ../md32_common.h sha_dgst.c sha_locl.h
|
||||
sha_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
sha_one.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
sha_one.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
sha_one.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
||||
sha_one.o: ../../include/openssl/symhacks.h sha_one.c
|
|
@ -1,98 +0,0 @@
|
|||
DIR= srp
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
INCLUDES= -I.. -I$(TOP) -I../../include
|
||||
CFLAG=-g
|
||||
INSTALL_PREFIX=
|
||||
OPENSSLDIR= /usr/local/ssl
|
||||
INSTALLTOP=/usr/local/ssl
|
||||
MAKE= make -f Makefile.ssl
|
||||
MAKEDEPPROG= makedepend
|
||||
MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
|
||||
MAKEFILE= Makefile.ssl
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
TEST=srptest.c
|
||||
APPS=
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=srp_lib.c srp_vfy.c
|
||||
LIBOBJ=srp_lib.o srp_vfy.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
EXHEADER= srp.h
|
||||
HEADER= $(EXHEADER)
|
||||
|
||||
top:
|
||||
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
$(AR) $(LIB) $(LIBOBJ)
|
||||
$(RANLIB) $(LIB) || echo Never mind.
|
||||
@touch lib
|
||||
|
||||
links:
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
||||
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
||||
|
||||
install:
|
||||
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
||||
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
||||
do \
|
||||
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
||||
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
||||
done;
|
||||
|
||||
tags:
|
||||
ctags $(SRC)
|
||||
|
||||
tests:
|
||||
|
||||
srptest: top srptest.c $(LIB)
|
||||
$(CC) $(CFLAGS) -Wall -Werror -g -o srptest srptest.c $(LIB)
|
||||
|
||||
lint:
|
||||
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
||||
|
||||
depend:
|
||||
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
||||
|
||||
dclean:
|
||||
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
||||
mv -f Makefile.new $(MAKEFILE)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
srp_lib.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
srp_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
srp_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
srp_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
srp_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
srp_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
srp_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
srp_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
srp_lib.o: ../../include/openssl/sha.h ../../include/openssl/srp.h
|
||||
srp_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
srp_lib.o: ../cryptlib.h srp_grps.h srp_lcl.h srp_lib.c
|
||||
srp_vfy.o: ../../e_os.h ../../include/openssl/asn1.h
|
||||
srp_vfy.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
||||
srp_vfy.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
||||
srp_vfy.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
||||
srp_vfy.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
|
||||
srp_vfy.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
||||
srp_vfy.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
srp_vfy.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
|
||||
srp_vfy.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
|
||||
srp_vfy.o: ../../include/openssl/srp.h ../../include/openssl/stack.h
|
||||
srp_vfy.o: ../../include/openssl/symhacks.h ../../include/openssl/txt_db.h
|
||||
srp_vfy.o: ../cryptlib.h srp_lcl.h srp_vfy.c
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue