1999-12-29 09:20:26 -05:00
|
|
|
#############################################################
|
|
|
|
## Makefile for building libcurl.a with MingW32 (GCC-2.95) and
|
|
|
|
## optionally OpenSSL (0.9.4)
|
|
|
|
## Use: make -f Makefile.m32
|
|
|
|
##
|
|
|
|
## Comments to: Troy Engel <tengel@sonic.net> or
|
|
|
|
## Joern Hartroth <hartroth@acm.org>
|
|
|
|
|
|
|
|
CC = gcc
|
|
|
|
AR = ar
|
|
|
|
RANLIB = ranlib
|
2000-05-22 13:18:55 -04:00
|
|
|
OPENSSL_PATH = ../../openssl-0.9.5a
|
1999-12-29 09:20:26 -05:00
|
|
|
|
|
|
|
########################################################
|
|
|
|
## Nothing more to do below this line!
|
|
|
|
|
|
|
|
INCLUDES = -I. -I.. -I../include
|
2000-06-14 10:28:45 -04:00
|
|
|
CFLAGS = -g -O2 -DMINGW32
|
1999-12-29 09:20:26 -05:00
|
|
|
ifdef SSL
|
|
|
|
INCLUDES += -I"$(OPENSSL_PATH)/outinc" -I"$(OPENSSL_PATH)/outinc/openssl"
|
|
|
|
CFLAGS += -DUSE_SSLEAY
|
|
|
|
endif
|
|
|
|
COMPILE = $(CC) $(INCLUDES) $(CFLAGS)
|
|
|
|
|
|
|
|
libcurl_a_LIBRARIES = libcurl.a
|
|
|
|
|
2000-02-21 17:25:02 -05:00
|
|
|
libcurl_a_SOURCES = base64.c getenv.c if2ip.h progress.h \
|
1999-12-29 09:20:26 -05:00
|
|
|
base64.h getenv.h mprintf.c setup.h url.c download.c getpass.c \
|
|
|
|
mprintf.h ssluse.c url.h download.h hostip.c netrc.c ssluse.h \
|
|
|
|
urldata.h formdata.c hostip.h netrc.h stdcheaders.h formdata.h \
|
2000-02-21 17:25:02 -05:00
|
|
|
if2ip.c progress.c sendf.c sendf.h speedcheck.c speedcheck.h \
|
2000-06-14 10:28:45 -04:00
|
|
|
ftp.c ftp.h getpass.h version.c timeval.c timeval.h cookie.c \
|
1999-12-29 09:20:26 -05:00
|
|
|
cookie.h escape.c escape.h getdate.c getdate.h dict.h dict.c http.c \
|
2000-05-22 13:18:55 -04:00
|
|
|
http.h telnet.c telnet.h file.c file.h ldap.c ldap.h writeout.c writeout.h \
|
|
|
|
highlevel.c strequal.c strequal.h easy.c
|
1999-12-29 09:20:26 -05:00
|
|
|
|
|
|
|
libcurl_a_OBJECTS = base64.o getenv.o mprintf.o url.o download.o \
|
|
|
|
getpass.o ssluse.o hostip.o netrc.o formdata.o if2ip.o progress.o \
|
2000-06-14 10:28:45 -04:00
|
|
|
sendf.o speedcheck.o ftp.o version.o timeval.o \
|
2000-05-22 13:18:55 -04:00
|
|
|
cookie.o escape.o getdate.o dict.o http.o telnet.o file.o ldap.o writeout.o \
|
|
|
|
highlevel.o strequal.o easy.o
|
1999-12-29 09:20:26 -05:00
|
|
|
|
|
|
|
LIBRARIES = $(libcurl_a_LIBRARIES)
|
|
|
|
SOURCES = $(libcurl_a_SOURCES)
|
|
|
|
OBJECTS = $(libcurl_a_OBJECTS)
|
|
|
|
|
|
|
|
|
|
|
|
all: libcurl.a
|
|
|
|
|
|
|
|
libcurl.a: $(libcurl_a_OBJECTS) $(libcurl_a_DEPENDENCIES)
|
|
|
|
-@erase libcurl.a
|
|
|
|
$(AR) cru libcurl.a $(libcurl_a_OBJECTS)
|
|
|
|
$(RANLIB) libcurl.a
|
|
|
|
|
|
|
|
.c.o:
|
|
|
|
$(COMPILE) -c $<
|
|
|
|
|
|
|
|
.s.o:
|
|
|
|
$(COMPILE) -c $<
|
|
|
|
|
|
|
|
.S.o:
|
|
|
|
$(COMPILE) -c $<
|
|
|
|
|
|
|
|
clean:
|
|
|
|
-@erase $(libcurl_a_OBJECTS)
|
|
|
|
|
|
|
|
distrib: clean
|
2000-05-22 13:18:55 -04:00
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
-@erase $(libcurl_a_LIBRARIES)
|
|
|
|
|