diff options
author | Steve Holme <steve_holme@hotmail.com> | 2014-01-05 21:13:12 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2014-01-05 21:13:12 +0000 |
commit | fca7930dfa401426bbadc2e78ac08a716e455b89 (patch) | |
tree | 29355d79e9d283b020620bec999a8aa4893d78f5 /lib/Makefile.vc6 | |
parent | e9c0f1f658a570db539aafb3100cd886136963f3 (diff) | |
download | curl-fca7930dfa401426bbadc2e78ac08a716e455b89.tar.gz |
Makefile: Added missing WinSSL and x64 configurations
Diffstat (limited to 'lib/Makefile.vc6')
-rw-r--r-- | lib/Makefile.vc6 | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/Makefile.vc6 b/lib/Makefile.vc6 index 8b92a6caa..f2d441822 100644 --- a/lib/Makefile.vc6 +++ b/lib/Makefile.vc6 @@ -166,6 +166,18 @@ CFGSET = TRUE !ENDIF
######################
+# release-winssl
+
+!IF "$(CFG)" == "release-winssl"
+TARGET = $(LIBCURL_STA_LIB_REL)
+DIROBJ = $(CFG)
+LFLAGSZLIB = "/LIBPATH:$(ZLIB_PATH)"
+LNK = $(LNKLIB) /out:$(DIROBJ)\$(TARGET)
+CC = $(CCNODBG) $(RTLIB) $(CFLAGSWINSSL) $(CFLAGSLIB)
+CFGSET = TRUE
+!ENDIF
+
+######################
# release-zlib
!IF "$(CFG)" == "release-zlib"
|