diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-07-23 08:21:21 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-07-23 08:21:21 +0000 |
commit | 1a94fee42d79185ac6bc72c8bc2410973688e99d (patch) | |
tree | 5181d17d38596f615de16262d03d2c0c742705a8 /lib/Makefile.vc6 | |
parent | a91ce6a5d6e6b26358833c3858e090cd682b89b6 (diff) | |
download | curl-1a94fee42d79185ac6bc72c8bc2410973688e99d.tar.gz |
Juan F. Codagnone's fixes to build properly on Windows again
Diffstat (limited to 'lib/Makefile.vc6')
-rw-r--r-- | lib/Makefile.vc6 | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/Makefile.vc6 b/lib/Makefile.vc6 index dfbd07a50..b2cda189d 100644 --- a/lib/Makefile.vc6 +++ b/lib/Makefile.vc6 @@ -202,7 +202,9 @@ X_OBJS= \ $(DIROBJ)\hash.obj \
$(DIROBJ)\llist.obj \
$(DIROBJ)\share.obj \
- $(DIROBJ)\multi.obj
+ $(DIROBJ)\multi.obj \
+ $(DIROBJ)\http_digest.obj \
+ $(DIROBJ)\md5.obj
all : $(TARGET)
@@ -224,3 +226,6 @@ clean: -@erase $(DIROBJ)\*.obj
-@erase vc60.idb
-@erase vc60.pch
+
+getdate.c: getdate.c.cvs
+ copy getdate.c.cvs getdate.c
|