view auto/lib/sha1/makefile.msvc @ 2104:744ae0917c7a stable-0.6

r2067 merge: fix bug when inactive subrequest is truncated, if output_buffers are less than subrequest size
author Igor Sysoev <igor@sysoev.ru>
date Mon, 07 Jul 2008 11:32:02 +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