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

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

CFLAGS = -nologo -MT -O2 -Ob1 -Oi -Gs $(LIBC) $(CPU_OPT) -D L_ENDIAN

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

md5.lib:
	cl -c $(CFLAGS) -D MD5_ASM md5_dgst.c
	link -lib -out:md5.lib md5_dgst.obj asm/m-win32.obj

!else

md5.lib:
	cl -c $(CFLAGS) md5_dgst.c
	link -lib -out:md5.lib md5_dgst.obj

!endif