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

This commit is contained in:
Francois Gouget 2000-11-30 20:36:18 +00:00 committed by Alexandre Julliard
parent 3af251e4d8
commit d48372c12a
1 changed files with 13 additions and 9 deletions

View File

@ -13,7 +13,7 @@ winemaker \- generate a build infrastructure for compiling Windows programs on U
]
.br
[
.IR "--lower-include " "| " "--no-lower-include "
.IR "--lower-include " "| " "--nolower-include "
]
.br
[
@ -25,7 +25,7 @@ winemaker \- generate a build infrastructure for compiling Windows programs on U
]
.br
[
.IR "-Dmacro[=defn] " "] [ " "-Idir " "] [ " "-Ldir " "] [ " "-llibrary "
.IR "-Dmacro[=defn] " "] [ " "-Idir " "] [ " "-Ldir " "] [ " "-idll" "] [ " "-llibrary "
]
.br
[
@ -33,7 +33,7 @@ winemaker \- generate a build infrastructure for compiling Windows programs on U
]
.br
[
.IR "--generated-files " "] [ " "--no-generated-files "
.IR "--generated-files " "] [ " "--nogenerated-files "
]
.SH DESCRIPTION
@ -91,7 +91,7 @@ So "HELLO.C" would be renamed but not "World.c".
.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 @@ Tells winemaker that if it does not find the file corresponding to an
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 @@ Appends the specified directory to the global include path.
.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 @@ Tells winemaker to generate the build infrastructure files, i.e. the spec
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 @@ configure.in, and run autoconf to generate the configure script.
.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 @@ For an MFC-based project one would have run the following commands instead:
.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