2002-09-06 18:05:36 -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-01-25 08:14:42 -05:00
|
|
|
## optionally OpenSSL (0.9.8)
|
2004-07-05 09:25:30 -04:00
|
|
|
##
|
2007-08-03 10:30:02 -04:00
|
|
|
## Use: mingw32-make -f Makefile.m32 [SSL=1] [SSH2=1] [DYN=1]
|
2002-09-06 18:05:36 -04:00
|
|
|
##
|
|
|
|
## Comments to: Troy Engel <tengel@sonic.net> or
|
|
|
|
## Joern Hartroth <hartroth@acm.org>
|
|
|
|
|
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
|
|
|
|
ifndef LIBSSH2_PATH
|
2007-08-03 08:53:00 -04:00
|
|
|
LIBSSH2_PATH = ../../libssh2-0.16
|
2004-07-05 09:25:30 -04:00
|
|
|
endif
|
|
|
|
ifndef ZLIB_PATH
|
2007-01-25 08:14:42 -05:00
|
|
|
ZLIB_PATH = ../../zlib-1.2.3
|
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-01-25 10:00:01 -05:00
|
|
|
CFLAGS = -g -O2 -DBUILDING_LIBCURL -DHAVE_LONGLONG
|
2007-07-04 09:45:46 -04:00
|
|
|
ifdef ARES
|
|
|
|
INCLUDES += -I$(ARES_LIB)
|
|
|
|
CFLAGS += -DUSE_ARES
|
|
|
|
DLL_LIBS += -L$(ARES_LIB) -lcares
|
|
|
|
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-03 10:30:02 -04:00
|
|
|
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
|
|
|
|
2004-07-05 09:25:30 -04:00
|
|
|
libcurl_a_OBJECTS := $(patsubst %.c,%.o,$(strip $(CSOURCES)))
|
2002-09-06 18:05:36 -04:00
|
|
|
|
2004-07-05 09:25:30 -04:00
|
|
|
libcurl_a_LIBRARIES = libcurl.a
|
|
|
|
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
|
|
|
|
|
2002-09-06 18:05:36 -04:00
|
|
|
all: libcurl.a libcurl.dll libcurldll.a
|
|
|
|
|
|
|
|
libcurl.a: $(libcurl_a_OBJECTS) $(libcurl_a_DEPENDENCIES)
|
2002-10-28 14:38:46 -05:00
|
|
|
$(RM) libcurl.a
|
2002-09-06 18:05:36 -04:00
|
|
|
$(AR) cru libcurl.a $(libcurl_a_OBJECTS)
|
|
|
|
$(RANLIB) libcurl.a
|
|
|
|
$(STRIP) $@
|
|
|
|
|
|
|
|
# remove the last line above to keep debug info
|
|
|
|
|
2004-11-09 09:00:56 -05:00
|
|
|
libcurl.dll libcurldll.a: $(libcurl_a_OBJECTS) $(RESOURCE)
|
2002-10-28 14:38:46 -05:00
|
|
|
$(RM) $@
|
2007-08-03 10:30:02 -04:00
|
|
|
$(CC) $(LDFLAGS) -shared -Wl,--out-implib,libcurldll.a -o libcurl.dll \
|
|
|
|
$(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:
|
2003-11-06 10:09:30 -05:00
|
|
|
$(RM) $(libcurl_a_OBJECTS) $(RESOURCE)
|
2002-09-06 18:05:36 -04:00
|
|
|
|
|
|
|
distrib: clean
|
2002-10-28 14:38:46 -05:00
|
|
|
$(RM) $(libcurl_a_LIBRARIES)
|
2002-09-06 18:05:36 -04:00
|
|
|
|