mirror of
https://github.com/moparisthebest/curl
synced 2024-11-08 10:35:05 -05:00
aeb214f3e8
* Rename the object object directory from 'objs' to 'BCC_obj' to be in sync with my previous patch for lib/Makefile.b32. * Turn off these warnings to keep the build totally silent (with CBuilder-6 that is). -w-inl 8026 Functions X are not expanded inline. -w-pia 8060 Possibly incorrect assignment -w-pin 8061 Initialization is only partially bracketed (same added in src/Makefile.b32) * $(MKDIR) and $(RMDIR) have been replaced with the shell-commands 'md' and 'rd'. When having MingW/Msys programs 'mkdir.exe' and 'rmdir.exe' in $PATH, this confuses Borland's make and the result (the cleaning etc.) would not be as expected. * Removed the preprocessing step; no need for PP_CMD and the .int files. curl.exe builds fine w/o and the makefile gets simpler. * Added a target for creating a compressed hugehelp.c if WITH_ZLIB is defined. It assumes groff, gzip and perl is available if such an "advanced" users requests it. Okay? BTW. My groff and Perl needs unix-slashes ('/'). Other perls should handle both forms ('/' and '\').
119 lines
2.8 KiB
Makefile
119 lines
2.8 KiB
Makefile
############################################################
|
|
#
|
|
# 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
|
|
BCCDIR = $(MAKEDIR)\..
|
|
!endif
|
|
|
|
# Edit the path below to point to the base of your Zlib sources.
|
|
!ifndef ZLIB_PATH
|
|
ZLIB_PATH = ..\..\zlib-1.2.5
|
|
!endif
|
|
|
|
# Edit the path below to point to the base of your OpenSSL package.
|
|
!ifndef OPENSSL_PATH
|
|
OPENSSL_PATH = ..\..\openssl-0.9.8q
|
|
!endif
|
|
|
|
# Set program's name
|
|
PROGNAME = curl.exe
|
|
|
|
# Setup environment
|
|
CC_CMD = bcc32 -q -c
|
|
LD = bcc32
|
|
RM = del 2>NUL
|
|
MKDIR = md
|
|
RMDIR = rd /q 2>nul
|
|
COPY = $(COMSPEC) /c copy /y
|
|
|
|
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
|
|
|
|
SRCDIRS = .;..\lib
|
|
OBJDIR = .\BCC_objs
|
|
INCDIRS = -I.;..\include;..\lib
|
|
LINKLIB = $(BCCDIR)\lib\cw32mt.lib
|
|
DEFINES = -DNDEBUG -DWIN32
|
|
|
|
!ifdef DYNAMIC
|
|
LIBCURL_LIB = ..\lib\libcurl_imp.lib
|
|
!else
|
|
LIBCURL_LIB = ..\lib\libcurl.lib
|
|
DEFINES = $(DEFINES) -DCURL_STATICLIB
|
|
!endif
|
|
|
|
# ZLIB support is enabled setting WITH_ZLIB=1
|
|
!ifdef WITH_ZLIB
|
|
DEFINES = $(DEFINES) -DHAVE_LIBZ -DHAVE_ZLIB_H
|
|
INCDIRS = $(INCDIRS);$(ZLIB_PATH)
|
|
LINKLIB = $(LINKLIB) $(ZLIB_PATH)\zlib.lib
|
|
!endif
|
|
|
|
# SSL support is enabled setting WITH_SSL=1
|
|
!ifdef WITH_SSL
|
|
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
|
|
!endif
|
|
|
|
.autodepend
|
|
|
|
.path.c = $(SRCDIRS)
|
|
.path.obj = $(OBJDIR)
|
|
|
|
# Makefile.inc provides the CSOURCES and HHEADERS defines
|
|
!undef top_srcdir
|
|
!include Makefile.inc
|
|
|
|
CSOURCES = $(CURL_CFILES) $(CURLX_ONES:/lib/=)
|
|
OBJECTS = $(CSOURCES:.c=.obj)
|
|
|
|
.c.obj:
|
|
$(CC_CMD) $(CC_FLAGS) $(INCDIRS) $(DEFINES) -o$@ $<
|
|
|
|
all: $(OBJDIR) hugehelp $(PROGNAME)
|
|
|
|
clean:
|
|
cd $(OBJDIR)
|
|
@-$(RM) $(OBJECTS)
|
|
cd ..
|
|
@-$(RMDIR) $(OBJDIR)
|
|
@-$(RM) $(PROGNAME)
|
|
@-$(RM) curl.tds
|
|
|
|
$(OBJDIR):
|
|
@-$(RMDIR) $(OBJDIR)
|
|
@-$(MKDIR) $(OBJDIR)
|
|
|
|
!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
|
|
|
|
$(PROGNAME): $(OBJECTS) $(LIBCURL_LIB) $(LINKLIB)
|
|
@-$(RM) $(PROGNAME)
|
|
$(LD) $(LDFLAGS) -e$@ $**
|
|
|
|
|
|
# End of Makefile.b32
|