diff options
author | Guenter Knauf <lists@gknw.net> | 2013-07-08 17:46:15 +0200 |
---|---|---|
committer | Guenter Knauf <lists@gknw.net> | 2013-07-08 17:46:15 +0200 |
commit | aff245b360444b11f47c1d04246cc45ef81e5de3 (patch) | |
tree | 52c951772674f17316881b940822d86a1b46a1c6 /Makefile.dist | |
parent | e01469907a1b0a1d6e5f649e7e5bba113bb235f4 (diff) | |
download | curl-aff245b360444b11f47c1d04246cc45ef81e5de3.tar.gz |
Added winssl-zlib target to VC builds.
Diffstat (limited to 'Makefile.dist')
-rw-r--r-- | Makefile.dist | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile.dist b/Makefile.dist index a4fbef15c..3efb8ebef 100644 --- a/Makefile.dist +++ b/Makefile.dist @@ -148,12 +148,24 @@ vc-ssl-zlib: $(VC) cd ..\src nmake /f Makefile.$(VC) cfg=release-ssl-zlib +vc-winssl-zlib: $(VC) + cd lib + nmake /f Makefile.$(VC) cfg=release-winssl-zlib + cd ..\src + nmake /f Makefile.$(VC) cfg=release-winssl-zlib + vc-x64-ssl-zlib: $(VC) cd lib nmake /f Makefile.$(VC) MACHINE=x64 cfg=release-ssl-zlib cd ..\src nmake /f Makefile.$(VC) MACHINE=x64 cfg=release-ssl-zlib +vc-x64-winssl-zlib: $(VC) + cd lib + nmake /f Makefile.$(VC) MACHINE=x64 cfg=release-winssl-zlib + cd ..\src + nmake /f Makefile.$(VC) MACHINE=x64 cfg=release-winssl-zlib + vc-ssl-dll: $(VC) cd lib nmake /f Makefile.$(VC) cfg=release-ssl-dll |