2004-07-13 16:01:15 -04:00
|
|
|
############################################################
|
|
|
|
#
|
|
|
|
# Makefile.b32 - Borland's C++ Compiler 5.X
|
|
|
|
#
|
|
|
|
# 'lib' directory
|
|
|
|
#
|
2011-01-11 20:35:14 -05:00
|
|
|
# 'BCCDIR' has to be set up to point to the base directory
|
|
|
|
# of the compiler, i.e. SET BCCDIR = c:\Borland\BCC55
|
|
|
|
#
|
2011-01-13 09:54:14 -05:00
|
|
|
# Initially written by Jaepil Kim, pit@paradise.net.nz
|
2004-07-13 16:01:15 -04:00
|
|
|
############################################################
|
|
|
|
|
2011-01-12 14:53:28 -05:00
|
|
|
!if "$(__MAKE__)" == ""
|
|
|
|
!error __MAKE__ not defined. Use Borlands's MAKE to process this makefile.
|
|
|
|
!endif
|
|
|
|
|
2011-01-12 12:07:04 -05:00
|
|
|
# Borland's $(MAKEDIR) expands to the path where make.exe is located,
|
|
|
|
# use this feature to define BCCDIR when user has not defined BCCDIR.
|
2011-01-13 09:33:34 -05:00
|
|
|
!ifndef BCCDIR
|
2011-01-12 12:07:04 -05:00
|
|
|
BCCDIR = $(MAKEDIR)\..
|
2011-01-11 11:51:14 -05:00
|
|
|
!endif
|
|
|
|
|
2004-07-14 21:59:59 -04:00
|
|
|
# Edit the path below to point to the base of your Zlib sources.
|
|
|
|
!ifndef ZLIB_PATH
|
2013-05-11 11:08:00 -04:00
|
|
|
ZLIB_PATH = ..\..\zlib-1.2.8
|
2004-07-14 21:59:59 -04:00
|
|
|
!endif
|
|
|
|
|
|
|
|
# Edit the path below to point to the base of your OpenSSL package.
|
|
|
|
!ifndef OPENSSL_PATH
|
2014-12-05 08:54:25 -05:00
|
|
|
OPENSSL_PATH = ..\..\openssl-0.9.8zc
|
2004-07-14 21:59:59 -04:00
|
|
|
!endif
|
|
|
|
|
2004-11-14 08:48:15 -05:00
|
|
|
# Set libcurl static lib, dll and import lib
|
|
|
|
LIBCURL_LIB = libcurl.lib
|
|
|
|
LIBCURL_DLL = libcurl.dll
|
|
|
|
LIBCURL_IMPLIB = libcurl_imp.lib
|
2004-07-14 21:59:59 -04:00
|
|
|
|
2004-07-13 16:01:15 -04:00
|
|
|
# Setup environment
|
2011-01-11 20:35:14 -05:00
|
|
|
PP_CMD = cpp32 -q -P-
|
|
|
|
CC_CMD = bcc32 -q -c
|
2004-07-15 17:51:59 -04:00
|
|
|
LD = bcc32
|
2011-01-13 09:54:14 -05:00
|
|
|
RM = del 2>NUL
|
2011-04-07 09:17:58 -04:00
|
|
|
MKDIR = md
|
|
|
|
RMDIR = rd /q
|
2004-07-13 16:01:15 -04:00
|
|
|
LIB = tlib
|
2004-11-14 08:48:15 -05:00
|
|
|
IMPLIB = implib
|
2004-07-13 16:01:15 -04:00
|
|
|
|
2011-04-07 09:17:58 -04:00
|
|
|
CC_FLAGS = -5 -O2 -tWM -w -w-aus -w-ccc -w-dup -w-prc -w-pro -w-rch -w-sig -w-spa -w-inl -w-pia -w-pin -Dinline=__inline
|
2004-07-16 05:20:57 -04:00
|
|
|
LIBFLAGS = /C /P32
|
2004-07-15 17:51:59 -04:00
|
|
|
LDFLAGS = -q -lq -laa -tWD
|
2004-07-13 16:01:15 -04:00
|
|
|
|
2014-05-09 16:09:51 -04:00
|
|
|
SRCDIR = .;.\vtls
|
2011-04-07 09:17:58 -04:00
|
|
|
OBJDIR = .\BCC_objs
|
2014-05-09 16:09:51 -04:00
|
|
|
INCDIRS = -I.;.\lib;..\include
|
2013-07-19 06:05:22 -04:00
|
|
|
LINKLIB = $(BCCDIR)\lib\cw32mt.lib $(BCCDIR)\lib\ws2_32.lib
|
2011-01-11 20:35:14 -05:00
|
|
|
DEFINES = -DNDEBUG -DWIN32 -DBUILDING_LIBCURL
|
2004-11-14 08:48:15 -05:00
|
|
|
|
2011-01-12 20:55:26 -05:00
|
|
|
# By default SSPI support is enabled for BCC
|
|
|
|
!ifndef DISABLE_SSPI
|
|
|
|
DEFINES = $(DEFINES) -DUSE_WINDOWS_SSPI
|
|
|
|
!endif
|
|
|
|
|
2011-01-11 20:35:14 -05:00
|
|
|
# By default LDAP support is disabled for BCC
|
2011-01-11 12:32:38 -05:00
|
|
|
!ifndef WITH_LDAP
|
|
|
|
DEFINES = $(DEFINES) -DCURL_DISABLE_LDAP
|
|
|
|
!endif
|
|
|
|
|
2011-01-11 20:35:14 -05:00
|
|
|
# ZLIB support is enabled setting WITH_ZLIB=1
|
2004-07-15 17:51:59 -04:00
|
|
|
!ifdef WITH_ZLIB
|
|
|
|
DEFINES = $(DEFINES) -DHAVE_LIBZ -DHAVE_ZLIB_H
|
|
|
|
INCDIRS = $(INCDIRS);$(ZLIB_PATH)
|
2011-01-11 20:35:14 -05:00
|
|
|
LINKLIB = $(LINKLIB) $(ZLIB_PATH)\zlib.lib
|
2004-07-15 17:51:59 -04:00
|
|
|
!endif
|
2004-11-14 08:48:15 -05:00
|
|
|
|
2011-01-11 20:35:14 -05:00
|
|
|
# SSL support is enabled setting WITH_SSL=1
|
2004-07-14 21:59:59 -04:00
|
|
|
!ifdef WITH_SSL
|
2015-03-05 04:57:52 -05:00
|
|
|
DEFINES = $(DEFINES) -DUSE_OPENSSL
|
2011-01-11 20:35:14 -05:00
|
|
|
INCDIRS = $(INCDIRS);$(OPENSSL_PATH)\inc32;$(OPENSSL_PATH)\inc32\openssl
|
|
|
|
LINKLIB = $(LINKLIB) $(OPENSSL_PATH)\out32\ssleay32.lib $(OPENSSL_PATH)\out32\libeay32.lib
|
2004-07-14 21:59:59 -04:00
|
|
|
!endif
|
2004-07-13 16:01:15 -04:00
|
|
|
|
2004-07-15 17:51:59 -04:00
|
|
|
.autodepend
|
2004-07-13 16:01:15 -04:00
|
|
|
|
2011-01-11 20:35:14 -05:00
|
|
|
.path.c = $(SRCDIR)
|
|
|
|
.path.obj = $(OBJDIR)
|
2011-04-07 09:17:58 -04:00
|
|
|
.path.int = $(OBJDIR)
|
2011-01-11 20:35:14 -05:00
|
|
|
|
2004-07-13 16:01:15 -04:00
|
|
|
# Makefile.inc provides the CSOURCES and HHEADERS defines
|
|
|
|
!include Makefile.inc
|
|
|
|
|
2013-07-19 06:05:22 -04:00
|
|
|
# Borland's command line librarian program TLIB version 4.5 is not capable
|
|
|
|
# of building a library when any of its objects contains an hypen in its
|
|
|
|
# name, due to a command line parsing bug. In order to workaround this, we
|
|
|
|
# build source files with hyphens in their name as objects with underscores
|
|
|
|
# using explicit compilation build rules instead of implicit ones.
|
|
|
|
|
2014-05-09 16:09:51 -04:00
|
|
|
NOHYPHEN1 = $(CSOURCES:-=_)
|
|
|
|
NOHYPHEN2 = $(NOHYPHEN1:vtls/=)
|
2013-07-19 06:05:22 -04:00
|
|
|
|
2014-05-09 16:09:51 -04:00
|
|
|
OBJECTS = $(NOHYPHEN2:.c=.obj)
|
|
|
|
PREPROCESSED = $(NOHYPHEN2:.c=.int)
|
2013-07-19 06:05:22 -04:00
|
|
|
|
|
|
|
# Borland's command line compiler (BCC32) version 5.5.1 integrated
|
|
|
|
# preprocessor has a bug which results in silently generating wrong
|
|
|
|
# definitions for libcurl macros such as CURL_OFF_T_C, on the other
|
|
|
|
# hand Borland's command line preprocessor (CPP32) version 5.5.1 does
|
|
|
|
# not have the bug and achieves proper results. In order to avoid the
|
|
|
|
# silent bug we first preprocess source files and later compile the
|
|
|
|
# preprocessed result.
|
2004-07-13 16:01:15 -04:00
|
|
|
|
|
|
|
.c.obj:
|
2011-01-13 09:54:14 -05:00
|
|
|
@-$(RM) $(@R).int
|
2011-01-11 20:35:14 -05:00
|
|
|
$(PP_CMD) $(CC_FLAGS) $(INCDIRS) $(DEFINES) -o$(@R).int $(<)
|
|
|
|
$(CC_CMD) $(CC_FLAGS) -o$(@) $(@R).int
|
2004-07-13 16:01:15 -04:00
|
|
|
|
2011-01-11 20:35:14 -05:00
|
|
|
all: $(OBJDIR) $(LIBCURL_LIB) $(LIBCURL_DLL)
|
2004-07-13 16:01:15 -04:00
|
|
|
|
2013-07-19 06:05:22 -04:00
|
|
|
asyn_ares.obj: asyn-ares.c
|
|
|
|
@-$(RM) $(@R).int
|
|
|
|
$(PP_CMD) $(CC_FLAGS) $(INCDIRS) $(DEFINES) -o$(@R).int $(?)
|
|
|
|
$(CC_CMD) $(CC_FLAGS) -o$(@) $(@R).int
|
|
|
|
|
|
|
|
asyn_thread.obj: asyn-thread.c
|
|
|
|
@-$(RM) $(@R).int
|
|
|
|
$(PP_CMD) $(CC_FLAGS) $(INCDIRS) $(DEFINES) -o$(@R).int $(?)
|
|
|
|
$(CC_CMD) $(CC_FLAGS) -o$(@) $(@R).int
|
|
|
|
|
|
|
|
non_ascii.obj: non-ascii.c
|
|
|
|
@-$(RM) $(@R).int
|
|
|
|
$(PP_CMD) $(CC_FLAGS) $(INCDIRS) $(DEFINES) -o$(@R).int $(?)
|
|
|
|
$(CC_CMD) $(CC_FLAGS) -o$(@) $(@R).int
|
|
|
|
|
2004-07-13 16:01:15 -04:00
|
|
|
clean:
|
2011-04-07 09:17:58 -04:00
|
|
|
cd $(OBJDIR)
|
|
|
|
@-$(RM) $(OBJECTS)
|
|
|
|
@-$(RM) $(PREPROCESSED)
|
|
|
|
cd ..
|
2011-01-13 09:54:14 -05:00
|
|
|
@-$(RMDIR) $(OBJDIR)
|
|
|
|
@-$(RM) $(LIBCURL_LIB)
|
|
|
|
@-$(RM) $(LIBCURL_IMPLIB)
|
|
|
|
@-$(RM) libcurl.tds
|
2011-01-11 20:35:14 -05:00
|
|
|
|
|
|
|
$(OBJDIR):
|
2011-01-13 09:54:14 -05:00
|
|
|
@-$(RMDIR) $(OBJDIR)
|
2011-01-11 20:35:14 -05:00
|
|
|
@-$(MKDIR) $(OBJDIR)
|
2004-07-13 16:01:15 -04:00
|
|
|
|
2004-11-14 08:48:15 -05:00
|
|
|
$(LIBCURL_LIB): $(OBJECTS)
|
2011-01-13 09:54:14 -05:00
|
|
|
@-$(RM) $(LIBCURL_LIB)
|
2004-07-16 05:20:57 -04:00
|
|
|
$(LIB) $(LIBFLAGS) $@ @&&!
|
|
|
|
+$(**: = &^
|
|
|
|
+)
|
|
|
|
!
|
2004-07-13 16:01:15 -04:00
|
|
|
|
2004-11-14 08:48:15 -05:00
|
|
|
$(LIBCURL_DLL) $(LIBCURL_IMPLIB): $(OBJECTS) $(LINKLIB)
|
2011-01-13 09:54:14 -05:00
|
|
|
@-$(RM) $(LIBCURL_DLL)
|
|
|
|
@-$(RM) $(LIBCURL_IMPLIB)
|
2013-07-19 06:05:22 -04:00
|
|
|
$(LD) $(LDFLAGS) -e$(LIBCURL_DLL) @&&!
|
|
|
|
$(**: = ^
|
|
|
|
)
|
|
|
|
!
|
2004-11-14 08:48:15 -05:00
|
|
|
$(IMPLIB) $(LIBCURL_IMPLIB) $(LIBCURL_DLL)
|
2004-07-13 16:01:15 -04:00
|
|
|
|
2011-01-11 20:35:14 -05:00
|
|
|
|
|
|
|
# End of Makefile.b32
|