curl/src/Makefile.m32

108 lines
2.4 KiB
Makefile
Raw Normal View History

#############################################################
# $Id$
#
## Makefile for building curl.exe with MingW32 (GCC-3.2) and
2007-01-25 08:14:42 -05:00
## optionally OpenSSL (0.9.8)
##
2007-08-03 10:30:02 -04:00
## Use: mingw32-make -f Makefile.m32 [SSL=1] [SSH2=1] [DYN=1]
##
## Comments to: Troy Engel <tengel@sonic.net> or
## Joern Hartroth <hartroth@acm.org>
ifndef OPENSSL_PATH
OPENSSL_PATH = ../../openssl-0.9.8e
2007-01-25 08:14:42 -05:00
endif
ifndef LIBSSH2_PATH
LIBSSH2_PATH = ../../libssh2-0.16
endif
ifndef ZLIB_PATH
2007-01-25 08:14:42 -05:00
ZLIB_PATH = ../../zlib-1.2.3
endif
2007-07-04 09:45:46 -04:00
ARES_LIB = ../ares
CC = gcc
CFLAGS = -g -O2
2007-08-03 10:30:02 -04:00
# comment LDFLAGS below to keep debug info
LDFLAGS = -s
2007-01-26 03:50:06 -05:00
RC = windres
RCFLAGS = --include-dir=../include -O COFF -i
2007-08-03 10:30:02 -04:00
RM = del /q /f
# We may need these someday
# PERL = perl
# NROFF = nroff
########################################################
## Nothing more to do below this line!
2007-08-03 10:30:02 -04:00
INCLUDES = -I. -I.. -I../include -I../lib
2007-01-26 15:05:38 -05:00
LINK = $(CC) $(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
CFLAGS += -DCURL_STATICLIB
endif
2007-07-04 09:45:46 -04:00
ifdef ARES
CFLAGS += -DUSE_ARES
curl_LDADD += -L$(ARES_LIB) -lcares
endif
2007-01-25 08:14:42 -05:00
ifdef SSH2
CFLAGS += -DUSE_LIBSSH2 -DHAVE_LIBSSH2_H
curl_LDADD += -L$(LIBSSH2_PATH)/win32 -lssh2
endif
ifdef SSL
2007-01-25 08:14:42 -05:00
CFLAGS += -DUSE_SSLEAY -DHAVE_OPENSSL_ENGINE_H
curl_LDADD += -L$(OPENSSL_PATH)/out -leay32 -lssl32
endif
2007-08-03 10:30:02 -04:00
ifdef ZLIB
INCLUDES += -I"$(ZLIB_PATH)"
CFLAGS += -DHAVE_LIBZ -DHAVE_ZLIB_H
curl_LDADD += -L$(ZLIB_PATH) -lz
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
curl_LDADD += -lwsock32 -lws2_32 -lwinmm
COMPILE = $(CC) $(INCLUDES) $(CFLAGS)
# Makefile.inc provides the CSOURCES and HHEADERS defines
include Makefile.inc
curl_OBJECTS := $(patsubst %.c,%.o,$(strip $(CURL_SOURCES)))
# curlx_OBJECTS := $(patsubst %.c,%.o,$(notdir $(strip $(CURLX_ONES))))
# vpath %.c ../lib
2007-01-26 03:50:06 -05:00
.SUFFIXES: .rc .res
all: curl.exe
2007-01-26 03:50:06 -05:00
curl.exe: curl.res $(curl_OBJECTS) $(curl_DEPENDENCIES)
$(RM) $@
2007-01-26 03:50:06 -05:00
$(LINK) $< $(curl_OBJECTS) $(curl_LDADD)
# 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 $<
2007-08-03 10:30:02 -04:00
.rc.res:
$(RC) $(RCFLAGS) $< -o $@
clean:
2007-08-03 10:30:02 -04:00
$(RM) $(curl_OBJECTS)
distrib: clean
$(RM) $(curl_PROGRAMS)