view auto/lib/sha1/makefile.msvc @ 2656:099c5b328fe2 stable-0.6 release-0.6.36

nginx-0.6.36-RELEASE
author Igor Sysoev <igor@sysoev.ru>
date Thu, 02 Apr 2009 06:48:50 +0000
parents e924670896ab
children ecdc41bf2047
line wrap: on
line source


# Copyright (C) Igor Sysoev


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

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

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

!ELSE

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

!ENDIF