Skip to content
Makefile.b32 3.52 KiB
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.
!ifndef BCCDIR
# Edit the path below to point to the base of your Zlib sources.
ZLIB_PATH = ..\..\zlib-1.2.8

# Edit the path below to point to the base of your OpenSSL package.
!ifndef OPENSSL_PATH
Guenter Knauf's avatar
Guenter Knauf committed
OPENSSL_PATH = ..\..\openssl-0.9.8y
!endif

# Set program's name
PROGNAME = curl.exe

# Setup environment
LD       = bcc32
RM       = del 2>NUL
Gisle Vanem's avatar
Gisle Vanem committed
MKDIR    = md
Gisle Vanem's avatar
Gisle Vanem committed
COPY     = $(COMSPEC) /c copy /y
Gisle Vanem's avatar
Gisle Vanem committed
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
LDFLAGS  = -q -lq -lap
Gisle Vanem's avatar
Gisle Vanem committed
OBJDIR   = .\BCC_objs
INCDIRS  = -I.;..\include;..\lib
LINKLIB  = $(BCCDIR)\lib\cw32mt.lib $(BCCDIR)\lib\ws2_32.lib
Gisle Vanem's avatar
 
Gisle Vanem committed
DEFINES  = -DNDEBUG -DWIN32

!ifdef DYNAMIC
LIBCURL_LIB = ..\lib\libcurl_imp.lib
Gisle Vanem's avatar
 
Gisle Vanem committed
!else
LIBCURL_LIB = ..\lib\libcurl.lib
Gisle Vanem's avatar
 
Gisle Vanem committed
DEFINES = $(DEFINES) -DCURL_STATICLIB
!endif

# ZLIB support is enabled setting WITH_ZLIB=1
!ifdef WITH_ZLIB
Guenter Knauf's avatar
Guenter Knauf committed
DEFINES  = $(DEFINES) -DHAVE_LIBZ -DHAVE_ZLIB_H
INCDIRS  = $(INCDIRS);$(ZLIB_PATH)
LINKLIB  = $(LINKLIB) $(ZLIB_PATH)\zlib.lib
Gisle Vanem's avatar
 
Gisle Vanem committed

# SSL support is enabled setting WITH_SSL=1
!ifdef WITH_SSL
Gisle Vanem's avatar
 
Gisle Vanem committed
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
.path.c   = $(SRCDIRS)
.path.obj = $(OBJDIR)
# Makefile.inc provides the CSOURCES and HHEADERS defines
!include Makefile.inc

CSOURCES = $(CURL_CFILES) $(CURLX_ONES:../lib/=)
OBJECTS  = $(CSOURCES:.c=.obj)
PREPROCESSED = $(CSOURCES:.c=.int)

# 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.
	@-$(RM) $(@R).int
	$(PP_CMD) $(CC_FLAGS) $(INCDIRS) $(DEFINES) -o$(@R).int $(<)
	$(CC_CMD) $(CC_FLAGS) -o$(@) $(@R).int
all:	$(OBJDIR) tool_hugehelp $(PROGNAME)
Gisle Vanem's avatar
Gisle Vanem committed
	cd $(OBJDIR)
	@-$(RM) $(OBJECTS)
Gisle Vanem's avatar
Gisle Vanem committed
	cd ..
	@-$(RMDIR) $(OBJDIR)
	@-$(RM) $(PROGNAME)
	@-$(RM) curl.tds
	@-$(RMDIR) $(OBJDIR)
Gisle Vanem's avatar
Gisle Vanem committed
!ifdef WITH_ZLIB
tool_hugehelp: ..\docs\MANUAL ..\docs\curl.1 mkhelp.pl
        groff -Tascii -man -P -c ../docs/curl.1 > tool_hugehelp.tmp
        perl -w mkhelp.pl -c ../docs/MANUAL < tool_hugehelp.tmp > tool_hugehelp.c
	@-$(RM) tool_hugehelp.tmp
Gisle Vanem's avatar
Gisle Vanem committed
!else
	if exist ..\GIT-INFO $(COPY) tool_hugehelp.c.cvs tool_hugehelp.c
Gisle Vanem's avatar
Gisle Vanem committed
!endif

Gisle Vanem's avatar
 
Gisle Vanem committed
$(PROGNAME): $(OBJECTS) $(LIBCURL_LIB) $(LINKLIB)
	@-$(RM) $(PROGNAME)
	$(LD) $(LDFLAGS) -e$@ @&&!
$(**: = ^
)
!