Welcome to mirror list, hosted at ThFree Co, Russian Federation.

makefile.bcc « md5 « lib « auto - github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e3dd8aa2295d215131154885af6c036627c88f2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

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