Newer
Older
############################################################
#
# Makefile.b32 - Borland's C++ Compiler 5.X
#
# 'src' directory
#
# 'BCCDIR' has to be set up to point to the base directory
# of the compiler, i.e. SET BCCDIR = c:\Borland\BCC55
#
# Initially 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.
BCCDIR = $(MAKEDIR)\..
# Edit the path below to point to the base of your Zlib sources.
!ifndef ZLIB_PATH
!endif
# Edit the path below to point to the base of your OpenSSL package.
!ifndef OPENSSL_PATH
!endif
# Set program's name
PROGNAME = curl.exe
# Setup environment
CC_CMD = bcc32 -q -c
MKDIR = md
RMDIR = rd /q 2>nul
COPY = $(COMSPEC) /c copy /y
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
SRCDIRS = .;..\lib
INCDIRS = -I.;..\include;..\lib
LINKLIB = $(BCCDIR)\lib\cw32mt.lib
LIBCURL_LIB = ..\lib\libcurl_imp.lib
LIBCURL_LIB = ..\lib\libcurl.lib
# ZLIB support is enabled setting WITH_ZLIB=1
LINKLIB = $(LINKLIB) $(ZLIB_PATH)\zlib.lib
# SSL support is enabled setting WITH_SSL=1
INCDIRS = $(INCDIRS);$(OPENSSL_PATH)\inc32;$(OPENSSL_PATH)\inc32\openssl
LINKLIB = $(LINKLIB) $(OPENSSL_PATH)\out32\ssleay32.lib $(OPENSSL_PATH)\out32\libeay32.lib
.path.c = $(SRCDIRS)
.path.obj = $(OBJDIR)
# Makefile.inc provides the CSOURCES and HHEADERS defines
!undef top_srcdir
CSOURCES = $(CURL_CFILES) $(CURLX_ONES:/lib/=)
$(CC_CMD) $(CC_FLAGS) $(INCDIRS) $(DEFINES) -o$@ $<
@-$(RMDIR) $(OBJDIR)
@-$(RM) $(PROGNAME)
@-$(RM) curl.tds
$(OBJDIR):
@-$(MKDIR) $(OBJDIR)
!ifdef WITH_ZLIB
hugehelp: ..\docs\MANUAL ..\docs\curl.1 mkhelp.pl
groff -Tascii -man -P -c ../docs/curl.1 > hugehelp.tmp
perl -w mkhelp.pl -c ../docs/MANUAL < hugehelp.tmp > hugehelp.c
@-$(RM) hugehelp.tmp
!else
hugehelp:
$(COPY) hugehelp.c.cvs hugehelp.c
!endif
$(LD) $(LDFLAGS) -e$@ $**
# End of Makefile.b32