]> git.ipfire.org Git - thirdparty/openssl.git/blame - ms/mw.bat
Clear BN_FLG_CONSTTIME on BN_CTX_get()
[thirdparty/openssl.git] / ms / mw.bat
CommitLineData
7eceffbf
DSH
1@rem OpenSSL with Mingw32
2@rem --------------------
3
4@rem Makefile
5perl util\mkfiles.pl >MINFO
6perl util\mk1mf.pl Mingw32 >ms\mingw32.mak
7@rem DLL definition files
8perl util\mkdef.pl 32 libeay >ms\libeay32.def
9if errorlevel 1 goto end
10perl util\mkdef.pl 32 ssleay >ms\ssleay32.def
11if errorlevel 1 goto end
12
13@rem Build the libraries
14make -f ms/mingw32.mak
15if errorlevel 1 goto end
16
17@rem Generate the DLLs and input libraries
18dllwrap --dllname libeay32.dll --output-lib out/libeay32.a --def ms/libeay32.def out/libcrypto.a -lws2_32 -lgdi32
19if errorlevel 1 goto end
20dllwrap --dllname libssl32.dll --output-lib out/libssl32.a --def ms/ssleay32.def out/libssl.a out/libeay32.a
21if errorlevel 1 goto end
22
23echo Done compiling OpenSSL
24
25:end
26