Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
d48372c1
Commit
d48372c1
authored
Nov 30, 2000
by
Francois Gouget
Committed by
Alexandre Julliard
Nov 30, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bring the man page in line with the latest version of winemaker.
parent
3af251e4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
9 deletions
+13
-9
winemaker.man
documentation/winemaker.man
+13
-9
No files found.
documentation/winemaker.man
View file @
d48372c1
...
@@ -13,7 +13,7 @@ winemaker \- generate a build infrastructure for compiling Windows programs on U
...
@@ -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
...
@@ -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
...
@@ -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".
...
@@ -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
...
@@ -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.
...
@@ -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
...
@@ -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.
...
@@ -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-wine
lib-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:
...
@@ -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-wine
lib-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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment