• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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.
38ifndef ZLIB_PATH
39ZLIB_PATH = ../../zlib-1.2.8
40endif
41# Edit the path below to point to the base of your OpenSSL package.
42ifndef OPENSSL_PATH
43OPENSSL_PATH = ../../openssl-1.0.2a
44endif
45# Edit the path below to point to the base of your LibSSH2 package.
46ifndef LIBSSH2_PATH
47LIBSSH2_PATH = ../../libssh2-1.5.0
48endif
49# Edit the path below to point to the base of your librtmp package.
50ifndef LIBRTMP_PATH
51LIBRTMP_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
62endif
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
67# 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 = ..
73
74# Edit the path below to point to the base of your c-ares package.
75ifndef LIBCARES_PATH
76LIBCARES_PATH = $(PROOT)/ares
77endif
78
79CC	= $(CROSSPREFIX)gcc
80CFLAGS	= $(CURL_CFLAG_EXTRAS) -g -O2 -Wall
81CFLAGS	+= -fno-strict-aliasing
82# comment LDFLAGS below to keep debug info
83LDFLAGS	= $(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
136
137########################################################
138## Nothing more to do below this line!
139
140ifeq ($(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
193INCLUDES = -I. -I../include
194CFLAGS += -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
205endif
206ifdef RTMP
207  INCLUDES += -I"$(LIBRTMP_PATH)"
208  CFLAGS += -DUSE_LIBRTMP
209  DLL_LIBS += -L"$(LIBRTMP_PATH)/librtmp" -lrtmp -lwinmm
210endif
211ifdef NGHTTP2
212  INCLUDES += -I"$(NGHTTP2_PATH)/include"
213  CFLAGS += -DUSE_NGHTTP2
214  DLL_LIBS += -L"$(NGHTTP2_PATH)/lib" -lnghttp2
215endif
216ifdef 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
225endif
226ifdef 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
261else
262ifdef WINSSL
263  DLL_LIBS += -lcrypt32
264endif
265endif
266ifdef ZLIB
267  INCLUDES += -I"$(ZLIB_PATH)"
268  CFLAGS += -DHAVE_LIBZ -DHAVE_ZLIB_H
269  DLL_LIBS += -L"$(ZLIB_PATH)" -lz
270endif
271ifdef IDN
272  INCLUDES += -I"$(LIBIDN_PATH)/include"
273  CFLAGS += -DUSE_LIBIDN
274  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
281endif
282ifdef SSPI
283  CFLAGS += -DUSE_WINDOWS_SSPI
284  ifdef WINSSL
285    CFLAGS += -DUSE_SCHANNEL
286  endif
287endif
288ifdef SPNEGO
289  CFLAGS += -DHAVE_SPNEGO
290endif
291ifdef IPV6
292  CFLAGS += -DENABLE_IPV6 -D_WIN32_WINNT=0x0501
293endif
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
309  DLL_LIBS += -lwldap32
310endif
311endif
312DLL_LIBS += -lws2_32
313
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
326
327all: $(libcurl_a_LIBRARY) $(libcurl_dll_LIBRARY)
328
329$(libcurl_a_LIBRARY): $(libcurl_a_OBJECTS) $(libcurl_a_DEPENDENCIES)
330	@$(call DEL, $@)
331	$(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)
338	@$(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)
342
343%.o: %.c $(PROOT)/include/curl/curlbuild.h
344	$(CC) $(INCLUDES) $(CFLAGS) -c $< -o $@
345
346%.res: %.rc
347	$(RC) $(RCFLAGS) -i $< -o $@
348
349clean:
350ifeq "$(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))
354
355distclean vclean: clean
356	@$(call DEL, $(libcurl_a_LIBRARY) $(libcurl_dll_LIBRARY) $(libcurl_dll_LIBRARY:.dll=.def) $(libcurl_dll_a_LIBRARY))
357
358$(PROOT)/include/curl/curlbuild.h:
359	@echo Creating $@
360	@$(call COPY, $@.dist, $@)
361
362$(LIBCARES_PATH)/libcares.a:
363	$(MAKE) -C $(LIBCARES_PATH) -f Makefile.m32
364