Welcome to mirror list, hosted at ThFree Co, Russian Federation.

makefile.msvc « zlib « lib « auto - github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 304b986cdf5495dafc15af6a0e7e3895f17df091 (plain)
1
2
3
4
5
6
7
8
9
10
11

# 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

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