view auto/lib/sha1/makefile.msvc @ 5478:3cb3175a6fef

The "ipv6=" boolean parameter of the "resolver" directive. When set to "off", only IPv4 addresses will be resolved, and no AAAA queries are ever sent.
author Ruslan Ermilov <ru@nginx.com>
date Mon, 09 Dec 2013 10:53:30 +0400
parents d620f497c50f
children
line wrap: on
line source


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


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

!IF "$(SHA1_ASM)" == "YES"

sha1.lib:
	cd $(SHA1)
	cl -c $(CFLAGS) -D SHA1_ASM sha1dgst.c
	link -lib -out:sha1.lib sha1dgst.obj asm/s-win32.obj

!ELSE

sha1.lib:
	cd $(SHA1)
	cl -c $(CFLAGS) sha1dgst.c
	link -lib -out:sha1.lib sha1dgst.obj

!ENDIF