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