~ubuntu-branches/ubuntu/vivid/curl/vivid

« back to all changes in this revision

Viewing changes to src/Makefile.vc8

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Schuldei
  • Date: 2009-04-02 23:35:45 UTC
  • mto: (1.2.1 upstream) (3.2.3 sid)
  • mto: This revision was merged to the branch mainline in revision 38.
  • Revision ID: james.westby@ubuntu.com-20090402233545-geixkwhe3izccjt7
Tags: upstream-7.19.4
ImportĀ upstreamĀ versionĀ 7.19.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#############################################################
2
 
# $Id: Makefile.vc8,v 1.19 2004/11/14 13:48:15 giva Exp $
 
2
# $Id: Makefile.vc6,v 1.19 2004/11/14 13:48:15 giva Exp $
3
3
#
4
4
## Makefile for building curl.exe with MSVC8
5
 
## Use: nmake -f makefile.vc8 [release | debug] [CFG=release-ssl]
 
5
## Use: nmake -f makefile.vc6 [release | debug] [CFG=release-ssl]
6
6
##      (default is release)
7
 
## "nmake -f makefile.vc8 CFG=release-ssl" statically links OpenSSL
 
7
## "nmake -f makefile.vc6 CFG=release-ssl" statically links OpenSSL
8
8
## into curl.exe producing a standalone SSL-enabled executable.
9
9
##
10
10
## Comments to: Troy Engel <tengel@sonic.net>
85
85
# This manifest thing is for VC8, enabled by the maketgz script that
86
86
# builds the VC8 version of this makefile. Left commented out in the VC8
87
87
# version!
88
 
MANIFESTTOOL = mt -manifest $(PROGRAM_NAME).manifest -outputresource:$(PROGRAM_NAME);1
 
88
#MANIFESTTOOL = mt -manifest $(PROGRAM_NAME).manifest -outputresource:$(PROGRAM_NAME);1
89
89
 
90
90
!IFDEF WINDOWS_SSPI
91
91
CFLAGS = $(CFLAGS) /DUSE_WINDOWS_SSPI /I$(WINDOWS_SDK_PATH)\include
98
98
        getpassr.obj \
99
99
        homedirr.obj \
100
100
        curlutilr.obj \
 
101
        rawstrr.obj \
101
102
        strtoofftr.obj \
102
103
        mainr.obj \
103
104
        curlr.res
109
110
        getpassd.obj \
110
111
        homedird.obj \
111
112
        curlutild.obj \
 
113
        rawstrd.obj \
112
114
        strtoofftd.obj \
113
115
        maind.obj \
114
116
        curld.res
245
247
        $(CCR) $(CFLAGS) /Fo"$@" homedir.c
246
248
curlutilr.obj: curlutil.c
247
249
        $(CCR) $(CFLAGS) /Fo"$@" curlutil.c
 
250
rawstrr.obj: ../lib/rawstr.c
 
251
        $(CCR) $(CFLAGS) /Fo"$@" ../lib/rawstr.c
248
252
strtoofftr.obj: ../lib/strtoofft.c
249
253
        $(CCR) $(CFLAGS) /Fo"$@" ../lib/strtoofft.c
250
254
mainr.obj: main.c
265
269
        $(CCD) $(CFLAGS) /Fo"$@" homedir.c
266
270
curlutild.obj: curlutil.c
267
271
        $(CCD) $(CFLAGS) /Fo"$@" curlutil.c
 
272
rawstrd.obj: ../lib/rawstr.c
 
273
        $(CCD) $(CFLAGS) /Fo"$@" ../lib/rawstr.c
268
274
strtoofftd.obj: ../lib/strtoofft.c
269
275
        $(CCD) $(CFLAGS) /Fo"$@" ../lib/strtoofft.c
270
276
maind.obj: main.c