diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-01-07 09:31:45 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-01-07 09:31:45 +0000 |
commit | e69362df2291f0f692af027f4a455415aeb7030f (patch) | |
tree | 1d7f203567aa1b5d2fd629d786e3ee54b2fff779 /lib/Makefile.vc6 | |
parent | 3de8f6f38ee96d1acdf58b41a4f50bbcf2c09a77 (diff) | |
download | curl-e69362df2291f0f692af027f4a455415aeb7030f.tar.gz |
Matthew Blain's improvements for debug builds
Diffstat (limited to 'lib/Makefile.vc6')
-rw-r--r-- | lib/Makefile.vc6 | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/Makefile.vc6 b/lib/Makefile.vc6 index 971ccaf45..b1e347a3a 100644 --- a/lib/Makefile.vc6 +++ b/lib/Makefile.vc6 @@ -116,7 +116,7 @@ CFGSET = TRUE !IF "$(CFG)" == "debug-dll"
TARGET =$(LIB_NAME_DEBUG).dll
DIROBJ =.\$(CFG)
-LNK = $(LNKDLL) /out:$(TARGET) /IMPLIB:"$(LIB_NAME_DEBUG).lib"
+LNK = $(LNKDLL) /DEBUG /out:$(TARGET) /IMPLIB:"$(LIB_NAME_DEBUG).lib" /PDB:"$(LIB_NAME_DEBUG).pdb"
CC = $(CCDEBUG)
CFGSET = TRUE
!ENDIF
@@ -139,7 +139,8 @@ CFGSET = TRUE !IF "$(CFG)" == "debug-ssl-dll"
TARGET =$(LIB_NAME_DEBUG).dll
DIROBJ =.\$(CFG)
-LNK = $(LNKDLL) $(LFLAGSSSL) /out:$(TARGET) /IMPLIB:"$(LIB_NAME_DEBUG).lib"
+LFLAGSSSL = /LIBPATH:$(OPENSSL_PATH)/out32dll
+LNK = $(LNKDLL) $(LFLAGSSSL) /DEBUG /out:$(TARGET) /IMPLIB:"$(LIB_NAME_DEBUG).lib" /PDB:"$(LIB_NAME_DEBUG).pdb"
LINKLIBS = $(LINKLIBS) $(SSLLIBS)
CC = $(CCDEBUG) $(CFLAGSSSL)
CFGSET = TRUE
|