From a738892ad141356d0186c5fb46573182193576c9 Mon Sep 17 00:00:00 2001 From: Berke Viktor Date: Fri, 28 Sep 2012 13:41:20 +0200 Subject: [PATCH] Add zlib build script --- win32/deps/zlib/build-x86.bat | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 win32/deps/zlib/build-x86.bat diff --git a/win32/deps/zlib/build-x86.bat b/win32/deps/zlib/build-x86.bat new file mode 100644 index 00000000..7382fdac --- /dev/null +++ b/win32/deps/zlib/build-x86.bat @@ -0,0 +1,31 @@ +:: run this from a VS command prompt +@echo off + +SET PACKAGE_NAME=zlib-1.2.7 +nmake -f win32\makefile.msc clean +nmake -f win32\makefile.msc LOC="-DASMV -DASMINF" OBJA="inffas32.obj match686.obj" +set ZLIB_SRC=%cd% +set ZLIB_DEST=%cd%-x86 +nmake -f win32\makefile.msc test +echo.Press return when ready to install! +pause + +rmdir /q /s %ZLIB_DEST% +mkdir %ZLIB_DEST% +mkdir %ZLIB_DEST%\bin +mkdir %ZLIB_DEST%\include +mkdir %ZLIB_DEST%\lib +copy zlib.h %ZLIB_DEST%\include +copy zconf.h %ZLIB_DEST%\include +copy zdll.lib %ZLIB_DEST%\lib +copy zlib1.dll %ZLIB_DEST%\bin +copy README %ZLIB_DEST%\COPYING.ZLIB +nmake -f win32\makefile.msc clean + +cd %ZLIB_DEST% +set PATH=%PATH%;%ProgramFiles%\7-zip +7z a ..\%PACKAGE_NAME%-x86.7z * +cd %ZLIB_SRC% + +echo.Finished! +pause