view auto/lib/sha1/makefile.msvc @ 2807:6ad4bba6313e

delete level event of appropriate type, this should fix select()'s EBADF, WSAENOTSOCK, and "select ready != events" alerts
author Igor Sysoev <igor@sysoev.ru>
date Wed, 06 May 2009 08:40:44 +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