diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-04-22 17:39:04 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-04-22 17:39:04 +0000 |
commit | d3090ac3f9461213b6d311fb97768eb363800672 (patch) | |
tree | 2994ee81b321343c7d80f5907d3728d609e21b1e /lib | |
parent | 2cf26d4fb7e8a15a08f5922ba0a46b7332d3fdc4 (diff) |
Rosimildo da Silva corrected them to build a proper lib and to use options
for multi-threading compiling
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Makefile.b32 | 9 | ||||
-rw-r--r-- | lib/Makefile.b32.resp | 1 |
2 files changed, 6 insertions, 4 deletions
diff --git a/lib/Makefile.b32 b/lib/Makefile.b32 index 40cdaaf32..1058e8bf4 100644 --- a/lib/Makefile.b32 +++ b/lib/Makefile.b32 @@ -14,7 +14,7 @@ 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
+CXXFLAGS = -5 -O2 -w-aus -w-ccc -w-csu -w-par -w-pia -w-rch -w-inl -w-ngu -w-pro -tWM
DEFINES = -DLIBCURL_BIGENDIAN=0 -DNDEBUG -DWIN32 -DCONSOLE -DMBCS
INCDIRS = -I$(CURNTDIR);$(TOPDIR)/include/
@@ -34,6 +34,7 @@ SOURCES = \ formdata.c \
ftp.c \
http.c \
+ http_chunks.c \
ldap.c \
dict.c \
telnet.c \
@@ -64,11 +65,11 @@ OBJECTS = $(SOURCES:.c=.obj) all: $(LIBCURLLIB)
clean:
- $(RM) $(LIBCURLLIB)
- $(RM) *.obj
+ -$(RM) $(LIBCURLLIB)
+ -$(RM) *.obj
$(LIBCURLLIB): $(LINKLIB) $(OBJECTS) Makefile.b32.resp
- $(RM) $(LIBCURLLIB)
+ -$(RM) $(LIBCURLLIB)
$(LIB) $(LIBCURLLIB) @Makefile.b32.resp
diff --git a/lib/Makefile.b32.resp b/lib/Makefile.b32.resp index 67a8f0ee9..c4554f717 100644 --- a/lib/Makefile.b32.resp +++ b/lib/Makefile.b32.resp @@ -5,6 +5,7 @@ +formdata.obj &
+ftp.obj &
+http.obj &
++http_chunks.obj &
+ldap.obj &
+dict.obj &
+telnet.obj &
|