2011-09-20 15:05:28 +02:00
|
|
|
###########################################################################
|
2002-10-28 20:39:58 +01:00
|
|
|
#
|
2011-09-20 15:05:28 +02:00
|
|
|
## Makefile for building curl.exe with MingW (GCC-3.2 or later)
|
|
|
|
## and optionally OpenSSL (0.9.8), libssh2 (1.3), zlib (1.2.5), librtmp (2.3)
|
2002-10-28 20:39:58 +01:00
|
|
|
##
|
2011-04-19 20:59:24 +02:00
|
|
|
## Usage: mingw32-make -f Makefile.m32 CFG=-feature1[-feature2][-feature3][...]
|
|
|
|
## Example: mingw32-make -f Makefile.m32 CFG=-zlib-ssl-spi-winidn
|
2002-10-28 20:39:58 +01:00
|
|
|
##
|
2007-08-20 18:21:51 +02:00
|
|
|
## Hint: you can also set environment vars to control the build, f.e.:
|
2010-07-22 04:34:54 +02:00
|
|
|
## set ZLIB_PATH=c:/zlib-1.2.5
|
2007-08-20 18:21:51 +02:00
|
|
|
## set ZLIB=1
|
2011-09-20 15:05:28 +02:00
|
|
|
#
|
|
|
|
###########################################################################
|
2002-10-28 20:39:58 +01:00
|
|
|
|
2007-08-20 18:21:51 +02:00
|
|
|
# Edit the path below to point to the base of your Zlib sources.
|
|
|
|
ifndef ZLIB_PATH
|
2010-04-24 17:48:09 +02:00
|
|
|
ZLIB_PATH = ../../zlib-1.2.5
|
2007-08-20 18:21:51 +02:00
|
|
|
endif
|
|
|
|
# Edit the path below to point to the base of your OpenSSL package.
|
2004-07-05 15:25:30 +02:00
|
|
|
ifndef OPENSSL_PATH
|
2011-02-13 12:13:21 +01:00
|
|
|
OPENSSL_PATH = ../../openssl-0.9.8r
|
2007-01-25 14:14:42 +01:00
|
|
|
endif
|
2011-09-21 02:02:31 +02:00
|
|
|
ifndef OPENSSL_LIBPATH
|
|
|
|
OPENSSL_LIBPATH = $(OPENSSL_PATH)/out
|
|
|
|
endif
|
|
|
|
ifndef OPENSSL_LIBS
|
|
|
|
OPENSSL_LIBS = -leay32 -lssl32
|
2011-09-20 15:05:28 +02:00
|
|
|
endif
|
2007-08-20 18:21:51 +02:00
|
|
|
# Edit the path below to point to the base of your LibSSH2 package.
|
2007-01-25 14:14:42 +01:00
|
|
|
ifndef LIBSSH2_PATH
|
2011-09-11 16:49:28 +02:00
|
|
|
LIBSSH2_PATH = ../../libssh2-1.3.0
|
2004-07-05 15:25:30 +02:00
|
|
|
endif
|
2011-04-19 17:28:28 +02:00
|
|
|
# Edit the path below to point to the base of your librtmp package.
|
|
|
|
ifndef LIBRTMP_PATH
|
|
|
|
LIBRTMP_PATH = ../../librtmp-2.3
|
|
|
|
endif
|
2008-11-11 18:43:02 +01:00
|
|
|
# Edit the path below to point to the base of your libidn package.
|
|
|
|
ifndef LIBIDN_PATH
|
2010-03-31 01:10:09 +02:00
|
|
|
LIBIDN_PATH = ../../libidn-1.18
|
2008-11-11 18:43:02 +01:00
|
|
|
endif
|
2011-04-19 17:28:28 +02:00
|
|
|
# Edit the path below to point to the base of your MS idndlpackage.
|
|
|
|
# Microsoft Internationalized Domain Names (IDN) Mitigation APIs 1.1
|
|
|
|
# http://www.microsoft.com/downloads/en/details.aspx?FamilyID=ad6158d7-ddba-416a-9109-07607425a815
|
|
|
|
ifndef WINIDN_PATH
|
|
|
|
WINIDN_PATH = ../../Microsoft IDN Mitigation APIs
|
2010-10-11 00:39:24 +02:00
|
|
|
endif
|
2007-08-20 18:21:51 +02: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 15:25:30 +02:00
|
|
|
endif
|
|
|
|
|
2011-09-20 15:05:28 +02:00
|
|
|
PROOT = ..
|
|
|
|
|
2010-03-31 01:10:09 +02:00
|
|
|
# Edit the path below to point to the base of your c-ares package.
|
|
|
|
ifndef LIBCARES_PATH
|
2011-09-20 15:05:28 +02:00
|
|
|
LIBCARES_PATH = $(PROOT)/ares
|
2010-03-31 01:10:09 +02:00
|
|
|
endif
|
2007-07-04 15:45:46 +02:00
|
|
|
|
2011-09-03 13:55:16 +02:00
|
|
|
# Edit the var below to set to your architecture or set environment var.
|
|
|
|
ifndef ARCH
|
|
|
|
ARCH = w32
|
|
|
|
endif
|
|
|
|
|
2002-10-28 20:39:58 +01:00
|
|
|
CC = gcc
|
2011-04-19 17:28:28 +02:00
|
|
|
CFLAGS = -g -O2 -Wall
|
2011-09-20 15:05:28 +02:00
|
|
|
CFLAGS += -fno-strict-aliasing
|
2011-09-03 13:55:16 +02:00
|
|
|
ifeq ($(ARCH),w64)
|
|
|
|
CFLAGS += -D_AMD64_
|
|
|
|
endif
|
2007-08-03 16:30:02 +02:00
|
|
|
# comment LDFLAGS below to keep debug info
|
|
|
|
LDFLAGS = -s
|
2007-01-26 09:50:06 +01:00
|
|
|
RC = windres
|
2011-09-20 15:05:28 +02:00
|
|
|
RCFLAGS = --include-dir=$(PROOT)/include -O COFF -i
|
2011-09-21 02:02:31 +02:00
|
|
|
|
2010-08-18 16:08:20 +02:00
|
|
|
RM = del /q /f 2>NUL
|
2007-08-21 04:42:29 +02:00
|
|
|
CP = copy
|
2002-10-28 20:39:58 +01:00
|
|
|
|
|
|
|
# We may need these someday
|
|
|
|
# PERL = perl
|
|
|
|
# NROFF = nroff
|
|
|
|
|
|
|
|
########################################################
|
|
|
|
## Nothing more to do below this line!
|
|
|
|
|
2011-04-19 20:59:24 +02:00
|
|
|
ifeq ($(findstring -dyn,$(CFG)),-dyn)
|
|
|
|
DYN = 1
|
|
|
|
endif
|
|
|
|
ifeq ($(findstring -ares,$(CFG)),-ares)
|
|
|
|
ARES = 1
|
|
|
|
endif
|
|
|
|
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
|
|
|
|
ifeq ($(findstring -idn,$(CFG)),-idn)
|
|
|
|
IDN = 1
|
|
|
|
endif
|
|
|
|
ifeq ($(findstring -winidn,$(CFG)),-winidn)
|
|
|
|
WINIDN = 1
|
|
|
|
endif
|
|
|
|
ifeq ($(findstring -sspi,$(CFG)),-sspi)
|
|
|
|
SSPI = 1
|
|
|
|
endif
|
2011-09-04 10:03:08 +02:00
|
|
|
ifeq ($(findstring -spnego,$(CFG)),-spnego)
|
|
|
|
SPNEGO = 1
|
|
|
|
endif
|
2011-04-19 20:59:24 +02:00
|
|
|
ifeq ($(findstring -ldaps,$(CFG)),-ldaps)
|
|
|
|
LDAPS = 1
|
|
|
|
endif
|
|
|
|
ifeq ($(findstring -ipv6,$(CFG)),-ipv6)
|
|
|
|
IPV6 = 1
|
|
|
|
endif
|
|
|
|
|
2007-08-03 16:30:02 +02:00
|
|
|
INCLUDES = -I. -I.. -I../include -I../lib
|
2002-10-28 20:39:58 +01:00
|
|
|
|
|
|
|
ifdef DYN
|
2011-09-20 15:05:28 +02:00
|
|
|
curl_DEPENDENCIES = $(PROOT)/lib/libcurldll.a $(PROOT)/lib/libcurl.dll
|
|
|
|
curl_LDADD = -L$(PROOT)/lib -lcurldll
|
2002-10-28 20:39:58 +01:00
|
|
|
else
|
2011-09-20 15:05:28 +02:00
|
|
|
curl_DEPENDENCIES = $(PROOT)/lib/libcurl.a
|
|
|
|
curl_LDADD = -L$(PROOT)/lib -lcurl
|
2007-08-03 21:54:31 +02:00
|
|
|
CFLAGS += -DCURL_STATICLIB
|
2002-10-28 20:39:58 +01:00
|
|
|
endif
|
2007-07-04 15:45:46 +02:00
|
|
|
ifdef ARES
|
2007-08-14 20:39:26 +02:00
|
|
|
ifndef DYN
|
2010-03-31 01:10:09 +02:00
|
|
|
curl_DEPENDENCIES += $(LIBCARES_PATH)/libcares.a
|
2007-08-14 20:39:26 +02:00
|
|
|
endif
|
2007-07-04 15:45:46 +02:00
|
|
|
CFLAGS += -DUSE_ARES
|
2011-09-20 15:05:28 +02:00
|
|
|
curl_LDADD += -L"$(LIBCARES_PATH)" -lcares
|
2007-07-04 15:45:46 +02:00
|
|
|
endif
|
2010-10-11 00:39:24 +02:00
|
|
|
ifdef RTMP
|
|
|
|
CFLAGS += -DUSE_LIBRTMP
|
|
|
|
curl_LDADD += -L"$(LIBRTMP_PATH)/librtmp" -lrtmp -lwinmm
|
|
|
|
endif
|
2007-01-25 14:14:42 +01:00
|
|
|
ifdef SSH2
|
|
|
|
CFLAGS += -DUSE_LIBSSH2 -DHAVE_LIBSSH2_H
|
2011-09-20 15:05:28 +02:00
|
|
|
curl_LDADD += -L"$(LIBSSH2_PATH)/win32" -lssh2
|
2007-01-25 14:14:42 +01:00
|
|
|
endif
|
2002-10-28 20:39:58 +01:00
|
|
|
ifdef SSL
|
2007-01-25 14:14:42 +01:00
|
|
|
CFLAGS += -DUSE_SSLEAY -DHAVE_OPENSSL_ENGINE_H
|
2011-09-21 02:02:31 +02:00
|
|
|
curl_LDADD += -L"$(OPENSSL_LIBPATH)" $(OPENSSL_LIBS)
|
2002-10-28 20:39:58 +01:00
|
|
|
endif
|
2007-08-03 16:30:02 +02:00
|
|
|
ifdef ZLIB
|
|
|
|
INCLUDES += -I"$(ZLIB_PATH)"
|
|
|
|
CFLAGS += -DHAVE_LIBZ -DHAVE_ZLIB_H
|
2011-09-20 15:05:28 +02:00
|
|
|
curl_LDADD += -L"$(ZLIB_PATH)" -lz
|
2007-08-03 16:30:02 +02:00
|
|
|
endif
|
2008-11-11 18:43:02 +01:00
|
|
|
ifdef IDN
|
|
|
|
CFLAGS += -DUSE_LIBIDN
|
2011-09-20 15:05:28 +02:00
|
|
|
curl_LDADD += -L"$(LIBIDN_PATH)/lib" -lidn
|
2011-04-19 17:28:28 +02:00
|
|
|
else
|
|
|
|
ifdef WINIDN
|
|
|
|
CFLAGS += -DUSE_WIN32_IDN
|
2011-09-17 17:59:35 +02:00
|
|
|
curl_LDADD += -L"$(WINIDN_PATH)" -lnormaliz
|
2011-04-19 17:28:28 +02:00
|
|
|
endif
|
2008-11-11 18:43:02 +01:00
|
|
|
endif
|
2007-01-28 22:54:10 +01:00
|
|
|
ifdef SSPI
|
|
|
|
CFLAGS += -DUSE_WINDOWS_SSPI
|
|
|
|
endif
|
2011-09-04 10:03:08 +02:00
|
|
|
ifdef SPNEGO
|
|
|
|
CFLAGS += -DHAVE_SPNEGO
|
|
|
|
endif
|
2007-02-15 02:36:35 +01:00
|
|
|
ifdef IPV6
|
2011-09-20 11:59:10 +02:00
|
|
|
CFLAGS += -DENABLE_IPV6 -D_WIN32_WINNT=0x0501
|
2007-02-15 02:36:35 +01:00
|
|
|
endif
|
2007-08-20 18:21:51 +02:00
|
|
|
ifdef LDAPS
|
|
|
|
CFLAGS += -DHAVE_LDAP_SSL
|
2007-08-24 19:08:49 +02: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 18:21:51 +02:00
|
|
|
endif
|
2007-08-25 14:08:38 +02:00
|
|
|
ifndef USE_LDAP_NOVELL
|
|
|
|
ifndef USE_LDAP_OPENLDAP
|
|
|
|
curl_LDADD += -lwldap32
|
|
|
|
endif
|
|
|
|
endif
|
2008-05-09 18:31:51 +02:00
|
|
|
curl_LDADD += -lws2_32
|
2002-10-28 20:39:58 +01:00
|
|
|
|
2004-07-05 15:25:30 +02:00
|
|
|
# Makefile.inc provides the CSOURCES and HHEADERS defines
|
|
|
|
include Makefile.inc
|
|
|
|
|
2011-09-20 15:05:28 +02:00
|
|
|
curl_PROGRAMS = curl.exe
|
2010-08-02 12:24:54 +02:00
|
|
|
curl_OBJECTS := $(patsubst %.c,%.o,$(strip $(CURL_CFILES)))
|
2009-01-26 08:33:29 +01:00
|
|
|
curlx_OBJECTS := $(patsubst %.c,%.o,$(notdir $(strip $(CURLX_ONES))))
|
2011-09-20 15:05:28 +02:00
|
|
|
ifdef DYN
|
2009-01-26 08:33:29 +01:00
|
|
|
curl_OBJECTS += $(curlx_OBJECTS)
|
2011-09-20 15:05:28 +02:00
|
|
|
vpath %.c $(PROOT)/lib
|
2009-01-26 08:33:29 +01:00
|
|
|
endif
|
2004-07-05 15:25:30 +02:00
|
|
|
|
2008-01-30 00:46:41 +01:00
|
|
|
RESOURCE = curl.res
|
|
|
|
|
2007-01-26 09:50:06 +01:00
|
|
|
.SUFFIXES: .rc .res
|
2002-10-28 20:39:58 +01:00
|
|
|
|
2011-09-20 15:05:28 +02:00
|
|
|
|
|
|
|
all: $(curl_PROGRAMS)
|
2002-10-28 20:39:58 +01:00
|
|
|
|
2008-01-30 00:46:41 +01:00
|
|
|
curl.exe: $(RESOURCE) $(curl_OBJECTS) $(curl_DEPENDENCIES)
|
2007-08-20 01:23:50 +02:00
|
|
|
-$(RM) $@
|
2011-09-20 15:05:28 +02:00
|
|
|
$(CC) $(LDFLAGS) -o $@ $< $(curl_OBJECTS) $(curl_LDADD)
|
2002-10-28 20:39:58 +01:00
|
|
|
|
|
|
|
# We don't have nroff normally under win32
|
2011-09-20 15:05:28 +02:00
|
|
|
# hugehelp.c: $(PROOT)/README.curl $(PROOT)/curl.1 mkhelp.pl
|
2007-08-20 01:23:50 +02:00
|
|
|
# -$(RM) hugehelp.c
|
2011-09-20 15:05:28 +02:00
|
|
|
# $(NROFF) -man $(PROOT)/curl.1 | $(PERL) mkhelp.pl $(PROOT)/README.curl > hugehelp.c
|
2002-10-28 20:39:58 +01:00
|
|
|
|
2007-08-21 04:42:29 +02:00
|
|
|
hugehelp.c:
|
|
|
|
@echo Creating $@
|
|
|
|
@$(CP) hugehelp.c.cvs $@
|
|
|
|
|
2002-10-28 20:39:58 +01:00
|
|
|
.c.o:
|
2011-09-20 15:05:28 +02:00
|
|
|
$(CC) $(INCLUDES) $(CFLAGS) -c $<
|
2002-10-28 20:39:58 +01:00
|
|
|
|
2007-08-03 16:30:02 +02:00
|
|
|
.rc.res:
|
|
|
|
$(RC) $(RCFLAGS) $< -o $@
|
|
|
|
|
2002-10-28 20:39:58 +01:00
|
|
|
clean:
|
2007-08-21 04:42:29 +02:00
|
|
|
ifeq "$(wildcard hugehelp.c.cvs)" "hugehelp.c.cvs"
|
|
|
|
-$(RM) hugehelp.c
|
|
|
|
endif
|
2011-09-20 15:05:28 +02:00
|
|
|
-$(RM) $(curl_OBJECTS) $(curlx_OBJECTS) $(RESOURCE)
|
2002-10-28 20:39:58 +01:00
|
|
|
|
2010-08-15 16:55:02 +02:00
|
|
|
distclean vclean: clean
|
2007-08-20 01:23:50 +02:00
|
|
|
-$(RM) $(curl_PROGRAMS)
|
2007-08-21 04:42:29 +02:00
|
|
|
|