~ubuntu-branches/ubuntu/trusty/nginx/trusty-proposed

« back to all changes in this revision

Viewing changes to auto/lib/md5/makefile.msvc

  • Committer: Package Import Robot
  • Author(s): Kartik Mistry
  • Date: 2013-04-25 12:51:45 UTC
  • mfrom: (1.3.28)
  • mto: (1.3.29) (15.1.2 experimental)
  • mto: This revision was merged to the branch mainline in revision 64.
  • Revision ID: package-import@ubuntu.com-20130425125145-ugl0wor6bq0u5eae
Tags: upstream-1.4.0
ImportĀ upstreamĀ versionĀ 1.4.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
 
2
2
# Copyright (C) Igor Sysoev
 
3
# Copyright (C) Nginx, Inc.
3
4
 
4
5
 
5
6
CFLAGS = -nologo -O2 -Ob1 -Oi -Gs $(LIBC) $(CPU_OPT) -D L_ENDIAN
7
8
!IF "$(MD5_ASM)" == "YES"
8
9
 
9
10
md5.lib:
 
11
        cd $(MD5)
10
12
        cl -c $(CFLAGS) -D MD5_ASM md5_dgst.c
11
13
        link -lib -out:md5.lib md5_dgst.obj asm/m-win32.obj
12
14
 
13
15
!ELSE
14
16
 
15
17
md5.lib:
 
18
        cd $(MD5)
16
19
        cl -c $(CFLAGS) md5_dgst.c
17
20
        link -lib -out:md5.lib md5_dgst.obj
18
21