1#***************************************************************************
2#                                  _   _ ____  _
3#  Project                     ___| | | |  _ \| |
4#                             / __| | | | |_) | |
5#                            | (__| |_| |  _ <| |___
6#                             \___|\___/|_| \_\_____|
7#
8# Copyright (C) 1998 - 2011, 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 http://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## Makefile for building curl examples with MingW (GCC-3.2 or later)
24## and optionally OpenSSL (0.9.8), libssh2 (1.3), zlib (1.2.5), librtmp (2.3)
25##
26## Usage:   mingw32-make -f Makefile.m32 CFG=-feature1[-feature2][-feature3][...]
27## Example: mingw32-make -f Makefile.m32 CFG=-zlib-ssl-spi-winidn
28##
29## Hint: you can also set environment vars to control the build, f.e.:
30## set ZLIB_PATH=c:/zlib-1.2.5
31## set ZLIB=1
32#
33###########################################################################
34
35# Edit the path below to point to the base of your Zlib sources.
36ifndef ZLIB_PATH
37ZLIB_PATH = ../../../zlib-1.2.5
38endif
39# Edit the path below to point to the base of your OpenSSL package.
40ifndef OPENSSL_PATH
41OPENSSL_PATH = ../../../openssl-0.9.8r
42endif
43ifndef OPENSSL_LIBPATH
44OPENSSL_LIBPATH = $(OPENSSL_PATH)/out
45endif
46ifndef OPENSSL_LIBS
47OPENSSL_LIBS = -leay32 -lssl32
48endif
49# Edit the path below to point to the base of your LibSSH2 package.
50ifndef LIBSSH2_PATH
51LIBSSH2_PATH = ../../../libssh2-1.3.0
52endif
53# Edit the path below to point to the base of your librtmp package.
54ifndef LIBRTMP_PATH
55LIBRTMP_PATH = ../../../librtmp-2.3
56endif
57# Edit the path below to point to the base of your libidn package.
58ifndef LIBIDN_PATH
59LIBIDN_PATH = ../../../libidn-1.18
60endif
61# Edit the path below to point to the base of your MS idndlpackage. 
62# Microsoft Internationalized Domain Names (IDN) Mitigation APIs 1.1
63# http://www.microsoft.com/downloads/en/details.aspx?FamilyID=ad6158d7-ddba-416a-9109-07607425a815
64ifndef WINIDN_PATH
65WINIDN_PATH = ../../../Microsoft IDN Mitigation APIs
66endif
67# Edit the path below to point to the base of your Novell LDAP NDK.
68ifndef LDAP_SDK
69LDAP_SDK = c:/novell/ndk/cldapsdk/win32
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
79# Edit the var below to set to your architecture or set environment var.
80ifndef ARCH
81ARCH = w32
82endif
83
84CC = gcc
85CFLAGS = -g -O2 -Wall
86CFLAGS += -fno-strict-aliasing
87ifeq ($(ARCH),w64)
88CFLAGS += -D_AMD64_
89endif
90# comment LDFLAGS below to keep debug info
91LDFLAGS = -s
92RC = windres
93RCFLAGS = --include-dir=$(PROOT)/include -O COFF -i
94
95RM = del /q /f 2>NUL
96CP = copy
97
98########################################################
99## Nothing more to do below this line!
100
101ifeq ($(findstring -dyn,$(CFG)),-dyn)
102DYN = 1
103endif
104ifeq ($(findstring -ares,$(CFG)),-ares)
105ARES = 1
106endif
107ifeq ($(findstring -rtmp,$(CFG)),-rtmp)
108RTMP = 1
109SSL = 1
110ZLIB = 1
111endif
112ifeq ($(findstring -ssh2,$(CFG)),-ssh2)
113SSH2 = 1
114SSL = 1
115ZLIB = 1
116endif
117ifeq ($(findstring -ssl,$(CFG)),-ssl)
118SSL = 1
119endif
120ifeq ($(findstring -zlib,$(CFG)),-zlib)
121ZLIB = 1
122endif
123ifeq ($(findstring -idn,$(CFG)),-idn)
124IDN = 1
125endif
126ifeq ($(findstring -winidn,$(CFG)),-winidn)
127WINIDN = 1
128endif
129ifeq ($(findstring -sspi,$(CFG)),-sspi)
130SSPI = 1
131endif
132ifeq ($(findstring -spnego,$(CFG)),-spnego)
133SPNEGO = 1
134endif
135ifeq ($(findstring -ldaps,$(CFG)),-ldaps)
136LDAPS = 1
137endif
138ifeq ($(findstring -ipv6,$(CFG)),-ipv6)
139IPV6 = 1
140endif
141
142INCLUDES = -I. -I$(PROOT) -I$(PROOT)/include -I$(PROOT)/lib
143
144ifdef DYN
145  curl_DEPENDENCIES = $(PROOT)/lib/libcurldll.a $(PROOT)/lib/libcurl.dll
146  curl_LDADD = -L$(PROOT)/lib -lcurldll
147else
148  curl_DEPENDENCIES = $(PROOT)/lib/libcurl.a
149  curl_LDADD = -L$(PROOT)/lib -lcurl
150  CFLAGS += -DCURL_STATICLIB
151endif
152ifdef ARES
153  ifndef DYN
154    curl_DEPENDENCIES += $(LIBCARES_PATH)/libcares.a
155  endif
156  CFLAGS += -DUSE_ARES
157  curl_LDADD += -L"$(LIBCARES_PATH)" -lcares
158endif
159ifdef RTMP
160  CFLAGS += -DUSE_LIBRTMP
161  curl_LDADD += -L"$(LIBRTMP_PATH)/librtmp" -lrtmp -lwinmm
162endif
163ifdef SSH2
164  CFLAGS += -DUSE_LIBSSH2 -DHAVE_LIBSSH2_H
165  curl_LDADD += -L"$(LIBSSH2_PATH)/win32" -lssh2
166endif
167ifdef SSL
168  CFLAGS += -DUSE_SSLEAY -DHAVE_OPENSSL_ENGINE_H
169  curl_LDADD += -L"$(OPENSSL_LIBPATH)" $(OPENSSL_LIBS)
170endif
171ifdef ZLIB
172  INCLUDES += -I"$(ZLIB_PATH)"
173  CFLAGS += -DHAVE_LIBZ -DHAVE_ZLIB_H
174  curl_LDADD += -L"$(ZLIB_PATH)" -lz
175endif
176ifdef IDN
177  CFLAGS += -DUSE_LIBIDN
178  curl_LDADD += -L"$(LIBIDN_PATH)/lib" -lidn
179else
180ifdef WINIDN
181  CFLAGS += -DUSE_WIN32_IDN
182  curl_LDADD += -L"$(WINIDN_PATH)" -lnormaliz
183endif
184endif
185ifdef SSPI
186  CFLAGS += -DUSE_WINDOWS_SSPI
187endif
188ifdef SPNEGO
189  CFLAGS += -DHAVE_SPNEGO
190endif
191ifdef IPV6
192  CFLAGS += -DENABLE_IPV6 -D_WIN32_WINNT=0x0501
193endif
194ifdef LDAPS
195  CFLAGS += -DHAVE_LDAP_SSL
196endif
197ifdef USE_LDAP_NOVELL
198  CFLAGS += -DCURL_HAS_NOVELL_LDAPSDK
199  curl_LDADD += -L"$(LDAP_SDK)/lib/mscvc" -lldapsdk -lldapssl -lldapx
200endif
201ifdef USE_LDAP_OPENLDAP
202  CFLAGS += -DCURL_HAS_OPENLDAP_LDAPSDK
203  curl_LDADD += -L"$(LDAP_SDK)/lib" -lldap -llber
204endif
205ifndef USE_LDAP_NOVELL
206ifndef USE_LDAP_OPENLDAP
207  curl_LDADD += -lwldap32
208endif
209endif
210curl_LDADD += -lws2_32
211
212# Makefile.inc provides the check_PROGRAMS and COMPLICATED_EXAMPLES defines
213include Makefile.inc
214
215check_PROGRAMS := $(patsubst %,%.exe,$(strip $(check_PROGRAMS)))
216check_PROGRAMS += ftpuploadresume.exe synctime.exe
217
218
219all: $(check_PROGRAMS)
220
221%.exe: %.o $(curl_DEPENDENCIES)
222	$(CC) $(LDFLAGS) -o $@ $< $(curl_LDADD)
223
224%.o: %.c
225	$(CC) $(INCLUDES) $(CFLAGS) -c $<
226
227%.res: %.rc
228	$(RC) $(RCFLAGS) $< -o $@
229
230clean:
231	-$(RM) $(check_PROGRAMS:.exe=.o)
232
233distclean vclean: clean
234	-$(RM) $(check_PROGRAMS)
235
236