view auto/lib/zlib/makefile.bcc @ 5214:2220de0521ca

Mail: removed surplus ngx_close_connection() call. It is already called for a peer connection a few lines above.
author Filipe Da Silva <fdasilvayy@gmail.com>
date Thu, 09 May 2013 10:54:28 +0200
parents 9d458803bbe0
children
line wrap: on
line source


# Copyright (C) Igor Sysoev
# Copyright (C) Nginx, Inc.


CFLAGS = -q -O2 -tWM -w-8004 -w-8012 $(CPU_OPT)

zlib.lib:
	cd $(ZLIB)

	bcc32 -c $(CFLAGS) adler32.c crc32.c deflate.c \
		trees.c zutil.c compress.c \
		inflate.c inffast.c inftrees.c

	tlib zlib.lib +adler32.obj +crc32.obj +deflate.obj \
		+trees.obj +zutil.obj +compress.obj \
		+inflate.obj +inffast.obj +inftrees.obj