1 @rem OpenSSL with Mingw32+GNU as
\r
2 @rem ---------------------------
\r
4 perl Configure mingw %1 %2 %3 %4 %5 %6 %7 %8
\r
8 perl -e "exit 1 if '%1' eq 'no-asm'"
\r
9 if errorlevel 1 goto noasm
\r
11 echo Generating x86 for GNU assember
\r
15 perl bn-586.pl gaswin > bn-win32.s
\r
16 perl co-586.pl gaswin > co-win32.s
\r
21 perl des-586.pl gaswin > d-win32.s
\r
26 perl crypt586.pl gaswin > y-win32.s
\r
31 perl bf-586.pl gaswin > b-win32.s
\r
36 perl cast-586.pl gaswin > c-win32.s
\r
41 perl rc4-586.pl gaswin > r4-win32.s
\r
46 perl md5-586.pl gaswin > m5-win32.s
\r
51 perl sha1-586.pl gaswin > s1-win32.s
\r
55 cd crypto\ripemd\asm
\r
56 perl rmd-586.pl gaswin > rm-win32.s
\r
61 perl rc5-586.pl gaswin > r5-win32.s
\r
66 echo Generating makefile
\r
67 perl util\mkfiles.pl >MINFO
\r
68 perl util\mk1mf.pl gaswin Mingw32 >ms\mingw32a.mak
\r
69 echo Generating DLL definition files
\r
70 perl util\mkdef.pl 32 libeay >ms\libeay32.def
\r
71 if errorlevel 1 goto end
\r
72 perl util\mkdef.pl 32 ssleay >ms\ssleay32.def
\r
73 if errorlevel 1 goto end
\r
75 rem copy ms\tlhelp32.h outinc
\r
77 echo Building the libraries
\r
78 mingw32-make -f ms/mingw32a.mak
\r
79 if errorlevel 1 goto end
\r
81 echo Generating the DLLs and input libraries
\r
82 dllwrap --dllname libeay32.dll --output-lib out/libeay32.a --def ms/libeay32.def out/libcrypto.a -lws2_32 -lgdi32
\r
83 if errorlevel 1 goto end
\r
84 dllwrap --dllname libssl32.dll --output-lib out/libssl32.a --def ms/ssleay32.def out/libssl.a out/libeay32.a
\r
85 if errorlevel 1 goto end
\r
87 echo Done compiling OpenSSL
\r