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