Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
8dd4ee76
Commit
8dd4ee76
authored
Jun 15, 2005
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved the wine manpage to the loader/ directory.
parent
57b5615f
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
12 additions
and
20 deletions
+12
-20
.cvsignore
documentation/.cvsignore
+0
-1
Makefile.in
documentation/Makefile.in
+0
-15
.cvsignore
loader/.cvsignore
+1
-0
Makefile.in
loader/Makefile.in
+11
-4
wine.man.in
loader/wine.man.in
+0
-0
No files found.
documentation/.cvsignore
View file @
8dd4ee76
Makefile
Makefile
wine.man
documentation/Makefile.in
View file @
8dd4ee76
...
@@ -6,28 +6,13 @@ MODULE = none
...
@@ -6,28 +6,13 @@ MODULE = none
EXTRASUBDIRS
=
samples
EXTRASUBDIRS
=
samples
MAN_TARGETS
=
wine.man
all
:
$(MAN_TARGETS)
@MAKE_RULES@
@MAKE_RULES@
wine.man
:
wine.man.in
sed
-e
's,@bindir\@,
$(bindir)
,g'
-e
's,@dlldir\@,
$(dlldir)
,g'
-e
's,@PACKAGE_STRING\@,@PACKAGE_STRING@,g'
$(SRCDIR)
/wine.man.in
>
$@
||
(
$(RM)
$@
&&
false
)
install
::
$(MAN_TARGETS)
$(MKINSTALLDIRS)
$(mandir)
/man
$(prog_manext)
$(INSTALL_DATA)
wine.man
$(mandir)
/man
$(prog_manext)
/wine.
$(prog_manext)
uninstall
::
$(RM)
$(mandir)
/man
$(prog_manext)
/wine.
$(prog_manext)
install-api-man
::
install-api-man
::
$(MKINSTALLDIRS)
$(mandir)
/man
$(api_manext)
$(MKINSTALLDIRS)
$(mandir)
/man
$(api_manext)
for
i
in
man
$(api_manext)
/
*
;
do
$(INSTALL_DATA)
$$
i
$(mandir)
/man
$(api_manext)
;
done
for
i
in
man
$(api_manext)
/
*
;
do
$(INSTALL_DATA)
$$
i
$(mandir)
/man
$(api_manext)
;
done
clean
::
clean
::
$(RM)
$(MAN_TARGETS)
$(RM)
-r
html api-guide man
$(api_manext)
$(RM)
-r
html api-guide man
$(api_manext)
### Dependencies:
### Dependencies:
loader/.cvsignore
View file @
8dd4ee76
...
@@ -4,3 +4,4 @@ wine-glibc
...
@@ -4,3 +4,4 @@ wine-glibc
wine-kthread
wine-kthread
wine-preloader
wine-preloader
wine-pthread
wine-pthread
wine.man
loader/Makefile.in
View file @
8dd4ee76
...
@@ -17,7 +17,9 @@ PTHREAD_OBJS = pthread.o main.o
...
@@ -17,7 +17,9 @@ PTHREAD_OBJS = pthread.o main.o
WINE_BINARIES
=
@WINE_BINARIES@
WINE_BINARIES
=
@WINE_BINARIES@
MAIN_BINARY
=
@MAIN_BINARY@
MAIN_BINARY
=
@MAIN_BINARY@
all
:
$(WINE_BINARIES) $(MODULE)
MAN_TARGETS
=
wine.man
all
:
$(WINE_BINARIES) $(MODULE) $(MAN_TARGETS)
@MAKE_RULES@
@MAKE_RULES@
...
@@ -39,19 +41,24 @@ wine-pthread: $(PTHREAD_OBJS) Makefile.in
...
@@ -39,19 +41,24 @@ wine-pthread: $(PTHREAD_OBJS) Makefile.in
$(MODULE)
:
$(MAIN_BINARY)
$(MODULE)
:
$(MAIN_BINARY)
$(RM)
$(MODULE)
&&
$(LN_S)
$(MAIN_BINARY)
$(MODULE)
$(RM)
$(MODULE)
&&
$(LN_S)
$(MAIN_BINARY)
$(MODULE)
install
::
$(WINE_BINARIES)
wine.man
:
wine.man.in
$(MKINSTALLDIRS)
$(bindir)
sed
-e
's,@bindir\@,
$(bindir)
,g'
-e
's,@dlldir\@,
$(dlldir)
,g'
-e
's,@PACKAGE_STRING\@,@PACKAGE_STRING@,g'
$(SRCDIR)
/wine.man.in
>
$@
||
(
$(RM)
$@
&&
false
)
install
::
$(WINE_BINARIES) $(MAN_TARGETS)
$(MKINSTALLDIRS)
$(bindir)
$(mandir)
/man
$(prog_manext)
for
f
in
$(WINE_BINARIES)
;
do
\
for
f
in
$(WINE_BINARIES)
;
do
\
if
[
"
$(MAIN_BINARY)
"
=
"
$$
f"
]
;
\
if
[
"
$(MAIN_BINARY)
"
=
"
$$
f"
]
;
\
then
$(INSTALL_PROGRAM)
$$
f
$(bindir)
/
$(MODULE)
;
\
then
$(INSTALL_PROGRAM)
$$
f
$(bindir)
/
$(MODULE)
;
\
else
$(INSTALL_PROGRAM)
$$
f
$(bindir)
/
$$
f
;
\
else
$(INSTALL_PROGRAM)
$$
f
$(bindir)
/
$$
f
;
\
fi
;
\
fi
;
\
done
done
$(INSTALL_DATA)
wine.man
$(mandir)
/man
$(prog_manext)
/wine.
$(prog_manext)
uninstall
::
uninstall
::
-
cd
$(bindir)
&&
$(RM)
$(WINE_BINARIES)
$(MODULE)
-
cd
$(bindir)
&&
$(RM)
$(WINE_BINARIES)
$(MODULE)
$(RM)
$(mandir)
/man
$(prog_manext)
/wine.
$(prog_manext)
clean
::
clean
::
$(RM)
$(WINE_BINARIES)
$(MODULE)
$(RM)
$(WINE_BINARIES)
$(MODULE)
$(MAN_TARGETS)
### Dependencies:
### Dependencies:
documentation
/wine.man.in
→
loader
/wine.man.in
View file @
8dd4ee76
File moved
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