2002-10-28 14:39:58 -05:00
|
|
|
#############################################################
|
|
|
|
# $Id$
|
|
|
|
#
|
|
|
|
## Makefile for building curl.exe with MingW32 (GCC-3.2) and
|
2003-10-21 10:14:25 -04:00
|
|
|
## optionally OpenSSL (0.9.7)
|
2002-10-28 14:39:58 -05:00
|
|
|
##
|
|
|
|
## Use: make -f Makefile.m32 [SSL=1] [DYN=1]
|
|
|
|
##
|
|
|
|
## 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-10-28 14:39:58 -05:00
|
|
|
CC = gcc
|
|
|
|
RM = rm -f
|
|
|
|
STRIP = strip -s
|
|
|
|
|
|
|
|
# We may need these someday
|
|
|
|
# PERL = perl
|
|
|
|
# NROFF = nroff
|
|
|
|
|
|
|
|
########################################################
|
|
|
|
## Nothing more to do below this line!
|
|
|
|
|
2004-04-02 02:18:13 -05:00
|
|
|
INCLUDES = -I. -I.. -I../include -I../lib -I$(ZLIB_PATH)
|
2002-10-28 14:39:58 -05:00
|
|
|
CFLAGS = -g -O2 -DMINGW32
|
|
|
|
ifdef SSL
|
2003-02-28 10:49:32 -05:00
|
|
|
CFLAGS += -DUSE_SSLEAY -DHAVE_OPENSSL_ENGINE_H
|
2002-10-28 14:39:58 -05:00
|
|
|
endif
|
2004-11-13 10:47:17 -05:00
|
|
|
LDFLAGS =
|
2002-10-28 14:39:58 -05:00
|
|
|
COMPILE = $(CC) $(INCLUDES) $(CFLAGS)
|
|
|
|
LINK = $(CC) $(CFLAGS) $(LDFLAGS) -o $@
|
|
|
|
|
|
|
|
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
|
2004-11-13 10:47:17 -05:00
|
|
|
COMPILE += -DCURL_STATICLIB
|
2002-10-28 14:39:58 -05:00
|
|
|
endif
|
2003-07-25 04:59:55 -04:00
|
|
|
curl_LDADD += -lwsock32 -lws2_32 -lwinmm -L$(ZLIB_PATH) -lz
|
2002-10-28 14:39:58 -05:00
|
|
|
ifdef SSL
|
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
|
|
|
|
|
2004-07-05 09:25:30 -04:00
|
|
|
# Makefile.inc provides the CSOURCES and HHEADERS defines
|
|
|
|
include Makefile.inc
|
|
|
|
|
2004-11-13 10:47:17 -05:00
|
|
|
curl_OBJECTS := $(patsubst %.c,%.o,$(notdir $(strip $(CURL_SOURCES) ../lib/timeval.c)))
|
2004-07-05 09:25:30 -04:00
|
|
|
# curlx_OBJECTS := $(patsubst %.c,%.o,$(notdir $(strip $(CURLX_ONES))))
|
|
|
|
# vpath %.c ../lib
|
|
|
|
|
2002-10-28 14:39:58 -05:00
|
|
|
|
|
|
|
all: curl.exe
|
|
|
|
|
|
|
|
curl.exe: $(curl_OBJECTS) $(curl_DEPENDENCIES)
|
|
|
|
$(RM) $@
|
|
|
|
$(LINK) $(curl_OBJECTS) $(curl_LDADD)
|
|
|
|
$(STRIP) $@
|
|
|
|
|
2004-11-13 10:47:17 -05:00
|
|
|
timeval.o: ../lib/timeval.c
|
|
|
|
$(COMPILE) -c $<
|
|
|
|
|
2002-10-28 14:39:58 -05:00
|
|
|
# We don't have nroff normally under win32
|
|
|
|
# hugehelp.c: ../README.curl ../curl.1 mkhelp.pl
|
|
|
|
# $(RM) hugehelp.c
|
|
|
|
# $(NROFF) -man ../curl.1 | $(PERL) mkhelp.pl ../README.curl > hugehelp.c
|
|
|
|
|
|
|
|
.c.o:
|
|
|
|
$(COMPILE) -c $<
|
|
|
|
|
|
|
|
.s.o:
|
|
|
|
$(COMPILE) -c $<
|
|
|
|
|
|
|
|
.S.o:
|
|
|
|
$(COMPILE) -c $<
|
|
|
|
|
|
|
|
clean:
|
2003-02-28 10:49:32 -05:00
|
|
|
$(RM) $(curl_OBJECTS) curl.exe
|
2002-10-28 14:39:58 -05:00
|
|
|
|
|
|
|
distrib: clean
|
|
|
|
$(RM) $(curl_PROGRAMS)
|