2004-07-14 07:30:01 -04:00
|
|
|
############################################################
|
|
|
|
#
|
|
|
|
# Makefile.b32 - Borland's C++ Compiler 5.X
|
|
|
|
#
|
|
|
|
# 'src' 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-14 07:30:01 -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 07:30:01 -04:00
|
|
|
# Edit the path below to point to the base of your Zlib sources.
|
2004-07-14 08:12:08 -04:00
|
|
|
!ifndef ZLIB_PATH
|
2011-01-11 20:35:14 -05:00
|
|
|
ZLIB_PATH = ..\..\zlib-1.2.5
|
2004-07-14 08:12:08 -04:00
|
|
|
!endif
|
2004-07-14 07:30:01 -04:00
|
|
|
|
|
|
|
# Edit the path below to point to the base of your OpenSSL package.
|
|
|
|
!ifndef OPENSSL_PATH
|
2011-01-11 20:35:14 -05:00
|
|
|
OPENSSL_PATH = ..\..\openssl-0.9.8q
|
2004-07-14 07:30:01 -04:00
|
|
|
!endif
|
|
|
|
|
|
|
|
# Set program's name
|
|
|
|
PROGNAME = curl.exe
|
|
|
|
|
|
|
|
# Setup environment
|
2011-01-11 20:35:14 -05:00
|
|
|
CC_CMD = bcc32 -q -c
|
2004-07-14 07:30:01 -04:00
|
|
|
LD = bcc32
|
2011-01-13 09:54:14 -05:00
|
|
|
RM = del 2>NUL
|
2011-04-07 09:19:21 -04:00
|
|
|
MKDIR = md
|
|
|
|
RMDIR = rd /q 2>nul
|
|
|
|
COPY = $(COMSPEC) /c copy /y
|
2004-07-14 07:30:01 -04:00
|
|
|
|
2011-04-07 09:19:21 -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-15 15:36:30 -04:00
|
|
|
LDFLAGS = -q -lq -lap
|
2004-07-14 07:30:01 -04:00
|
|
|
|
2011-01-11 20:35:14 -05:00
|
|
|
SRCDIRS = .;..\lib
|
2011-04-07 09:19:21 -04:00
|
|
|
OBJDIR = .\BCC_objs
|
2011-01-11 20:35:14 -05:00
|
|
|
INCDIRS = -I.;..\include;..\lib
|
|
|
|
LINKLIB = $(BCCDIR)\lib\cw32mt.lib
|
2004-11-14 08:51:33 -05:00
|
|
|
DEFINES = -DNDEBUG -DWIN32
|
|
|
|
|
|
|
|
!ifdef DYNAMIC
|
2011-01-11 20:35:14 -05:00
|
|
|
LIBCURL_LIB = ..\lib\libcurl_imp.lib
|
2004-11-14 08:51:33 -05:00
|
|
|
!else
|
2011-01-11 20:35:14 -05:00
|
|
|
LIBCURL_LIB = ..\lib\libcurl.lib
|
2004-11-14 08:51:33 -05:00
|
|
|
DEFINES = $(DEFINES) -DCURL_STATICLIB
|
|
|
|
!endif
|
|
|
|
|
2011-01-11 20:35:14 -05:00
|
|
|
# ZLIB support is enabled setting WITH_ZLIB=1
|
2004-07-14 22:09:40 -04:00
|
|
|
!ifdef WITH_ZLIB
|
2004-07-15 17:54:10 -04:00
|
|
|
DEFINES = $(DEFINES) -DHAVE_LIBZ -DHAVE_ZLIB_H
|
2004-07-14 22:09:40 -04:00
|
|
|
INCDIRS = $(INCDIRS);$(ZLIB_PATH)
|
2011-01-11 20:35:14 -05:00
|
|
|
LINKLIB = $(LINKLIB) $(ZLIB_PATH)\zlib.lib
|
2004-07-14 22:09:40 -04:00
|
|
|
!endif
|
2004-11-14 08:51:33 -05:00
|
|
|
|
2011-01-11 20:35:14 -05:00
|
|
|
# SSL support is enabled setting WITH_SSL=1
|
2004-07-15 13:21:07 -04:00
|
|
|
!ifdef WITH_SSL
|
2004-11-14 08:51:33 -05:00
|
|
|
DEFINES = $(DEFINES) -DUSE_SSLEAY
|
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-15 13:21:07 -04:00
|
|
|
!endif
|
2004-07-14 07:30:01 -04:00
|
|
|
|
|
|
|
.autodepend
|
|
|
|
|
2011-01-11 20:35:14 -05:00
|
|
|
.path.c = $(SRCDIRS)
|
|
|
|
.path.obj = $(OBJDIR)
|
|
|
|
|
2004-07-14 07:30:01 -04:00
|
|
|
# Makefile.inc provides the CSOURCES and HHEADERS defines
|
2011-01-11 20:35:14 -05:00
|
|
|
!undef top_srcdir
|
2004-07-14 07:30:01 -04:00
|
|
|
!include Makefile.inc
|
|
|
|
|
2011-01-11 20:35:14 -05:00
|
|
|
CSOURCES = $(CURL_CFILES) $(CURLX_ONES:/lib/=)
|
2004-07-14 07:30:01 -04:00
|
|
|
OBJECTS = $(CSOURCES:.c=.obj)
|
|
|
|
|
|
|
|
.c.obj:
|
2011-04-07 09:19:21 -04:00
|
|
|
$(CC_CMD) $(CC_FLAGS) $(INCDIRS) $(DEFINES) -o$@ $<
|
2004-07-14 07:30:01 -04:00
|
|
|
|
2011-04-07 09:19:21 -04:00
|
|
|
all: $(OBJDIR) hugehelp $(PROGNAME)
|
2004-07-14 07:30:01 -04:00
|
|
|
|
|
|
|
clean:
|
2011-04-07 09:19:21 -04:00
|
|
|
cd $(OBJDIR)
|
|
|
|
@-$(RM) $(OBJECTS)
|
|
|
|
cd ..
|
2011-01-13 09:54:14 -05:00
|
|
|
@-$(RMDIR) $(OBJDIR)
|
|
|
|
@-$(RM) $(PROGNAME)
|
|
|
|
@-$(RM) curl.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-14 07:30:01 -04:00
|
|
|
|
2011-04-07 09:19:21 -04:00
|
|
|
!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
|
|
|
|
|
2004-11-14 08:51:33 -05:00
|
|
|
$(PROGNAME): $(OBJECTS) $(LIBCURL_LIB) $(LINKLIB)
|
2011-01-13 09:54:14 -05:00
|
|
|
@-$(RM) $(PROGNAME)
|
2004-07-14 08:12:08 -04:00
|
|
|
$(LD) $(LDFLAGS) -e$@ $**
|
2004-07-14 07:30:01 -04:00
|
|
|
|
|
|
|
|
2011-01-11 20:35:14 -05:00
|
|
|
# End of Makefile.b32
|