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
|
2003-10-21 10:14:25 -04:00
|
|
|
## optionally OpenSSL (0.9.7)
|
2004-07-05 09:25:30 -04:00
|
|
|
##
|
2002-09-06 18:05:36 -04:00
|
|
|
## Use: make -f Makefile.m32
|
|
|
|
##
|
|
|
|
## Comments to: Troy Engel <tengel@sonic.net> or
|
|
|
|
## Joern Hartroth <hartroth@acm.org>
|
|
|
|
|
2004-07-05 09:25:30 -04:00
|
|
|
ifndef OPENSSL_PATH
|
|
|
|
OPENSSL_PATH = ../../openssl-0.9.7d
|
|
|
|
endif
|
|
|
|
ifndef ZLIB_PATH
|
|
|
|
ZLIB_PATH = ../../zlib-1.2.1
|
|
|
|
endif
|
|
|
|
|
2002-09-06 18:05:36 -04:00
|
|
|
CC = gcc
|
|
|
|
AR = ar
|
2004-11-09 09:00:56 -05:00
|
|
|
RM = rm -f
|
2002-09-06 18:05:36 -04:00
|
|
|
RANLIB = ranlib
|
|
|
|
STRIP = strip -g
|
|
|
|
|
|
|
|
########################################################
|
|
|
|
## Nothing more to do below this line!
|
|
|
|
|
2004-11-09 09:00:56 -05:00
|
|
|
INCLUDES = -I. -I../include
|
2004-11-19 10:15:52 -05:00
|
|
|
CFLAGS = -g -O2 -DMINGW32 -DBUILDING_LIBCURL -DHAVE_LONGLONG
|
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 \
|
|
|
|
-DCURL_CA_BUNDLE='getenv("CURL_CA_BUNDLE")'
|
2003-02-28 10:49:32 -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
|
|
|
|
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
|
|
|
|
|
|
|
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) $@
|
|
|
|
|
2003-11-06 10:09:30 -05:00
|
|
|
RESOURCE = libcurl.res
|
2002-11-15 09:13:05 -05:00
|
|
|
|
2002-09-06 18:05:36 -04:00
|
|
|
# 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) $@
|
2004-11-09 09:00:56 -05:00
|
|
|
$(CC) -s -shared -Wl,--out-implib,libcurldll.a -o libcurl.dll \
|
|
|
|
$(libcurl_a_OBJECTS) $(RESOURCE) $(DLL_LIBS) -lws2_32 -lwinmm
|
2002-09-06 18:05:36 -04:00
|
|
|
|
2004-11-09 09:00:56 -05:00
|
|
|
# remove the above '-s' to keep debug info
|
2002-09-06 18:05:36 -04:00
|
|
|
|
|
|
|
.c.o:
|
|
|
|
$(COMPILE) -c $<
|
|
|
|
|
2003-11-06 10:09:30 -05:00
|
|
|
libcurl.res: libcurl.rc
|
|
|
|
windres -DCURLDEBUG=0 -O COFF -o $@ -i $^
|
|
|
|
|
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
|
|
|
|