Bring the man page in line with the latest version of winemaker.
This commit is contained in:
parent
3af251e4d8
commit
d48372c12a
|
@ -13,7 +13,7 @@ winemaker \- generate a build infrastructure for compiling Windows programs on U
|
||||||
]
|
]
|
||||||
.br
|
.br
|
||||||
[
|
[
|
||||||
.IR "--lower-include " "| " "--no-lower-include "
|
.IR "--lower-include " "| " "--nolower-include "
|
||||||
]
|
]
|
||||||
.br
|
.br
|
||||||
[
|
[
|
||||||
|
@ -25,7 +25,7 @@ winemaker \- generate a build infrastructure for compiling Windows programs on U
|
||||||
]
|
]
|
||||||
.br
|
.br
|
||||||
[
|
[
|
||||||
.IR "-Dmacro[=defn] " "] [ " "-Idir " "] [ " "-Ldir " "] [ " "-llibrary "
|
.IR "-Dmacro[=defn] " "] [ " "-Idir " "] [ " "-Ldir " "] [ " "-idll" "] [ " "-llibrary "
|
||||||
]
|
]
|
||||||
.br
|
.br
|
||||||
[
|
[
|
||||||
|
@ -33,7 +33,7 @@ winemaker \- generate a build infrastructure for compiling Windows programs on U
|
||||||
]
|
]
|
||||||
.br
|
.br
|
||||||
[
|
[
|
||||||
.IR "--generated-files " "] [ " "--no-generated-files "
|
.IR "--generated-files " "] [ " "--nogenerated-files "
|
||||||
]
|
]
|
||||||
|
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
|
@ -91,7 +91,7 @@ So "HELLO.C" would be renamed but not "World.c".
|
||||||
.TP
|
.TP
|
||||||
.I --lower-none
|
.I --lower-none
|
||||||
Tells winemaker not to rename files and directories to lower case. Note
|
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.
|
be handled as is, e.g. ".Cxx". This is the default.
|
||||||
.TP
|
.TP
|
||||||
.I "--lower-include "
|
.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),
|
include statement (or other form of file reference for resource files),
|
||||||
then it should convert that filename to lowercase. This is the default.
|
then it should convert that filename to lowercase. This is the default.
|
||||||
.TP
|
.TP
|
||||||
.I "--no-lower-include "
|
.I "--nolower-include "
|
||||||
Tells winemaker not to modify the include statement if it cannot find the
|
Tells winemaker not to modify the include statement if it cannot find the
|
||||||
referenced file.
|
referenced file.
|
||||||
.TP
|
.TP
|
||||||
|
@ -144,6 +144,10 @@ Appends the specified directory to the global include path.
|
||||||
.I -Ldir
|
.I -Ldir
|
||||||
Appends the specified directory to the global library path.
|
Appends the specified directory to the global library path.
|
||||||
.TP
|
.TP
|
||||||
|
.I -idll
|
||||||
|
Adds the Winelib library to the global list of Winelib libraries to import
|
||||||
|
in the spec file.
|
||||||
|
.TP
|
||||||
.I -llibrary
|
.I -llibrary
|
||||||
Adds the specified library to the global list of libraries to link with.
|
Adds the specified library to the global list of libraries to link with.
|
||||||
.TP
|
.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
|
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.
|
configure.in file and the configure script. This is the default.
|
||||||
.TP
|
.TP
|
||||||
.I --no-generated-files
|
.I --nogenerated-files
|
||||||
Tells winemaker not to generate any of the above files.
|
Tells winemaker not to generate any of the above files.
|
||||||
|
|
||||||
.SH EXAMPLES
|
.SH EXAMPLES
|
||||||
|
@ -179,7 +183,7 @@ configure.in, and run autoconf to generate the configure script.
|
||||||
.PP
|
.PP
|
||||||
The next step would be:
|
The next step would be:
|
||||||
.PP
|
.PP
|
||||||
$ ./configure --with-winelib-root=/usr/local/opt/wine
|
$ ./configure --with-wine=/usr/local/opt/wine
|
||||||
.PP
|
.PP
|
||||||
This generates the makefiles from the Makefile.in files. The generated
|
This generates the makefiles from the Makefile.in files. The generated
|
||||||
makefiles will fetch the WineLib headers and libraries from the Wine
|
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
|
.PP
|
||||||
$ winemaker --lower-uppercase --mfc
|
$ winemaker --lower-uppercase --mfc
|
||||||
.br
|
.br
|
||||||
$ ./configure --with-winelib-root=/usr/local/opt/wine \\
|
$ ./configure --with-wine=/usr/local/opt/wine \\
|
||||||
.br
|
.br
|
||||||
--with-mfc-root=/usr/local/opt/mfc
|
--with-mfc=/usr/local/opt/mfc
|
||||||
.br
|
.br
|
||||||
$ make
|
$ make
|
||||||
.PP
|
.PP
|
||||||
|
|
Loading…
Reference in New Issue