Add zlib build script

This commit is contained in:
Berke Viktor 2012-09-28 13:41:20 +02:00
parent 00fbf43584
commit a738892ad1
1 changed files with 31 additions and 0 deletions

View File

@ -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