~ubuntu-branches/ubuntu/lucid/curl/lucid-201101212007

« back to all changes in this revision

Viewing changes to src/Makefile.vc6

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2007-05-16 15:16:54 UTC
  • mto: (3.1.1 lenny) (1.2.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 12.
  • Revision ID: james.westby@ubuntu.com-20070516151654-x9nkigtr2j0i8d0v
Tags: upstream-7.16.2
ImportĀ upstreamĀ versionĀ 7.16.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
## Updated by: Craig Davison <cd@securityfocus.com>
12
12
## release-ssl added by Miklos Nemeth <mnemeth@kfkisystems.com>
13
13
## winmm.lib added by Miklos Nemeth <mnemeth@kfkisystems.com> to support
14
 
## timeGetTime() in timeval.c
 
14
## timeGetTime() in curlutil.c
15
15
 
16
16
PROGRAM_NAME = curl.exe
17
17
 
23
23
OPENSSL_PATH = ../../openssl-0.9.7e
24
24
!ENDIF
25
25
 
 
26
!IFNDEF MACHINE
 
27
MACHINE  = X86
 
28
!ENDIF
 
29
 
26
30
# USE_WINDOWS_SSPI uses windows libraries to allow NTLM authentication
27
31
# without an openssl installation and offers the ability to authenticate
28
32
# using the "current logged in user".  It does however require that the
64
68
RCD   = rc.exe /dCURLDEBUG=1
65
69
 
66
70
CFLAGS   = /I../lib /I../include /nologo /W3 /GX /DWIN32 /YX /FD /c
67
 
LFLAGS   = /nologo /out:$(PROGRAM_NAME) /subsystem:console /machine:I386
 
71
LFLAGS   = /nologo /out:$(PROGRAM_NAME) /subsystem:console /machine:$(MACHINE)
68
72
RESFLAGS = /i../include
69
73
 
70
74
!IFDEF WINDOWS_SSPI
77
81
        urlglobr.obj \
78
82
        getpassr.obj \
79
83
        homedirr.obj \
80
 
        timevalr.obj \
 
84
        curlutilr.obj \
81
85
        strtoofftr.obj \
82
86
        mainr.obj \
83
87
        curlr.res
88
92
        urlglobd.obj \
89
93
        getpassd.obj \
90
94
        homedird.obj \
91
 
        timevald.obj \
 
95
        curlutild.obj \
92
96
        strtoofftd.obj \
93
97
        maind.obj \
94
98
        curld.res
221
225
        $(CCR) $(CFLAGS) /Fo"$@" getpass.c
222
226
homedirr.obj: homedir.c
223
227
        $(CCR) $(CFLAGS) /Fo"$@" homedir.c
224
 
timevalr.obj: ../lib/timeval.c
225
 
        $(CCR) $(CFLAGS) /Fo"$@" ../lib/timeval.c
 
228
curlutilr.obj: curlutil.c
 
229
        $(CCR) $(CFLAGS) /Fo"$@" curlutil.c
226
230
strtoofftr.obj: ../lib/strtoofft.c
227
231
        $(CCR) $(CFLAGS) /Fo"$@" ../lib/strtoofft.c
228
232
mainr.obj: main.c
241
245
        $(CCD) $(CFLAGS) /Fo"$@" getpass.c
242
246
homedird.obj: homedir.c
243
247
        $(CCD) $(CFLAGS) /Fo"$@" homedir.c
244
 
timevald.obj: ../lib/timeval.c
245
 
        $(CCD) $(CFLAGS) /Fo"$@" ../lib/timeval.c
 
248
curlutild.obj: curlutil.c
 
249
        $(CCD) $(CFLAGS) /Fo"$@" curlutil.c
246
250
strtoofftd.obj: ../lib/strtoofft.c
247
251
        $(CCD) $(CFLAGS) /Fo"$@" ../lib/strtoofft.c
248
252
maind.obj: main.c