2007-08-20 12:21:51 -04:00
|
|
|
#########################################################################
|
2002-10-28 14:39:58 -05:00
|
|
|
#
|
2009-03-29 15:40:00 -04:00
|
|
|
## Makefile for building curl.exe with MingW32 (GCC-3.2 or later)
|
2011-04-19 14:59:24 -04:00
|
|
|
## and optionally OpenSSL (0.9.8), libssh2 (1.2), zlib (1.2.5), librtmp (2.3)
|
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][...]
|
|
|
|
## Example: mingw32-make -f Makefile.m32 CFG=-zlib-ssl-spi-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.:
|
2010-07-21 22:34:54 -04:00
|
|
|
## set ZLIB_PATH=c:/zlib-1.2.5
|
2007-08-20 12:21:51 -04:00
|
|
|
## set ZLIB=1
|
|
|
|
##
|
2002-10-28 14:39:58 -05:00
|
|
|
## Comments to: Troy Engel <tengel@sonic.net> or
|
|
|
|
## Joern Hartroth <hartroth@acm.org>
|
2007-08-20 12:21:51 -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
|
2010-04-24 11:48:09 -04:00
|
|
|
ZLIB_PATH = ../../zlib-1.2.5
|
2007-08-20 12:21:51 -04:00
|
|
|
endif
|
|
|
|
# Edit the path below to point to the base of your OpenSSL package.
|
2004-07-05 09:25:30 -04:00
|
|
|
ifndef OPENSSL_PATH
|
2011-02-13 06:13:21 -05:00
|
|
|
OPENSSL_PATH = ../../openssl-0.9.8r
|
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
|
2011-09-11 10:49:28 -04:00
|
|
|
LIBSSH2_PATH = ../../libssh2-1.3.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
|
|
|
|
LIBRTMP_PATH = ../../librtmp-2.3
|
|
|
|
endif
|
2008-11-11 12:43:02 -05:00
|
|
|
# Edit the path below to point to the base of your libidn package.
|
|
|
|
ifndef LIBIDN_PATH
|
2010-03-30 19:10:09 -04:00
|
|
|
LIBIDN_PATH = ../../libidn-1.18
|
2008-11-11 12:43:02 -05:00
|
|
|
endif
|
2011-04-19 11:28:28 -04: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-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
|
|
|
|
|
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
|
|
|
|
LIBCARES_PATH = ../ares
|
|
|
|
endif
|
2007-07-04 09:45:46 -04:00
|
|
|
|
2011-09-03 07:55:16 -04:00
|
|
|
# Edit the var below to set to your architecture or set environment var.
|
|
|
|
ifndef ARCH
|
|
|
|
ARCH = w32
|
|
|
|
endif
|
|
|
|
|
2002-10-28 14:39:58 -05:00
|
|
|
CC = gcc
|
2011-04-19 11:28:28 -04:00
|
|
|
CFLAGS = -g -O2 -Wall
|
2011-09-03 07:55:16 -04:00
|
|
|
ifeq ($(ARCH),w64)
|
|
|
|
CFLAGS += -D_AMD64_
|
|
|
|
endif
|
2007-08-03 10:30:02 -04:00
|
|
|
# comment LDFLAGS below to keep debug info
|
|
|
|
LDFLAGS = -s
|
2007-01-26 03:50:06 -05:00
|
|
|
RC = windres
|
|
|
|
RCFLAGS = --include-dir=../include -O COFF -i
|
2010-08-18 10:08:20 -04:00
|
|
|
RM = del /q /f 2>NUL
|
2007-08-20 22:42:29 -04:00
|
|
|
CP = copy
|
2002-10-28 14:39:58 -05:00
|
|
|
|
|
|
|
# We may need these someday
|
|
|
|
# PERL = perl
|
|
|
|
# NROFF = nroff
|
|
|
|
|
|
|
|
########################################################
|
|
|
|
## 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
|
|
|
|
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 04:03:08 -04:00
|
|
|
ifeq ($(findstring -spnego,$(CFG)),-spnego)
|
|
|
|
SPNEGO = 1
|
|
|
|
endif
|
2011-04-19 14:59:24 -04:00
|
|
|
ifeq ($(findstring -ldaps,$(CFG)),-ldaps)
|
|
|
|
LDAPS = 1
|
|
|
|
endif
|
|
|
|
ifeq ($(findstring -ipv6,$(CFG)),-ipv6)
|
|
|
|
IPV6 = 1
|
|
|
|
endif
|
|
|
|
|
2007-08-03 10:30:02 -04:00
|
|
|
INCLUDES = -I. -I.. -I../include -I../lib
|
2007-01-26 15:05:38 -05:00
|
|
|
LINK = $(CC) $(LDFLAGS) -o $@
|
2002-10-28 14:39:58 -05:00
|
|
|
|
|
|
|
curl_PROGRAMS = curl.exe
|
|
|
|
ifdef DYN
|
|
|
|
curl_DEPENDENCIES = ../lib/libcurldll.a ../lib/libcurl.dll
|
|
|
|
curl_LDADD = -L../lib -lcurldll
|
|
|
|
else
|
|
|
|
curl_DEPENDENCIES = ../lib/libcurl.a
|
|
|
|
curl_LDADD = -L../lib -lcurl
|
2007-08-03 15:54:31 -04:00
|
|
|
CFLAGS += -DCURL_STATICLIB
|
2002-10-28 14:39:58 -05:00
|
|
|
endif
|
2007-07-04 09:45:46 -04:00
|
|
|
ifdef ARES
|
2007-08-14 14:39:26 -04:00
|
|
|
ifndef DYN
|
2010-03-30 19:10:09 -04:00
|
|
|
curl_DEPENDENCIES += $(LIBCARES_PATH)/libcares.a
|
2007-08-14 14:39:26 -04:00
|
|
|
endif
|
2007-07-04 09:45:46 -04:00
|
|
|
CFLAGS += -DUSE_ARES
|
2010-03-30 19:10:09 -04:00
|
|
|
curl_LDADD += -L$(LIBCARES_PATH) -lcares
|
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
|
2007-01-25 08:14:42 -05:00
|
|
|
ifdef SSH2
|
|
|
|
CFLAGS += -DUSE_LIBSSH2 -DHAVE_LIBSSH2_H
|
|
|
|
curl_LDADD += -L$(LIBSSH2_PATH)/win32 -lssh2
|
|
|
|
endif
|
2002-10-28 14:39:58 -05:00
|
|
|
ifdef SSL
|
2007-01-25 08:14:42 -05:00
|
|
|
CFLAGS += -DUSE_SSLEAY -DHAVE_OPENSSL_ENGINE_H
|
2003-02-28 10:49:32 -05:00
|
|
|
curl_LDADD += -L$(OPENSSL_PATH)/out -leay32 -lssl32
|
2002-10-28 14:39:58 -05:00
|
|
|
endif
|
2007-08-03 10:30:02 -04:00
|
|
|
ifdef ZLIB
|
|
|
|
INCLUDES += -I"$(ZLIB_PATH)"
|
|
|
|
CFLAGS += -DHAVE_LIBZ -DHAVE_ZLIB_H
|
|
|
|
curl_LDADD += -L$(ZLIB_PATH) -lz
|
|
|
|
endif
|
2008-11-11 12:43:02 -05:00
|
|
|
ifdef IDN
|
|
|
|
INCLUDES += -I"$(LIBIDN_PATH)/include"
|
|
|
|
CFLAGS += -DUSE_LIBIDN
|
|
|
|
curl_LDADD += -L$(LIBIDN_PATH)/lib -lidn
|
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
|
2011-09-04 04:03:08 -04:00
|
|
|
ifdef SPNEGO
|
|
|
|
CFLAGS += -DHAVE_SPNEGO
|
|
|
|
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
|
2007-08-03 10:30:02 -04:00
|
|
|
COMPILE = $(CC) $(INCLUDES) $(CFLAGS)
|
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
|
|
|
|
|
2010-08-02 06:24:54 -04:00
|
|
|
curl_OBJECTS := $(patsubst %.c,%.o,$(strip $(CURL_CFILES)))
|
2009-01-26 02:33:29 -05:00
|
|
|
ifdef DYN
|
|
|
|
curlx_OBJECTS := $(patsubst %.c,%.o,$(notdir $(strip $(CURLX_ONES))))
|
|
|
|
curl_OBJECTS += $(curlx_OBJECTS)
|
|
|
|
vpath %.c ../lib
|
|
|
|
endif
|
2004-07-05 09:25:30 -04:00
|
|
|
|
2008-01-29 18:46:41 -05:00
|
|
|
RESOURCE = curl.res
|
|
|
|
|
2007-01-26 03:50:06 -05:00
|
|
|
.SUFFIXES: .rc .res
|
2002-10-28 14:39:58 -05:00
|
|
|
|
|
|
|
all: curl.exe
|
|
|
|
|
2008-01-29 18:46:41 -05:00
|
|
|
curl.exe: $(RESOURCE) $(curl_OBJECTS) $(curl_DEPENDENCIES)
|
2007-08-19 19:23:50 -04:00
|
|
|
-$(RM) $@
|
2007-01-26 03:50:06 -05:00
|
|
|
$(LINK) $< $(curl_OBJECTS) $(curl_LDADD)
|
2002-10-28 14:39:58 -05:00
|
|
|
|
|
|
|
# We don't have nroff normally under win32
|
|
|
|
# hugehelp.c: ../README.curl ../curl.1 mkhelp.pl
|
2007-08-19 19:23:50 -04:00
|
|
|
# -$(RM) hugehelp.c
|
2002-10-28 14:39:58 -05:00
|
|
|
# $(NROFF) -man ../curl.1 | $(PERL) mkhelp.pl ../README.curl > hugehelp.c
|
|
|
|
|
2007-08-20 22:42:29 -04:00
|
|
|
hugehelp.c:
|
|
|
|
@echo Creating $@
|
|
|
|
@$(CP) hugehelp.c.cvs $@
|
|
|
|
|
2002-10-28 14:39:58 -05:00
|
|
|
.c.o:
|
|
|
|
$(COMPILE) -c $<
|
|
|
|
|
2007-08-03 10:30:02 -04:00
|
|
|
.rc.res:
|
|
|
|
$(RC) $(RCFLAGS) $< -o $@
|
|
|
|
|
2002-10-28 14:39:58 -05:00
|
|
|
clean:
|
2007-08-20 22:42:29 -04:00
|
|
|
ifeq "$(wildcard hugehelp.c.cvs)" "hugehelp.c.cvs"
|
|
|
|
-$(RM) hugehelp.c
|
|
|
|
endif
|
2008-01-29 18:46:41 -05:00
|
|
|
-$(RM) $(curl_OBJECTS) $(RESOURCE)
|
2002-10-28 14:39:58 -05:00
|
|
|
|
2010-08-15 10:55:02 -04:00
|
|
|
distclean vclean: clean
|
2007-08-19 19:23:50 -04:00
|
|
|
-$(RM) $(curl_PROGRAMS)
|
2007-08-20 22:42:29 -04:00
|
|
|
|