2142bfc42d8911588b2abae7659706a447a0ceaa
[platform/upstream/curl.git] / lib / Makefile.m32
1 #***************************************************************************
2 #                                  _   _ ____  _
3 #  Project                     ___| | | |  _ \| |
4 #                             / __| | | | |_) | |
5 #                            | (__| |_| |  _ <| |___
6 #                             \___|\___/|_| \_\_____|
7 #
8 # Copyright (C) 1999 - 2015, Daniel Stenberg, <daniel@haxx.se>, et al.
9 #
10 # This software is licensed as described in the file COPYING, which
11 # you should have received as part of this distribution. The terms
12 # are also available at https://curl.haxx.se/docs/copyright.html.
13 #
14 # You may opt to use, copy, modify, merge, publish, distribute and/or sell
15 # copies of the Software, and permit persons to whom the Software is
16 # furnished to do so, under the terms of the COPYING file.
17 #
18 # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 # KIND, either express or implied.
20 #
21 #***************************************************************************
22
23 ###########################################################################
24 #
25 ## Makefile for building libcurl.a with MingW (GCC-3.2 or later)
26 ## and optionally OpenSSL (1.0.2a), libssh2 (1.5), zlib (1.2.8), librtmp (2.4)
27 ##
28 ## Usage:   mingw32-make -f Makefile.m32 CFG=-feature1[-feature2][-feature3][...]
29 ## Example: mingw32-make -f Makefile.m32 CFG=-zlib-ssl-sspi-winidn
30 ##
31 ## Hint: you can also set environment vars to control the build, f.e.:
32 ## set ZLIB_PATH=c:/zlib-1.2.8
33 ## set ZLIB=1
34 #
35 ###########################################################################
36
37 # Edit the path below to point to the base of your Zlib sources.
38 ifndef ZLIB_PATH
39 ZLIB_PATH = ../../zlib-1.2.8
40 endif
41 # Edit the path below to point to the base of your OpenSSL package.
42 ifndef OPENSSL_PATH
43 OPENSSL_PATH = ../../openssl-1.0.2a
44 endif
45 # Edit the path below to point to the base of your LibSSH2 package.
46 ifndef LIBSSH2_PATH
47 LIBSSH2_PATH = ../../libssh2-1.5.0
48 endif
49 # Edit the path below to point to the base of your librtmp package.
50 ifndef LIBRTMP_PATH
51 LIBRTMP_PATH = ../../librtmp-2.4
52 endif
53 # Edit the path below to point to the base of your libidn package.
54 ifndef LIBIDN_PATH
55 LIBIDN_PATH = ../../libidn-1.32
56 endif
57 # Edit the path below to point to the base of your MS IDN package.
58 # Microsoft Internationalized Domain Names (IDN) Mitigation APIs 1.1
59 # https://www.microsoft.com/en-us/download/details.aspx?id=734
60 ifndef WINIDN_PATH
61 WINIDN_PATH = ../../Microsoft IDN Mitigation APIs
62 endif
63 # Edit the path below to point to the base of your Novell LDAP NDK.
64 ifndef LDAP_SDK
65 LDAP_SDK = c:/novell/ndk/cldapsdk/win32
66 endif
67 # Edit the path below to point to the base of your nghttp2 package.
68 ifndef NGHTTP2_PATH
69 NGHTTP2_PATH = ../../nghttp2-1.0.0
70 endif
71
72 PROOT = ..
73
74 # Edit the path below to point to the base of your c-ares package.
75 ifndef LIBCARES_PATH
76 LIBCARES_PATH = $(PROOT)/ares
77 endif
78
79 CC      = $(CROSSPREFIX)gcc
80 CFLAGS  = $(CURL_CFLAG_EXTRAS) -g -O2 -Wall
81 CFLAGS  += -fno-strict-aliasing
82 # comment LDFLAGS below to keep debug info
83 LDFLAGS = $(CURL_LDFLAG_EXTRAS) $(CURL_LDFLAG_EXTRAS_DLL) -s
84 AR      = $(CROSSPREFIX)ar
85 RANLIB  = $(CROSSPREFIX)ranlib
86 RC      = $(CROSSPREFIX)windres
87 RCFLAGS = --include-dir=$(PROOT)/include -DDEBUGBUILD=0 -O COFF
88 STRIP   = $(CROSSPREFIX)strip -g
89
90 # Set environment var ARCH to your architecture to override autodetection.
91 ifndef ARCH
92 ifeq ($(findstring x86_64,$(shell $(CC) -dumpmachine)),x86_64)
93 ARCH    = w64
94 else
95 ARCH    = w32
96 endif
97 endif
98
99 ifeq ($(ARCH),w64)
100 CFLAGS  += -m64 -D_AMD64_
101 LDFLAGS += -m64
102 RCFLAGS += -F pe-x86-64
103 else
104 CFLAGS  += -m32
105 LDFLAGS += -m32
106 RCFLAGS += -F pe-i386
107 endif
108
109 # Platform-dependent helper tool macros
110 ifeq ($(findstring /sh,$(SHELL)),/sh)
111 DEL     = rm -f $1
112 RMDIR   = rm -fr $1
113 MKDIR   = mkdir -p $1
114 COPY    = -cp -afv $1 $2
115 #COPYR  = -cp -afr $1/* $2
116 COPYR   = -rsync -aC $1/* $2
117 TOUCH   = touch $1
118 CAT     = cat
119 ECHONL  = echo ""
120 DL      = '
121 else
122 ifeq "$(OS)" "Windows_NT"
123 DEL     = -del 2>NUL /q /f $(subst /,\,$1)
124 RMDIR   = -rd 2>NUL /q /s $(subst /,\,$1)
125 else
126 DEL     = -del 2>NUL $(subst /,\,$1)
127 RMDIR   = -deltree 2>NUL /y $(subst /,\,$1)
128 endif
129 MKDIR   = -md 2>NUL $(subst /,\,$1)
130 COPY    = -copy 2>NUL /y $(subst /,\,$1) $(subst /,\,$2)
131 COPYR   = -xcopy 2>NUL /q /y /e $(subst /,\,$1) $(subst /,\,$2)
132 TOUCH   = copy 2>&1>NUL /b $(subst /,\,$1) +,,
133 CAT     = type
134 ECHONL  = $(ComSpec) /c echo.
135 endif
136
137 ########################################################
138 ## Nothing more to do below this line!
139
140 ifeq ($(findstring -dyn,$(CFG)),-dyn)
141 DYN = 1
142 endif
143 ifeq ($(findstring -ares,$(CFG)),-ares)
144 ARES = 1
145 endif
146 ifeq ($(findstring -sync,$(CFG)),-sync)
147 SYNC = 1
148 endif
149 ifeq ($(findstring -rtmp,$(CFG)),-rtmp)
150 RTMP = 1
151 SSL = 1
152 ZLIB = 1
153 endif
154 ifeq ($(findstring -ssh2,$(CFG)),-ssh2)
155 SSH2 = 1
156 ifneq ($(findstring -winssl,$(CFG)),-winssl)
157 SSL = 1
158 endif
159 ZLIB = 1
160 endif
161 ifeq ($(findstring -ssl,$(CFG)),-ssl)
162 SSL = 1
163 endif
164 ifeq ($(findstring -srp,$(CFG)),-srp)
165 SRP = 1
166 endif
167 ifeq ($(findstring -zlib,$(CFG)),-zlib)
168 ZLIB = 1
169 endif
170 ifeq ($(findstring -idn,$(CFG)),-idn)
171 IDN = 1
172 endif
173 ifeq ($(findstring -winidn,$(CFG)),-winidn)
174 WINIDN = 1
175 endif
176 ifeq ($(findstring -sspi,$(CFG)),-sspi)
177 SSPI = 1
178 endif
179 ifeq ($(findstring -ldaps,$(CFG)),-ldaps)
180 LDAPS = 1
181 endif
182 ifeq ($(findstring -ipv6,$(CFG)),-ipv6)
183 IPV6 = 1
184 endif
185 ifeq ($(findstring -winssl,$(CFG)),-winssl)
186 WINSSL = 1
187 SSPI = 1
188 endif
189 ifeq ($(findstring -nghttp2,$(CFG)),-nghttp2)
190 NGHTTP2 = 1
191 endif
192
193 INCLUDES = -I. -I../include
194 CFLAGS += -DBUILDING_LIBCURL
195
196 ifdef SYNC
197   CFLAGS += -DUSE_SYNC_DNS
198 else
199   ifdef ARES
200     INCLUDES += -I"$(LIBCARES_PATH)"
201     CFLAGS += -DUSE_ARES -DCARES_STATICLIB
202     DLL_LIBS += -L"$(LIBCARES_PATH)" -lcares
203     libcurl_dll_DEPENDENCIES = $(LIBCARES_PATH)/libcares.a
204   endif
205 endif
206 ifdef RTMP
207   INCLUDES += -I"$(LIBRTMP_PATH)"
208   CFLAGS += -DUSE_LIBRTMP
209   DLL_LIBS += -L"$(LIBRTMP_PATH)/librtmp" -lrtmp -lwinmm
210 endif
211 ifdef NGHTTP2
212   INCLUDES += -I"$(NGHTTP2_PATH)/include"
213   CFLAGS += -DUSE_NGHTTP2
214   DLL_LIBS += -L"$(NGHTTP2_PATH)/lib" -lnghttp2
215 endif
216 ifdef SSH2
217   INCLUDES += -I"$(LIBSSH2_PATH)/include" -I"$(LIBSSH2_PATH)/win32"
218   CFLAGS += -DUSE_LIBSSH2 -DHAVE_LIBSSH2_H
219   DLL_LIBS += -L"$(LIBSSH2_PATH)/win32" -lssh2
220   ifdef WINSSL
221     ifndef DYN
222       DLL_LIBS += -lbcrypt -lcrypt32
223     endif
224   endif
225 endif
226 ifdef SSL
227   ifndef OPENSSL_INCLUDE
228     ifeq "$(wildcard $(OPENSSL_PATH)/outinc)" "$(OPENSSL_PATH)/outinc"
229       OPENSSL_INCLUDE = $(OPENSSL_PATH)/outinc
230     endif
231     ifeq "$(wildcard $(OPENSSL_PATH)/include)" "$(OPENSSL_PATH)/include"
232       OPENSSL_INCLUDE = $(OPENSSL_PATH)/include
233     endif
234   endif
235   ifneq "$(wildcard $(OPENSSL_INCLUDE)/openssl/opensslv.h)" "$(OPENSSL_INCLUDE)/openssl/opensslv.h"
236   $(error Invalid path to OpenSSL package: $(OPENSSL_PATH))
237   endif
238   ifndef OPENSSL_LIBPATH
239     ifeq "$(wildcard $(OPENSSL_PATH)/out)" "$(OPENSSL_PATH)/out"
240       OPENSSL_LIBPATH = $(OPENSSL_PATH)/out
241       OPENSSL_LIBS = -leay32 -lssl32
242     endif
243     ifeq "$(wildcard $(OPENSSL_PATH)/lib)" "$(OPENSSL_PATH)/lib"
244       OPENSSL_LIBPATH = $(OPENSSL_PATH)/lib
245       OPENSSL_LIBS = -lcrypto -lssl
246     endif
247   endif
248   ifndef DYN
249     OPENSSL_LIBS += -lgdi32 -lcrypt32
250   endif
251   INCLUDES += -I"$(OPENSSL_INCLUDE)"
252   CFLAGS += -DUSE_OPENSSL -DHAVE_OPENSSL_ENGINE_H -DHAVE_OPENSSL_PKCS12_H \
253             -DHAVE_ENGINE_LOAD_BUILTIN_ENGINES -DOPENSSL_NO_KRB5 \
254             -DCURL_WANTS_CA_BUNDLE_ENV
255   DLL_LIBS += -L"$(OPENSSL_LIBPATH)" $(OPENSSL_LIBS)
256   ifdef SRP
257     ifeq "$(wildcard $(OPENSSL_INCLUDE)/openssl/srp.h)" "$(OPENSSL_INCLUDE)/openssl/srp.h"
258       CFLAGS += -DHAVE_OPENSSL_SRP -DUSE_TLS_SRP
259     endif
260   endif
261 endif
262 ifdef ZLIB
263   INCLUDES += -I"$(ZLIB_PATH)"
264   CFLAGS += -DHAVE_LIBZ -DHAVE_ZLIB_H
265   DLL_LIBS += -L"$(ZLIB_PATH)" -lz
266 endif
267 ifdef IDN
268   INCLUDES += -I"$(LIBIDN_PATH)/include"
269   CFLAGS += -DUSE_LIBIDN
270   DLL_LIBS += -L"$(LIBIDN_PATH)/lib" -lidn
271 else
272 ifdef WINIDN
273   CFLAGS += -DUSE_WIN32_IDN
274   CFLAGS += -DWANT_IDN_PROTOTYPES
275   DLL_LIBS += -L"$(WINIDN_PATH)" -lnormaliz
276 endif
277 endif
278 ifdef SSPI
279   CFLAGS += -DUSE_WINDOWS_SSPI
280   ifdef WINSSL
281     CFLAGS += -DUSE_SCHANNEL
282   endif
283 endif
284 ifdef SPNEGO
285   CFLAGS += -DHAVE_SPNEGO
286 endif
287 ifdef IPV6
288   CFLAGS += -DENABLE_IPV6 -D_WIN32_WINNT=0x0501
289 endif
290 ifdef LDAPS
291   CFLAGS += -DHAVE_LDAP_SSL
292 endif
293 ifdef USE_LDAP_NOVELL
294   INCLUDES += -I"$(LDAP_SDK)/inc"
295   CFLAGS += -DCURL_HAS_NOVELL_LDAPSDK
296   DLL_LIBS += -L"$(LDAP_SDK)/lib/mscvc" -lldapsdk -lldapssl -lldapx
297 endif
298 ifdef USE_LDAP_OPENLDAP
299   INCLUDES += -I"$(LDAP_SDK)/include"
300   CFLAGS += -DCURL_HAS_OPENLDAP_LDAPSDK
301   DLL_LIBS += -L"$(LDAP_SDK)/lib" -lldap -llber
302 endif
303 ifndef USE_LDAP_NOVELL
304 ifndef USE_LDAP_OPENLDAP
305   DLL_LIBS += -lwldap32
306 endif
307 endif
308 DLL_LIBS += -lws2_32
309
310 # Makefile.inc provides the CSOURCES and HHEADERS defines
311 include Makefile.inc
312
313 libcurl_dll_LIBRARY = libcurl.dll
314 libcurl_dll_a_LIBRARY = libcurldll.a
315 libcurl_a_LIBRARY = libcurl.a
316
317 libcurl_a_OBJECTS := $(patsubst %.c,%.o,$(strip $(CSOURCES)))
318 libcurl_a_DEPENDENCIES := $(strip $(CSOURCES) $(HHEADERS))
319
320 RESOURCE = libcurl.res
321
322
323 all: $(libcurl_a_LIBRARY) $(libcurl_dll_LIBRARY)
324
325 $(libcurl_a_LIBRARY): $(libcurl_a_OBJECTS) $(libcurl_a_DEPENDENCIES)
326         @$(call DEL, $@)
327         $(AR) cru $@ $(libcurl_a_OBJECTS)
328         $(RANLIB) $@
329         $(STRIP) $@
330
331 # remove the last line above to keep debug info
332
333 $(libcurl_dll_LIBRARY): $(libcurl_a_OBJECTS) $(RESOURCE) $(libcurl_dll_DEPENDENCIES)
334         @$(call DEL, $@)
335         $(CC) $(LDFLAGS) -shared -o $@ \
336           -Wl,--output-def,$(@:.dll=.def),--out-implib,$(libcurl_dll_a_LIBRARY) \
337           $(libcurl_a_OBJECTS) $(RESOURCE) $(DLL_LIBS)
338
339 %.o: %.c $(PROOT)/include/curl/curlbuild.h
340         $(CC) $(INCLUDES) $(CFLAGS) -c $< -o $@
341
342 %.res: %.rc
343         $(RC) $(RCFLAGS) -i $< -o $@
344
345 clean:
346 ifeq "$(wildcard $(PROOT)/include/curl/curlbuild.h.dist)" "$(PROOT)/include/curl/curlbuild.h.dist"
347         @$(call DEL, $(PROOT)/include/curl/curlbuild.h)
348 endif
349         @$(call DEL, $(libcurl_a_OBJECTS) $(RESOURCE))
350
351 distclean vclean: clean
352         @$(call DEL, $(libcurl_a_LIBRARY) $(libcurl_dll_LIBRARY) $(libcurl_dll_LIBRARY:.dll=.def) $(libcurl_dll_a_LIBRARY))
353
354 $(PROOT)/include/curl/curlbuild.h:
355         @echo Creating $@
356         @$(call COPY, $@.dist, $@)
357
358 $(LIBCARES_PATH)/libcares.a:
359         $(MAKE) -C $(LIBCARES_PATH) -f Makefile.m32