Skip to content

Commit

Permalink
Fix vc-x64 target having MACHINE= wrongly positioned, and added vc-x6…
Browse files Browse the repository at this point in the history
…4-ssl-zlib

target as indicated end requested by Viktor Szakats in bug report #2872879.
  • Loading branch information
yangtse committed Oct 6, 2009
1 parent e593715 commit 45e093f
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions Makefile.dist
Expand Up @@ -130,9 +130,9 @@ vc:

vc-x64:
cd lib
MACHINE=x64 nmake /f Makefile.$(VC) cfg=release
nmake /f Makefile.$(VC) MACHINE=x64 cfg=release
cd ..\src
MACHINE=x64 nmake /f Makefile.$(VC)
nmake /f Makefile.$(VC) MACHINE=x64 cfg=release

vc-zlib:
cd lib
Expand All @@ -152,6 +152,12 @@ vc-ssl-zlib:
cd ..\src
nmake /f Makefile.$(VC) cfg=release-ssl-zlib

vc-x64-ssl-zlib:
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-ssl-dll:
cd lib
nmake /f Makefile.$(VC) cfg=release-ssl-dll
Expand Down

0 comments on commit 45e093f

Please sign in to comment.