blob: 522dbd1df747e9652011642f3e4da2d6624d35fb [file] [log] [blame]
Dirk Vogta7d7f962016-12-01 10:50:48 +01001#***************************************************************************
2# _ _ ____ _
3# Project ___| | | | _ \| |
4# / __| | | | |_) | |
5# | (__| |_| | _ <| |___
6# \___|\___/|_| \_\_____|
9487f7f2011-08-03 07:05:30 -07007#
Dirk Vogta7d7f962016-12-01 10:50:48 +01008# 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)
9487f7f2011-08-03 07:05:30 -070027##
Dirk Vogta7d7f962016-12-01 10:50:48 +010028## Usage: mingw32-make -f Makefile.m32 CFG=-feature1[-feature2][-feature3][...]
29## Example: mingw32-make -f Makefile.m32 CFG=-zlib-ssl-sspi-winidn
9487f7f2011-08-03 07:05:30 -070030##
31## Hint: you can also set environment vars to control the build, f.e.:
Dirk Vogta7d7f962016-12-01 10:50:48 +010032## set ZLIB_PATH=c:/zlib-1.2.8
9487f7f2011-08-03 07:05:30 -070033## set ZLIB=1
Dirk Vogta7d7f962016-12-01 10:50:48 +010034#
35###########################################################################
9487f7f2011-08-03 07:05:30 -070036
37# Edit the path below to point to the base of your Zlib sources.
38ifndef ZLIB_PATH
Dirk Vogta7d7f962016-12-01 10:50:48 +010039ZLIB_PATH = ../../zlib-1.2.8
9487f7f2011-08-03 07:05:30 -070040endif
41# Edit the path below to point to the base of your OpenSSL package.
42ifndef OPENSSL_PATH
Dirk Vogta7d7f962016-12-01 10:50:48 +010043OPENSSL_PATH = ../../openssl-1.0.2a
9487f7f2011-08-03 07:05:30 -070044endif
45# Edit the path below to point to the base of your LibSSH2 package.
46ifndef LIBSSH2_PATH
Dirk Vogta7d7f962016-12-01 10:50:48 +010047LIBSSH2_PATH = ../../libssh2-1.5.0
9487f7f2011-08-03 07:05:30 -070048endif
49# Edit the path below to point to the base of your librtmp package.
50ifndef LIBRTMP_PATH
Dirk Vogta7d7f962016-12-01 10:50:48 +010051LIBRTMP_PATH = ../../librtmp-2.4
52endif
53# Edit the path below to point to the base of your libidn package.
54ifndef LIBIDN_PATH
55LIBIDN_PATH = ../../libidn-1.32
56endif
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
60ifndef WINIDN_PATH
61WINIDN_PATH = ../../Microsoft IDN Mitigation APIs
9487f7f2011-08-03 07:05:30 -070062endif
63# Edit the path below to point to the base of your Novell LDAP NDK.
64ifndef LDAP_SDK
65LDAP_SDK = c:/novell/ndk/cldapsdk/win32
66endif
Dirk Vogta7d7f962016-12-01 10:50:48 +010067# Edit the path below to point to the base of your nghttp2 package.
68ifndef NGHTTP2_PATH
69NGHTTP2_PATH = ../../nghttp2-1.0.0
70endif
71
72PROOT = ..
9487f7f2011-08-03 07:05:30 -070073
74# Edit the path below to point to the base of your c-ares package.
75ifndef LIBCARES_PATH
Dirk Vogta7d7f962016-12-01 10:50:48 +010076LIBCARES_PATH = $(PROOT)/ares
9487f7f2011-08-03 07:05:30 -070077endif
78
Dirk Vogta7d7f962016-12-01 10:50:48 +010079CC = $(CROSSPREFIX)gcc
80CFLAGS = $(CURL_CFLAG_EXTRAS) -g -O2 -Wall
81CFLAGS += -fno-strict-aliasing
9487f7f2011-08-03 07:05:30 -070082# comment LDFLAGS below to keep debug info
Dirk Vogta7d7f962016-12-01 10:50:48 +010083LDFLAGS = $(CURL_LDFLAG_EXTRAS) $(CURL_LDFLAG_EXTRAS_DLL) -s
84AR = $(CROSSPREFIX)ar
85RANLIB = $(CROSSPREFIX)ranlib
86RC = $(CROSSPREFIX)windres
87RCFLAGS = --include-dir=$(PROOT)/include -DDEBUGBUILD=0 -O COFF
88STRIP = $(CROSSPREFIX)strip -g
89
90# Set environment var ARCH to your architecture to override autodetection.
91ifndef ARCH
92ifeq ($(findstring x86_64,$(shell $(CC) -dumpmachine)),x86_64)
93ARCH = w64
94else
95ARCH = w32
96endif
97endif
98
99ifeq ($(ARCH),w64)
100CFLAGS += -m64 -D_AMD64_
101LDFLAGS += -m64
102RCFLAGS += -F pe-x86-64
103else
104CFLAGS += -m32
105LDFLAGS += -m32
106RCFLAGS += -F pe-i386
107endif
108
109# Platform-dependent helper tool macros
110ifeq ($(findstring /sh,$(SHELL)),/sh)
111DEL = rm -f $1
112RMDIR = rm -fr $1
113MKDIR = mkdir -p $1
114COPY = -cp -afv $1 $2
115#COPYR = -cp -afr $1/* $2
116COPYR = -rsync -aC $1/* $2
117TOUCH = touch $1
118CAT = cat
119ECHONL = echo ""
120DL = '
121else
122ifeq "$(OS)" "Windows_NT"
123DEL = -del 2>NUL /q /f $(subst /,\,$1)
124RMDIR = -rd 2>NUL /q /s $(subst /,\,$1)
125else
126DEL = -del 2>NUL $(subst /,\,$1)
127RMDIR = -deltree 2>NUL /y $(subst /,\,$1)
128endif
129MKDIR = -md 2>NUL $(subst /,\,$1)
130COPY = -copy 2>NUL /y $(subst /,\,$1) $(subst /,\,$2)
131COPYR = -xcopy 2>NUL /q /y /e $(subst /,\,$1) $(subst /,\,$2)
132TOUCH = copy 2>&1>NUL /b $(subst /,\,$1) +,,
133CAT = type
134ECHONL = $(ComSpec) /c echo.
135endif
9487f7f2011-08-03 07:05:30 -0700136
137########################################################
138## Nothing more to do below this line!
139
Dirk Vogta7d7f962016-12-01 10:50:48 +0100140ifeq ($(findstring -dyn,$(CFG)),-dyn)
141DYN = 1
142endif
143ifeq ($(findstring -ares,$(CFG)),-ares)
144ARES = 1
145endif
146ifeq ($(findstring -sync,$(CFG)),-sync)
147SYNC = 1
148endif
149ifeq ($(findstring -rtmp,$(CFG)),-rtmp)
150RTMP = 1
151SSL = 1
152ZLIB = 1
153endif
154ifeq ($(findstring -ssh2,$(CFG)),-ssh2)
155SSH2 = 1
156ifneq ($(findstring -winssl,$(CFG)),-winssl)
157SSL = 1
158endif
159ZLIB = 1
160endif
161ifeq ($(findstring -ssl,$(CFG)),-ssl)
162SSL = 1
163endif
164ifeq ($(findstring -srp,$(CFG)),-srp)
165SRP = 1
166endif
167ifeq ($(findstring -zlib,$(CFG)),-zlib)
168ZLIB = 1
169endif
170ifeq ($(findstring -idn,$(CFG)),-idn)
171IDN = 1
172endif
173ifeq ($(findstring -winidn,$(CFG)),-winidn)
174WINIDN = 1
175endif
176ifeq ($(findstring -sspi,$(CFG)),-sspi)
177SSPI = 1
178endif
179ifeq ($(findstring -ldaps,$(CFG)),-ldaps)
180LDAPS = 1
181endif
182ifeq ($(findstring -ipv6,$(CFG)),-ipv6)
183IPV6 = 1
184endif
185ifeq ($(findstring -winssl,$(CFG)),-winssl)
186WINSSL = 1
187SSPI = 1
188endif
189ifeq ($(findstring -nghttp2,$(CFG)),-nghttp2)
190NGHTTP2 = 1
191endif
192
9487f7f2011-08-03 07:05:30 -0700193INCLUDES = -I. -I../include
Dirk Vogta7d7f962016-12-01 10:50:48 +0100194CFLAGS += -DBUILDING_LIBCURL
195
196ifdef SYNC
197 CFLAGS += -DUSE_SYNC_DNS
198else
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
9487f7f2011-08-03 07:05:30 -0700205endif
206ifdef RTMP
207 INCLUDES += -I"$(LIBRTMP_PATH)"
208 CFLAGS += -DUSE_LIBRTMP
209 DLL_LIBS += -L"$(LIBRTMP_PATH)/librtmp" -lrtmp -lwinmm
210endif
Dirk Vogta7d7f962016-12-01 10:50:48 +0100211ifdef NGHTTP2
212 INCLUDES += -I"$(NGHTTP2_PATH)/include"
213 CFLAGS += -DUSE_NGHTTP2
214 DLL_LIBS += -L"$(NGHTTP2_PATH)/lib" -lnghttp2
215endif
9487f7f2011-08-03 07:05:30 -0700216ifdef SSH2
217 INCLUDES += -I"$(LIBSSH2_PATH)/include" -I"$(LIBSSH2_PATH)/win32"
218 CFLAGS += -DUSE_LIBSSH2 -DHAVE_LIBSSH2_H
Dirk Vogta7d7f962016-12-01 10:50:48 +0100219 DLL_LIBS += -L"$(LIBSSH2_PATH)/win32" -lssh2
220 ifdef WINSSL
221 ifndef DYN
222 DLL_LIBS += -lbcrypt -lcrypt32
223 endif
224 endif
9487f7f2011-08-03 07:05:30 -0700225endif
226ifdef SSL
Dirk Vogta7d7f962016-12-01 10:50:48 +0100227 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 \
9487f7f2011-08-03 07:05:30 -0700253 -DHAVE_ENGINE_LOAD_BUILTIN_ENGINES -DOPENSSL_NO_KRB5 \
254 -DCURL_WANTS_CA_BUNDLE_ENV
Dirk Vogta7d7f962016-12-01 10:50:48 +0100255 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
261else
262ifdef WINSSL
263 DLL_LIBS += -lcrypt32
264endif
9487f7f2011-08-03 07:05:30 -0700265endif
266ifdef ZLIB
267 INCLUDES += -I"$(ZLIB_PATH)"
268 CFLAGS += -DHAVE_LIBZ -DHAVE_ZLIB_H
Dirk Vogta7d7f962016-12-01 10:50:48 +0100269 DLL_LIBS += -L"$(ZLIB_PATH)" -lz
9487f7f2011-08-03 07:05:30 -0700270endif
271ifdef IDN
272 INCLUDES += -I"$(LIBIDN_PATH)/include"
273 CFLAGS += -DUSE_LIBIDN
Dirk Vogta7d7f962016-12-01 10:50:48 +0100274 DLL_LIBS += -L"$(LIBIDN_PATH)/lib" -lidn
275else
276ifdef WINIDN
277 CFLAGS += -DUSE_WIN32_IDN
278 CFLAGS += -DWANT_IDN_PROTOTYPES
279 DLL_LIBS += -L"$(WINIDN_PATH)" -lnormaliz
280endif
9487f7f2011-08-03 07:05:30 -0700281endif
282ifdef SSPI
283 CFLAGS += -DUSE_WINDOWS_SSPI
Dirk Vogta7d7f962016-12-01 10:50:48 +0100284 ifdef WINSSL
285 CFLAGS += -DUSE_SCHANNEL
286 endif
287endif
288ifdef SPNEGO
289 CFLAGS += -DHAVE_SPNEGO
9487f7f2011-08-03 07:05:30 -0700290endif
291ifdef IPV6
Dirk Vogta7d7f962016-12-01 10:50:48 +0100292 CFLAGS += -DENABLE_IPV6 -D_WIN32_WINNT=0x0501
9487f7f2011-08-03 07:05:30 -0700293endif
294ifdef LDAPS
295 CFLAGS += -DHAVE_LDAP_SSL
296endif
297ifdef USE_LDAP_NOVELL
298 INCLUDES += -I"$(LDAP_SDK)/inc"
299 CFLAGS += -DCURL_HAS_NOVELL_LDAPSDK
300 DLL_LIBS += -L"$(LDAP_SDK)/lib/mscvc" -lldapsdk -lldapssl -lldapx
301endif
302ifdef USE_LDAP_OPENLDAP
303 INCLUDES += -I"$(LDAP_SDK)/include"
304 CFLAGS += -DCURL_HAS_OPENLDAP_LDAPSDK
305 DLL_LIBS += -L"$(LDAP_SDK)/lib" -lldap -llber
306endif
307ifndef USE_LDAP_NOVELL
308ifndef USE_LDAP_OPENLDAP
Dirk Vogta7d7f962016-12-01 10:50:48 +0100309 DLL_LIBS += -lwldap32
9487f7f2011-08-03 07:05:30 -0700310endif
311endif
312DLL_LIBS += -lws2_32
9487f7f2011-08-03 07:05:30 -0700313
314# Makefile.inc provides the CSOURCES and HHEADERS defines
315include Makefile.inc
316
317libcurl_dll_LIBRARY = libcurl.dll
318libcurl_dll_a_LIBRARY = libcurldll.a
319libcurl_a_LIBRARY = libcurl.a
320
321libcurl_a_OBJECTS := $(patsubst %.c,%.o,$(strip $(CSOURCES)))
322libcurl_a_DEPENDENCIES := $(strip $(CSOURCES) $(HHEADERS))
323
324RESOURCE = libcurl.res
325
9487f7f2011-08-03 07:05:30 -0700326
327all: $(libcurl_a_LIBRARY) $(libcurl_dll_LIBRARY)
328
329$(libcurl_a_LIBRARY): $(libcurl_a_OBJECTS) $(libcurl_a_DEPENDENCIES)
Dirk Vogta7d7f962016-12-01 10:50:48 +0100330 @$(call DEL, $@)
9487f7f2011-08-03 07:05:30 -0700331 $(AR) cru $@ $(libcurl_a_OBJECTS)
332 $(RANLIB) $@
333 $(STRIP) $@
334
335# remove the last line above to keep debug info
336
337$(libcurl_dll_LIBRARY): $(libcurl_a_OBJECTS) $(RESOURCE) $(libcurl_dll_DEPENDENCIES)
Dirk Vogta7d7f962016-12-01 10:50:48 +0100338 @$(call DEL, $@)
339 $(CC) $(LDFLAGS) -shared -o $@ \
340 -Wl,--output-def,$(@:.dll=.def),--out-implib,$(libcurl_dll_a_LIBRARY) \
341 $(libcurl_a_OBJECTS) $(RESOURCE) $(DLL_LIBS)
9487f7f2011-08-03 07:05:30 -0700342
Dirk Vogta7d7f962016-12-01 10:50:48 +0100343%.o: %.c $(PROOT)/include/curl/curlbuild.h
344 $(CC) $(INCLUDES) $(CFLAGS) -c $< -o $@
9487f7f2011-08-03 07:05:30 -0700345
Dirk Vogta7d7f962016-12-01 10:50:48 +0100346%.res: %.rc
347 $(RC) $(RCFLAGS) -i $< -o $@
9487f7f2011-08-03 07:05:30 -0700348
349clean:
Dirk Vogta7d7f962016-12-01 10:50:48 +0100350ifeq "$(wildcard $(PROOT)/include/curl/curlbuild.h.dist)" "$(PROOT)/include/curl/curlbuild.h.dist"
351 @$(call DEL, $(PROOT)/include/curl/curlbuild.h)
352endif
353 @$(call DEL, $(libcurl_a_OBJECTS) $(RESOURCE))
9487f7f2011-08-03 07:05:30 -0700354
355distclean vclean: clean
Dirk Vogta7d7f962016-12-01 10:50:48 +0100356 @$(call DEL, $(libcurl_a_LIBRARY) $(libcurl_dll_LIBRARY) $(libcurl_dll_LIBRARY:.dll=.def) $(libcurl_dll_a_LIBRARY))
9487f7f2011-08-03 07:05:30 -0700357
Dirk Vogta7d7f962016-12-01 10:50:48 +0100358$(PROOT)/include/curl/curlbuild.h:
359 @echo Creating $@
360 @$(call COPY, $@.dist, $@)
9487f7f2011-08-03 07:05:30 -0700361
362$(LIBCARES_PATH)/libcares.a:
363 $(MAKE) -C $(LIBCARES_PATH) -f Makefile.m32