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