Bring the man page in line with the latest version of winemaker.

diff --git a/documentation/winemaker.man b/documentation/winemaker.man
index 1b7b8f9..db28320 100644
--- a/documentation/winemaker.man
+++ b/documentation/winemaker.man
@@ -13,7 +13,7 @@
 ]
 .br
   [
-.IR               "--lower-include " "| " "--no-lower-include "
+.IR               "--lower-include " "| " "--nolower-include "
 ]
 .br
   [
@@ -25,7 +25,7 @@
 ]
 .br
   [
-.IR               "-Dmacro[=defn] " "] [ " "-Idir " "] [ " "-Ldir " "] [ " "-llibrary "
+.IR               "-Dmacro[=defn] " "] [ " "-Idir " "] [ " "-Ldir " "] [ " "-idll" "] [ " "-llibrary "
 ]
 .br
   [
@@ -33,7 +33,7 @@
 ]
 .br
   [
-.IR               "--generated-files " "] [ " "--no-generated-files "
+.IR               "--generated-files " "] [ " "--nogenerated-files "
 ]
 
 .SH DESCRIPTION
@@ -91,7 +91,7 @@
 .TP
 .I --lower-none
 Tells winemaker not to rename files and directories to lower case. Note 
-that this does not prevent it from renaming a file if its extension cannot 
+that this does not prevent the renaming of a file if its extension cannot 
 be handled as is, e.g. ".Cxx". This is the default.
 .TP
 .I "--lower-include "
@@ -99,7 +99,7 @@
 include statement (or other form of file reference for resource files), 
 then it should convert that filename to lowercase. This is the default.
 .TP
-.I "--no-lower-include "
+.I "--nolower-include "
 Tells winemaker not to modify the include statement if it cannot find the 
 referenced file.
 .TP
@@ -144,6 +144,10 @@
 .I -Ldir
 Appends the specified directory to the global library path.
 .TP
+.I -idll
+Adds the Winelib library to the global list of Winelib libraries to import 
+in the spec file.
+.TP
 .I -llibrary
 Adds the specified library to the global list of libraries to link with.
 .TP
@@ -160,7 +164,7 @@
 files, the wrapper files, the Makefile.in files, the Make.rules.in file, the 
 configure.in file and the configure script. This is the default.
 .TP
-.I --no-generated-files
+.I --nogenerated-files
 Tells winemaker not to generate any of the above files.
 
 .SH EXAMPLES
@@ -179,7 +183,7 @@
 .PP
 The next step would be:
 .PP
-$ ./configure --with-winelib-root=/usr/local/opt/wine
+$ ./configure --with-wine=/usr/local/opt/wine
 .PP
 This generates the makefiles from the Makefile.in files. The generated 
 makefiles will fetch the WineLib headers and libraries from the Wine 
@@ -197,9 +201,9 @@
 .PP
 $ winemaker --lower-uppercase --mfc
 .br
-$ ./configure --with-winelib-root=/usr/local/opt/wine \\
+$ ./configure --with-wine=/usr/local/opt/wine \\
 .br
-              --with-mfc-root=/usr/local/opt/mfc
+              --with-mfc=/usr/local/opt/mfc
 .br
 $ make
 .PP