diff options
Diffstat (limited to 'openssl/ms')
-rw-r--r-- | openssl/ms/.gitignore | 8 | ||||
-rwxr-xr-x[-rw-r--r--] | openssl/ms/do_nasm.bat | 12 | ||||
-rwxr-xr-x[-rw-r--r--] | openssl/ms/do_win64a.bat | 16 |
3 files changed, 22 insertions, 14 deletions
diff --git a/openssl/ms/.gitignore b/openssl/ms/.gitignore new file mode 100644 index 000000000..565a468cd --- /dev/null +++ b/openssl/ms/.gitignore @@ -0,0 +1,8 @@ +bcb.mak
+libeay32.def
+nt.mak
+ntdll.mak
+ssleay32.def
+version32.rc
+uptable.asm
+uptable.obj
diff --git a/openssl/ms/do_nasm.bat b/openssl/ms/do_nasm.bat index 7b3f3edbf..7f4325b3f 100644..100755 --- a/openssl/ms/do_nasm.bat +++ b/openssl/ms/do_nasm.bat @@ -1,8 +1,8 @@ -perl util\mkfiles.pl >MINFO -perl util\mk1mf.pl nasm VC-WIN32 >ms\nt.mak -perl util\mk1mf.pl dll nasm VC-WIN32 >ms\ntdll.mak -perl util\mk1mf.pl nasm BC-NT >ms\bcb.mak +perl util/mkfiles.pl >MINFO +perl util/mk1mf.pl nasm VC-WIN32 >ms/nt.mak +perl util/mk1mf.pl dll nasm VC-WIN32 >ms/ntdll.mak +perl util/mk1mf.pl nasm BC-NT >ms/bcb.mak -perl util\mkdef.pl 32 libeay > ms\libeay32.def -perl util\mkdef.pl 32 ssleay > ms\ssleay32.def +perl util/mkdef.pl 32 libeay > ms/libeay32.def +perl util/mkdef.pl 32 ssleay > ms/ssleay32.def diff --git a/openssl/ms/do_win64a.bat b/openssl/ms/do_win64a.bat index ff8b19ccf..be87fffee 100644..100755 --- a/openssl/ms/do_win64a.bat +++ b/openssl/ms/do_win64a.bat @@ -3,17 +3,17 @@ perl util\mkfiles.pl >MINFO cmd /c "nasm -f win64 -v" >NUL: 2>&1 if %errorlevel% neq 0 goto ml64 -perl ms\uplink-x86_64.pl nasm > ms\uptable.asm -nasm -f win64 -o ms\uptable.obj ms\uptable.asm +perl ms/uplink-x86_64.pl nasm > ms/uptable.asm +nasm -f win64 -o ms/uptable.obj ms/uptable.asm goto proceed :ml64 -perl ms\uplink-x86_64.pl masm > ms\uptable.asm -ml64 -c -Foms\uptable.obj ms\uptable.asm +perl ms/uplink-x86_64.pl masm > ms/uptable.asm +ml64 -c -Foms/uptable.obj ms/uptable.asm :proceed -perl util\mk1mf.pl VC-WIN64A >ms\nt.mak -perl util\mk1mf.pl dll VC-WIN64A >ms\ntdll.mak +perl util/mk1mf.pl VC-WIN64A >ms/nt.mak +perl util/mk1mf.pl dll VC-WIN64A >ms/ntdll.mak -perl util\mkdef.pl 32 libeay > ms\libeay32.def -perl util\mkdef.pl 32 ssleay > ms\ssleay32.def +perl util/mkdef.pl 32 libeay > ms/libeay32.def +perl util/mkdef.pl 32 ssleay > ms/ssleay32.def |