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
68bb51c5
Commit
68bb51c5
authored
16 years ago
by
Gisle Vanem
Browse files
Options
Downloads
Patches
Plain Diff
Rewritten to also produce a static library (libcurl_wc.lib).
parent
fb8fe6f2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/Makefile.Watcom
+39
-14
39 additions, 14 deletions
lib/Makefile.Watcom
with
39 additions
and
14 deletions
lib/Makefile.Watcom
+
39
−
14
View file @
68bb51c5
...
...
@@ -4,7 +4,7 @@
#
# $Id$
TARGETS
=
libcurl_wc.dll libcurl_wc_imp.lib
TARGETS
=
libcurl_wc.dll libcurl_wc_imp.lib
libcurl_wc.lib
CC
=
wcc386
...
...
@@ -24,9 +24,10 @@ USE_ZLIB = 0
CFLAGS
+=
-dHAVE_ZLIB_H
-dHAVE_LIBZ
-I
$(
ZLIB_ROOT
)
!
endif
OBJ_DIR
=
WC_Win32.obj
C_ARG
=
$(
OBJ_DIR
)
\w
cc386.arg
LINK_ARG
=
$(
OBJ_DIR
)
\w
link.arg
OBJ_BASE
=
WC_Win32.obj
C_ARG
=
$(
OBJ_BASE
)
\w
cc386.arg
LINK_ARG
=
$(
OBJ_BASE
)
\d
yn
\w
link.arg
LIB_ARG
=
$(
OBJ_BASE
)
\s
tat
\w
lib.arg
OBJS
=
$(
OBJ_DIR
)
\b
ase64.obj
$(
OBJ_DIR
)
\c
onnect.obj &
$(OBJ_DIR)\content_encoding.obj
$(OBJ_DIR)\cookie.obj
&
...
...
@@ -58,32 +59,52 @@ OBJS = $(OBJ_DIR)\base64.obj $(OBJ_DIR)\connect.obj &
$(OBJ_DIR)\timeval.obj
$(OBJ_DIR)\transfer.obj
&
$(OBJ_DIR)\url.obj
$(OBJ_DIR)\version.obj
RESOURCE
=
$(
OBJ_DIR
)
\l
ibcurl.res
#
# Use $(OBJS) as a template to generate $(OBJS_STAT) and $(OBJS_DYN).
#
OBJ_DIR
=
$(
OBJ_BASE
)
\s
tat
OBJS_STAT
=
$+
$(
OBJS
)
$-
OBJ_DIR
=
$(
OBJ_BASE
)
\d
yn
OBJS_DYN
=
$+
$(
OBJS
)
$-
all
:
$(OBJ_DIR) $(C_ARG) $(TARGETS) .SYMBOLIC
RESOURCE
=
$(
OBJ_BASE
)
\d
yn
\l
ibcurl.res
all
:
$(OBJ_BASE) $(C_ARG) $(TARGETS) .SYMBOLIC
@
echo
Welcome to libcurl
$(OBJ_DIR)
:
mkdir
$(
OBJ_DIR
)
$(OBJ_BASE)
:
-
mkdir
$(
OBJ_BASE
)
-
mkdir
$(
OBJ_BASE
)
\s
tat
-
mkdir
$(
OBJ_BASE
)
\d
yn
libcurl_wc.dll libcurl_wc_imp.lib
:
$(OBJS) $(RESOURCE) $(LINK_ARG)
libcurl_wc.dll libcurl_wc_imp.lib
:
$(OBJS
_DYN
) $(RESOURCE) $(LINK_ARG)
wlink name libcurl_wc.dll @
$(
LINK_ARG
)
libcurl_wc.lib
:
$(OBJS_STAT) $(LIB_ARG)
wlib
-q
-b-
c
$@
@
$(
LIB_ARG
)
clean
:
.SYMBOLIC
-
rm
-f
$(
OBJS
)
$(
RESOURCE
)
-
rm
-f
$(
OBJS
_STAT
)
$(
OBJS_DYN
)
$(
RESOURCE
)
$(
C_ARG
)
$(
LINK_ARG
)
$(
LIB_ARG
)
vclean realclean
:
clean .SYMBOLIC
-
rm
-f
$(
TARGETS
)
$(
C_ARG
)
$(
LINK_ARG
)
libcurl_wc.map
-
rmdir
$(
OBJ_DIR
)
-
rm
-f
$(
TARGETS
)
libcurl_wc.map
-
rmdir
$(
OBJ_BASE
)
\s
tat
-
rmdir
$(
OBJ_BASE
)
\d
yn
-
rmdir
$(
OBJ_BASE
)
.ERASE
$(RESOURCE)
:
libcurl.rc
wrc
-dCURLDEBUG
=
1
-q
-r
-zm
-I
..
\i
nclude
-fo
=
$@
libcurl.rc
.ERASE
.c{$(OBJ_
DIR)
}.obj
:
.c{$(OBJ_
BASE)\dyn
}.obj
:
$(
CC
)
$[
@ @
$(
C_ARG
)
-fo
=
$@
.ERASE
.c{$(OBJ_BASE)\stat}.obj
:
$(
CC
)
$[
@ @
$(
C_ARG
)
-DCURL_STATICLIB
-fo
=
$@
$(C_ARG)
:
$(__MAKEFILES__)
%create
$^
@
%append
$^
@
$(
CFLAGS
)
...
...
@@ -91,7 +112,7 @@ $(C_ARG): $(__MAKEFILES__)
$(LINK_ARG)
:
$(__MAKEFILES__)
%create
$^
@
@
%append
$^
@ system nt dll
@
%append
$^
@ file
{
$(
OBJS
)
}
@
%append
$^
@ file
{
$(
OBJS
_DYN
)
}
@
%append
$^
@ option quiet, map, caseexact, eliminate,
implib
=
libcurl_wc_imp.lib,
@
%append
$^
@
res
=
$(
RESOURCE
)
libpath
$(
%watcom
)
\l
ib386
;$(
%watcom
)
\l
ib386
\n
t
@
%append
$^
@ library clib3r.lib, wldap32.lib, ws2_32.lib
...
...
@@ -99,6 +120,10 @@ $(LINK_ARG): $(__MAKEFILES__)
@%append
$^@
library
$(ZLIB_ROOT)\zlib.lib
!
endif
$(LIB_ARG)
:
$(__MAKEFILES__)
%create
$^
@
for
%f
in
(
$(
OBJS_STAT
)
)
do
@%append
$^
@ +- %f
#
# Dependencies based on "gcc -MM .."
#
...
...
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