2007-08-20 12:21:51 -04:00
|
|
|
#########################################################################
|
2002-10-28 14:39:58 -05:00
|
|
|
# $Id$
|
|
|
|
#
|
|
|
|
## Makefile for building curl.exe with MingW32 (GCC-3.2) and
|
2007-08-18 20:26:24 -04:00
|
|
|
## optionally OpenSSL (0.9.8), libssh2 (0.17), zlib (1.2.3)
|
2002-10-28 14:39:58 -05:00
|
|
|
##
|
2007-08-18 20:26:24 -04:00
|
|
|
## Usage:
|
|
|
|
## mingw32-make -f Makefile.m32 [SSL=1] [SSH2=1] [ZLIB=1] [SSPI=1] [IPV6=1] [DYN=1]
|
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.:
|
|
|
|
## set ZLIB_PATH=c:/zlib-1.2.3
|
|
|
|
## 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
|
|
|
|
ZLIB_PATH = ../../zlib-1.2.3
|
|
|
|
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
|
2007-08-03 08:53:00 -04:00
|
|
|
OPENSSL_PATH = ../../openssl-0.9.8e
|
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
|
2007-08-20 23:04:46 -04:00
|
|
|
LIBSSH2_PATH = ../../libssh2-0.17
|
2004-07-05 09:25:30 -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
|
|
|
|
|
2007-07-04 09:45:46 -04:00
|
|
|
ARES_LIB = ../ares
|
|
|
|
|
2002-10-28 14:39:58 -05:00
|
|
|
CC = gcc
|
2007-01-26 16:00:02 -05:00
|
|
|
CFLAGS = -g -O2
|
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
|
2007-08-03 10:30:02 -04:00
|
|
|
RM = del /q /f
|
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!
|
|
|
|
|
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
|
|
|
|
curl_DEPENDENCIES += $(ARES_LIB)/libcares.a
|
|
|
|
endif
|
2007-07-04 09:45:46 -04:00
|
|
|
CFLAGS += -DUSE_ARES
|
|
|
|
curl_LDADD += -L$(ARES_LIB) -lcares
|
|
|
|
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
|
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
|
|
|
|
CFLAGS += -DENABLE_IPV6
|
|
|
|
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
|
|
|
|
curl_LDADD += -lws2_32 -lwinmm
|
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
|
|
|
|
|
2007-02-20 07:13:14 -05:00
|
|
|
curl_OBJECTS := $(patsubst %.c,%.o,$(strip $(CURL_SOURCES)))
|
2004-07-05 09:25:30 -04:00
|
|
|
# curlx_OBJECTS := $(patsubst %.c,%.o,$(notdir $(strip $(CURLX_ONES))))
|
|
|
|
# vpath %.c ../lib
|
|
|
|
|
2007-01-26 03:50:06 -05:00
|
|
|
.SUFFIXES: .rc .res
|
2002-10-28 14:39:58 -05:00
|
|
|
|
|
|
|
all: curl.exe
|
|
|
|
|
2007-01-26 03:50:06 -05:00
|
|
|
curl.exe: curl.res $(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
|
2007-08-19 19:23:50 -04:00
|
|
|
-$(RM) $(curl_OBJECTS)
|
2002-10-28 14:39:58 -05:00
|
|
|
|
|
|
|
distrib: clean
|
2007-08-19 19:23:50 -04:00
|
|
|
-$(RM) $(curl_PROGRAMS)
|
2007-08-20 22:42:29 -04:00
|
|
|
|
|
|
|
|