curl tool: renaming hugehelp files to tool_hugehelp
[platform/upstream/curl.git] / src / Makefile.m32
1 ###########################################################################
2 #
3 ## Makefile for building curl.exe with MingW (GCC-3.2 or later)
4 ## and optionally OpenSSL (0.9.8), libssh2 (1.3), zlib (1.2.5), librtmp (2.3)
5 ##
6 ## Usage:   mingw32-make -f Makefile.m32 CFG=-feature1[-feature2][-feature3][...]
7 ## Example: mingw32-make -f Makefile.m32 CFG=-zlib-ssl-spi-winidn
8 ##
9 ## Hint: you can also set environment vars to control the build, f.e.:
10 ## set ZLIB_PATH=c:/zlib-1.2.7
11 ## set ZLIB=1
12 #
13 ###########################################################################
14
15 # Edit the path below to point to the base of your Zlib sources.
16 ifndef ZLIB_PATH
17 ZLIB_PATH = ../../zlib-1.2.7
18 endif
19 # Edit the path below to point to the base of your OpenSSL package.
20 ifndef OPENSSL_PATH
21 OPENSSL_PATH = ../../openssl-0.9.8x
22 endif
23 # Edit the path below to point to the base of your LibSSH2 package.
24 ifndef LIBSSH2_PATH
25 LIBSSH2_PATH = ../../libssh2-1.4.2
26 endif
27 # Edit the path below to point to the base of your librtmp package.
28 ifndef LIBRTMP_PATH
29 LIBRTMP_PATH = ../../librtmp-2.3
30 endif
31 # Edit the path below to point to the base of your libmetalink package.
32 ifndef LIBMETALINK_PATH
33 LIBMETALINK_PATH = ../../libmetalink-0.1.2
34 endif
35 # Edit the path below to point to the base of your libexpat package.
36 ifndef LIBEXPAT_PATH
37 LIBEXPAT_PATH = ../../expat-2.1.0
38 endif
39 # Edit the path below to point to the base of your libxml2 package.
40 ifndef LIBXML2_PATH
41 LIBXML2_PATH = ../../libxml2-2.9.0
42 endif
43 # Edit the path below to point to the base of your libidn package.
44 ifndef LIBIDN_PATH
45 LIBIDN_PATH = ../../libidn-1.18
46 endif
47 # Edit the path below to point to the base of your MS IDN package.
48 # Microsoft Internationalized Domain Names (IDN) Mitigation APIs 1.1
49 # http://www.microsoft.com/downloads/en/details.aspx?FamilyID=ad6158d7-ddba-416a-9109-07607425a815
50 ifndef WINIDN_PATH
51 WINIDN_PATH = ../../Microsoft IDN Mitigation APIs
52 endif
53 # Edit the path below to point to the base of your Novell LDAP NDK.
54 ifndef LDAP_SDK
55 LDAP_SDK = c:/novell/ndk/cldapsdk/win32
56 endif
57
58 PROOT = ..
59
60 # Edit the path below to point to the base of your c-ares package.
61 ifndef LIBCARES_PATH
62 LIBCARES_PATH = $(PROOT)/ares
63 endif
64
65 # Edit the var below to set to your architecture or set environment var.
66 ifndef ARCH
67 ARCH = w32
68 endif
69
70 CC      = $(CROSSPREFIX)gcc
71 CFLAGS  = -g -O2 -Wall
72 CFLAGS  += -fno-strict-aliasing
73 ifeq ($(ARCH),w64)
74 CFLAGS  += -D_AMD64_
75 endif
76 # comment LDFLAGS below to keep debug info
77 LDFLAGS = -s
78 AR      = $(CROSSPREFIX)ar
79 RC      = $(CROSSPREFIX)windres
80 RCFLAGS = --include-dir=$(PROOT)/include -O COFF -i
81
82 # We may need these someday
83 # PERL = perl
84 # NROFF = nroff
85
86 # Platform-dependent helper tool macros
87 ifeq ($(findstring /sh,$(SHELL)),/sh)
88 DEL     = rm -f $1
89 RMDIR   = rm -fr $1
90 MKDIR   = mkdir -p $1
91 COPY    = -cp -afv $1 $2
92 #COPYR  = -cp -afr $1/* $2
93 COPYR   = -rsync -aC $1/* $2
94 TOUCH   = touch $1
95 CAT     = cat
96 ECHONL  = echo ""
97 DL      = '
98 else
99 ifeq "$(OS)" "Windows_NT"
100 DEL     = -del 2>NUL /q /f $(subst /,\,$1)
101 RMDIR   = -rd 2>NUL /q /s $(subst /,\,$1)
102 else
103 DEL     = -del 2>NUL $(subst /,\,$1)
104 RMDIR   = -deltree 2>NUL /y $(subst /,\,$1)
105 endif
106 MKDIR   = -md 2>NUL $(subst /,\,$1)
107 COPY    = -copy 2>NUL /y $(subst /,\,$1) $(subst /,\,$2)
108 COPYR   = -xcopy 2>NUL /q /y /e $(subst /,\,$1) $(subst /,\,$2)
109 TOUCH   = copy 2>&1>NUL /b $(subst /,\,$1) +,,
110 CAT     = type
111 ECHONL  = $(ComSpec) /c echo.
112 endif
113
114 ########################################################
115 ## Nothing more to do below this line!
116
117 ifeq ($(findstring -dyn,$(CFG)),-dyn)
118 DYN = 1
119 endif
120 ifeq ($(findstring -ares,$(CFG)),-ares)
121 ARES = 1
122 endif
123 ifeq ($(findstring -rtmp,$(CFG)),-rtmp)
124 RTMP = 1
125 SSL = 1
126 ZLIB = 1
127 endif
128 ifeq ($(findstring -ssh2,$(CFG)),-ssh2)
129 SSH2 = 1
130 SSL = 1
131 ZLIB = 1
132 endif
133 ifeq ($(findstring -ssl,$(CFG)),-ssl)
134 SSL = 1
135 endif
136 ifeq ($(findstring -zlib,$(CFG)),-zlib)
137 ZLIB = 1
138 endif
139 ifeq ($(findstring -idn,$(CFG)),-idn)
140 IDN = 1
141 endif
142 ifeq ($(findstring -winidn,$(CFG)),-winidn)
143 WINIDN = 1
144 endif
145 ifeq ($(findstring -sspi,$(CFG)),-sspi)
146 SSPI = 1
147 endif
148 ifeq ($(findstring -spnego,$(CFG)),-spnego)
149 SPNEGO = 1
150 endif
151 ifeq ($(findstring -ldaps,$(CFG)),-ldaps)
152 LDAPS = 1
153 endif
154 ifeq ($(findstring -ipv6,$(CFG)),-ipv6)
155 IPV6 = 1
156 endif
157 ifeq ($(findstring -metalink,$(CFG)),-metalink)
158 METALINK = 1
159 endif
160 ifeq ($(findstring -winssl,$(CFG)),-winssl)
161 WINSSL = 1
162 SSPI = 1
163 endif
164
165 INCLUDES = -I. -I../include -I../lib
166
167 ifdef DYN
168   curl_DEPENDENCIES = $(PROOT)/lib/libcurldll.a $(PROOT)/lib/libcurl.dll
169   curl_LDADD = -L$(PROOT)/lib -lcurldll
170 else
171   curl_DEPENDENCIES = $(PROOT)/lib/libcurl.a
172   curl_LDADD = -L$(PROOT)/lib -lcurl
173   CFLAGS += -DCURL_STATICLIB
174   LDFLAGS += -static
175 endif
176 ifdef ARES
177   ifndef DYN
178     curl_DEPENDENCIES += $(LIBCARES_PATH)/libcares.a
179   endif
180   CFLAGS += -DUSE_ARES
181   curl_LDADD += -L"$(LIBCARES_PATH)" -lcares
182 endif
183 ifdef RTMP
184   CFLAGS += -DUSE_LIBRTMP
185   curl_LDADD += -L"$(LIBRTMP_PATH)/librtmp" -lrtmp -lwinmm
186 endif
187 ifdef SSH2
188   CFLAGS += -DUSE_LIBSSH2 -DHAVE_LIBSSH2_H
189   curl_LDADD += -L"$(LIBSSH2_PATH)/win32" -lssh2
190 endif
191 ifdef SSL
192   ifndef OPENSSL_INCLUDE
193     ifeq "$(wildcard $(OPENSSL_PATH)/outinc)" "$(OPENSSL_PATH)/outinc"
194       OPENSSL_INCLUDE = $(OPENSSL_PATH)/outinc
195     endif
196     ifeq "$(wildcard $(OPENSSL_PATH)/include)" "$(OPENSSL_PATH)/include"
197       OPENSSL_INCLUDE = $(OPENSSL_PATH)/include
198     endif
199   endif
200   ifneq "$(wildcard $(OPENSSL_INCLUDE)/openssl/opensslv.h)" "$(OPENSSL_INCLUDE)/openssl/opensslv.h"
201   $(error Invalid path to OpenSSL package: $(OPENSSL_PATH))
202   endif
203   ifndef OPENSSL_LIBPATH
204     OPENSSL_LIBS = -lssl -lcrypto
205     ifeq "$(wildcard $(OPENSSL_PATH)/out)" "$(OPENSSL_PATH)/out"
206       OPENSSL_LIBPATH = $(OPENSSL_PATH)/out
207       ifdef DYN
208         OPENSSL_LIBS = -lssl32 -leay32
209       endif
210     endif
211     ifeq "$(wildcard $(OPENSSL_PATH)/lib)" "$(OPENSSL_PATH)/lib"
212       OPENSSL_LIBPATH = $(OPENSSL_PATH)/lib
213     endif
214   endif
215   ifndef DYN
216     OPENSSL_LIBS += -lgdi32 -lcrypt32
217   endif
218   INCLUDES += -I"$(OPENSSL_INCLUDE)"
219   CFLAGS += -DUSE_SSLEAY -DUSE_OPENSSL
220   curl_LDADD += -L"$(OPENSSL_LIBPATH)" $(OPENSSL_LIBS)
221 endif
222 ifdef ZLIB
223   INCLUDES += -I"$(ZLIB_PATH)"
224   CFLAGS += -DHAVE_LIBZ -DHAVE_ZLIB_H
225   curl_LDADD += -L"$(ZLIB_PATH)" -lz
226 endif
227 ifdef IDN
228   CFLAGS += -DUSE_LIBIDN
229   curl_LDADD += -L"$(LIBIDN_PATH)/lib" -lidn
230 else
231 ifdef WINIDN
232   CFLAGS += -DUSE_WIN32_IDN
233   curl_LDADD += -L"$(WINIDN_PATH)" -lnormaliz
234 endif
235 endif
236 ifdef METALINK
237   INCLUDES += -I"$(LIBMETALINK_PATH)/include"
238   CFLAGS += -DUSE_METALINK
239   curl_LDADD += -L"$(LIBMETALINK_PATH)/lib" -lmetalink
240   ifndef DYN
241     ifeq ($(findstring libexpat_metalink_parser.o,$(shell $(AR) t "$(LIBMETALINK_PATH)/lib/libmetalink.a")),libexpat_metalink_parser.o)
242       curl_LDADD += -L"$(LIBEXPAT_PATH)/lib" -lexpat
243     else
244       curl_LDADD += -L"$(LIBXML2_PATH)/lib" -lxml2
245     endif
246   endif
247 endif
248 ifdef SSPI
249   CFLAGS += -DUSE_WINDOWS_SSPI
250   ifdef WINSSL
251     CFLAGS += -DUSE_SCHANNEL
252   endif
253 endif
254 ifdef SPNEGO
255   CFLAGS += -DHAVE_SPNEGO
256 endif
257 ifdef IPV6
258   CFLAGS += -DENABLE_IPV6 -D_WIN32_WINNT=0x0501
259 endif
260 ifdef LDAPS
261   CFLAGS += -DHAVE_LDAP_SSL
262 endif
263 ifdef USE_LDAP_NOVELL
264   CFLAGS += -DCURL_HAS_NOVELL_LDAPSDK
265   curl_LDADD += -L"$(LDAP_SDK)/lib/mscvc" -lldapsdk -lldapssl -lldapx
266 endif
267 ifdef USE_LDAP_OPENLDAP
268   CFLAGS += -DCURL_HAS_OPENLDAP_LDAPSDK
269   curl_LDADD += -L"$(LDAP_SDK)/lib" -lldap -llber
270 endif
271 ifndef USE_LDAP_NOVELL
272 ifndef USE_LDAP_OPENLDAP
273 curl_LDADD += -lwldap32
274 endif
275 endif
276 curl_LDADD += -lws2_32
277
278 # Makefile.inc provides the CSOURCES and HHEADERS defines
279 include Makefile.inc
280
281 curl_PROGRAMS = curl.exe
282 curl_OBJECTS := $(patsubst %.c,%.o,$(strip $(CURL_CFILES)))
283 curlx_OBJECTS := $(patsubst %.c,%.o,$(notdir $(strip $(CURLX_ONES))))
284 ifdef DYN
285 curl_OBJECTS += $(curlx_OBJECTS)
286 vpath %.c $(PROOT)/lib
287 endif
288
289 RESOURCE = curl.res
290
291
292 all: $(curl_PROGRAMS)
293
294 curl.exe: $(RESOURCE) $(curl_OBJECTS) $(curl_DEPENDENCIES)
295         $(call DEL, $@)
296         $(CC) $(LDFLAGS) -o $@ $< $(curl_OBJECTS) $(curl_LDADD)
297
298 # We don't have nroff normally under win32
299 # tool_hugehelp.c: $(PROOT)/docs/MANUAL $(PROOT)/docs/curl.1 mkhelp.pl
300 #       @$(call DEL, tool_hugehelp.c)
301 #       $(NROFF) -man $(PROOT)/docs/curl.1 | $(PERL) mkhelp.pl $(PROOT)/docs/MANUAL > tool_hugehelp.c
302
303 tool_hugehelp.c:
304         @echo Creating $@
305         @$(call COPY, $@.cvs, $@)
306
307 %.o: %.c
308         $(CC) $(INCLUDES) $(CFLAGS) -c $<
309
310 %.res: %.rc
311         $(RC) $(RCFLAGS) $< -o $@
312
313 clean:
314 ifeq "$(wildcard tool_hugehelp.c.cvs)" "tool_hugehelp.c.cvs"
315         @$(call DEL, tool_hugehelp.c)
316 endif
317         @$(call DEL, $(curl_OBJECTS) $(curlx_OBJECTS) $(RESOURCE))
318
319 distclean vclean: clean
320         @$(call DEL, $(curl_PROGRAMS))
321