2004-07-14 07:30:01 -04:00
|
|
|
############################################################
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
# where c:\Borland\BCC55 is the compiler is installed
|
|
|
|
#
|
|
|
|
# Written by Jaepil Kim, pit@paradise.net.nz
|
|
|
|
############################################################
|
|
|
|
|
|
|
|
# Edit the path below to point to the base of your Zlib sources.
|
2004-07-14 08:12:08 -04:00
|
|
|
!ifndef ZLIB_PATH
|
|
|
|
ZLIB_PATH = ../../zlib-1.2.1
|
|
|
|
!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
|
|
|
|
OPENSSL_PATH = ../../openssl-0.9.7d
|
|
|
|
!endif
|
|
|
|
|
|
|
|
# Set program's name
|
|
|
|
PROGNAME = curl.exe
|
|
|
|
|
|
|
|
# Setup environment
|
|
|
|
CXX = bcc32
|
|
|
|
LD = bcc32
|
|
|
|
CP = copy
|
|
|
|
RM = del
|
|
|
|
LIB = tlib
|
|
|
|
|
2004-07-15 13:21:07 -04:00
|
|
|
CXXFLAGS = -q -5 -O2 -w-aus -w-ccc -w-csu -w-par -w-pia -w-rch -w-inl -w-ngu -w-pro -tWM
|
2004-07-15 15:36:30 -04:00
|
|
|
LDFLAGS = -q -lq -lap
|
2004-07-14 07:30:01 -04:00
|
|
|
|
2004-11-14 08:51:33 -05:00
|
|
|
INCDIRS = -I.;../include;../lib
|
2004-07-15 13:21:07 -04:00
|
|
|
LINKLIB = $(BCCDIR)/lib/cw32mt.lib
|
2004-07-14 07:30:01 -04:00
|
|
|
|
2004-07-14 22:09:40 -04:00
|
|
|
# If you build with SSL support, set WITH_SSL=1
|
2004-11-14 08:51:33 -05:00
|
|
|
DEFINES = -DNDEBUG -DWIN32
|
|
|
|
|
|
|
|
!ifdef DYNAMIC
|
|
|
|
LIBCURL_LIB = ../lib/libcurl_imp.lib
|
|
|
|
!else
|
|
|
|
LIBCURL_LIB = ../lib/libcurl.lib
|
|
|
|
DEFINES = $(DEFINES) -DCURL_STATICLIB
|
|
|
|
!endif
|
|
|
|
|
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)
|
|
|
|
LINKLIB = $(LINKLIB) $(ZLIB_PATH)/zlib.lib
|
|
|
|
!endif
|
2004-11-14 08:51:33 -05:00
|
|
|
|
2004-07-15 13:21:07 -04:00
|
|
|
!ifdef WITH_SSL
|
2004-11-14 08:51:33 -05:00
|
|
|
DEFINES = $(DEFINES) -DUSE_SSLEAY
|
2004-07-15 13:21:07 -04:00
|
|
|
INCDIRS = $(INCDIRS);$(OPENSSL_PATH)/inc32;$(OPENSSL_PATH)/inc32/openssl
|
|
|
|
LINKLIB = $(LINKLIB) $(OPENSSL_PATH)/out32/ssleay32.lib $(OPENSSL_PATH)/out32/libeay32.lib
|
|
|
|
!endif
|
2004-07-14 07:30:01 -04:00
|
|
|
|
|
|
|
.autodepend
|
|
|
|
|
|
|
|
# Makefile.inc provides the CSOURCES and HHEADERS defines
|
|
|
|
top_srcdir = ..
|
|
|
|
!include Makefile.inc
|
|
|
|
|
2010-08-02 06:24:54 -04:00
|
|
|
CSOURCES = $(CURL_CFILES) $(CURLX_ONES)
|
2004-07-14 07:30:01 -04:00
|
|
|
OBJECTS = $(CSOURCES:.c=.obj)
|
|
|
|
|
|
|
|
.c.obj:
|
|
|
|
$(CXX) -c $(INCDIRS) $(CXXFLAGS) $(DEFINES) $<
|
|
|
|
|
|
|
|
all: $(PROGNAME)
|
|
|
|
|
|
|
|
clean:
|
|
|
|
-$(RM) $(PROGNAME)
|
|
|
|
-$(RM) *.obj
|
|
|
|
-$(RM) hugehelp.c
|
|
|
|
|
2004-11-14 08:51:33 -05:00
|
|
|
$(PROGNAME): $(OBJECTS) $(LIBCURL_LIB) $(LINKLIB)
|
2004-07-14 07:30:01 -04:00
|
|
|
@-$(RM) $@
|
2004-07-14 08:12:08 -04:00
|
|
|
$(LD) $(LDFLAGS) -e$@ $**
|
2004-07-14 07:30:01 -04:00
|
|
|
|
|
|
|
hugehelp.c: hugehelp.c.cvs
|
|
|
|
@echo Creating $@
|
|
|
|
@$(CP) $** $@
|
|
|
|
|
|
|
|
|