view auto/lib/zlib/makefile.msvc @ 2639:8deee4408c94 stable-0.6

r2361 merge: read and process upstream header in cycle, this fixes the case when local FastCGI server sends many warnings in stderr
author Igor Sysoev <igor@sysoev.ru>
date Wed, 01 Apr 2009 15:51:04 +0000
parents 975f62e77f02
children ecdc41bf2047
line wrap: on
line source


# Copyright (C) Igor Sysoev


CFLAGS = -nologo -O2 -Ob1 -Oi -Gs $(LIBC) $(CPU_OPT)

zlib.lib:
	cl -c $(CFLAGS) adler32.c crc32.c deflate.c trees.c zutil.c compress.c

	link -lib -out:zlib.lib adler32.obj crc32.obj deflate.obj \
		trees.obj zutil.obj compress.obj