view auto/lib/zlib/makefile.msvc @ 4059:cc72e6229416

Unsatisfiable range with start value greater than content length was not properly skipped. The bug has been introduced in r4057.
author Igor Sysoev <igor@sysoev.ru>
date Tue, 30 Aug 2011 14:25:35 +0000
parents ecdc41bf2047
children d620f497c50f
line wrap: on
line source


# Copyright (C) Igor Sysoev


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

zlib.lib:
	cd $(ZLIB)

	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