view auto/lib/sha1/makefile.msvc @ 1554:30fcc8478d85

two commits those go together by mistake *) fix gzip broken in r1544 *) fix memcached END test
author Igor Sysoev <igor@sysoev.ru>
date Mon, 01 Oct 2007 16:00:13 +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