2015-08-30 06:51:55 -04:00
|
|
|
#***************************************************************************
|
|
|
|
# _ _ ____ _
|
|
|
|
# Project ___| | | | _ \| |
|
|
|
|
# / __| | | | |_) | |
|
|
|
|
# | (__| |_| | _ <| |___
|
|
|
|
# \___|\___/|_| \_\_____|
|
|
|
|
#
|
2021-03-27 07:52:25 -04:00
|
|
|
# Copyright (C) 1999 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2015-08-30 06:51:55 -04:00
|
|
|
#
|
|
|
|
# This software is licensed as described in the file COPYING, which
|
|
|
|
# you should have received as part of this distribution. The terms
|
2020-11-04 08:02:01 -05:00
|
|
|
# are also available at https://curl.se/docs/copyright.html.
|
2015-08-30 06:51:55 -04:00
|
|
|
#
|
|
|
|
# You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
# copies of the Software, and permit persons to whom the Software is
|
|
|
|
# furnished to do so, under the terms of the COPYING file.
|
|
|
|
#
|
|
|
|
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
# KIND, either express or implied.
|
|
|
|
#
|
|
|
|
#***************************************************************************
|
|
|
|
|
2011-09-20 09:05:28 -04:00
|
|
|
###########################################################################
|
2002-10-28 14:39:58 -05:00
|
|
|
#
|
2017-10-15 15:42:32 -04:00
|
|
|
## Makefile for building curl.exe with MingW (GCC-3.2 or later or LLVM/Clang)
|
2017-11-05 09:32:43 -05:00
|
|
|
## and optionally OpenSSL (1.0.2a), libssh2 (1.5), zlib (1.2.8), librtmp (2.4),
|
2020-05-25 11:49:46 -04:00
|
|
|
## brotli (1.0.1), zstd (1.4.5)
|
2002-10-28 14:39:58 -05:00
|
|
|
##
|
2011-04-19 14:59:24 -04:00
|
|
|
## Usage: mingw32-make -f Makefile.m32 CFG=-feature1[-feature2][-feature3][...]
|
2016-02-20 14:21:48 -05:00
|
|
|
## Example: mingw32-make -f Makefile.m32 CFG=-zlib-ssl-sspi-winidn
|
2002-10-28 14:39:58 -05:00
|
|
|
##
|
2007-08-20 12:21:51 -04:00
|
|
|
## Hint: you can also set environment vars to control the build, f.e.:
|
2013-05-11 11:08:00 -04:00
|
|
|
## set ZLIB_PATH=c:/zlib-1.2.8
|
2007-08-20 12:21:51 -04:00
|
|
|
## set ZLIB=1
|
2011-09-20 09:05:28 -04:00
|
|
|
#
|
|
|
|
###########################################################################
|
2002-10-28 14:39:58 -05:00
|
|
|
|
2007-08-20 12:21:51 -04:00
|
|
|
# Edit the path below to point to the base of your Zlib sources.
|
|
|
|
ifndef ZLIB_PATH
|
2013-05-11 11:08:00 -04:00
|
|
|
ZLIB_PATH = ../../zlib-1.2.8
|
2007-08-20 12:21:51 -04:00
|
|
|
endif
|
2020-05-25 11:49:46 -04:00
|
|
|
# Edit the path below to point to the base of your Zstandard sources.
|
|
|
|
ifndef ZSTD_PATH
|
|
|
|
ZSTD_PATH = ../../zstd-1.4.5
|
|
|
|
endif
|
2017-11-05 09:32:43 -05:00
|
|
|
# Edit the path below to point to the base of your Brotli sources.
|
|
|
|
ifndef BROTLI_PATH
|
|
|
|
BROTLI_PATH = ../../brotli-1.0.1
|
|
|
|
endif
|
2007-08-20 12:21:51 -04:00
|
|
|
# Edit the path below to point to the base of your OpenSSL package.
|
2004-07-05 09:25:30 -04:00
|
|
|
ifndef OPENSSL_PATH
|
2015-04-30 02:29:00 -04:00
|
|
|
OPENSSL_PATH = ../../openssl-1.0.2a
|
2007-01-25 08:14:42 -05:00
|
|
|
endif
|
2007-08-20 12:21:51 -04:00
|
|
|
# Edit the path below to point to the base of your LibSSH2 package.
|
2007-01-25 08:14:42 -05:00
|
|
|
ifndef LIBSSH2_PATH
|
2015-04-30 02:29:00 -04:00
|
|
|
LIBSSH2_PATH = ../../libssh2-1.5.0
|
2004-07-05 09:25:30 -04:00
|
|
|
endif
|
2011-04-19 11:28:28 -04:00
|
|
|
# Edit the path below to point to the base of your librtmp package.
|
|
|
|
ifndef LIBRTMP_PATH
|
2015-04-30 02:29:00 -04:00
|
|
|
LIBRTMP_PATH = ../../librtmp-2.4
|
2011-04-19 11:28:28 -04:00
|
|
|
endif
|
2012-11-08 12:41:59 -05:00
|
|
|
# Edit the path below to point to the base of your libexpat package.
|
|
|
|
ifndef LIBEXPAT_PATH
|
|
|
|
LIBEXPAT_PATH = ../../expat-2.1.0
|
|
|
|
endif
|
|
|
|
# Edit the path below to point to the base of your libxml2 package.
|
|
|
|
ifndef LIBXML2_PATH
|
2015-04-30 02:29:00 -04:00
|
|
|
LIBXML2_PATH = ../../libxml2-2.9.2
|
2012-11-08 12:41:59 -05:00
|
|
|
endif
|
2021-02-10 13:46:57 -05:00
|
|
|
# Edit the path below to point to the base of your libgsasl package.
|
|
|
|
ifndef LIBGSASL_PATH
|
|
|
|
LIBGSASL_PATH = ../../libgsasl-1.10.0
|
|
|
|
endif
|
2017-08-22 03:13:20 -04:00
|
|
|
# Edit the path below to point to the base of your libidn2 package.
|
|
|
|
ifndef LIBIDN2_PATH
|
|
|
|
LIBIDN2_PATH = ../../libidn2-2.0.3
|
2008-11-11 12:43:02 -05:00
|
|
|
endif
|
2011-12-29 21:36:18 -05:00
|
|
|
# Edit the path below to point to the base of your MS IDN package.
|
2011-04-19 11:28:28 -04:00
|
|
|
# Microsoft Internationalized Domain Names (IDN) Mitigation APIs 1.1
|
2015-04-30 02:29:00 -04:00
|
|
|
# https://www.microsoft.com/en-us/download/details.aspx?id=734
|
2011-04-19 11:28:28 -04:00
|
|
|
ifndef WINIDN_PATH
|
|
|
|
WINIDN_PATH = ../../Microsoft IDN Mitigation APIs
|
2010-10-10 18:39:24 -04:00
|
|
|
endif
|
2007-08-20 12:21:51 -04:00
|
|
|
# Edit the path below to point to the base of your Novell LDAP NDK.
|
|
|
|
ifndef LDAP_SDK
|
|
|
|
LDAP_SDK = c:/novell/ndk/cldapsdk/win32
|
2004-07-05 09:25:30 -04:00
|
|
|
endif
|
2014-10-23 22:22:04 -04:00
|
|
|
# Edit the path below to point to the base of your nghttp2 package.
|
|
|
|
ifndef NGHTTP2_PATH
|
2015-05-18 19:42:29 -04:00
|
|
|
NGHTTP2_PATH = ../../nghttp2-1.0.0
|
2014-10-23 22:22:04 -04:00
|
|
|
endif
|
2020-10-16 03:15:19 -04:00
|
|
|
# Edit the path below to point to the base of your nghttp3 package.
|
|
|
|
ifndef NGHTTP3_PATH
|
|
|
|
NGHTTP3_PATH = ../../nghttp3-1.0.0
|
|
|
|
endif
|
|
|
|
# Edit the path below to point to the base of your ngtcp2 package.
|
|
|
|
ifndef NGTCP2_PATH
|
|
|
|
NGTCP2_PATH = ../../ngtcp2-1.0.0
|
|
|
|
endif
|
2004-07-05 09:25:30 -04:00
|
|
|
|
2011-09-20 09:05:28 -04:00
|
|
|
PROOT = ..
|
|
|
|
|
2010-03-30 19:10:09 -04:00
|
|
|
# Edit the path below to point to the base of your c-ares package.
|
|
|
|
ifndef LIBCARES_PATH
|
2011-09-20 09:05:28 -04:00
|
|
|
LIBCARES_PATH = $(PROOT)/ares
|
2010-03-30 19:10:09 -04:00
|
|
|
endif
|
2007-07-04 09:45:46 -04:00
|
|
|
|
2017-10-15 15:42:32 -04:00
|
|
|
ifeq ($(CURL_CC),)
|
|
|
|
CURL_CC := $(CROSSPREFIX)gcc
|
|
|
|
endif
|
|
|
|
ifeq ($(CURL_AR),)
|
|
|
|
CURL_AR := $(CROSSPREFIX)ar
|
|
|
|
endif
|
|
|
|
|
2018-09-23 18:24:02 -04:00
|
|
|
CC = $(CURL_CC)
|
|
|
|
CFLAGS = $(CURL_CFLAG_EXTRAS) -g -O2 -Wall -W
|
|
|
|
CFLAGS += -fno-strict-aliasing
|
2007-08-03 10:30:02 -04:00
|
|
|
# comment LDFLAGS below to keep debug info
|
2018-09-23 18:24:02 -04:00
|
|
|
LDFLAGS = $(CURL_LDFLAG_EXTRAS) $(CURL_LDFLAG_EXTRAS_EXE) -s
|
|
|
|
AR = $(CURL_AR)
|
|
|
|
RC = $(CROSSPREFIX)windres
|
2020-03-14 02:51:33 -04:00
|
|
|
RCFLAGS = --include-dir=$(PROOT)/include -O coff -DCURL_EMBED_MANIFEST
|
2018-09-23 18:24:02 -04:00
|
|
|
STRIP = $(CROSSPREFIX)strip -g
|
2002-10-28 14:39:58 -05:00
|
|
|
|
|
|
|
# We may need these someday
|
|
|
|
# PERL = perl
|
|
|
|
# NROFF = nroff
|
|
|
|
|
2014-11-19 06:39:20 -05:00
|
|
|
# Set environment var ARCH to your architecture to override autodetection.
|
|
|
|
ifndef ARCH
|
2014-12-01 10:37:19 -05:00
|
|
|
ifeq ($(findstring x86_64,$(shell $(CC) -dumpmachine)),x86_64)
|
2018-09-23 18:24:02 -04:00
|
|
|
ARCH = w64
|
2014-11-19 06:39:20 -05:00
|
|
|
else
|
2018-09-23 18:24:02 -04:00
|
|
|
ARCH = w32
|
2014-11-19 06:39:20 -05:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2014-11-19 05:46:02 -05:00
|
|
|
ifeq ($(ARCH),w64)
|
2016-02-20 14:21:48 -05:00
|
|
|
CFLAGS += -m64 -D_AMD64_
|
2015-01-08 12:19:03 -05:00
|
|
|
LDFLAGS += -m64
|
2014-11-19 05:46:02 -05:00
|
|
|
RCFLAGS += -F pe-x86-64
|
|
|
|
else
|
2016-02-20 14:21:48 -05:00
|
|
|
CFLAGS += -m32
|
2015-01-08 12:19:03 -05:00
|
|
|
LDFLAGS += -m32
|
2014-11-19 05:46:02 -05:00
|
|
|
RCFLAGS += -F pe-i386
|
|
|
|
endif
|
|
|
|
|
2012-07-03 06:56:41 -04:00
|
|
|
# Platform-dependent helper tool macros
|
|
|
|
ifeq ($(findstring /sh,$(SHELL)),/sh)
|
2018-09-23 18:24:02 -04:00
|
|
|
DEL = rm -f $1
|
|
|
|
RMDIR = rm -fr $1
|
|
|
|
MKDIR = mkdir -p $1
|
|
|
|
COPY = -cp -afv $1 $2
|
|
|
|
#COPYR = -cp -afr $1/* $2
|
|
|
|
COPYR = -rsync -aC $1/* $2
|
|
|
|
TOUCH = touch $1
|
|
|
|
CAT = cat
|
|
|
|
ECHONL = echo ""
|
|
|
|
DL = '
|
2012-07-03 06:56:41 -04:00
|
|
|
else
|
|
|
|
ifeq "$(OS)" "Windows_NT"
|
2018-09-23 18:24:02 -04:00
|
|
|
DEL = -del 2>NUL /q /f $(subst /,\,$1)
|
|
|
|
RMDIR = -rd 2>NUL /q /s $(subst /,\,$1)
|
2012-07-03 06:56:41 -04:00
|
|
|
else
|
2018-09-23 18:24:02 -04:00
|
|
|
DEL = -del 2>NUL $(subst /,\,$1)
|
|
|
|
RMDIR = -deltree 2>NUL /y $(subst /,\,$1)
|
|
|
|
endif
|
|
|
|
MKDIR = -md 2>NUL $(subst /,\,$1)
|
|
|
|
COPY = -copy 2>NUL /y $(subst /,\,$1) $(subst /,\,$2)
|
|
|
|
COPYR = -xcopy 2>NUL /q /y /e $(subst /,\,$1) $(subst /,\,$2)
|
|
|
|
TOUCH = copy 2>&1>NUL /b $(subst /,\,$1) +,,
|
|
|
|
CAT = type
|
|
|
|
ECHONL = $(ComSpec) /c echo.
|
2012-07-03 06:56:41 -04:00
|
|
|
endif
|
|
|
|
|
2002-10-28 14:39:58 -05:00
|
|
|
########################################################
|
|
|
|
## Nothing more to do below this line!
|
|
|
|
|
2011-04-19 14:59:24 -04:00
|
|
|
ifeq ($(findstring -dyn,$(CFG)),-dyn)
|
|
|
|
DYN = 1
|
|
|
|
endif
|
|
|
|
ifeq ($(findstring -ares,$(CFG)),-ares)
|
|
|
|
ARES = 1
|
|
|
|
endif
|
2013-04-11 08:05:08 -04:00
|
|
|
ifeq ($(findstring -sync,$(CFG)),-sync)
|
|
|
|
SYNC = 1
|
|
|
|
endif
|
2011-04-19 14:59:24 -04:00
|
|
|
ifeq ($(findstring -rtmp,$(CFG)),-rtmp)
|
|
|
|
RTMP = 1
|
|
|
|
SSL = 1
|
|
|
|
ZLIB = 1
|
|
|
|
endif
|
|
|
|
ifeq ($(findstring -ssh2,$(CFG)),-ssh2)
|
|
|
|
SSH2 = 1
|
|
|
|
SSL = 1
|
|
|
|
ZLIB = 1
|
|
|
|
endif
|
|
|
|
ifeq ($(findstring -ssl,$(CFG)),-ssl)
|
|
|
|
SSL = 1
|
|
|
|
endif
|
|
|
|
ifeq ($(findstring -zlib,$(CFG)),-zlib)
|
|
|
|
ZLIB = 1
|
|
|
|
endif
|
2020-05-25 11:49:46 -04:00
|
|
|
ifeq ($(findstring -zstd,$(CFG)),-zstd)
|
|
|
|
ZSTD = 1
|
|
|
|
endif
|
2017-11-05 09:32:43 -05:00
|
|
|
ifeq ($(findstring -brotli,$(CFG)),-brotli)
|
|
|
|
BROTLI = 1
|
|
|
|
endif
|
2021-02-10 13:46:57 -05:00
|
|
|
ifeq ($(findstring -gsasl,$(CFG)),-gsasl)
|
|
|
|
GSASL = 1
|
|
|
|
endif
|
2017-08-22 03:13:20 -04:00
|
|
|
ifeq ($(findstring -idn2,$(CFG)),-idn2)
|
|
|
|
IDN2 = 1
|
2011-04-19 14:59:24 -04:00
|
|
|
endif
|
|
|
|
ifeq ($(findstring -winidn,$(CFG)),-winidn)
|
|
|
|
WINIDN = 1
|
|
|
|
endif
|
|
|
|
ifeq ($(findstring -sspi,$(CFG)),-sspi)
|
|
|
|
SSPI = 1
|
|
|
|
endif
|
|
|
|
ifeq ($(findstring -ldaps,$(CFG)),-ldaps)
|
|
|
|
LDAPS = 1
|
|
|
|
endif
|
|
|
|
ifeq ($(findstring -ipv6,$(CFG)),-ipv6)
|
|
|
|
IPV6 = 1
|
|
|
|
endif
|
2012-07-03 06:56:41 -04:00
|
|
|
ifeq ($(findstring -winssl,$(CFG)),-winssl)
|
2012-07-11 05:33:08 -04:00
|
|
|
WINSSL = 1
|
2012-04-13 07:17:57 -04:00
|
|
|
SSPI = 1
|
|
|
|
endif
|
2014-10-23 22:22:04 -04:00
|
|
|
ifeq ($(findstring -nghttp2,$(CFG)),-nghttp2)
|
|
|
|
NGHTTP2 = 1
|
|
|
|
endif
|
2020-10-16 03:15:19 -04:00
|
|
|
ifeq ($(findstring -nghttp3,$(CFG)),-nghttp3)
|
|
|
|
NGHTTP3 = 1
|
|
|
|
endif
|
|
|
|
ifeq ($(findstring -ngtcp2,$(CFG)),-ngtcp2)
|
|
|
|
NGTCP2 = 1
|
|
|
|
endif
|
2020-11-23 11:56:27 -05:00
|
|
|
ifeq ($(findstring -unicode,$(CFG)),-unicode)
|
|
|
|
UNICODE = 1
|
|
|
|
endif
|
2011-04-19 14:59:24 -04:00
|
|
|
|
2012-07-08 12:06:15 -04:00
|
|
|
INCLUDES = -I. -I../include -I../lib
|
2017-08-30 06:44:50 -04:00
|
|
|
ifdef SSL
|
|
|
|
ifdef WINSSL
|
|
|
|
CFLAGS += -DCURL_WITH_MULTI_SSL
|
|
|
|
endif
|
|
|
|
endif
|
2020-11-23 11:56:27 -05:00
|
|
|
ifdef UNICODE
|
|
|
|
CFLAGS += -DUNICODE -D_UNICODE
|
|
|
|
LDFLAGS += -municode
|
|
|
|
endif
|
2002-10-28 14:39:58 -05:00
|
|
|
|
|
|
|
ifdef DYN
|
2011-09-20 09:05:28 -04:00
|
|
|
curl_DEPENDENCIES = $(PROOT)/lib/libcurldll.a $(PROOT)/lib/libcurl.dll
|
|
|
|
curl_LDADD = -L$(PROOT)/lib -lcurldll
|
2002-10-28 14:39:58 -05:00
|
|
|
else
|
2011-09-20 09:05:28 -04:00
|
|
|
curl_DEPENDENCIES = $(PROOT)/lib/libcurl.a
|
|
|
|
curl_LDADD = -L$(PROOT)/lib -lcurl
|
2007-08-03 15:54:31 -04:00
|
|
|
CFLAGS += -DCURL_STATICLIB
|
2012-05-27 01:16:45 -04:00
|
|
|
LDFLAGS += -static
|
2002-10-28 14:39:58 -05:00
|
|
|
endif
|
2013-04-11 08:05:08 -04:00
|
|
|
ifdef SYNC
|
|
|
|
CFLAGS += -DUSE_SYNC_DNS
|
|
|
|
else
|
|
|
|
ifdef ARES
|
|
|
|
ifndef DYN
|
|
|
|
curl_DEPENDENCIES += $(LIBCARES_PATH)/libcares.a
|
|
|
|
endif
|
|
|
|
CFLAGS += -DUSE_ARES -DCARES_STATICLIB
|
|
|
|
curl_LDADD += -L"$(LIBCARES_PATH)" -lcares
|
2007-08-14 14:39:26 -04:00
|
|
|
endif
|
2007-07-04 09:45:46 -04:00
|
|
|
endif
|
2010-10-10 18:39:24 -04:00
|
|
|
ifdef RTMP
|
|
|
|
CFLAGS += -DUSE_LIBRTMP
|
|
|
|
curl_LDADD += -L"$(LIBRTMP_PATH)/librtmp" -lrtmp -lwinmm
|
|
|
|
endif
|
2014-10-23 22:22:04 -04:00
|
|
|
ifdef NGHTTP2
|
|
|
|
CFLAGS += -DUSE_NGHTTP2
|
|
|
|
curl_LDADD += -L"$(NGHTTP2_PATH)/lib" -lnghttp2
|
|
|
|
endif
|
2007-01-25 08:14:42 -05:00
|
|
|
ifdef SSH2
|
|
|
|
CFLAGS += -DUSE_LIBSSH2 -DHAVE_LIBSSH2_H
|
2011-09-20 09:05:28 -04:00
|
|
|
curl_LDADD += -L"$(LIBSSH2_PATH)/win32" -lssh2
|
2016-03-01 21:25:22 -05:00
|
|
|
ifdef WINSSL
|
|
|
|
ifndef DYN
|
|
|
|
curl_LDADD += -lbcrypt -lcrypt32
|
|
|
|
endif
|
|
|
|
endif
|
2007-01-25 08:14:42 -05:00
|
|
|
endif
|
2002-10-28 14:39:58 -05:00
|
|
|
ifdef SSL
|
2020-10-16 03:15:19 -04:00
|
|
|
ifdef NGHTTP3
|
|
|
|
CFLAGS += -DUSE_NGHTTP3
|
|
|
|
curl_LDADD += -L"$(NGHTTP3_PATH)/lib" -lnghttp3
|
|
|
|
ifdef NGTCP2
|
|
|
|
CFLAGS += -DUSE_NGTCP2
|
|
|
|
curl_LDADD += -L"$(NGTCP2_PATH)/lib" -lngtcp2 -lngtcp2_crypto_openssl
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2012-10-12 18:48:05 -04:00
|
|
|
ifndef OPENSSL_INCLUDE
|
|
|
|
ifeq "$(wildcard $(OPENSSL_PATH)/outinc)" "$(OPENSSL_PATH)/outinc"
|
|
|
|
OPENSSL_INCLUDE = $(OPENSSL_PATH)/outinc
|
|
|
|
endif
|
|
|
|
ifeq "$(wildcard $(OPENSSL_PATH)/include)" "$(OPENSSL_PATH)/include"
|
|
|
|
OPENSSL_INCLUDE = $(OPENSSL_PATH)/include
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
ifneq "$(wildcard $(OPENSSL_INCLUDE)/openssl/opensslv.h)" "$(OPENSSL_INCLUDE)/openssl/opensslv.h"
|
|
|
|
$(error Invalid path to OpenSSL package: $(OPENSSL_PATH))
|
|
|
|
endif
|
2012-05-26 21:28:43 -04:00
|
|
|
ifndef OPENSSL_LIBPATH
|
2012-05-27 01:16:45 -04:00
|
|
|
OPENSSL_LIBS = -lssl -lcrypto
|
2012-05-26 21:28:43 -04:00
|
|
|
ifeq "$(wildcard $(OPENSSL_PATH)/out)" "$(OPENSSL_PATH)/out"
|
|
|
|
OPENSSL_LIBPATH = $(OPENSSL_PATH)/out
|
2012-05-27 01:16:45 -04:00
|
|
|
ifdef DYN
|
|
|
|
OPENSSL_LIBS = -lssl32 -leay32
|
|
|
|
endif
|
2012-05-26 21:28:43 -04:00
|
|
|
endif
|
|
|
|
ifeq "$(wildcard $(OPENSSL_PATH)/lib)" "$(OPENSSL_PATH)/lib"
|
|
|
|
OPENSSL_LIBPATH = $(OPENSSL_PATH)/lib
|
|
|
|
endif
|
|
|
|
endif
|
2012-05-27 01:16:45 -04:00
|
|
|
ifndef DYN
|
|
|
|
OPENSSL_LIBS += -lgdi32 -lcrypt32
|
|
|
|
endif
|
2012-10-12 18:48:05 -04:00
|
|
|
INCLUDES += -I"$(OPENSSL_INCLUDE)"
|
2015-03-05 04:57:52 -05:00
|
|
|
CFLAGS += -DUSE_OPENSSL
|
2011-09-20 20:02:31 -04:00
|
|
|
curl_LDADD += -L"$(OPENSSL_LIBPATH)" $(OPENSSL_LIBS)
|
2017-08-30 06:44:50 -04:00
|
|
|
endif
|
2016-06-01 04:35:38 -04:00
|
|
|
ifdef WINSSL
|
2017-08-30 06:44:50 -04:00
|
|
|
CFLAGS += -DUSE_SCHANNEL
|
2016-06-01 04:35:38 -04:00
|
|
|
curl_LDADD += -lcrypt32
|
|
|
|
endif
|
2007-08-03 10:30:02 -04:00
|
|
|
ifdef ZLIB
|
|
|
|
INCLUDES += -I"$(ZLIB_PATH)"
|
|
|
|
CFLAGS += -DHAVE_LIBZ -DHAVE_ZLIB_H
|
2011-09-20 09:05:28 -04:00
|
|
|
curl_LDADD += -L"$(ZLIB_PATH)" -lz
|
2007-08-03 10:30:02 -04:00
|
|
|
endif
|
2020-05-25 11:49:46 -04:00
|
|
|
ifdef ZSTD
|
|
|
|
INCLUDES += -I"$(ZSTD_PATH)/include"
|
|
|
|
CFLAGS += -DHAVE_ZSTD
|
2020-08-22 17:06:06 -04:00
|
|
|
curl_LDADD += -L"$(ZSTD_PATH)/lib"
|
|
|
|
ifdef ZSTD_LIBS
|
|
|
|
curl_LDADD += $(ZSTD_LIBS)
|
|
|
|
else
|
|
|
|
curl_LDADD += -lzstd
|
|
|
|
endif
|
2020-05-25 11:49:46 -04:00
|
|
|
endif
|
2017-11-05 09:32:43 -05:00
|
|
|
ifdef BROTLI
|
2017-11-05 17:56:39 -05:00
|
|
|
INCLUDES += -I"$(BROTLI_PATH)/include"
|
2017-11-05 09:32:43 -05:00
|
|
|
CFLAGS += -DHAVE_BROTLI
|
2017-11-05 20:03:49 -05:00
|
|
|
curl_LDADD += -L"$(BROTLI_PATH)/lib"
|
2017-11-05 17:56:39 -05:00
|
|
|
ifdef BROTLI_LIBS
|
|
|
|
curl_LDADD += $(BROTLI_LIBS)
|
|
|
|
else
|
|
|
|
curl_LDADD += -lbrotlidec
|
|
|
|
endif
|
2017-11-05 09:32:43 -05:00
|
|
|
endif
|
2021-02-10 13:46:57 -05:00
|
|
|
ifdef GSASL
|
|
|
|
CFLAGS += -DUSE_GSASL
|
|
|
|
curl_LDADD += -L"$(LIBGSASL_PATH)/lib" -lgsasl
|
|
|
|
endif
|
2017-08-22 03:13:20 -04:00
|
|
|
ifdef IDN2
|
|
|
|
CFLAGS += -DUSE_LIBIDN2
|
|
|
|
curl_LDADD += -L"$(LIBIDN2_PATH)/lib" -lidn2
|
2011-04-19 11:28:28 -04:00
|
|
|
else
|
|
|
|
ifdef WINIDN
|
|
|
|
CFLAGS += -DUSE_WIN32_IDN
|
2011-09-17 11:59:35 -04:00
|
|
|
curl_LDADD += -L"$(WINIDN_PATH)" -lnormaliz
|
2011-04-19 11:28:28 -04:00
|
|
|
endif
|
2008-11-11 12:43:02 -05:00
|
|
|
endif
|
2007-01-28 16:54:10 -05:00
|
|
|
ifdef SSPI
|
|
|
|
CFLAGS += -DUSE_WINDOWS_SSPI
|
|
|
|
endif
|
2007-02-14 20:36:35 -05:00
|
|
|
ifdef IPV6
|
2011-09-20 05:59:10 -04:00
|
|
|
CFLAGS += -DENABLE_IPV6 -D_WIN32_WINNT=0x0501
|
2007-02-14 20:36:35 -05:00
|
|
|
endif
|
2007-08-20 12:21:51 -04:00
|
|
|
ifdef LDAPS
|
|
|
|
CFLAGS += -DHAVE_LDAP_SSL
|
2007-08-24 13:08:49 -04:00
|
|
|
endif
|
|
|
|
ifdef USE_LDAP_NOVELL
|
|
|
|
CFLAGS += -DCURL_HAS_NOVELL_LDAPSDK
|
|
|
|
curl_LDADD += -L"$(LDAP_SDK)/lib/mscvc" -lldapsdk -lldapssl -lldapx
|
|
|
|
endif
|
|
|
|
ifdef USE_LDAP_OPENLDAP
|
|
|
|
CFLAGS += -DCURL_HAS_OPENLDAP_LDAPSDK
|
|
|
|
curl_LDADD += -L"$(LDAP_SDK)/lib" -lldap -llber
|
2007-08-20 12:21:51 -04:00
|
|
|
endif
|
2007-08-25 08:08:38 -04:00
|
|
|
ifndef USE_LDAP_NOVELL
|
|
|
|
ifndef USE_LDAP_OPENLDAP
|
|
|
|
curl_LDADD += -lwldap32
|
|
|
|
endif
|
|
|
|
endif
|
2008-05-09 12:31:51 -04:00
|
|
|
curl_LDADD += -lws2_32
|
2002-10-28 14:39:58 -05:00
|
|
|
|
2004-07-05 09:25:30 -04:00
|
|
|
# Makefile.inc provides the CSOURCES and HHEADERS defines
|
|
|
|
include Makefile.inc
|
|
|
|
|
2011-09-20 09:05:28 -04:00
|
|
|
curl_PROGRAMS = curl.exe
|
2010-08-02 06:24:54 -04:00
|
|
|
curl_OBJECTS := $(patsubst %.c,%.o,$(strip $(CURL_CFILES)))
|
2014-05-21 17:51:03 -04:00
|
|
|
curlx_OBJECTS := $(patsubst %.c,%.o,$(notdir $(strip $(CURLX_CFILES))))
|
2009-01-26 02:33:29 -05:00
|
|
|
curl_OBJECTS += $(curlx_OBJECTS)
|
2011-09-20 09:05:28 -04:00
|
|
|
vpath %.c $(PROOT)/lib
|
2004-07-05 09:25:30 -04:00
|
|
|
|
2008-01-29 18:46:41 -05:00
|
|
|
RESOURCE = curl.res
|
|
|
|
|
2011-09-20 09:05:28 -04:00
|
|
|
|
|
|
|
all: $(curl_PROGRAMS)
|
2002-10-28 14:39:58 -05:00
|
|
|
|
2008-01-29 18:46:41 -05:00
|
|
|
curl.exe: $(RESOURCE) $(curl_OBJECTS) $(curl_DEPENDENCIES)
|
2012-07-03 06:56:41 -04:00
|
|
|
$(call DEL, $@)
|
2011-09-20 09:05:28 -04:00
|
|
|
$(CC) $(LDFLAGS) -o $@ $< $(curl_OBJECTS) $(curl_LDADD)
|
2002-10-28 14:39:58 -05:00
|
|
|
|
|
|
|
# We don't have nroff normally under win32
|
2012-12-26 17:30:54 -05:00
|
|
|
# tool_hugehelp.c: $(PROOT)/docs/MANUAL $(PROOT)/docs/curl.1 mkhelp.pl
|
|
|
|
# @$(call DEL, tool_hugehelp.c)
|
|
|
|
# $(NROFF) -man $(PROOT)/docs/curl.1 | $(PERL) mkhelp.pl $(PROOT)/docs/MANUAL > tool_hugehelp.c
|
2002-10-28 14:39:58 -05:00
|
|
|
|
2012-12-26 17:30:54 -05:00
|
|
|
tool_hugehelp.c:
|
2007-08-20 22:42:29 -04:00
|
|
|
@echo Creating $@
|
2012-07-03 06:56:41 -04:00
|
|
|
@$(call COPY, $@.cvs, $@)
|
2007-08-20 22:42:29 -04:00
|
|
|
|
2011-09-20 21:25:19 -04:00
|
|
|
%.o: %.c
|
2011-09-20 09:05:28 -04:00
|
|
|
$(CC) $(INCLUDES) $(CFLAGS) -c $<
|
2002-10-28 14:39:58 -05:00
|
|
|
|
2011-09-20 21:25:19 -04:00
|
|
|
%.res: %.rc
|
2014-11-18 07:44:03 -05:00
|
|
|
$(RC) $(RCFLAGS) -i $< -o $@
|
2007-08-03 10:30:02 -04:00
|
|
|
|
2002-10-28 14:39:58 -05:00
|
|
|
clean:
|
2012-12-26 17:30:54 -05:00
|
|
|
ifeq "$(wildcard tool_hugehelp.c.cvs)" "tool_hugehelp.c.cvs"
|
|
|
|
@$(call DEL, tool_hugehelp.c)
|
2007-08-20 22:42:29 -04:00
|
|
|
endif
|
2012-07-03 06:56:41 -04:00
|
|
|
@$(call DEL, $(curl_OBJECTS) $(curlx_OBJECTS) $(RESOURCE))
|
2002-10-28 14:39:58 -05:00
|
|
|
|
2010-08-15 10:55:02 -04:00
|
|
|
distclean vclean: clean
|
2012-07-03 06:56:41 -04:00
|
|
|
@$(call DEL, $(curl_PROGRAMS))
|