nginx 0.3.48
[nginx-catap.git] / auto / lib / sha1 / makefile.bcc
blob255e56a89fd9a9d5a238bb53dcd972cf8b4d9cec
2 # Copyright (C) Igor Sysoev
5 CFLAGS = -q -O2 -tWM $(CPU_OPT) -DL_ENDIAN
7 !if "$(SHA1_ASM)" == "YES"
9 sha1.lib:
10         bcc32 -c $(CFLAGS) -DSHA1_ASM sha1dgst.c
11         tlib sha1.lib +sha1dgst.obj +"asm\s-win32.obj"
13 !else
15 sha1.lib:
16         bcc32 -c $(CFLAGS) sha1dgst.c
17         tlib sha1.lib +sha1dgst.obj
19 !endif