Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TLMSP curl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CYBER - Cyber Security
TS 103 523 MSP
TLMSP
TLMSP curl
Commits
160d2a30
Commit
160d2a30
authored
24 years ago
by
Daniel Stenberg
Browse files
Options
Downloads
Patches
Plain Diff
Added the borland makefiles
parent
cb1842cb
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
FILES
+3
-0
3 additions, 0 deletions
FILES
Makefile.dist
+4
-0
4 additions, 0 deletions
Makefile.dist
lib/Makefile.b32
+75
-0
75 additions, 0 deletions
lib/Makefile.b32
lib/Makefile.b32.resp
+29
-0
29 additions, 0 deletions
lib/Makefile.b32.resp
src/Makefile.b32
+43
-0
43 additions, 0 deletions
src/Makefile.b32
with
154 additions
and
0 deletions
FILES
+
3
−
0
View file @
160d2a30
...
...
@@ -53,6 +53,7 @@ src/*.in
src/*.am
src/mkhelp.pl
src/Makefile.vc6
src/Makefile.b32
src/*m32
lib/getdate.y
lib/*.[ch]
...
...
@@ -60,6 +61,8 @@ lib/*in
lib/*am
lib/Makefile.vc6
lib/*m32
lib/Makefile.b32
lib/Makefile.b32.resp
lib/libcurl.def
include/README
include/Makefile.in
...
...
This diff is collapsed.
Click to expand it.
Makefile.dist
+
4
−
0
View file @
160d2a30
...
...
@@ -49,6 +49,10 @@ ssl:
./configure
--with-ssl
make
borland
:
cd
lib
;
make
-f
Makefile.b32
cd
src
;
make
-f
Makefile.b32
mingw32
:
cd
lib
;
make
-f
Makefile.m32
cd
src
;
make
-f
Makefile.m32
...
...
This diff is collapsed.
Click to expand it.
lib/Makefile.b32
0 → 100644
+
75
−
0
View file @
160d2a30
############################################################
# Makefile.b32 - Borland's C++ Compiler 5.X
#
# 'lib' directory
#
# Requires 'Makefile.b32.resp'
#
# Written by Jaepil Kim, pit@paradise.net.nz
############################################################
# Setup environment
CXX
=
bcc32
RM
=
del
LIB
=
tlib
TOPDIR
=
..
CURNTDIR
=
.
CXXFLAGS
=
-5
-O2
-w-aus
-w-ccc
-w-csu
-w-par
-w-pia
-w-rch
-w-inl
-w-ngu
-w-pro
DEFINES
=
-DLIBCURL_BIGENDIAN
=
0
-DNDEBUG
-DWIN32
-DCONSOLE
-DMBCS
INCDIRS
=
-I
$(
CURNTDIR
);$(
TOPDIR
)
/include/
# 'BCCDIR' has to be set up in your c:\autoexec.bat
# i.e. SET BCCDIR = c:\Borland\BCC55
# where c:\Borland\BCC55 is the compiler is installed
LINKLIB
=
$(
BCCDIR
)
/lib/psdk/wsock32.lib
LIBCURLLIB
=
libcurl.lib
.SUFFIXES
:
.c
SOURCES
=
\
base64.c
\
cookie.c
\
download.c
\
escape.c
\
formdata.c
\
ftp.c
\
http.c
\
ldap.c
\
dict.c
\
telnet.c
\
getdate.c
\
getenv.c
\
getpass.c
\
hostip.c
\
if2ip.c
\
mprintf.c
\
netrc.c
\
progress.c
\
sendf.c
\
speedcheck.c
\
ssluse.c
\
timeval.c
\
url.c
\
file.c
\
getinfo.c
\
version.c
\
easy.c
\
highlevel.c
\
strequal.c
OBJECTS
=
$(
SOURCES:.c
=
.obj
)
.c.obj
:
$(
CXX
)
-c
$(
INCDIRS
)
$(
CXXFLAGS
)
$(
DEFINES
)
$<
all
:
$(LIBCURLLIB)
clean
:
$(
RM
)
$(
LIBCURLLIB
)
$(RM)
*.obj
$(LIBCURLLIB)
:
$(LINKLIB) $(OBJECTS) Makefile.b32.resp
$(
RM
)
$(
LIBCURLLIB
)
$(
LIB
)
$(
LIBCURLLIB
)
@Makefile.b32.resp
This diff is collapsed.
Click to expand it.
lib/Makefile.b32.resp
0 → 100644
+
29
−
0
View file @
160d2a30
+base64.obj
&
+cookie.obj
&
+download.obj
&
+escape.obj
&
+formdata.obj
&
+ftp.obj
&
+http.obj
&
+ldap.obj
&
+dict.obj
&
+telnet.obj
&
+getdate.obj
&
+getenv.obj
&
+getpass.obj
&
+hostip.obj
&
+if2ip.obj
&
+mprintf.obj
&
+netrc.obj
&
+progress.obj
&
+sendf.obj
&
+speedcheck.obj
&
+ssluse.obj
&
+timeval.obj
&
+url.obj
&
+file.obj
&
+getinfo.obj
&
+version.obj
&
+easy.obj
&
+highlevel.obj
&
+strequal.obj
This diff is collapsed.
Click to expand it.
src/Makefile.b32
0 → 100644
+
43
−
0
View file @
160d2a30
############################################################
# Makefile.b32 - Borland's C++ Compiler 5.X
#
# 'src' directory
#
# Written by Jaepil Kim, pit@paradise.net.nz
############################################################
# Set program's name
PROGNAME
=
curl.exe
# Setup environment
CXX
=
bcc32
CXXFLAGS
=
-5
-O2
-WC
-w-par
-w-csu
-w-aus
RM
=
del
TOPDIR
=
..
DEFINES
=
-DNDEBUG
-DLIBCURL_BIGENDIAN
=
0
-DWIN32
-D_CONSOLE
-D_MBCS
LD
=
bcc32
LDFLAGS
=
-lap
-e
$(
PROGNAME
)
INCDIRS
=
-I
$(
TOPDIR
)
/include
LIBCURLLIB
=
$(
TOPDIR
)
/lib/libcurl.lib
# 'BCCDIR' has to be set up in your c:\autoexec.bat
# i.e. SET BCCDIR = c:\Borland\BCC55
# where c:\Borland\BCC55 is the compiler is installed
LINKLIB
=
$(
BCCDIR
)
/lib/psdk/wsock32.lib
PROGRAMS
=
\
curl.exe
.c.obj
:
$(
CXX
)
-c
$(
INCDIRS
)
$(
CXXFLAGS
)
$(
DEFINES
)
$*
.c
all
:
$(PROGRAMS)
curl.exe
:
$(LIBCURLLIB) $(LINKLIB) hugehelp.obj writeout.obj urlglob.obj main.obj
$(
LD
)
$(
LDFLAGS
)
hugehelp.obj writeout.obj urlglob.obj main.obj
$(
LIBCURLLIB
)
$(
LINKLIB
)
clean
:
$(
RM
)
*
.obj
$(RM)
*.exe
$(RM)
*.tds
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment