~ubuntu-branches/ubuntu/saucy/curl/saucy-201307251546

« back to all changes in this revision

Viewing changes to src/Makefile.Watcom

  • Committer: Bazaar Package Importer
  • Author(s): Ramakrishnan Muthukrishnan
  • Date: 2010-10-18 11:13:17 UTC
  • mto: (3.6.1 experimental) (1.3.1)
  • mto: This revision was merged to the branch mainline in revision 44.
  • Revision ID: james.westby@ubuntu.com-20101018111317-9rkas34ecwtq0upn
Tags: upstream-7.21.2
ImportĀ upstreamĀ versionĀ 7.21.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
!endif
35
35
 
36
36
!if $(__VERSION__) < 1250
37
 
RM = del /q /f >NUL 2>&1
 
37
RM = del /q /f 2>NUL
38
38
!else
39
39
RM = rm -f
40
40
!endif
41
41
MD = mkdir
42
 
RD = rmdir /q /s >NUL 2>&1
 
42
RD = rmdir /q /s 2>NUL
43
43
CP = copy
44
44
 
45
45
CFLAGS = -3r -mf -hc -zff -zgf -zq -zm -s -fr=con -w2 -fpi -oilrtfm &
66
66
ZLIB_ROOT = ..\..\zlib-1.2.5
67
67
!endif
68
68
 
 
69
!ifdef %libssh2_root
 
70
LIBSSH2_ROOT = $(%libssh2_root)
 
71
!else
 
72
LIBSSH2_ROOT = ..\..\libssh2-1.2.7
 
73
!endif
 
74
 
 
75
!ifdef %librtmp_root
 
76
LIBRTMP_ROOT = $(%librtmp_root)
 
77
!else
 
78
LIBRTMP_ROOT = ..\..\librtmp-2.3
 
79
!endif
 
80
 
69
81
!ifdef %openssl_root
70
82
OPENSSL_ROOT = $(%openssl_root)
71
83
!else
113
125
        -$(RM) $(OBJS)
114
126
        -$(RM) $(RESOURCE) $(LINK_ARG)
115
127
 
116
 
vclean realclean: clean .SYMBOLIC
 
128
vclean distclean: clean .SYMBOLIC
117
129
        -$(RD) $(OBJ_DIR)
118
130
        -$(RM) curl.exe curl.map curl.sym hugehelp.c
119
131
 
155
167
!ifdef %use_zlib
156
168
        @%append $^@ library $(ZLIB_ROOT)\zlib.lib
157
169
!endif
 
170
!ifdef %use_rtmp
 
171
        @%append $^@ library $(LIBRTMP_ROOT)\librtmp\librtmp.lib, winmm.lib
 
172
!endif
 
173
!ifdef %use_ssh2                                                                                                                    
 
174
        @%append $^@ library $(LIBSSH2_ROOT)\win32\libssh2.lib                                                                      
 
175
!endif
158
176
!ifdef %use_ssl
159
177
        @%append $^@ library $(OPENSSL_ROOT)\out32\libeay32.lib, $(OPENSSL_ROOT)\out32\ssleay32.lib
160
178
!endif