X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=blobdiff_plain;f=util%2Fmkfiles.pl;h=56bf1798e2862ff13317bbe8ad15ef6c1b748760;hp=bb7ceeeeda0a70c34bd68c42eabfb4799307e1b5;hb=bcfd3d68f55396f362d7c7167f4f55267a0b0c13;hpb=e2d795cb968d823c40b411c9b46cd79280d00f52 diff --git a/util/mkfiles.pl b/util/mkfiles.pl index bb7ceeeeda..56bf1798e2 100755 --- a/util/mkfiles.pl +++ b/util/mkfiles.pl @@ -7,8 +7,10 @@ # List of directories to process my @dirs = ( +".", "crypto", "crypto/md2", +"crypto/md4", "crypto/md5", "crypto/sha", "crypto/mdc2", @@ -21,10 +23,15 @@ my @dirs = ( "crypto/idea", "crypto/bf", "crypto/cast", +"crypto/aes", "crypto/bn", "crypto/rsa", "crypto/dsa", +"crypto/dso", "crypto/dh", +"crypto/ec", +"crypto/ecdh", +"crypto/ecdsa", "crypto/buffer", "crypto/bio", "crypto/stack", @@ -40,17 +47,25 @@ my @dirs = ( "crypto/conf", "crypto/txt_db", "crypto/pkcs7", +"crypto/pkcs12", "crypto/comp", +"crypto/engine", +"crypto/ocsp", +"crypto/ui", +"crypto/krb5", +"crypto/store", +"crypto/pqueue", +"crypto/whrlpool", +"crypto/ts", "ssl", -"rsaref", "apps", +"engines", "test", "tools" ); -&files_dir (".", "Makefile.org"); foreach (@dirs) { - &files_dir ($_, "Makefile.ssl"); + &files_dir ($_, "Makefile"); } exit(0);