mirror of
https://github.com/nginx/nginx.git
synced 2024-12-04 05:38:59 +08:00
d2af69adc6
instead, do chdir inside Makefile
22 lines
313 B
Plaintext
22 lines
313 B
Plaintext
|
|
# Copyright (C) Igor Sysoev
|
|
|
|
|
|
CFLAGS = -q -O2 -tWM $(CPU_OPT) -DL_ENDIAN
|
|
|
|
!if "$(SHA1_ASM)" == "YES"
|
|
|
|
sha1.lib:
|
|
cd $(SHA1)
|
|
bcc32 -c $(CFLAGS) -DSHA1_ASM sha1dgst.c
|
|
tlib sha1.lib +sha1dgst.obj +"asm\s-win32.obj"
|
|
|
|
!else
|
|
|
|
sha1.lib:
|
|
cd $(SHA1)
|
|
bcc32 -c $(CFLAGS) sha1dgst.c
|
|
tlib sha1.lib +sha1dgst.obj
|
|
|
|
!endif
|