Update README and makefile.msc comments with Windows build changes.

This commit is contained in:
Phil Ross 2019-06-08 12:47:57 +01:00 committed by Federico Mena Quintero
parent 6c19bf79c9
commit 21c0d94bc4
2 changed files with 6 additions and 6 deletions

View File

@ -189,13 +189,13 @@ make install
## Using nmake on Windows
At least using MS Visual C++ 6, you can build from the unmodified
sources with [makefile.msc](makefile.msc) by issuing, in a command
shell:
Bzip2 can be built with Microsoft Visual Studio 2013 or later. From a Visual
Studio Tools Command Prompt run:
```
nmake -f makefile.msc
```
(you may need to first run the MSVC-provided script `VCVARS32.BAT`
so as to set up paths to the MSVC tools correctly).
The build will produce `bzip2.exe` and `bzip2recover.exe` files that are dependent
on `bz2-1.dll` and the Microsoft C Runtime library. Dynamic import and static
libraries are also built: `bz2-1.lib` and `bz2-static.lib`.

View File

@ -1,4 +1,4 @@
# Makefile for Microsoft Visual C++ 6.0
# Makefile for Microsoft Visual Studio 2013 and later.
# usage: nmake -f makefile.msc
# K.M. Syring (syring@gsf.de)
# Fixed up by JRS for bzip2-0.9.5d release.