view auto/lib/md5/makefile.bcc @ 2834:0449d289256c

test finalized image filter context before testing image_filter off this fixes SIGFPE if image filter errors are passed to named location
author Igor Sysoev <igor@sysoev.ru>
date Tue, 12 May 2009 12:05:29 +0000
parents 7cbef16c71a1
children ecdc41bf2047
line wrap: on
line source


# Copyright (C) Igor Sysoev


CFLAGS = -q -O2 -tWM $(CPU_OPT) -DL_ENDIAN

!if "$(MD5_ASM)" == "YES"

md5.lib:
	bcc32 -c $(CFLAGS) -DMD5_ASM md5_dgst.c
	tlib md5.lib +md5_dgst.obj +"asm\m-win32.obj"

!else

md5.lib:
	bcc32 -c $(CFLAGS) md5_dgst.c
	tlib md5.lib +md5_dgst.obj

!endif