aboutsummaryrefslogtreecommitdiff
path: root/lib/Makefile.b32
diff options
context:
space:
mode:
authorGunter Knauf <gk@gknw.de>2004-07-15 01:59:59 +0000
committerGunter Knauf <gk@gknw.de>2004-07-15 01:59:59 +0000
commit932a6f6b7787363610f717a20160152cdd514f7d (patch)
treefe43992f7effd586e7fb4ff0d6bac33db57c5e31 /lib/Makefile.b32
parent1318760ad22ccd5e8e52a4bb5e7ac91825df063c (diff)
made OpenSSL support conditional;
removed ugly dependence on Makefile.b32.resp.
Diffstat (limited to 'lib/Makefile.b32')
-rw-r--r--lib/Makefile.b3241
1 files changed, 27 insertions, 14 deletions
diff --git a/lib/Makefile.b32 b/lib/Makefile.b32
index a57bf1fed..24d75077f 100644
--- a/lib/Makefile.b32
+++ b/lib/Makefile.b32
@@ -9,11 +9,22 @@
# of the compiler, i.e. SET BCCDIR = c:\Borland\BCC55
# where c:\Borland\BCC55 is the compiler is installed
#
-# Requires 'Makefile.b32.resp'
-#
# Written by Jaepil Kim, pit@paradise.net.nz
############################################################
+# Edit the path below to point to the base of your Zlib sources.
+!ifndef ZLIB_PATH
+ZLIB_PATH = ../../zlib-1.2.1
+!endif
+
+# Edit the path below to point to the base of your OpenSSL package.
+!ifndef OPENSSL_PATH
+OPENSSL_PATH = ../../openssl-0.9.7d
+!endif
+
+# Set libcurl's name
+LIBCURLLIB = libcurl.lib
+
# Setup environment
CXX = bcc32
CP = copy
@@ -24,14 +35,16 @@ CURNTDIR = .
CXXFLAGS = -5 -O2 -w-aus -w-ccc -w-csu -w-par -w-pia -w-rch -w-inl -w-ngu -w-pro -tWM
-# If you build without SSL support, remove "-DUSE_SSLEAY" from the line below.
-DEFINES = -DLIBCURL_BIGENDIAN=0 -DNDEBUG -DWIN32 -DCONSOLE -DMBCS -DUSE_SSLEAY
-# DEFINES = -DLIBCURL_BIGENDIAN=0 -DNDEBUG -DWIN32 -DCONSOLE -DMBCS
+INCDIRS = -I$(CURNTDIR);$(TOPDIR)/include
-INCDIRS = -I$(CURNTDIR);$(TOPDIR)\include
-LINKLIB = $(BCCDIR)\lib\psdk\ws2_32.lib
+#LINKLIB = $(BCCDIR)\lib\psdk\ws2_32.lib
-LIBCURLLIB = libcurl.lib
+# If you build with SSL support, set WITH_SSL=1
+DEFINES = -DLIBCURL_BIGENDIAN=0 -DNDEBUG -DWIN32 -DCONSOLE -DMBCS
+!ifdef WITH_SSL
+DEFINES = $(DEFINES) -DUSE_SSLEAY
+INCDIRS = $(INCDIRS);$(OPENSSL_PATH)/inc32;$(OPENSSL_PATH)/inc32/openssl
+!endif
.SUFFIXES: .c
@@ -48,15 +61,15 @@ all: $(LIBCURLLIB)
clean:
-$(RM) $(LIBCURLLIB)
-$(RM) *.obj
+ -$(RM) getdate.c
-$(LIBCURLLIB): $(LINKLIB) $(OBJECTS) Makefile.b32.resp
- -$(RM) $(LIBCURLLIB)
- $(LIB) $(LIBCURLLIB) @Makefile.b32.resp
+$(LIBCURLLIB): $(OBJECTS) $(LINKLIB)
+ @-$(RM) $@
+ $(LIB) $@ /a $**
-getdate.c:
+getdate.c: getdate.c.cvs
@echo Creating $@
@-$(RM) getdate.y
- @$(CP) getdate.c.cvs $@
-
+ @$(CP) $** $@