2007-08-20 12:21:51 -04:00
|
|
|
#########################################################################
|
2004-07-05 09:25:30 -04:00
|
|
|
# $Id$
|
2002-09-06 18:05:36 -04:00
|
|
|
#
|
2002-10-28 14:38:46 -05:00
|
|
|
## Makefile for building libcurl.a 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)
|
2004-07-05 09:25:30 -04: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-09-06 18:05:36 -04: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-09-06 18:05:36 -04:00
|
|
|
## Comments to: Troy Engel <tengel@sonic.net> or
|
|
|
|
## Joern Hartroth <hartroth@acm.org>
|
2007-08-20 12:21:51 -04:00
|
|
|
#########################################################################
|
2002-09-06 18:05:36 -04: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
|
2008-01-16 20:25:46 -05:00
|
|
|
OPENSSL_PATH = ../../openssl-0.9.8g
|
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
|
2008-01-16 20:25:46 -05:00
|
|
|
LIBSSH2_PATH = ../../libssh2-0.18
|
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-09-06 18:05:36 -04:00
|
|
|
CC = gcc
|
|
|
|
AR = ar
|
2007-08-03 10:30:02 -04:00
|
|
|
# comment LDFLAGS below to keep debug info
|
|
|
|
LDFLAGS = -s
|
2002-09-06 18:05:36 -04:00
|
|
|
RANLIB = ranlib
|
2007-08-03 10:30:02 -04:00
|
|
|
RC = windres
|
|
|
|
RCFLAGS = --include-dir=../include -DCURLDEBUG=0 -O COFF -i
|
|
|
|
RM = del /q /f
|
2002-09-06 18:05:36 -04:00
|
|
|
STRIP = strip -g
|
|
|
|
|
|
|
|
########################################################
|
|
|
|
## Nothing more to do below this line!
|
|
|
|
|
2004-11-09 09:00:56 -05:00
|
|
|
INCLUDES = -I. -I../include
|
2007-08-07 13:40:56 -04:00
|
|
|
CFLAGS = -g -O2 -DBUILDING_LIBCURL
|
2007-07-04 09:45:46 -04:00
|
|
|
ifdef ARES
|
|
|
|
INCLUDES += -I$(ARES_LIB)
|
|
|
|
CFLAGS += -DUSE_ARES
|
|
|
|
DLL_LIBS += -L$(ARES_LIB) -lcares
|
2007-08-14 14:39:26 -04:00
|
|
|
libcurl_dll_DEPENDENCIES = $(ARES_LIB)/libcares.a
|
2007-07-04 09:45:46 -04:00
|
|
|
endif
|
2007-01-25 08:14:42 -05:00
|
|
|
ifdef SSH2
|
|
|
|
INCLUDES += -I"$(LIBSSH2_PATH)/include" -I"$(LIBSSH2_PATH)/win32"
|
|
|
|
CFLAGS += -DUSE_LIBSSH2 -DHAVE_LIBSSH2_H
|
|
|
|
DLL_LIBS += -L$(LIBSSH2_PATH)/win32 -lssh2
|
|
|
|
endif
|
2002-09-06 18:05:36 -04:00
|
|
|
ifdef SSL
|
|
|
|
INCLUDES += -I"$(OPENSSL_PATH)/outinc" -I"$(OPENSSL_PATH)/outinc/openssl"
|
2004-12-19 06:52:31 -05:00
|
|
|
CFLAGS += -DUSE_SSLEAY -DUSE_OPENSSL -DHAVE_OPENSSL_ENGINE_H -DHAVE_OPENSSL_PKCS12_H \
|
|
|
|
-DHAVE_ENGINE_LOAD_BUILTIN_ENGINES -DOPENSSL_NO_KRB5 \
|
2007-01-28 19:51:02 -05:00
|
|
|
-DCURL_WANTS_CA_BUNDLE_ENV
|
2007-01-25 08:14:42 -05:00
|
|
|
DLL_LIBS += -L$(OPENSSL_PATH)/out -leay32 -lssl32
|
2002-09-06 18:05:36 -04:00
|
|
|
endif
|
|
|
|
ifdef ZLIB
|
2003-07-25 04:59:55 -04:00
|
|
|
INCLUDES += -I"$(ZLIB_PATH)"
|
|
|
|
CFLAGS += -DHAVE_LIBZ -DHAVE_ZLIB_H
|
|
|
|
DLL_LIBS += -L$(ZLIB_PATH) -lz
|
2002-09-06 18:05:36 -04: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
|
|
|
|
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
|
|
|
|
INCLUDES += -I"$(LDAP_SDK)/inc"
|
|
|
|
CFLAGS += -DCURL_HAS_NOVELL_LDAPSDK
|
|
|
|
DLL_LIBS += -L"$(LDAP_SDK)/lib/mscvc" -lldapsdk -lldapssl -lldapx
|
|
|
|
endif
|
|
|
|
ifdef USE_LDAP_OPENLDAP
|
|
|
|
INCLUDES += -I"$(LDAP_SDK)/include"
|
|
|
|
CFLAGS += -DCURL_HAS_OPENLDAP_LDAPSDK
|
|
|
|
DLL_LIBS += -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
|
|
|
|
DLL_LIBS += -lwldap32
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
DLL_LIBS += -lws2_32 -lwinmm
|
2002-09-06 18:05:36 -04:00
|
|
|
COMPILE = $(CC) $(INCLUDES) $(CFLAGS)
|
|
|
|
|
2004-07-05 09:25:30 -04:00
|
|
|
# Makefile.inc provides the CSOURCES and HHEADERS defines
|
|
|
|
include Makefile.inc
|
2002-09-06 18:05:36 -04:00
|
|
|
|
2007-08-14 14:39:26 -04:00
|
|
|
libcurl_dll_LIBRARY = libcurl.dll
|
|
|
|
libcurl_dll_a_LIBRARY = libcurldll.a
|
|
|
|
libcurl_a_LIBRARY = libcurl.a
|
2002-09-06 18:05:36 -04:00
|
|
|
|
2007-08-14 14:39:26 -04:00
|
|
|
libcurl_a_OBJECTS := $(patsubst %.c,%.o,$(strip $(CSOURCES)))
|
|
|
|
libcurl_a_DEPENDENCIES := $(strip $(CSOURCES) $(HHEADERS))
|
2002-09-06 18:05:36 -04:00
|
|
|
|
2007-08-03 10:30:02 -04:00
|
|
|
RESOURCE = libcurl.res
|
|
|
|
|
|
|
|
.SUFFIXES: .rc .res
|
|
|
|
|
2007-08-20 22:42:29 -04:00
|
|
|
all: ca-bundle.h $(libcurl_a_LIBRARY) $(libcurl_dll_LIBRARY)
|
2002-09-06 18:05:36 -04:00
|
|
|
|
2007-08-14 14:39:26 -04:00
|
|
|
$(libcurl_a_LIBRARY): $(libcurl_a_OBJECTS) $(libcurl_a_DEPENDENCIES)
|
2007-08-19 19:23:50 -04:00
|
|
|
-$(RM) $@
|
2007-08-14 14:39:26 -04:00
|
|
|
$(AR) cru $@ $(libcurl_a_OBJECTS)
|
|
|
|
$(RANLIB) $@
|
2002-09-06 18:05:36 -04:00
|
|
|
$(STRIP) $@
|
|
|
|
|
|
|
|
# remove the last line above to keep debug info
|
|
|
|
|
2007-08-14 14:39:26 -04:00
|
|
|
$(libcurl_dll_LIBRARY): $(libcurl_a_OBJECTS) $(RESOURCE) $(libcurl_dll_DEPENDENCIES)
|
2007-08-19 19:23:50 -04:00
|
|
|
-$(RM) $@
|
2007-08-14 14:39:26 -04:00
|
|
|
$(CC) $(LDFLAGS) -shared -Wl,--out-implib,$(libcurl_dll_a_LIBRARY) \
|
|
|
|
-o $@ $(libcurl_a_OBJECTS) $(RESOURCE) $(DLL_LIBS)
|
2002-09-06 18:05:36 -04:00
|
|
|
|
|
|
|
.c.o:
|
|
|
|
$(COMPILE) -c $<
|
|
|
|
|
2007-08-03 10:30:02 -04:00
|
|
|
.rc.res:
|
|
|
|
$(RC) $(RCFLAGS) $< -o $@
|
2003-11-06 10:09:30 -05:00
|
|
|
|
2002-09-06 18:05:36 -04:00
|
|
|
clean:
|
2007-08-20 22:42:29 -04:00
|
|
|
-$(RM) $(libcurl_a_OBJECTS) $(RESOURCE) ca-bundle.h
|
2002-09-06 18:05:36 -04:00
|
|
|
|
|
|
|
distrib: clean
|
2007-08-19 19:23:50 -04:00
|
|
|
-$(RM) $(libcurl_a_LIBRARY) $(libcurl_dll_LIBRARY) $(libcurl_dll_a_LIBRARY)
|
2007-08-14 14:39:26 -04:00
|
|
|
|
2007-08-20 22:42:29 -04:00
|
|
|
FORCE: ;
|
|
|
|
|
|
|
|
ca-bundle.h: FORCE Makefile.m32
|
|
|
|
@echo Creating $@
|
|
|
|
@echo $(DL)/* Do not edit this file - it is created by make!$(DL) > $@
|
|
|
|
@echo $(DL)*/$(DL) >> $@
|
|
|
|
|
2007-08-14 14:39:26 -04:00
|
|
|
$(ARES_LIB)/libcares.a:
|
|
|
|
$(MAKE) -C $(ARES_LIB) -f Makefile.m32
|
|
|
|
|
2002-09-06 18:05:36 -04:00
|
|
|
|