Rev. | 6480 |
---|---|
Size | 779 bytes |
Time | 2016-08-28 15:10:33 |
Author | (del#24082) |
Log Message | OpenSSL 1.1.0(25-Aug-2016)が正式リリースされたため、ディレクトリ名を変更した。
|
cd openssl-1.1.0
if exist "out32.dbg\libcrypto.lib" goto build_dbg_end
perl Configure no-asm no-async VC-WIN32 --debug
perl -e "open(IN,'makefile');while(<IN>){s| /MDd| /MTd|;print $_;}close(IN);" > makefile.tmp
if exist "makefile.dbg" del makefile.dbg
ren makefile.tmp makefile.dbg
nmake -f makefile.dbg clean
nmake -f makefile.dbg
mkdir out32.dbg
move libcrypto.lib out32.dbg
move libssl.lib out32.dbg
:build_dbg_end
if exist "out32\libcrypto.lib" goto build_end
perl Configure no-asm no-async VC-WIN32
perl -e "open(IN,'makefile');while(<IN>){s| /MD| /MT|;print $_;}close(IN);" > makefile.tmp
if exist "makefile" del makefile
ren makefile.tmp makefile
nmake clean
nmake
mkdir out32
move libcrypto.lib out32
move libssl.lib out32
:build_end
cd ..