mirror of https://github.com/madler/zlib.git
parent
f0e76a6634
commit
7a6955760b
63 changed files with 2463 additions and 506 deletions
@ -0,0 +1,106 @@ |
||||
---------------------------------------------------------------- |
||||
-- ZLib for Ada thick binding. -- |
||||
-- -- |
||||
-- Copyright (C) 2002-2004 Dmitriy Anisimkov -- |
||||
-- -- |
||||
-- Open source license information is in the zlib.ads file. -- |
||||
---------------------------------------------------------------- |
||||
-- |
||||
-- $Id: buffer_demo.adb,v 1.3 2004/09/06 06:55:35 vagul Exp $ |
||||
|
||||
-- This demo program provided by Dr Steve Sangwine <sjs@essex.ac.uk> |
||||
-- |
||||
-- Demonstration of a problem with Zlib-Ada (already fixed) when a buffer |
||||
-- of exactly the correct size is used for decompressed data, and the last |
||||
-- few bytes passed in to Zlib are checksum bytes. |
||||
|
||||
-- This program compresses a string of text, and then decompresses the |
||||
-- compressed text into a buffer of the same size as the original text. |
||||
|
||||
with Ada.Streams; use Ada.Streams; |
||||
with Ada.Text_IO; |
||||
|
||||
with ZLib; use ZLib; |
||||
|
||||
procedure Buffer_Demo is |
||||
EOL : Character renames ASCII.LF; |
||||
Text : constant String |
||||
:= "Four score and seven years ago our fathers brought forth," & EOL & |
||||
"upon this continent, a new nation, conceived in liberty," & EOL & |
||||
"and dedicated to the proposition that `all men are created equal'."; |
||||
|
||||
Source : Stream_Element_Array (1 .. Text'Length); |
||||
for Source'Address use Text'Address; |
||||
|
||||
begin |
||||
Ada.Text_IO.Put (Text); |
||||
Ada.Text_IO.New_Line; |
||||
Ada.Text_IO.Put_Line |
||||
("Uncompressed size : " & Positive'Image (Text'Length) & " bytes"); |
||||
|
||||
declare |
||||
Compressed_Data : Stream_Element_Array (1 .. Text'Length); |
||||
L : Stream_Element_Offset; |
||||
begin |
||||
Compress : declare |
||||
Compressor : Filter_Type; |
||||
I : Stream_Element_Offset; |
||||
begin |
||||
Deflate_Init (Compressor); |
||||
|
||||
-- Compress the whole of T at once. |
||||
|
||||
Translate (Compressor, Source, I, Compressed_Data, L, Finish); |
||||
pragma Assert (I = Source'Last); |
||||
|
||||
Close (Compressor); |
||||
|
||||
Ada.Text_IO.Put_Line |
||||
("Compressed size : " |
||||
& Stream_Element_Offset'Image (L) & " bytes"); |
||||
end Compress; |
||||
|
||||
-- Now we decompress the data, passing short blocks of data to Zlib |
||||
-- (because this demonstrates the problem - the last block passed will |
||||
-- contain checksum information and there will be no output, only a |
||||
-- check inside Zlib that the checksum is correct). |
||||
|
||||
Decompress : declare |
||||
Decompressor : Filter_Type; |
||||
|
||||
Uncompressed_Data : Stream_Element_Array (1 .. Text'Length); |
||||
|
||||
Block_Size : constant := 4; |
||||
-- This makes sure that the last block contains |
||||
-- only Adler checksum data. |
||||
|
||||
P : Stream_Element_Offset := Compressed_Data'First - 1; |
||||
O : Stream_Element_Offset; |
||||
begin |
||||
Inflate_Init (Decompressor); |
||||
|
||||
loop |
||||
Translate |
||||
(Decompressor, |
||||
Compressed_Data |
||||
(P + 1 .. Stream_Element_Offset'Min (P + Block_Size, L)), |
||||
P, |
||||
Uncompressed_Data |
||||
(Total_Out (Decompressor) + 1 .. Uncompressed_Data'Last), |
||||
O, |
||||
No_Flush); |
||||
|
||||
Ada.Text_IO.Put_Line |
||||
("Total in : " & Count'Image (Total_In (Decompressor)) & |
||||
", out : " & Count'Image (Total_Out (Decompressor))); |
||||
|
||||
exit when P = L; |
||||
end loop; |
||||
|
||||
Ada.Text_IO.New_Line; |
||||
Ada.Text_IO.Put_Line |
||||
("Decompressed text matches original text : " |
||||
& Boolean'Image (Uncompressed_Data = Source)); |
||||
end Decompress; |
||||
end; |
||||
end Buffer_Demo; |
@ -1,21 +1,21 @@ |
||||
project Zlib is |
||||
|
||||
for Languages use ("Ada"); |
||||
for Source_Dirs use ("."); |
||||
for Object_Dir use "."; |
||||
for Main use ("test.adb", "mtest.adb", "read.adb"); |
||||
|
||||
package Compiler is |
||||
for Default_Switches ("ada") use ("-gnatwbcfilopru", "-gnatVcdfimorst", "-gnatyabcefhiklmnoprst"); |
||||
end Compiler; |
||||
|
||||
package Linker is |
||||
for Default_Switches ("ada") use ("-lz"); |
||||
end Linker; |
||||
|
||||
package Builder is |
||||
for Default_Switches ("ada") use ("-s", "-gnatQ"); |
||||
end Builder; |
||||
|
||||
end Zlib; |
||||
|
||||
project Zlib is |
||||
|
||||
for Languages use ("Ada"); |
||||
for Source_Dirs use ("."); |
||||
for Object_Dir use "."; |
||||
for Main use ("test.adb", "mtest.adb", "read.adb", "buffer_demo"); |
||||
|
||||
package Compiler is |
||||
for Default_Switches ("ada") use ("-gnatwcfilopru", "-gnatVcdfimorst", "-gnatyabcefhiklmnoprst"); |
||||
end Compiler; |
||||
|
||||
package Linker is |
||||
for Default_Switches ("ada") use ("-lz"); |
||||
end Linker; |
||||
|
||||
package Builder is |
||||
for Default_Switches ("ada") use ("-s", "-gnatQ"); |
||||
end Builder; |
||||
|
||||
end Zlib; |
||||
|
||||
|
@ -1,3 +1,3 @@ |
||||
cl /I..\.. /O2 /c gvmat32c.c |
||||
cl /DASMV /I..\.. /O2 /c gvmat32c.c |
||||
ml /coff /Zi /c /Flgvmat32.lst gvmat32.asm |
||||
ml /coff /Zi /c /Flinffas32.lst inffas32.asm |
||||
|
@ -0,0 +1,281 @@ |
||||
/*
|
||||
Additional tools for Minizip |
||||
Code: Xavier Roche '2004 |
||||
License: Same as ZLIB (www.gzip.org) |
||||
*/ |
||||
|
||||
/* Code */ |
||||
#include <stdio.h> |
||||
#include <stdlib.h> |
||||
#include <string.h> |
||||
#include "zlib.h" |
||||
#include "unzip.h" |
||||
|
||||
#define READ_8(adr) ((unsigned char)*(adr)) |
||||
#define READ_16(adr) ( READ_8(adr) | (READ_8(adr+1) << 8) ) |
||||
#define READ_32(adr) ( READ_16(adr) | (READ_16((adr)+2) << 16) ) |
||||
|
||||
#define WRITE_8(buff, n) do { \ |
||||
*((unsigned char*)(buff)) = (unsigned char) ((n) & 0xff); \
|
||||
} while(0) |
||||
#define WRITE_16(buff, n) do { \ |
||||
WRITE_8((unsigned char*)(buff), n); \
|
||||
WRITE_8(((unsigned char*)(buff)) + 1, (n) >> 8); \
|
||||
} while(0) |
||||
#define WRITE_32(buff, n) do { \ |
||||
WRITE_16((unsigned char*)(buff), (n) & 0xffff); \
|
||||
WRITE_16((unsigned char*)(buff) + 2, (n) >> 16); \
|
||||
} while(0) |
||||
|
||||
extern int ZEXPORT unzRepair(file, fileOut, fileOutTmp, nRecovered, bytesRecovered) |
||||
const char* file; |
||||
const char* fileOut; |
||||
const char* fileOutTmp; |
||||
uLong* nRecovered; |
||||
uLong* bytesRecovered; |
||||
{ |
||||
int err = Z_OK; |
||||
FILE* fpZip = fopen(file, "rb"); |
||||
FILE* fpOut = fopen(fileOut, "wb"); |
||||
FILE* fpOutCD = fopen(fileOutTmp, "wb"); |
||||
if (fpZip != NULL && fpOut != NULL) { |
||||
int entries = 0; |
||||
uLong totalBytes = 0; |
||||
char header[30]; |
||||
char filename[256]; |
||||
char extra[1024]; |
||||
int offset = 0; |
||||
int offsetCD = 0; |
||||
while ( fread(header, 1, 30, fpZip) == 30 ) { |
||||
int currentOffset = offset; |
||||
|
||||
/* File entry */ |
||||
if (READ_32(header) == 0x04034b50) { |
||||
unsigned int version = READ_16(header + 4); |
||||
unsigned int gpflag = READ_16(header + 6); |
||||
unsigned int method = READ_16(header + 8); |
||||
unsigned int filetime = READ_16(header + 10); |
||||
unsigned int filedate = READ_16(header + 12); |
||||
unsigned int crc = READ_32(header + 14); /* crc */ |
||||
unsigned int cpsize = READ_32(header + 18); /* compressed size */ |
||||
unsigned int uncpsize = READ_32(header + 22); /* uncompressed sz */ |
||||
unsigned int fnsize = READ_16(header + 26); /* file name length */ |
||||
unsigned int extsize = READ_16(header + 28); /* extra field length */ |
||||
filename[0] = extra[0] = '\0'; |
||||
|
||||
/* Header */ |
||||
if (fwrite(header, 1, 30, fpOut) == 30) { |
||||
offset += 30; |
||||
} else { |
||||
err = Z_ERRNO; |
||||
break; |
||||
} |
||||
|
||||
/* Filename */ |
||||
if (fnsize > 0) { |
||||
if (fread(filename, 1, fnsize, fpZip) == fnsize) { |
||||
if (fwrite(filename, 1, fnsize, fpOut) == fnsize) { |
||||
offset += fnsize; |
||||
} else { |
||||
err = Z_ERRNO; |
||||
break; |
||||
} |
||||
} else { |
||||
err = Z_ERRNO; |
||||
break; |
||||
} |
||||
} else { |
||||
err = Z_STREAM_ERROR; |
||||
break; |
||||
} |
||||
|
||||
/* Extra field */ |
||||
if (extsize > 0) { |
||||
if (fread(extra, 1, extsize, fpZip) == extsize) { |
||||
if (fwrite(extra, 1, extsize, fpOut) == extsize) { |
||||
offset += extsize; |
||||
} else { |
||||
err = Z_ERRNO; |
||||
break; |
||||
} |
||||
} else { |
||||
err = Z_ERRNO; |
||||
break; |
||||
} |
||||
} |
||||
|
||||
/* Data */ |
||||
{ |
||||
int dataSize = cpsize; |
||||
if (dataSize == 0) { |
||||
dataSize = uncpsize; |
||||
} |
||||
if (dataSize > 0) { |
||||
char* data = malloc(dataSize); |
||||
if (data != NULL) { |
||||
if ((int)fread(data, 1, dataSize, fpZip) == dataSize) { |
||||
if ((int)fwrite(data, 1, dataSize, fpOut) == dataSize) { |
||||
offset += dataSize; |
||||
totalBytes += dataSize; |
||||
} else { |
||||
err = Z_ERRNO; |
||||
} |
||||
} else { |
||||
err = Z_ERRNO; |
||||
} |
||||
free(data); |
||||
if (err != Z_OK) { |
||||
break; |
||||
} |
||||
} else { |
||||
err = Z_MEM_ERROR; |
||||
break; |
||||
} |
||||
} |
||||
} |
||||
|
||||
/* Central directory entry */ |
||||
{ |
||||
char header[46]; |
||||
char* comment = ""; |
||||
int comsize = (int) strlen(comment); |
||||
WRITE_32(header, 0x02014b50); |
||||
WRITE_16(header + 4, version); |
||||
WRITE_16(header + 6, version); |
||||
WRITE_16(header + 8, gpflag); |
||||
WRITE_16(header + 10, method); |
||||
WRITE_16(header + 12, filetime); |
||||
WRITE_16(header + 14, filedate); |
||||
WRITE_32(header + 16, crc); |
||||
WRITE_32(header + 20, cpsize); |
||||
WRITE_32(header + 24, uncpsize); |
||||
WRITE_16(header + 28, fnsize); |
||||
WRITE_16(header + 30, extsize); |
||||
WRITE_16(header + 32, comsize); |
||||
WRITE_16(header + 34, 0); /* disk # */ |
||||
WRITE_16(header + 36, 0); /* int attrb */ |
||||
WRITE_32(header + 38, 0); /* ext attrb */ |
||||
WRITE_32(header + 42, currentOffset); |
||||
/* Header */ |
||||
if (fwrite(header, 1, 46, fpOutCD) == 46) { |
||||
offsetCD += 46; |
||||
|
||||
/* Filename */ |
||||
if (fnsize > 0) { |
||||
if (fwrite(filename, 1, fnsize, fpOutCD) == fnsize) { |
||||
offsetCD += fnsize; |
||||
} else { |
||||
err = Z_ERRNO; |
||||
break; |
||||
} |
||||
} else { |
||||
err = Z_STREAM_ERROR; |
||||
break; |
||||
} |
||||
|
||||
/* Extra field */ |
||||
if (extsize > 0) { |
||||
if (fwrite(extra, 1, extsize, fpOutCD) == extsize) { |
||||
offsetCD += extsize; |
||||
} else { |
||||
err = Z_ERRNO; |
||||
break; |
||||
} |
||||
} |
||||
|
||||
/* Comment field */ |
||||
if (comsize > 0) { |
||||
if ((int)fwrite(comment, 1, comsize, fpOutCD) == comsize) { |
||||
offsetCD += comsize; |
||||
} else { |
||||
err = Z_ERRNO; |
||||
break; |
||||
} |
||||
} |
||||
|
||||
|
||||
} else { |
||||
err = Z_ERRNO; |
||||
break; |
||||
} |
||||
} |
||||
|
||||
/* Success */ |
||||
entries++; |
||||
|
||||
} else { |
||||
break; |
||||
} |
||||
} |
||||
|
||||
/* Final central directory */ |
||||
{ |
||||
int entriesZip = entries; |
||||
char header[22]; |
||||
char* comment = ""; // "ZIP File recovered by zlib/minizip/mztools";
|
||||
int comsize = (int) strlen(comment); |
||||
if (entriesZip > 0xffff) { |
||||
entriesZip = 0xffff; |
||||
} |
||||
WRITE_32(header, 0x06054b50); |
||||
WRITE_16(header + 4, 0); /* disk # */ |
||||
WRITE_16(header + 6, 0); /* disk # */ |
||||
WRITE_16(header + 8, entriesZip); /* hack */ |
||||
WRITE_16(header + 10, entriesZip); /* hack */ |
||||
WRITE_32(header + 12, offsetCD); /* size of CD */ |
||||
WRITE_32(header + 16, offset); /* offset to CD */ |
||||
WRITE_16(header + 20, comsize); /* comment */ |
||||
|
||||
/* Header */ |
||||
if (fwrite(header, 1, 22, fpOutCD) == 22) { |
||||
|
||||
/* Comment field */ |
||||
if (comsize > 0) { |
||||
if ((int)fwrite(comment, 1, comsize, fpOutCD) != comsize) { |
||||
err = Z_ERRNO; |
||||
} |
||||
} |
||||
|
||||
} else { |
||||
err = Z_ERRNO; |
||||
} |
||||
} |
||||
|
||||
/* Final merge (file + central directory) */ |
||||
fclose(fpOutCD); |
||||
if (err == Z_OK) { |
||||
fpOutCD = fopen(fileOutTmp, "rb"); |
||||
if (fpOutCD != NULL) { |
||||
int nRead; |
||||
char buffer[8192]; |
||||
while ( (nRead = fread(buffer, 1, sizeof(buffer), fpOutCD)) > 0) { |
||||
if ((int)fwrite(buffer, 1, nRead, fpOut) != nRead) { |
||||
err = Z_ERRNO; |
||||
break; |
||||
} |
||||
} |
||||
fclose(fpOutCD); |
||||
} |
||||
} |
||||
|
||||
/* Close */ |
||||
fclose(fpZip); |
||||
fclose(fpOut); |
||||
|
||||
/* Wipe temporary file */ |
||||
(void)remove(fileOutTmp); |
||||
|
||||
/* Number of recovered entries */ |
||||
if (err == Z_OK) { |
||||
if (nRecovered != NULL) { |
||||
*nRecovered = entries; |
||||
} |
||||
if (bytesRecovered != NULL) { |
||||
*bytesRecovered = totalBytes; |
||||
} |
||||
} |
||||
} else { |
||||
err = Z_STREAM_ERROR; |
||||
} |
||||
return err; |
||||
} |
@ -0,0 +1,31 @@ |
||||
/*
|
||||
Additional tools for Minizip |
||||
Code: Xavier Roche '2004 |
||||
License: Same as ZLIB (www.gzip.org) |
||||
*/ |
||||
|
||||
#ifndef _zip_tools_H |
||||
#define _zip_tools_H |
||||
|
||||
#ifdef __cplusplus |
||||
extern "C" { |
||||
#endif |
||||
|
||||
#ifndef _ZLIB_H |
||||
#include "zlib.h" |
||||
#endif |
||||
|
||||
#include "unzip.h" |
||||
|
||||
/* Repair a ZIP file (missing central directory)
|
||||
file: file to recover |
||||
fileOut: output file after recovery |
||||
fileOutTmp: temporary file name used for recovery |
||||
*/ |
||||
extern int ZEXPORT unzRepair(const char* file,
|
||||
const char* fileOut,
|
||||
const char* fileOutTmp,
|
||||
uLong* nRecovered, |
||||
uLong* bytesRecovered); |
||||
|
||||
#endif |
@ -0,0 +1,38 @@ |
||||
This directory contains project files for building zlib under various |
||||
Integrated Development Environments (IDE). |
||||
|
||||
If you wish to submit a new project to this directory, you should comply |
||||
to the following requirements. Otherwise (e.g. if you wish to integrate |
||||
a custom piece of code that changes the zlib interface or its behavior), |
||||
please consider submitting the project to the contrib directory. |
||||
|
||||
|
||||
Requirements |
||||
============ |
||||
|
||||
- The project must build zlib using exclusively the source files from |
||||
the official zlib distribution. |
||||
|
||||
- If there are "official" makefiles in the zlib distribution, the builds |
||||
given by the makefiles must be compatible with the builds given by the |
||||
project. These builds are called "official" builds. |
||||
|
||||
- It is possible to add non-official pieces of code to the project, |
||||
if the resulting build remains compatible with an official build. |
||||
For example, it is possible to add an "ASM build" target besides |
||||
the regular target, by including ASM source files from the contrib |
||||
directory. |
||||
|
||||
- If there are significant differences between the project files created |
||||
by different versions of an IDE (e.g. Visual C++ 6.0 vs. 7.0), the name |
||||
of the project directory should contain the version number of the IDE |
||||
for which the project is intended (e.g. "visualc6" for Visual C++ 6.0, |
||||
or "visualc7" for Visual C++ 7.0 and 7.1). |
||||
|
||||
|
||||
Current projects |
||||
================ |
||||
|
||||
visualc6/ by Simon-Pierre Cadieux <methodex@methodex.ca> |
||||
and Cosmin Truta <cosmint@cs.ubbcluj.ro> |
||||
Project for Microsoft Visual C++ 6.0 |
@ -0,0 +1,38 @@ |
||||
Microsoft Developer Studio Project Files, Format Version 6.00 for zlib. |
||||
|
||||
Copyright (C) 2000-2004 Simon-Pierre Cadieux. |
||||
Copyright (C) 2004 Cosmin Truta. |
||||
For conditions of distribution and use, see copyright notice in zlib.h. |
||||
|
||||
|
||||
To use: |
||||
|
||||
1) On the main menu, select "File | Open Workspace". |
||||
Open "zlib.dsw". |
||||
|
||||
2) Select "Build | Set Active Configuration". |
||||
Choose the configuration you wish to build. |
||||
|
||||
3) Select "Build | Clean". |
||||
|
||||
4) Select "Build | Build ... (F7)". Ignore warning messages about |
||||
not being able to find certain include files (e.g. alloc.h). |
||||
|
||||
5) If you built one of the sample programs (example or minigzip), |
||||
select "Build | Execute ... (Ctrl+F5)". |
||||
|
||||
|
||||
This project builds the zlib binaries as follows: |
||||
|
||||
* Win32_DLL_Release\zlib1.dll DLL build |
||||
* Win32_DLL_Debug\zlib1d.dll DLL build (debug version) |
||||
* Win32_DLL_ASM_Release\zlib1.dll DLL build using ASM code |
||||
* Win32_DLL_ASM_Debug\zlib1d.dll DLL build using ASM code (debug version) |
||||
* Win32_LIB_Release\zlib.lib static build |
||||
* Win32_LIB_Debug\zlibd.lib static build (debug version) |
||||
* Win32_LIB_ASM_Release\zlib.lib static build using ASM code |
||||
* Win32_LIB_ASM_Debug\zlibd.lib static build using ASM code (debug version) |
||||
|
||||
|
||||
For more information regarding the DLL builds, please see the DLL FAQ |
||||
in ..\..\win32\DLL_FAQ.txt. |
@ -0,0 +1,278 @@ |
||||
# Microsoft Developer Studio Project File - Name="example" - Package Owner=<4> |
||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00 |
||||
# ** DO NOT EDIT ** |
||||
|
||||
# TARGTYPE "Win32 (x86) Console Application" 0x0103 |
||||
|
||||
CFG=example - Win32 LIB Debug |
||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE, |
||||
!MESSAGE use the Export Makefile command and run |
||||
!MESSAGE |
||||
!MESSAGE NMAKE /f "example.mak". |
||||
!MESSAGE |
||||
!MESSAGE You can specify a configuration when running NMAKE |
||||
!MESSAGE by defining the macro CFG on the command line. For example: |
||||
!MESSAGE |
||||
!MESSAGE NMAKE /f "example.mak" CFG="example - Win32 LIB Debug" |
||||
!MESSAGE |
||||
!MESSAGE Possible choices for configuration are: |
||||
!MESSAGE |
||||
!MESSAGE "example - Win32 DLL Release" (based on "Win32 (x86) Console Application") |
||||
!MESSAGE "example - Win32 DLL Debug" (based on "Win32 (x86) Console Application") |
||||
!MESSAGE "example - Win32 DLL ASM Release" (based on "Win32 (x86) Console Application") |
||||
!MESSAGE "example - Win32 DLL ASM Debug" (based on "Win32 (x86) Console Application") |
||||
!MESSAGE "example - Win32 LIB Release" (based on "Win32 (x86) Console Application") |
||||
!MESSAGE "example - Win32 LIB Debug" (based on "Win32 (x86) Console Application") |
||||
!MESSAGE "example - Win32 LIB ASM Release" (based on "Win32 (x86) Console Application") |
||||
!MESSAGE "example - Win32 LIB ASM Debug" (based on "Win32 (x86) Console Application") |
||||
!MESSAGE |
||||
|
||||
# Begin Project |
||||
# PROP AllowPerConfigDependencies 0 |
||||
# PROP Scc_ProjName "" |
||||
# PROP Scc_LocalPath "" |
||||
CPP=cl.exe |
||||
RSC=rc.exe |
||||
|
||||
!IF "$(CFG)" == "example - Win32 DLL Release" |
||||
|
||||
# PROP BASE Use_MFC 0 |
||||
# PROP BASE Use_Debug_Libraries 0 |
||||
# PROP BASE Output_Dir "example___Win32_DLL_Release" |
||||
# PROP BASE Intermediate_Dir "example___Win32_DLL_Release" |
||||
# PROP BASE Target_Dir "" |
||||
# PROP Use_MFC 0 |
||||
# PROP Use_Debug_Libraries 0 |
||||
# PROP Output_Dir "Win32_DLL_Release" |
||||
# PROP Intermediate_Dir "Win32_DLL_Release" |
||||
# PROP Ignore_Export_Lib 0 |
||||
# PROP Target_Dir "" |
||||
# ADD BASE CPP /nologo /W3 /O2 /D "WIN32" /D "NDEBUG" /FD /c |
||||
# SUBTRACT BASE CPP /YX |
||||
# ADD CPP /nologo /MD /W3 /O2 /D "WIN32" /D "NDEBUG" /FD /c |
||||
# SUBTRACT CPP /YX |
||||
# ADD BASE RSC /l 0x409 /d "NDEBUG" |
||||
# ADD RSC /l 0x409 /d "NDEBUG" |
||||
BSC32=bscmake.exe |
||||
# ADD BASE BSC32 /nologo |
||||
# ADD BSC32 /nologo |
||||
LINK32=link.exe |
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 |
||||
# ADD LINK32 zlib1.lib /nologo /subsystem:console /machine:I386 /libpath:"Win32_DLL_Release" |
||||
|
||||
!ELSEIF "$(CFG)" == "example - Win32 DLL Debug" |
||||
|
||||
# PROP BASE Use_MFC 0 |
||||
# PROP BASE Use_Debug_Libraries 1 |
||||
# PROP BASE Output_Dir "example___Win32_DLL_Debug" |
||||
# PROP BASE Intermediate_Dir "example___Win32_DLL_Debug" |
||||
# PROP BASE Target_Dir "" |
||||
# PROP Use_MFC 0 |
||||
# PROP Use_Debug_Libraries 1 |
||||
# PROP Output_Dir "Win32_DLL_Debug" |
||||
# PROP Intermediate_Dir "Win32_DLL_Debug" |
||||
# PROP Ignore_Export_Lib 0 |
||||
# PROP Target_Dir "" |
||||
# ADD BASE CPP /nologo /W3 /Gm /ZI /Od /D "WIN32" /D "_DEBUG" /FD /GZ /c |
||||
# SUBTRACT BASE CPP /YX |
||||
# ADD CPP /nologo /MDd /W3 /Gm /ZI /Od /D "WIN32" /D "_DEBUG" /FD /GZ /c |
||||
# SUBTRACT CPP /YX |
||||
# ADD BASE RSC /l 0x409 /d "_DEBUG" |
||||
# ADD RSC /l 0x409 /d "_DEBUG" |
||||
BSC32=bscmake.exe |
||||
# ADD BASE BSC32 /nologo |
||||
# ADD BSC32 /nologo |
||||
LINK32=link.exe |
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept |
||||
# ADD LINK32 zlib1d.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept /libpath:"Win32_DLL_Debug" |
||||
|
||||
!ELSEIF "$(CFG)" == "example - Win32 DLL ASM Release" |
||||
|
||||
# PROP BASE Use_MFC 0 |
||||
# PROP BASE Use_Debug_Libraries 0 |
||||
# PROP BASE Output_Dir "example___Win32_DLL_ASM_Release" |
||||
# PROP BASE Intermediate_Dir "example___Win32_DLL_ASM_Release" |
||||
# PROP BASE Target_Dir "" |
||||
# PROP Use_MFC 0 |
||||
# PROP Use_Debug_Libraries 0 |
||||
# PROP Output_Dir "Win32_DLL_ASM_Release" |
||||
# PROP Intermediate_Dir "Win32_DLL_ASM_Release" |
||||
# PROP Ignore_Export_Lib 0 |
||||
# PROP Target_Dir "" |
||||
# ADD BASE CPP /nologo /W3 /O2 /D "WIN32" /D "NDEBUG" /FD /c |
||||
# SUBTRACT BASE CPP /YX |
||||
# ADD CPP /nologo /MD /W3 /O2 /D "WIN32" /D "NDEBUG" /FD /c |
||||
# SUBTRACT CPP /YX |
||||
# ADD BASE RSC /l 0x409 /d "NDEBUG" |
||||
# ADD RSC /l 0x409 /d "NDEBUG" |
||||
BSC32=bscmake.exe |
||||
# ADD BASE BSC32 /nologo |
||||
# ADD BSC32 /nologo |
||||
LINK32=link.exe |
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 |
||||
# ADD LINK32 zlib1.lib /nologo /subsystem:console /machine:I386 /libpath:"Win32_DLL_ASM_Release" |
||||
|
||||
!ELSEIF "$(CFG)" == "example - Win32 DLL ASM Debug" |
||||
|
||||
# PROP BASE Use_MFC 0 |
||||
# PROP BASE Use_Debug_Libraries 1 |
||||
# PROP BASE Output_Dir "example___Win32_DLL_ASM_Debug" |
||||
# PROP BASE Intermediate_Dir "example___Win32_DLL_ASM_Debug" |
||||
# PROP BASE Target_Dir "" |
||||
# PROP Use_MFC 0 |
||||
# PROP Use_Debug_Libraries 1 |
||||
# PROP Output_Dir "Win32_DLL_ASM_Debug" |
||||
# PROP Intermediate_Dir "Win32_DLL_ASM_Debug" |
||||
# PROP Ignore_Export_Lib 0 |
||||
# PROP Target_Dir "" |
||||
# ADD BASE CPP /nologo /W3 /Gm /ZI /Od /D "WIN32" /D "_DEBUG" /FD /GZ /c |
||||
# SUBTRACT BASE CPP /YX |
||||
# ADD CPP /nologo /MDd /W3 /Gm /ZI /Od /D "WIN32" /D "_DEBUG" /FD /GZ /c |
||||
# SUBTRACT CPP /YX |
||||
# ADD BASE RSC /l 0x409 /d "_DEBUG" |
||||
# ADD RSC /l 0x409 /d "_DEBUG" |
||||
BSC32=bscmake.exe |
||||
# ADD BASE BSC32 /nologo |
||||
# ADD BSC32 /nologo |
||||
LINK32=link.exe |
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept |
||||
# ADD LINK32 zlib1d.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept /libpath:"Win32_DLL_ASM_Debug" |
||||
|
||||
!ELSEIF "$(CFG)" == "example - Win32 LIB Release" |
||||
|
||||
# PROP BASE Use_MFC 0 |
||||
# PROP BASE Use_Debug_Libraries 0 |
||||
# PROP BASE Output_Dir "example___Win32_LIB_Release" |
||||
# PROP BASE Intermediate_Dir "example___Win32_LIB_Release" |
||||
# PROP BASE Target_Dir "" |
||||
# PROP Use_MFC 0 |
||||
# PROP Use_Debug_Libraries 0 |
||||
# PROP Output_Dir "Win32_LIB_Release" |
||||
# PROP Intermediate_Dir "Win32_LIB_Release" |
||||
# PROP Ignore_Export_Lib 0 |
||||
# PROP Target_Dir "" |
||||
# ADD BASE CPP /nologo /W3 /O2 /D "WIN32" /D "NDEBUG" /FD /c |
||||
# SUBTRACT BASE CPP /YX |
||||
# ADD CPP /nologo /MD /W3 /O2 /D "WIN32" /D "NDEBUG" /FD /c |
||||
# SUBTRACT CPP /YX |
||||
# ADD BASE RSC /l 0x409 /d "NDEBUG" |
||||
# ADD RSC /l 0x409 /d "NDEBUG" |
||||
BSC32=bscmake.exe |
||||
# ADD BASE BSC32 /nologo |
||||
# ADD BSC32 /nologo |
||||
LINK32=link.exe |
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 |
||||
# ADD LINK32 zlib.lib /nologo /subsystem:console /machine:I386 /libpath:"Win32_LIB_Release" |
||||
|
||||
!ELSEIF "$(CFG)" == "example - Win32 LIB Debug" |
||||
|
||||
# PROP BASE Use_MFC 0 |
||||
# PROP BASE Use_Debug_Libraries 1 |
||||
# PROP BASE Output_Dir "example___Win32_LIB_Debug" |
||||
# PROP BASE Intermediate_Dir "example___Win32_LIB_Debug" |
||||
# PROP BASE Target_Dir "" |
||||
# PROP Use_MFC 0 |
||||
# PROP Use_Debug_Libraries 1 |
||||
# PROP Output_Dir "Win32_LIB_Debug" |
||||
# PROP Intermediate_Dir "Win32_LIB_Debug" |
||||
# PROP Ignore_Export_Lib 0 |
||||
# PROP Target_Dir "" |
||||
# ADD BASE CPP /nologo /W3 /Gm /ZI /Od /D "WIN32" /D "_DEBUG" /FD /GZ /c |
||||
# SUBTRACT BASE CPP /YX |
||||
# ADD CPP /nologo /MDd /W3 /Gm /ZI /Od /D "WIN32" /D "_DEBUG" /FD /GZ /c |
||||
# SUBTRACT CPP /YX |
||||
# ADD BASE RSC /l 0x409 /d "_DEBUG" |
||||
# ADD RSC /l 0x409 /d "_DEBUG" |
||||
BSC32=bscmake.exe |
||||
# ADD BASE BSC32 /nologo |
||||
# ADD BSC32 /nologo |
||||
LINK32=link.exe |
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept |
||||
# ADD LINK32 zlibd.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept /libpath:"Win32_LIB_Debug" |
||||
|
||||
!ELSEIF "$(CFG)" == "example - Win32 LIB ASM Release" |
||||
|
||||
# PROP BASE Use_MFC 0 |
||||
# PROP BASE Use_Debug_Libraries 0 |
||||
# PROP BASE Output_Dir "example___Win32_LIB_ASM_Release" |
||||
# PROP BASE Intermediate_Dir "example___Win32_LIB_ASM_Release" |
||||
# PROP BASE Target_Dir "" |
||||
# PROP Use_MFC 0 |
||||
# PROP Use_Debug_Libraries 0 |
||||
# PROP Output_Dir "Win32_LIB_ASM_Release" |
||||
# PROP Intermediate_Dir "Win32_LIB_ASM_Release" |
||||
# PROP Ignore_Export_Lib 0 |
||||
# PROP Target_Dir "" |
||||
# ADD BASE CPP /nologo /W3 /O2 /D "WIN32" /D "NDEBUG" /FD /c |
||||
# SUBTRACT BASE CPP /YX |
||||
# ADD CPP /nologo /MD /W3 /O2 /D "WIN32" /D "NDEBUG" /FD /c |
||||
# SUBTRACT CPP /YX |
||||
# ADD BASE RSC /l 0x409 /d "NDEBUG" |
||||
# ADD RSC /l 0x409 /d "NDEBUG" |
||||
BSC32=bscmake.exe |
||||
# ADD BASE BSC32 /nologo |
||||
# ADD BSC32 /nologo |
||||
LINK32=link.exe |
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 |
||||
# ADD LINK32 zlib.lib /nologo /subsystem:console /machine:I386 /libpath:"Win32_LIB_ASM_Release" |
||||
|
||||
!ELSEIF "$(CFG)" == "example - Win32 LIB ASM Debug" |
||||
|
||||
# PROP BASE Use_MFC 0 |
||||
# PROP BASE Use_Debug_Libraries 1 |
||||
# PROP BASE Output_Dir "example___Win32_LIB_ASM_Debug" |
||||
# PROP BASE Intermediate_Dir "example___Win32_LIB_ASM_Debug" |
||||
# PROP BASE Target_Dir "" |
||||
# PROP Use_MFC 0 |
||||
# PROP Use_Debug_Libraries 1 |
||||
# PROP Output_Dir "Win32_LIB_ASM_Debug" |
||||
# PROP Intermediate_Dir "Win32_LIB_ASM_Debug" |
||||
# PROP Ignore_Export_Lib 0 |
||||
# PROP Target_Dir "" |
||||
# ADD BASE CPP /nologo /W3 /Gm /ZI /Od /D "WIN32" /D "_DEBUG" /FD /GZ /c |
||||
# SUBTRACT BASE CPP /YX |
||||
# ADD CPP /nologo /MDd /W3 /Gm /ZI /Od /D "WIN32" /D "_DEBUG" /FD /GZ /c |
||||
# SUBTRACT CPP /YX |
||||
# ADD BASE RSC /l 0x409 /d "_DEBUG" |
||||
# ADD RSC /l 0x409 /d "_DEBUG" |
||||
BSC32=bscmake.exe |
||||
# ADD BASE BSC32 /nologo |
||||
# ADD BSC32 /nologo |
||||
LINK32=link.exe |
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept |
||||
# ADD LINK32 zlibd.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept /libpath:"Win32_LIB_ASM_Debug" |
||||
|
||||
!ENDIF |
||||
|
||||
# Begin Target |
||||
|
||||
# Name "example - Win32 DLL Release" |
||||
# Name "example - Win32 DLL Debug" |
||||
# Name "example - Win32 DLL ASM Release" |
||||
# Name "example - Win32 DLL ASM Debug" |
||||
# Name "example - Win32 LIB Release" |
||||
# Name "example - Win32 LIB Debug" |
||||
# Name "example - Win32 LIB ASM Release" |
||||
# Name "example - Win32 LIB ASM Debug" |
||||
# Begin Group "Source Files" |
||||
|
||||
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" |
||||
# Begin Source File |
||||
|
||||
SOURCE=..\..\example.c |
||||
# End Source File |
||||
# End Group |
||||
# Begin Group "Header Files" |
||||
|
||||
# PROP Default_Filter "h;hpp;hxx;hm;inl" |
||||
# Begin Source File |
||||
|
||||
SOURCE=..\..\zconf.h |
||||
# End Source File |
||||
# Begin Source File |
||||
|
||||
SOURCE=..\..\zlib.h |
||||
# End Source File |
||||
# End Group |
||||
# End Target |
||||
# End Project |
@ -0,0 +1,278 @@ |
||||
# Microsoft Developer Studio Project File - Name="minigzip" - Package Owner=<4> |
||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00 |
||||
# ** DO NOT EDIT ** |
||||
|
||||
# TARGTYPE "Win32 (x86) Console Application" 0x0103 |
||||
|
||||
CFG=minigzip - Win32 LIB Debug |
||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE, |
||||
!MESSAGE use the Export Makefile command and run |
||||
!MESSAGE |
||||
!MESSAGE NMAKE /f "minigzip.mak". |
||||
!MESSAGE |
||||
!MESSAGE You can specify a configuration when running NMAKE |
||||
!MESSAGE by defining the macro CFG on the command line. For example: |
||||
!MESSAGE |
||||
!MESSAGE NMAKE /f "minigzip.mak" CFG="minigzip - Win32 LIB Debug" |
||||
!MESSAGE |
||||
!MESSAGE Possible choices for configuration are: |
||||
!MESSAGE |
||||
!MESSAGE "minigzip - Win32 DLL Release" (based on "Win32 (x86) Console Application") |
||||
!MESSAGE "minigzip - Win32 DLL Debug" (based on "Win32 (x86) Console Application") |
||||
!MESSAGE "minigzip - Win32 DLL ASM Release" (based on "Win32 (x86) Console Application") |
||||
!MESSAGE "minigzip - Win32 DLL ASM Debug" (based on "Win32 (x86) Console Application") |
||||
!MESSAGE "minigzip - Win32 LIB Release" (based on "Win32 (x86) Console Application") |
||||
!MESSAGE "minigzip - Win32 LIB Debug" (based on "Win32 (x86) Console Application") |
||||
!MESSAGE "minigzip - Win32 LIB ASM Release" (based on "Win32 (x86) Console Application") |
||||
!MESSAGE "minigzip - Win32 LIB ASM Debug" (based on "Win32 (x86) Console Application") |
||||
!MESSAGE |
||||
|
||||
# Begin Project |
||||
# PROP AllowPerConfigDependencies 0 |
||||
# PROP Scc_ProjName "" |
||||
# PROP Scc_LocalPath "" |
||||
CPP=cl.exe |
||||
RSC=rc.exe |
||||
|
||||
!IF "$(CFG)" == "minigzip - Win32 DLL Release" |
||||
|
||||
# PROP BASE Use_MFC 0 |
||||
# PROP BASE Use_Debug_Libraries 0 |
||||
# PROP BASE Output_Dir "minigzip___Win32_DLL_Release" |
||||
# PROP BASE Intermediate_Dir "minigzip___Win32_DLL_Release" |
||||
# PROP BASE Target_Dir "" |
||||
# PROP Use_MFC 0 |
||||
# PROP Use_Debug_Libraries 0 |
||||
# PROP Output_Dir "Win32_DLL_Release" |
||||
# PROP Intermediate_Dir "Win32_DLL_Release" |
||||
# PROP Ignore_Export_Lib 0 |
||||
# PROP Target_Dir "" |
||||
# ADD BASE CPP /nologo /W3 /O2 /D "WIN32" /D "NDEBUG" /FD /c |
||||
# SUBTRACT BASE CPP /YX |
||||
# ADD CPP /nologo /MD /W3 /O2 /D "WIN32" /D "NDEBUG" /FD /c |
||||
# SUBTRACT CPP /YX |
||||
# ADD BASE RSC /l 0x409 /d "NDEBUG" |
||||
# ADD RSC /l 0x409 /d "NDEBUG" |
||||
BSC32=bscmake.exe |
||||
# ADD BASE BSC32 /nologo |
||||
# ADD BSC32 /nologo |
||||
LINK32=link.exe |
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 |
||||
# ADD LINK32 zlib1.lib /nologo /subsystem:console /machine:I386 /libpath:"Win32_DLL_Release" |
||||
|
||||
!ELSEIF "$(CFG)" == "minigzip - Win32 DLL Debug" |
||||
|
||||
# PROP BASE Use_MFC 0 |
||||
# PROP BASE Use_Debug_Libraries 1 |
||||
# PROP BASE Output_Dir "minigzip___Win32_DLL_Debug" |
||||
# PROP BASE Intermediate_Dir "minigzip___Win32_DLL_Debug" |
||||
# PROP BASE Target_Dir "" |
||||
# PROP Use_MFC 0 |
||||
# PROP Use_Debug_Libraries 1 |
||||
# PROP Output_Dir "Win32_DLL_Debug" |
||||
# PROP Intermediate_Dir "Win32_DLL_Debug" |
||||
# PROP Ignore_Export_Lib 0 |
||||
# PROP Target_Dir "" |
||||
# ADD BASE CPP /nologo /W3 /Gm /ZI /Od /D "WIN32" /D "_DEBUG" /FD /GZ /c |
||||
# SUBTRACT BASE CPP /YX |
||||
# ADD CPP /nologo /MDd /W3 /Gm /ZI /Od /D "WIN32" /D "_DEBUG" /FD /GZ /c |
||||
# SUBTRACT CPP /YX |
||||
# ADD BASE RSC /l 0x409 /d "_DEBUG" |
||||
# ADD RSC /l 0x409 /d "_DEBUG" |
||||
BSC32=bscmake.exe |
||||
# ADD BASE BSC32 /nologo |
||||
# ADD BSC32 /nologo |
||||
LINK32=link.exe |
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept |
||||
# ADD LINK32 zlib1d.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept /libpath:"Win32_DLL_Debug" |
||||
|
||||
!ELSEIF "$(CFG)" == "minigzip - Win32 DLL ASM Release" |
||||
|
||||
# PROP BASE Use_MFC 0 |
||||
# PROP BASE Use_Debug_Libraries 0 |
||||
# PROP BASE Output_Dir "minigzip___Win32_DLL_ASM_Release" |
||||
# PROP BASE Intermediate_Dir "minigzip___Win32_DLL_ASM_Release" |
||||
# PROP BASE Target_Dir "" |
||||
# PROP Use_MFC 0 |
||||
# PROP Use_Debug_Libraries 0 |
||||
# PROP Output_Dir "Win32_DLL_ASM_Release" |
||||
# PROP Intermediate_Dir "Win32_DLL_ASM_Release" |
||||
# PROP Ignore_Export_Lib 0 |
||||
# PROP Target_Dir "" |
||||
# ADD BASE CPP /nologo /W3 /O2 /D "WIN32" /D "NDEBUG" /FD /c |
||||
# SUBTRACT BASE CPP /YX |
||||
# ADD CPP /nologo /MD /W3 /O2 /D "WIN32" /D "NDEBUG" /FD /c |
||||
# SUBTRACT CPP /YX |
||||
# ADD BASE RSC /l 0x409 /d "NDEBUG" |
||||
# ADD RSC /l 0x409 /d "NDEBUG" |
||||
BSC32=bscmake.exe |
||||
# ADD BASE BSC32 /nologo |
||||
# ADD BSC32 /nologo |
||||
LINK32=link.exe |
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 |
||||
# ADD LINK32 zlib1.lib /nologo /subsystem:console /machine:I386 /libpath:"Win32_DLL_ASM_Release" |
||||
|
||||
!ELSEIF "$(CFG)" == "minigzip - Win32 DLL ASM Debug" |
||||
|
||||
# PROP BASE Use_MFC 0 |
||||
# PROP BASE Use_Debug_Libraries 1 |
||||
# PROP BASE Output_Dir "minigzip___Win32_DLL_ASM_Debug" |
||||
# PROP BASE Intermediate_Dir "minigzip___Win32_DLL_ASM_Debug" |
||||
# PROP BASE Target_Dir "" |
||||
# PROP Use_MFC 0 |
||||
# PROP Use_Debug_Libraries 1 |
||||
# PROP Output_Dir "Win32_DLL_ASM_Debug" |
||||
# PROP Intermediate_Dir "Win32_DLL_ASM_Debug" |
||||
# PROP Ignore_Export_Lib 0 |
||||
# PROP Target_Dir "" |
||||
# ADD BASE CPP /nologo /W3 /Gm /ZI /Od /D "WIN32" /D "_DEBUG" /FD /GZ /c |
||||
# SUBTRACT BASE CPP /YX |
||||
# ADD CPP /nologo /MDd /W3 /Gm /ZI /Od /D "WIN32" /D "_DEBUG" /FD /GZ /c |
||||
# SUBTRACT CPP /YX |
||||
# ADD BASE RSC /l 0x409 /d "_DEBUG" |
||||
# ADD RSC /l 0x409 /d "_DEBUG" |
||||
BSC32=bscmake.exe |
||||
# ADD BASE BSC32 /nologo |
||||
# ADD BSC32 /nologo |
||||
LINK32=link.exe |
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept |
||||
# ADD LINK32 zlib1d.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept /libpath:"Win32_DLL_ASM_Debug" |
||||
|
||||
!ELSEIF "$(CFG)" == "minigzip - Win32 LIB Release" |
||||
|
||||
# PROP BASE Use_MFC 0 |
||||
# PROP BASE Use_Debug_Libraries 0 |
||||
# PROP BASE Output_Dir "minigzip___Win32_LIB_Release" |
||||
# PROP BASE Intermediate_Dir "minigzip___Win32_LIB_Release" |
||||
# PROP BASE Target_Dir "" |
||||
# PROP Use_MFC 0 |
||||
# PROP Use_Debug_Libraries 0 |
||||
# PROP Output_Dir "Win32_LIB_Release" |
||||
# PROP Intermediate_Dir "Win32_LIB_Release" |
||||
# PROP Ignore_Export_Lib 0 |
||||
# PROP Target_Dir "" |
||||
# ADD BASE CPP /nologo /W3 /O2 /D "WIN32" /D "NDEBUG" /FD /c |
||||
# SUBTRACT BASE CPP /YX |
||||
# ADD CPP /nologo /MD /W3 /O2 /D "WIN32" /D "NDEBUG" /FD /c |
||||
# SUBTRACT CPP /YX |
||||
# ADD BASE RSC /l 0x409 /d "NDEBUG" |
||||
# ADD RSC /l 0x409 /d "NDEBUG" |
||||
BSC32=bscmake.exe |
||||
# ADD BASE BSC32 /nologo |
||||
# ADD BSC32 /nologo |
||||
LINK32=link.exe |
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 |
||||
# ADD LINK32 zlib.lib /nologo /subsystem:console /machine:I386 /libpath:"Win32_LIB_Release" |
||||
|
||||
!ELSEIF "$(CFG)" == "minigzip - Win32 LIB Debug" |
||||
|
||||
# PROP BASE Use_MFC 0 |
||||
# PROP BASE Use_Debug_Libraries 1 |
||||
# PROP BASE Output_Dir "minigzip___Win32_LIB_Debug" |
||||
# PROP BASE Intermediate_Dir "minigzip___Win32_LIB_Debug" |
||||
# PROP BASE Target_Dir "" |
||||
# PROP Use_MFC 0 |
||||
# PROP Use_Debug_Libraries 1 |
||||
# PROP Output_Dir "Win32_LIB_Debug" |
||||
# PROP Intermediate_Dir "Win32_LIB_Debug" |
||||
# PROP Ignore_Export_Lib 0 |
||||
# PROP Target_Dir "" |
||||
# ADD BASE CPP /nologo /W3 /Gm /ZI /Od /D "WIN32" /D "_DEBUG" /FD /GZ /c |
||||
# SUBTRACT BASE CPP /YX |
||||
# ADD CPP /nologo /MDd /W3 /Gm /ZI /Od /D "WIN32" /D "_DEBUG" /FD /GZ /c |
||||
# SUBTRACT CPP /YX |
||||
# ADD BASE RSC /l 0x409 /d "_DEBUG" |
||||
# ADD RSC /l 0x409 /d "_DEBUG" |
||||
BSC32=bscmake.exe |
||||
# ADD BASE BSC32 /nologo |
||||
# ADD BSC32 /nologo |
||||
LINK32=link.exe |
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept |
||||
# ADD LINK32 zlibd.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept /libpath:"Win32_LIB_Debug" |
||||
|
||||
!ELSEIF "$(CFG)" == "minigzip - Win32 LIB ASM Release" |
||||
|
||||
# PROP BASE Use_MFC 0 |
||||
# PROP BASE Use_Debug_Libraries 0 |
||||
# PROP BASE Output_Dir "minigzip___Win32_LIB_ASM_Release" |
||||
# PROP BASE Intermediate_Dir "minigzip___Win32_LIB_ASM_Release" |
||||
# PROP BASE Target_Dir "" |
||||
# PROP Use_MFC 0 |
||||
# PROP Use_Debug_Libraries 0 |
||||
# PROP Output_Dir "Win32_LIB_ASM_Release" |
||||
# PROP Intermediate_Dir "Win32_LIB_ASM_Release" |
||||
# PROP Ignore_Export_Lib 0 |
||||
# PROP Target_Dir "" |
||||
# ADD BASE CPP /nologo /W3 /O2 /D "WIN32" /D "NDEBUG" /FD /c |
||||
# SUBTRACT BASE CPP /YX |
||||
# ADD CPP /nologo /MD /W3 /O2 /D "WIN32" /D "NDEBUG" /FD /c |
||||
# SUBTRACT CPP /YX |
||||
# ADD BASE RSC /l 0x409 /d "NDEBUG" |
||||
# ADD RSC /l 0x409 /d "NDEBUG" |
||||
BSC32=bscmake.exe |
||||
# ADD BASE BSC32 /nologo |
||||
# ADD BSC32 /nologo |
||||
LINK32=link.exe |
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 |
||||
# ADD LINK32 zlib.lib /nologo /subsystem:console /machine:I386 /libpath:"Win32_LIB_ASM_Release" |
||||
|
||||
!ELSEIF "$(CFG)" == "minigzip - Win32 LIB ASM Debug" |
||||
|
||||
# PROP BASE Use_MFC 0 |
||||
# PROP BASE Use_Debug_Libraries 1 |
||||
# PROP BASE Output_Dir "minigzip___Win32_LIB_ASM_Debug" |
||||
# PROP BASE Intermediate_Dir "minigzip___Win32_LIB_ASM_Debug" |
||||
# PROP BASE Target_Dir "" |
||||
# PROP Use_MFC 0 |
||||
# PROP Use_Debug_Libraries 1 |
||||
# PROP Output_Dir "Win32_LIB_ASM_Debug" |
||||
# PROP Intermediate_Dir "Win32_LIB_ASM_Debug" |
||||
# PROP Ignore_Export_Lib 0 |
||||
# PROP Target_Dir "" |
||||
# ADD BASE CPP /nologo /W3 /Gm /ZI /Od /D "WIN32" /D "_DEBUG" /FD /GZ /c |
||||
# SUBTRACT BASE CPP /YX |
||||
# ADD CPP /nologo /MDd /W3 /Gm /ZI /Od /D "WIN32" /D "_DEBUG" /FD /GZ /c |
||||
# SUBTRACT CPP /YX |
||||
# ADD BASE RSC /l 0x409 /d "_DEBUG" |
||||
# ADD RSC /l 0x409 /d "_DEBUG" |
||||
BSC32=bscmake.exe |
||||
# ADD BASE BSC32 /nologo |
||||
# ADD BSC32 /nologo |
||||
LINK32=link.exe |
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept |
||||
# ADD LINK32 zlibd.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept /libpath:"Win32_LIB_ASM_Debug" |
||||
|
||||
!ENDIF |
||||
|
||||
# Begin Target |
||||
|
||||
# Name "minigzip - Win32 DLL Release" |
||||
# Name "minigzip - Win32 DLL Debug" |
||||
# Name "minigzip - Win32 DLL ASM Release" |
||||
# Name "minigzip - Win32 DLL ASM Debug" |
||||
# Name "minigzip - Win32 LIB Release" |
||||
# Name "minigzip - Win32 LIB Debug" |
||||
# Name "minigzip - Win32 LIB ASM Release" |
||||
# Name "minigzip - Win32 LIB ASM Debug" |
||||
# Begin Group "Source Files" |
||||
|
||||
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" |
||||
# Begin Source File |
||||
|
||||
SOURCE=..\..\minigzip.c |
||||
# End Source File |
||||
# End Group |
||||
# Begin Group "Header Files" |
||||
|
||||
# PROP Default_Filter "h;hpp;hxx;hm;inl" |
||||
# Begin Source File |
||||
|
||||
SOURCE=..\..\zconf.h |
||||
# End Source File |
||||
# Begin Source File |
||||
|
||||
SOURCE=..\..\zlib.h |
||||
# End Source File |
||||
# End Group |
||||
# End Target |
||||
# End Project |
@ -0,0 +1,539 @@ |
||||
# Microsoft Developer Studio Project File - Name="zlib" - Package Owner=<4> |
||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00 |
||||
# ** DO NOT EDIT ** |
||||
|
||||
# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 |
||||
# TARGTYPE "Win32 (x86) Static Library" 0x0104 |
||||
|
||||
CFG=zlib - Win32 LIB Debug |
||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE, |
||||
!MESSAGE use the Export Makefile command and run |
||||
!MESSAGE |
||||
!MESSAGE NMAKE /f "zlib.mak". |
||||
!MESSAGE |
||||
!MESSAGE You can specify a configuration when running NMAKE |
||||
!MESSAGE by defining the macro CFG on the command line. For example: |
||||
!MESSAGE |
||||
!MESSAGE NMAKE /f "zlib.mak" CFG="zlib - Win32 LIB Debug" |
||||
!MESSAGE |
||||
!MESSAGE Possible choices for configuration are: |
||||
!MESSAGE |
||||
!MESSAGE "zlib - Win32 DLL Release" (based on "Win32 (x86) Dynamic-Link Library") |
||||
!MESSAGE "zlib - Win32 DLL Debug" (based on "Win32 (x86) Dynamic-Link Library") |
||||
!MESSAGE "zlib - Win32 DLL ASM Release" (based on "Win32 (x86) Dynamic-Link Library") |
||||
!MESSAGE "zlib - Win32 DLL ASM Debug" (based on "Win32 (x86) Dynamic-Link Library") |
||||
!MESSAGE "zlib - Win32 LIB Release" (based on "Win32 (x86) Static Library") |
||||
!MESSAGE "zlib - Win32 LIB Debug" (based on "Win32 (x86) Static Library") |
||||
!MESSAGE "zlib - Win32 LIB ASM Release" (based on "Win32 (x86) Static Library") |
||||
!MESSAGE "zlib - Win32 LIB ASM Debug" (based on "Win32 (x86) Static Library") |
||||
!MESSAGE |
||||
|
||||
# Begin Project |
||||
# PROP AllowPerConfigDependencies 0 |
||||
# PROP Scc_ProjName "" |
||||
# PROP Scc_LocalPath "" |
||||
|
||||
!IF "$(CFG)" == "zlib - Win32 DLL Release" |
||||
|
||||
# PROP BASE Use_MFC 0 |
||||
# PROP BASE Use_Debug_Libraries 0 |
||||
# PROP BASE Output_Dir "zlib___Win32_DLL_Release" |
||||
# PROP BASE Intermediate_Dir "zlib___Win32_DLL_Release" |
||||
# PROP BASE Target_Dir "" |
||||
# PROP Use_MFC 0 |
||||
# PROP Use_Debug_Libraries 0 |
||||
# PROP Output_Dir "Win32_DLL_Release" |
||||
# PROP Intermediate_Dir "Win32_DLL_Release" |
||||
# PROP Ignore_Export_Lib 0 |
||||
# PROP Target_Dir "" |
||||
CPP=cl.exe |
||||
# ADD BASE CPP /nologo /MD /W3 /O2 /D "WIN32" /D "NDEBUG" /FD /c |
||||
# SUBTRACT BASE CPP /YX /Yc /Yu |
||||
# ADD CPP /nologo /MD /W3 /O2 /D "WIN32" /D "NDEBUG" /FD /c |
||||
# SUBTRACT CPP /YX /Yc /Yu |
||||
MTL=midl.exe |
||||
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 |
||||
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 |
||||
RSC=rc.exe |
||||
# ADD BASE RSC /l 0x409 /d "NDEBUG" |
||||
# ADD RSC /l 0x409 /d "NDEBUG" |
||||
BSC32=bscmake.exe |
||||
# ADD BASE BSC32 /nologo |
||||
# ADD BSC32 /nologo |
||||
LINK32=link.exe |
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 |
||||
# ADD LINK32 /nologo /dll /machine:I386 /out:"Win32_DLL_Release\zlib1.dll" |
||||
|
||||
!ELSEIF "$(CFG)" == "zlib - Win32 DLL Debug" |
||||
|
||||
# PROP BASE Use_MFC 0 |
||||
# PROP BASE Use_Debug_Libraries 1 |
||||
# PROP BASE Output_Dir "zlib___Win32_DLL_Debug" |
||||
# PROP BASE Intermediate_Dir "zlib___Win32_DLL_Debug" |
||||
# PROP BASE Target_Dir "" |
||||
# PROP Use_MFC 0 |
||||
# PROP Use_Debug_Libraries 1 |
||||
# PROP Output_Dir "Win32_DLL_Debug" |
||||
# PROP Intermediate_Dir "Win32_DLL_Debug" |
||||
# PROP Ignore_Export_Lib 0 |
||||
# PROP Target_Dir "" |
||||
CPP=cl.exe |
||||
# ADD BASE CPP /nologo /MDd /W3 /Gm /ZI /Od /D "WIN32" /D "_DEBUG" /FD /GZ /c |
||||
# SUBTRACT BASE CPP /YX /Yc /Yu |
||||
# ADD CPP /nologo /MDd /W3 /Gm /ZI /Od /D "WIN32" /D "_DEBUG" /FD /GZ /c |
||||
# SUBTRACT CPP /YX /Yc /Yu |
||||
MTL=midl.exe |
||||
# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 |
||||
# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 |
||||
RSC=rc.exe |
||||
# ADD BASE RSC /l 0x409 /d "_DEBUG" |
||||
# ADD RSC /l 0x409 /d "_DEBUG" |
||||
BSC32=bscmake.exe |
||||
# ADD BASE BSC32 /nologo |
||||
# ADD BSC32 /nologo |
||||
LINK32=link.exe |
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept |
||||
# ADD LINK32 /nologo /dll /debug /machine:I386 /out:"Win32_DLL_Debug\zlib1d.dll" /pdbtype:sept |
||||
|
||||
!ELSEIF "$(CFG)" == "zlib - Win32 DLL ASM Release" |
||||
|
||||
# PROP BASE Use_MFC 0 |
||||
# PROP BASE Use_Debug_Libraries 0 |
||||
# PROP BASE Output_Dir "zlib___Win32_DLL_ASM_Release" |
||||
# PROP BASE Intermediate_Dir "zlib___Win32_DLL_ASM_Release" |
||||
# PROP BASE Target_Dir "" |
||||
# PROP Use_MFC 0 |
||||
# PROP Use_Debug_Libraries 0 |
||||
# PROP Output_Dir "Win32_DLL_ASM_Release" |
||||
# PROP Intermediate_Dir "Win32_DLL_ASM_Release" |
||||
# PROP Ignore_Export_Lib 0 |
||||
# PROP Target_Dir "" |
||||
CPP=cl.exe |
||||
# ADD BASE CPP /nologo /MD /W3 /O2 /D "WIN32" /D "NDEBUG" /FD /c |
||||
# SUBTRACT BASE CPP /YX /Yc /Yu |
||||
# ADD CPP /nologo /MD /W3 /O2 /D "WIN32" /D "NDEBUG" /D "ASMV" /D "ASMINF" /FD /c |
||||
# SUBTRACT CPP /YX /Yc /Yu |
||||
MTL=midl.exe |
||||
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 |
||||
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 |
||||
RSC=rc.exe |
||||
# ADD BASE RSC /l 0x409 /d "NDEBUG" |
||||
# ADD RSC /l 0x409 /d "NDEBUG" |
||||
BSC32=bscmake.exe |
||||
# ADD BASE BSC32 /nologo |
||||
# ADD BSC32 /nologo |
||||
LINK32=link.exe |
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 |
||||
# ADD LINK32 /nologo /dll /machine:I386 /out:"Win32_DLL_ASM_Release\zlib1.dll" |
||||
|
||||
!ELSEIF "$(CFG)" == "zlib - Win32 DLL ASM Debug" |
||||
|
||||
# PROP BASE Use_MFC 0 |
||||
# PROP BASE Use_Debug_Libraries 1 |
||||
# PROP BASE Output_Dir "zlib___Win32_DLL_ASM_Debug" |
||||
# PROP BASE Intermediate_Dir "zlib___Win32_DLL_ASM_Debug" |
||||
# PROP BASE Target_Dir "" |
||||
# PROP Use_MFC 0 |
||||
# PROP Use_Debug_Libraries 1 |
||||
# PROP Output_Dir "Win32_DLL_ASM_Debug" |
||||
# PROP Intermediate_Dir "Win32_DLL_ASM_Debug" |
||||
# PROP Ignore_Export_Lib 0 |
||||
# PROP Target_Dir "" |
||||
CPP=cl.exe |
||||
# ADD BASE CPP /nologo /MDd /W3 /Gm /ZI /Od /D "WIN32" /D "_DEBUG" /FD /GZ /c |
||||
# SUBTRACT BASE CPP /YX /Yc /Yu |
||||
# ADD CPP /nologo /MDd /W3 /Gm /ZI /Od /D "WIN32" /D "_DEBUG" /D "ASMV" /D "ASMINF" /FD /GZ /c |
||||
# SUBTRACT CPP /YX /Yc /Yu |
||||
MTL=midl.exe |
||||
# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 |
||||
# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 |
||||
RSC=rc.exe |
||||
# ADD BASE RSC /l 0x409 /d "_DEBUG" |
||||
# ADD RSC /l 0x409 /d "_DEBUG" |
||||
BSC32=bscmake.exe |
||||
# ADD BASE BSC32 /nologo |
||||
# ADD BSC32 /nologo |
||||
LINK32=link.exe |
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept |
||||
# ADD LINK32 /nologo /dll /debug /machine:I386 /out:"Win32_DLL_ASM_Debug\zlib1d.dll" /pdbtype:sept |
||||
|
||||
!ELSEIF "$(CFG)" == "zlib - Win32 LIB Release" |
||||
|
||||
# PROP BASE Use_MFC 0 |
||||
# PROP BASE Use_Debug_Libraries 0 |
||||
# PROP BASE Output_Dir "zlib___Win32_LIB_Release" |
||||
# PROP BASE Intermediate_Dir "zlib___Win32_LIB_Release" |
||||
# PROP BASE Target_Dir "" |
||||
# PROP Use_MFC 0 |
||||
# PROP Use_Debug_Libraries 0 |
||||
# PROP Output_Dir "Win32_LIB_Release" |
||||
# PROP Intermediate_Dir "Win32_LIB_Release" |
||||
# PROP Target_Dir "" |
||||
CPP=cl.exe |
||||
# ADD BASE CPP /nologo /MD /W3 /O2 /D "WIN32" /D "NDEBUG" /FD /c |
||||
# SUBTRACT BASE CPP /YX /Yc /Yu |
||||
# ADD CPP /nologo /MD /W3 /O2 /D "WIN32" /D "NDEBUG" /FD /c |
||||
# SUBTRACT CPP /YX /Yc /Yu |
||||
RSC=rc.exe |
||||
# ADD BASE RSC /l 0x409 /d "NDEBUG" |
||||
# ADD RSC /l 0x409 /d "NDEBUG" |
||||
BSC32=bscmake.exe |
||||
# ADD BASE BSC32 /nologo |
||||
# ADD BSC32 /nologo |
||||
LIB32=link.exe -lib |
||||
# ADD BASE LIB32 /nologo |
||||
# ADD LIB32 /nologo |
||||
|
||||
!ELSEIF "$(CFG)" == "zlib - Win32 LIB Debug" |
||||
|
||||
# PROP BASE Use_MFC 0 |
||||
# PROP BASE Use_Debug_Libraries 1 |
||||
# PROP BASE Output_Dir "zlib___Win32_LIB_Debug" |
||||
# PROP BASE Intermediate_Dir "zlib___Win32_LIB_Debug" |
||||
# PROP BASE Target_Dir "" |
||||
# PROP Use_MFC 0 |
||||
# PROP Use_Debug_Libraries 1 |
||||
# PROP Output_Dir "Win32_LIB_Debug" |
||||
# PROP Intermediate_Dir "Win32_LIB_Debug" |
||||
# PROP Target_Dir "" |
||||
CPP=cl.exe |
||||
# ADD BASE CPP /nologo /MDd /W3 /Gm /ZI /Od /D "WIN32" /D "_DEBUG" /FD /GZ /c |
||||
# SUBTRACT BASE CPP /YX /Yc /Yu |
||||
# ADD CPP /nologo /MDd /W3 /Gm /ZI /Od /D "WIN32" /D "_DEBUG" /FD /GZ /c |
||||
# SUBTRACT CPP /YX /Yc /Yu |
||||
RSC=rc.exe |
||||
# ADD BASE RSC /l 0x409 /d "_DEBUG" |
||||
# ADD RSC /l 0x409 /d "_DEBUG" |
||||
BSC32=bscmake.exe |
||||
# ADD BASE BSC32 /nologo |
||||
# ADD BSC32 /nologo |
||||
LIB32=link.exe -lib |
||||
# ADD BASE LIB32 /nologo |
||||
# ADD LIB32 /nologo /out:"Win32_LIB_Debug\zlibd.lib" |
||||
|
||||
!ELSEIF "$(CFG)" == "zlib - Win32 LIB ASM Release" |
||||
|
||||
# PROP BASE Use_MFC 0 |
||||
# PROP BASE Use_Debug_Libraries 0 |
||||
# PROP BASE Output_Dir "zlib___Win32_LIB_ASM_Release" |
||||
# PROP BASE Intermediate_Dir "zlib___Win32_LIB_ASM_Release" |
||||
# PROP BASE Target_Dir "" |
||||
# PROP Use_MFC 0 |
||||
# PROP Use_Debug_Libraries 0 |
||||
# PROP Output_Dir "Win32_LIB_ASM_Release" |
||||
# PROP Intermediate_Dir "Win32_LIB_ASM_Release" |
||||
# PROP Target_Dir "" |
||||
CPP=cl.exe |
||||
# ADD BASE CPP /nologo /MD /W3 /O2 /D "WIN32" /D "NDEBUG" /FD /c |
||||
# SUBTRACT BASE CPP /YX /Yc /Yu |
||||
# ADD CPP /nologo /MD /W3 /O2 /D "WIN32" /D "NDEBUG" /D "ASMV" /D "ASMINF" /FD /c |
||||
# SUBTRACT CPP /YX /Yc /Yu |
||||
RSC=rc.exe |
||||
# ADD BASE RSC /l 0x409 /d "NDEBUG" |
||||
# ADD RSC /l 0x409 /d "NDEBUG" |
||||
BSC32=bscmake.exe |
||||
# ADD BASE BSC32 /nologo |
||||
# ADD BSC32 /nologo |
||||
LIB32=link.exe -lib |
||||
# ADD BASE LIB32 /nologo |
||||
# ADD LIB32 /nologo |
||||
|
||||
!ELSEIF "$(CFG)" == "zlib - Win32 LIB ASM Debug" |
||||
|
||||
# PROP BASE Use_MFC 0 |
||||
# PROP BASE Use_Debug_Libraries 1 |
||||
# PROP BASE Output_Dir "zlib___Win32_LIB_ASM_Debug" |
||||
# PROP BASE Intermediate_Dir "zlib___Win32_LIB_ASM_Debug" |
||||
# PROP BASE Target_Dir "" |
||||
# PROP Use_MFC 0 |
||||
# PROP Use_Debug_Libraries 1 |
||||
# PROP Output_Dir "Win32_LIB_ASM_Debug" |
||||
# PROP Intermediate_Dir "Win32_LIB_ASM_Debug" |
||||
# PROP Target_Dir "" |
||||
CPP=cl.exe |
||||
# ADD BASE CPP /nologo /MDd /W3 /Gm /ZI /Od /D "WIN32" /D "_DEBUG" /FD /GZ /c |
||||
# SUBTRACT BASE CPP /YX /Yc /Yu |
||||
# ADD CPP /nologo /MDd /W3 /Gm /ZI /Od /D "WIN32" /D "_DEBUG" /D "ASMV" /D "ASMINF" /FD /GZ /c |
||||
# SUBTRACT CPP /YX /Yc /Yu |
||||
RSC=rc.exe |
||||
# ADD BASE RSC /l 0x409 /d "_DEBUG" |
||||
# ADD RSC /l 0x409 /d "_DEBUG" |
||||
BSC32=bscmake.exe |
||||
# ADD BASE BSC32 /nologo |
||||
# ADD BSC32 /nologo |
||||
LIB32=link.exe -lib |
||||
# ADD BASE LIB32 /nologo |
||||
# ADD LIB32 /nologo /out:"Win32_LIB_ASM_Debug\zlibd.lib" |
||||
|
||||
!ENDIF |
||||
|
||||
# Begin Target |
||||
|
||||
# Name "zlib - Win32 DLL Release" |
||||
# Name "zlib - Win32 DLL Debug" |
||||
# Name "zlib - Win32 DLL ASM Release" |
||||
# Name "zlib - Win32 DLL ASM Debug" |
||||
# Name "zlib - Win32 LIB Release" |
||||
# Name "zlib - Win32 LIB Debug" |
||||
# Name "zlib - Win32 LIB ASM Release" |
||||
# Name "zlib - Win32 LIB ASM Debug" |
||||
# Begin Group "Source Files" |
||||
|
||||
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" |
||||
# Begin Source File |
||||
|
||||
SOURCE=..\..\adler32.c |
||||
# End Source File |
||||
# Begin Source File |
||||
|
||||
SOURCE=..\..\compress.c |
||||
# End Source File |
||||
# Begin Source File |
||||
|
||||
SOURCE=..\..\crc32.c |
||||
# End Source File |
||||
# Begin Source File |
||||
|
||||
SOURCE=..\..\deflate.c |
||||
# End Source File |
||||
# Begin Source File |
||||
|
||||
SOURCE=..\..\gzio.c |
||||
# End Source File |
||||
# Begin Source File |
||||
|
||||
SOURCE=..\..\infback.c |
||||
# End Source File |
||||
# Begin Source File |
||||
|
||||
SOURCE=..\..\inffast.c |
||||
# End Source File |
||||
# Begin Source File |
||||
|
||||
SOURCE=..\..\inflate.c |
||||
# End Source File |
||||
# Begin Source File |
||||
|
||||
SOURCE=..\..\inftrees.c |
||||
# End Source File |
||||
# Begin Source File |
||||
|
||||
SOURCE=..\..\trees.c |
||||
# End Source File |
||||
# Begin Source File |
||||
|
||||
SOURCE=..\..\uncompr.c |
||||
# End Source File |
||||
# Begin Source File |
||||
|
||||
SOURCE=..\..\win32\zlib.def |
||||
|
||||
!IF "$(CFG)" == "zlib - Win32 DLL Release" |
||||
|
||||
!ELSEIF "$(CFG)" == "zlib - Win32 DLL Debug" |
||||
|
||||
!ELSEIF "$(CFG)" == "zlib - Win32 DLL ASM Release" |
||||
|
||||
!ELSEIF "$(CFG)" == "zlib - Win32 DLL ASM Debug" |
||||
|
||||
!ELSEIF "$(CFG)" == "zlib - Win32 LIB Release" |
||||
|
||||
# PROP Exclude_From_Build 1 |
||||
|
||||
!ELSEIF "$(CFG)" == "zlib - Win32 LIB Debug" |
||||
|
||||
# PROP Exclude_From_Build 1 |
||||
|
||||
!ELSEIF "$(CFG)" == "zlib - Win32 LIB ASM Release" |
||||
|
||||
# PROP Exclude_From_Build 1 |
||||
|
||||
!ELSEIF "$(CFG)" == "zlib - Win32 LIB ASM Debug" |
||||
|
||||
# PROP Exclude_From_Build 1 |
||||
|
||||
!ENDIF |
||||
|
||||
# End Source File |
||||
# Begin Source File |
||||
|
||||
SOURCE=..\..\zutil.c |
||||
# End Source File |
||||
# End Group |
||||
# Begin Group "Header Files" |
||||
|
||||
# PROP Default_Filter "h;hpp;hxx;hm;inl" |
||||
# Begin Source File |
||||
|
||||
SOURCE=..\..\crc32.h |
||||
# End Source File |
||||
# Begin Source File |
||||
|
||||
SOURCE=..\..\deflate.h |
||||
# End Source File |
||||
# Begin Source File |
||||
|
||||
SOURCE=..\..\inffast.h |
||||
# End Source File |
||||
# Begin Source File |
||||
|
||||
SOURCE=..\..\inffixed.h |
||||
# End Source File |
||||
# Begin Source File |
||||
|
||||
SOURCE=..\..\inflate.h |
||||
# End Source File |
||||
# Begin Source File |
||||
|
||||
SOURCE=..\..\inftrees.h |
||||
# End Source File |
||||
# Begin Source File |
||||
|
||||
SOURCE=..\..\trees.h |
||||
# End Source File |
||||
# Begin Source File |
||||
|
||||
SOURCE=..\..\zconf.h |
||||
# End Source File |
||||
# Begin Source File |
||||
|
||||
SOURCE=..\..\zlib.h |
||||
# End Source File |
||||
# Begin Source File |
||||
|
||||
SOURCE=..\..\zutil.h |
||||
# End Source File |
||||
# End Group |
||||
# Begin Group "Resource Files" |
||||
|
||||
# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" |
||||
# Begin Source File |
||||
|
||||
SOURCE=..\..\win32\zlib1.rc |
||||
# End Source File |
||||
# End Group |
||||
# Begin Group "Assembler Files (Unsupported)" |
||||
|
||||
# PROP Default_Filter "asm;obj;c;cpp;cxx;h;hpp;hxx" |
||||
# Begin Source File |
||||
|
||||
SOURCE=..\..\contrib\masmx86\gvmat32.asm |
||||
# PROP Exclude_From_Build 1 |
||||
# End Source File |
||||
# Begin Source File |
||||
|
||||
SOURCE=..\..\contrib\masmx86\gvmat32c.c |
||||
|
||||
!IF "$(CFG)" == "zlib - Win32 DLL Release" |
||||
|
||||
# PROP Exclude_From_Build 1 |
||||
# ADD CPP /I "..\.." |
||||
|
||||
!ELSEIF "$(CFG)" == "zlib - Win32 DLL Debug" |
||||
|
||||
# PROP Exclude_From_Build 1 |
||||
# ADD CPP /I "..\.." |
||||
|
||||
!ELSEIF "$(CFG)" == "zlib - Win32 DLL ASM Release" |
||||
|
||||
# ADD CPP /I "..\.." |
||||
|
||||
!ELSEIF "$(CFG)" == "zlib - Win32 DLL ASM Debug" |
||||
|
||||
# ADD CPP /I "..\.." |
||||
|
||||
!ELSEIF "$(CFG)" == "zlib - Win32 LIB Release" |
||||
|
||||
# PROP Exclude_From_Build 1 |
||||
# ADD CPP /I "..\.." |
||||
|
||||
!ELSEIF "$(CFG)" == "zlib - Win32 LIB Debug" |
||||
|
||||
# PROP Exclude_From_Build 1 |
||||
# ADD CPP /I "..\.." |
||||
|
||||
!ELSEIF "$(CFG)" == "zlib - Win32 LIB ASM Release" |
||||
|
||||
# ADD CPP /I "..\.." |
||||
|
||||
!ELSEIF "$(CFG)" == "zlib - Win32 LIB ASM Debug" |
||||
|
||||
# ADD CPP /I "..\.." |
||||
|
||||
!ENDIF |
||||
|
||||
# End Source File |
||||
# Begin Source File |
||||
|
||||
SOURCE=..\..\contrib\masmx86\inffas32.asm |
||||
# PROP Exclude_From_Build 1 |
||||
# End Source File |
||||
# Begin Source File |
||||
|
||||
SOURCE=..\..\contrib\masmx86\gvmat32.obj |
||||
|
||||
!IF "$(CFG)" == "zlib - Win32 DLL Release" |
||||
|
||||
# PROP Exclude_From_Build 1 |
||||
|
||||
!ELSEIF "$(CFG)" == "zlib - Win32 DLL Debug" |
||||
|
||||
# PROP Exclude_From_Build 1 |
||||
|
||||
!ELSEIF "$(CFG)" == "zlib - Win32 DLL ASM Release" |
||||
|
||||
!ELSEIF "$(CFG)" == "zlib - Win32 DLL ASM Debug" |
||||
|
||||
!ELSEIF "$(CFG)" == "zlib - Win32 LIB Release" |
||||
|
||||
# PROP Exclude_From_Build 1 |
||||
|
||||
!ELSEIF "$(CFG)" == "zlib - Win32 LIB Debug" |
||||
|
||||
# PROP Exclude_From_Build 1 |
||||
|
||||
!ELSEIF "$(CFG)" == "zlib - Win32 LIB ASM Release" |
||||
|
||||
!ELSEIF "$(CFG)" == "zlib - Win32 LIB ASM Debug" |
||||
|
||||
!ENDIF |
||||
|
||||
# End Source File |
||||
# Begin Source File |
||||
|
||||
SOURCE=..\..\contrib\masmx86\inffas32.obj |
||||
|
||||
!IF "$(CFG)" == "zlib - Win32 DLL Release" |
||||
|
||||
# PROP Exclude_From_Build 1 |
||||
|
||||
!ELSEIF "$(CFG)" == "zlib - Win32 DLL Debug" |
||||
|
||||
# PROP Exclude_From_Build 1 |
||||
|
||||
!ELSEIF "$(CFG)" == "zlib - Win32 DLL ASM Release" |
||||
|
||||
!ELSEIF "$(CFG)" == "zlib - Win32 DLL ASM Debug" |
||||
|
||||
!ELSEIF "$(CFG)" == "zlib - Win32 LIB Release" |
||||
|
||||
# PROP Exclude_From_Build 1 |
||||
|
||||
!ELSEIF "$(CFG)" == "zlib - Win32 LIB Debug" |
||||
|
||||
# PROP Exclude_From_Build 1 |
||||
|
||||
!ELSEIF "$(CFG)" == "zlib - Win32 LIB ASM Release" |
||||
|
||||
!ELSEIF "$(CFG)" == "zlib - Win32 LIB ASM Debug" |
||||
|
||||
!ENDIF |
||||
|
||||
# End Source File |
||||
# End Group |
||||
# Begin Source File |
||||
|
||||
SOURCE=.\README.txt |
||||
# End Source File |
||||
# End Target |
||||
# End Project |
@ -0,0 +1,59 @@ |
||||
Microsoft Developer Studio Workspace File, Format Version 6.00 |
||||
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! |
||||
|
||||
############################################################################### |
||||
|
||||
Project: "example"=.\example.dsp - Package Owner=<4> |
||||
|
||||
Package=<5> |
||||
{{{ |
||||
}}} |
||||
|
||||
Package=<4> |
||||
{{{ |
||||
Begin Project Dependency |
||||
Project_Dep_Name zlib |
||||
End Project Dependency |
||||
}}} |
||||
|
||||
############################################################################### |
||||
|
||||
Project: "minigzip"=.\minigzip.dsp - Package Owner=<4> |
||||
|
||||
Package=<5> |
||||
{{{ |
||||
}}} |
||||
|
||||
Package=<4> |
||||
{{{ |
||||
Begin Project Dependency |
||||
Project_Dep_Name zlib |
||||
End Project Dependency |
||||
}}} |
||||
|
||||
############################################################################### |
||||
|
||||
Project: "zlib"=.\zlib.dsp - Package Owner=<4> |
||||
|
||||
Package=<5> |
||||
{{{ |
||||
}}} |
||||
|
||||
Package=<4> |
||||
{{{ |
||||
}}} |
||||
|
||||
############################################################################### |
||||
|
||||
Global: |
||||
|
||||
Package=<5> |
||||
{{{ |
||||
}}} |
||||
|
||||
Package=<3> |
||||
{{{ |
||||
}}} |
||||
|
||||
############################################################################### |
||||
|
Loading…
Reference in new issue