Updated dependency libs.
[platform/upstream/curl.git] / lib / Makefile.m32
1 ###########################################################################
2 #
3 ## Makefile for building libcurl.a 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-sspi-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.3
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 libidn package.
32 ifndef LIBIDN_PATH
33 LIBIDN_PATH = ../../libidn-1.18
34 endif
35 # Edit the path below to point to the base of your MS IDN package.
36 # Microsoft Internationalized Domain Names (IDN) Mitigation APIs 1.1
37 # http://www.microsoft.com/downloads/en/details.aspx?FamilyID=ad6158d7-ddba-416a-9109-07607425a815
38 ifndef WINIDN_PATH
39 WINIDN_PATH = ../../Microsoft IDN Mitigation APIs
40 endif
41 # Edit the path below to point to the base of your Novell LDAP NDK.
42 ifndef LDAP_SDK
43 LDAP_SDK = c:/novell/ndk/cldapsdk/win32
44 endif
45
46 PROOT = ..
47
48 # Edit the path below to point to the base of your c-ares package.
49 ifndef LIBCARES_PATH
50 LIBCARES_PATH = $(PROOT)/ares
51 endif
52
53 # Edit the var below to set to your architecture or set environment var.
54 ifndef ARCH
55 ARCH = w32
56 endif
57
58 CC      = $(CROSSPREFIX)gcc
59 CFLAGS  = -g -O2 -Wall
60 CFLAGS  += -fno-strict-aliasing
61 ifeq ($(ARCH),w64)
62 CFLAGS  += -D_AMD64_
63 endif
64 # comment LDFLAGS below to keep debug info
65 LDFLAGS = -s
66 AR      = $(CROSSPREFIX)ar
67 RANLIB  = $(CROSSPREFIX)ranlib
68 RC      = $(CROSSPREFIX)windres
69 RCFLAGS = --include-dir=$(PROOT)/include -DDEBUGBUILD=0 -O COFF -i
70 STRIP   = $(CROSSPREFIX)strip -g
71
72 # Platform-dependent helper tool macros
73 ifeq ($(findstring /sh,$(SHELL)),/sh)
74 DEL     = rm -f $1
75 RMDIR   = rm -fr $1
76 MKDIR   = mkdir -p $1
77 COPY    = -cp -afv $1 $2
78 #COPYR  = -cp -afr $1/* $2
79 COPYR   = -rsync -aC $1/* $2
80 TOUCH   = touch $1
81 CAT     = cat
82 ECHONL  = echo ""
83 DL      = '
84 else
85 ifeq "$(OS)" "Windows_NT"
86 DEL     = -del 2>NUL /q /f $(subst /,\,$1)
87 RMDIR   = -rd 2>NUL /q /s $(subst /,\,$1)
88 else
89 DEL     = -del 2>NUL $(subst /,\,$1)
90 RMDIR   = -deltree 2>NUL /y $(subst /,\,$1)
91 endif
92 MKDIR   = -md 2>NUL $(subst /,\,$1)
93 COPY    = -copy 2>NUL /y $(subst /,\,$1) $(subst /,\,$2)
94 COPYR   = -xcopy 2>NUL /q /y /e $(subst /,\,$1) $(subst /,\,$2)
95 TOUCH   = copy 2>&1>NUL /b $(subst /,\,$1) +,,
96 CAT     = type
97 ECHONL  = $(ComSpec) /c echo.
98 endif
99
100 ########################################################
101 ## Nothing more to do below this line!
102
103 ifeq ($(findstring -dyn,$(CFG)),-dyn)
104 DYN = 1
105 endif
106 ifeq ($(findstring -ares,$(CFG)),-ares)
107 ARES = 1
108 endif
109 ifeq ($(findstring -rtmp,$(CFG)),-rtmp)
110 RTMP = 1
111 SSL = 1
112 ZLIB = 1
113 endif
114 ifeq ($(findstring -ssh2,$(CFG)),-ssh2)
115 SSH2 = 1
116 SSL = 1
117 ZLIB = 1
118 endif
119 ifeq ($(findstring -ssl,$(CFG)),-ssl)
120 SSL = 1
121 endif
122 ifeq ($(findstring -srp,$(CFG)),-srp)
123 SRP = 1
124 endif
125 ifeq ($(findstring -zlib,$(CFG)),-zlib)
126 ZLIB = 1
127 endif
128 ifeq ($(findstring -idn,$(CFG)),-idn)
129 IDN = 1
130 endif
131 ifeq ($(findstring -winidn,$(CFG)),-winidn)
132 WINIDN = 1
133 endif
134 ifeq ($(findstring -sspi,$(CFG)),-sspi)
135 SSPI = 1
136 endif
137 ifeq ($(findstring -spnego,$(CFG)),-spnego)
138 SPNEGO = 1
139 endif
140 ifeq ($(findstring -ldaps,$(CFG)),-ldaps)
141 LDAPS = 1
142 endif
143 ifeq ($(findstring -ipv6,$(CFG)),-ipv6)
144 IPV6 = 1
145 endif
146 ifeq ($(findstring -winssl,$(CFG)),-winssl)
147 WINSSL = 1
148 SSPI = 1
149 endif
150
151 INCLUDES = -I. -I../include
152 CFLAGS += -DBUILDING_LIBCURL
153
154 ifdef ARES
155   INCLUDES += -I"$(LIBCARES_PATH)"
156   CFLAGS += -DUSE_ARES
157   DLL_LIBS += -L"$(LIBCARES_PATH)" -lcares
158   libcurl_dll_DEPENDENCIES = $(LIBCARES_PATH)/libcares.a
159 endif
160 ifdef RTMP
161   INCLUDES += -I"$(LIBRTMP_PATH)"
162   CFLAGS += -DUSE_LIBRTMP
163   DLL_LIBS += -L"$(LIBRTMP_PATH)/librtmp" -lrtmp -lwinmm
164 endif
165 ifdef SSH2
166   INCLUDES += -I"$(LIBSSH2_PATH)/include" -I"$(LIBSSH2_PATH)/win32"
167   CFLAGS += -DUSE_LIBSSH2 -DHAVE_LIBSSH2_H
168   DLL_LIBS += -L"$(LIBSSH2_PATH)/win32" -lssh2
169 endif
170 ifdef SSL
171   ifndef OPENSSL_INCLUDE
172     ifeq "$(wildcard $(OPENSSL_PATH)/outinc)" "$(OPENSSL_PATH)/outinc"
173       OPENSSL_INCLUDE = $(OPENSSL_PATH)/outinc
174     endif
175     ifeq "$(wildcard $(OPENSSL_PATH)/include)" "$(OPENSSL_PATH)/include"
176       OPENSSL_INCLUDE = $(OPENSSL_PATH)/include
177     endif
178   endif
179   ifneq "$(wildcard $(OPENSSL_INCLUDE)/openssl/opensslv.h)" "$(OPENSSL_INCLUDE)/openssl/opensslv.h"
180   $(error Invalid path to OpenSSL package: $(OPENSSL_PATH))
181   endif
182   ifndef OPENSSL_LIBPATH
183     ifeq "$(wildcard $(OPENSSL_PATH)/out)" "$(OPENSSL_PATH)/out"
184       OPENSSL_LIBPATH = $(OPENSSL_PATH)/out
185       OPENSSL_LIBS = -leay32 -lssl32
186     endif
187     ifeq "$(wildcard $(OPENSSL_PATH)/lib)" "$(OPENSSL_PATH)/lib"
188       OPENSSL_LIBPATH = $(OPENSSL_PATH)/lib
189       OPENSSL_LIBS = -lcrypto -lssl
190     endif
191   endif
192   INCLUDES += -I"$(OPENSSL_INCLUDE)"
193   CFLAGS += -DUSE_SSLEAY -DUSE_OPENSSL -DHAVE_OPENSSL_ENGINE_H -DHAVE_OPENSSL_PKCS12_H \
194             -DHAVE_ENGINE_LOAD_BUILTIN_ENGINES -DOPENSSL_NO_KRB5 \
195             -DCURL_WANTS_CA_BUNDLE_ENV
196   DLL_LIBS += -L"$(OPENSSL_LIBPATH)" $(OPENSSL_LIBS)
197   ifdef SRP
198     ifeq "$(wildcard $(OPENSSL_INCLUDE)/openssl/srp.h)" "$(OPENSSL_INCLUDE)/openssl/srp.h"
199       CFLAGS += -DHAVE_SSLEAY_SRP -DUSE_TLS_SRP
200     endif
201   endif
202 endif
203 ifdef ZLIB
204   INCLUDES += -I"$(ZLIB_PATH)"
205   CFLAGS += -DHAVE_LIBZ -DHAVE_ZLIB_H
206   DLL_LIBS += -L"$(ZLIB_PATH)" -lz
207 endif
208 ifdef IDN
209   INCLUDES += -I"$(LIBIDN_PATH)/include"
210   CFLAGS += -DUSE_LIBIDN
211   DLL_LIBS += -L"$(LIBIDN_PATH)/lib" -lidn
212 else
213 ifdef WINIDN
214   CFLAGS += -DUSE_WIN32_IDN
215   CFLAGS += -DWANT_IDN_PROTOTYPES
216   DLL_LIBS += -L"$(WINIDN_PATH)" -lnormaliz
217 endif
218 endif
219 ifdef SSPI
220   CFLAGS += -DUSE_WINDOWS_SSPI
221   ifdef WINSSL
222     CFLAGS += -DUSE_SCHANNEL
223   endif
224 endif
225 ifdef SPNEGO
226   CFLAGS += -DHAVE_SPNEGO
227 endif
228 ifdef IPV6
229   CFLAGS += -DENABLE_IPV6 -D_WIN32_WINNT=0x0501
230 endif
231 ifdef LDAPS
232   CFLAGS += -DHAVE_LDAP_SSL
233 endif
234 ifdef USE_LDAP_NOVELL
235   INCLUDES += -I"$(LDAP_SDK)/inc"
236   CFLAGS += -DCURL_HAS_NOVELL_LDAPSDK
237   DLL_LIBS += -L"$(LDAP_SDK)/lib/mscvc" -lldapsdk -lldapssl -lldapx
238 endif
239 ifdef USE_LDAP_OPENLDAP
240   INCLUDES += -I"$(LDAP_SDK)/include"
241   CFLAGS += -DCURL_HAS_OPENLDAP_LDAPSDK
242   DLL_LIBS += -L"$(LDAP_SDK)/lib" -lldap -llber
243 endif
244 ifndef USE_LDAP_NOVELL
245 ifndef USE_LDAP_OPENLDAP
246   DLL_LIBS += -lwldap32
247 endif
248 endif
249 DLL_LIBS += -lws2_32
250
251 # Makefile.inc provides the CSOURCES and HHEADERS defines
252 include Makefile.inc
253
254 libcurl_dll_LIBRARY = libcurl.dll
255 libcurl_dll_a_LIBRARY = libcurldll.a
256 libcurl_a_LIBRARY = libcurl.a
257
258 libcurl_a_OBJECTS := $(patsubst %.c,%.o,$(strip $(CSOURCES)))
259 libcurl_a_DEPENDENCIES := $(strip $(CSOURCES) $(HHEADERS))
260
261 RESOURCE = libcurl.res
262
263
264 all: $(libcurl_a_LIBRARY) $(libcurl_dll_LIBRARY)
265
266 $(libcurl_a_LIBRARY): $(libcurl_a_OBJECTS) $(libcurl_a_DEPENDENCIES)
267         @$(call DEL, $@)
268         $(AR) cru $@ $(libcurl_a_OBJECTS)
269         $(RANLIB) $@
270         $(STRIP) $@
271
272 # remove the last line above to keep debug info
273
274 $(libcurl_dll_LIBRARY): $(libcurl_a_OBJECTS) $(RESOURCE) $(libcurl_dll_DEPENDENCIES)
275         @$(call DEL, $@)
276         $(CC) $(LDFLAGS) -shared -o $@ \
277           -Wl,--output-def,$(@:.dll=.def),--out-implib,$(libcurl_dll_a_LIBRARY) \
278           $(libcurl_a_OBJECTS) $(RESOURCE) $(DLL_LIBS)
279
280 %.o: %.c $(PROOT)/include/curl/curlbuild.h
281         $(CC) $(INCLUDES) $(CFLAGS) -c $<
282
283 %.res: %.rc
284         $(RC) $(RCFLAGS) $< -o $@
285
286 clean:
287 ifeq "$(wildcard $(PROOT)/include/curl/curlbuild.h.dist)" "$(PROOT)/include/curl/curlbuild.h.dist"
288         @$(call DEL, $(PROOT)/include/curl/curlbuild.h)
289 endif
290         @$(call DEL, $(libcurl_a_OBJECTS) $(RESOURCE))
291
292 distclean vclean: clean
293         @$(call DEL, $(libcurl_a_LIBRARY) $(libcurl_dll_LIBRARY) $(libcurl_dll_LIBRARY:.dll=.def) $(libcurl_dll_a_LIBRARY))
294
295 $(PROOT)/include/curl/curlbuild.h:
296         @echo Creating $@
297         @$(call COPY, $@.dist, $@)
298
299 $(LIBCARES_PATH)/libcares.a:
300         $(MAKE) -C $(LIBCARES_PATH) -f Makefile.m32
301
302