sourcemod/extensions/curl/curl-src/src/Makefile.b32

91 lines
2.1 KiB
Makefile
Raw Normal View History

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