curl/lib/Makefile.b32

124 lines
3.0 KiB
Makefile
Raw Normal View History

2004-07-13 16:01:15 -04:00
############################################################
#
# Makefile.b32 - Borland's C++ Compiler 5.X
#
# 'lib' directory
#
# 'BCCDIR' has to be set up to point to the base directory
# of the compiler, i.e. SET BCCDIR = c:\Borland\BCC55
#
2004-07-13 16:01:15 -04:00
# Written by Jaepil Kim, pit@paradise.net.nz
############################################################
!if "$(__MAKE__)" == ""
!error __MAKE__ not defined. Use Borlands's MAKE to process this makefile.
!endif
# Borland's $(MAKEDIR) expands to the path where make.exe is located,
# use this feature to define BCCDIR when user has not defined BCCDIR.
!if "$(BCCDIR)" == ""
BCCDIR = $(MAKEDIR)\..
2011-01-11 11:51:14 -05:00
!endif
# Edit the path below to point to the base of your Zlib sources.
!ifndef ZLIB_PATH
ZLIB_PATH = ..\..\zlib-1.2.5
!endif
# Edit the path below to point to the base of your OpenSSL package.
!ifndef OPENSSL_PATH
OPENSSL_PATH = ..\..\openssl-0.9.8q
!endif
# Set libcurl static lib, dll and import lib
LIBCURL_LIB = libcurl.lib
LIBCURL_DLL = libcurl.dll
LIBCURL_IMPLIB = libcurl_imp.lib
2004-07-13 16:01:15 -04:00
# Setup environment
PP_CMD = cpp32 -q -P-
CC_CMD = bcc32 -q -c
2004-07-15 17:51:59 -04:00
LD = bcc32
RM = del
MKDIR = mkdir
RMDIR = rmdir /s /q
2004-07-13 16:01:15 -04:00
LIB = tlib
IMPLIB = implib
2004-07-13 16:01:15 -04:00
CC_FLAGS = -5 -O2 -tWM -w -w-aus -w-ccc -w-dup -w-prc -w-pro -w-rch -w-sig -w-spa -Dinline=__inline
LIBFLAGS = /C /P32
2004-07-15 17:51:59 -04:00
LDFLAGS = -q -lq -laa -tWD
2004-07-13 16:01:15 -04:00
SRCDIR = .
OBJDIR = .\objs
INCDIRS = -I.;..\include
LINKLIB = $(BCCDIR)\lib\cw32mt.lib
DEFINES = -DNDEBUG -DWIN32 -DBUILDING_LIBCURL
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
# By default LDAP support is disabled for BCC
!ifndef WITH_LDAP
DEFINES = $(DEFINES) -DCURL_DISABLE_LDAP
!endif
# 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)
LINKLIB = $(LINKLIB) $(ZLIB_PATH)\zlib.lib
2004-07-15 17:51:59 -04:00
!endif
# SSL support is enabled setting WITH_SSL=1
!ifdef WITH_SSL
DEFINES = $(DEFINES) -DUSE_SSLEAY
INCDIRS = $(INCDIRS);$(OPENSSL_PATH)\inc32;$(OPENSSL_PATH)\inc32\openssl
LINKLIB = $(LINKLIB) $(OPENSSL_PATH)\out32\ssleay32.lib $(OPENSSL_PATH)\out32\libeay32.lib
!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
.path.c = $(SRCDIR)
.path.obj = $(OBJDIR)
2004-07-13 16:01:15 -04:00
# Makefile.inc provides the CSOURCES and HHEADERS defines
!include Makefile.inc
OBJECTS = $(CSOURCES:.c=.obj)
.c.obj:
@-$(RM) $(@R).int >NUL 2>&1
$(PP_CMD) $(CC_FLAGS) $(INCDIRS) $(DEFINES) -o$(@R).int $(<)
$(CC_CMD) $(CC_FLAGS) -o$(@) $(@R).int
2004-07-13 16:01:15 -04:00
all: $(OBJDIR) $(LIBCURL_LIB) $(LIBCURL_DLL)
2004-07-13 16:01:15 -04:00
clean:
@-$(RMDIR) $(OBJDIR) >NUL 2>&1
@-$(RM) $(LIBCURL_LIB) >NUL 2>&1
@-$(RM) $(LIBCURL_IMPLIB) >NUL 2>&1
@-$(RM) libcurl.tds >NUL 2>&1
$(OBJDIR):
@-$(RMDIR) $(OBJDIR) >NUL 2>&1
@-$(MKDIR) $(OBJDIR)
2004-07-13 16:01:15 -04:00
$(LIBCURL_LIB): $(OBJECTS)
@-$(RM) $(LIBCURL_LIB) >NUL 2>&1
$(LIB) $(LIBFLAGS) $@ @&&!
+$(**: = &^
+)
!
2004-07-13 16:01:15 -04:00
$(LIBCURL_DLL) $(LIBCURL_IMPLIB): $(OBJECTS) $(LINKLIB)
@-$(RM) $(LIBCURL_DLL) >NUL 2>&1
@-$(RM) $(LIBCURL_IMPLIB) >NUL 2>&1
$(LD) $(LDFLAGS) -e$(LIBCURL_DLL) $**
$(IMPLIB) $(LIBCURL_IMPLIB) $(LIBCURL_DLL)
2004-07-13 16:01:15 -04:00
# End of Makefile.b32