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
20d444d1
Commit
20d444d1
authored
Nov 24, 2002
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added dist rule for building the distribution tarballs.
parent
77915701
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
2 deletions
+19
-2
Makefile.in
documentation/Makefile.in
+19
-2
No files found.
documentation/Makefile.in
View file @
20d444d1
...
...
@@ -84,7 +84,7 @@ ps: $(ALLBOOKS:%=%.ps)
# this is the all-in-one book, not built by default
wine-doc
:
wine-doc/index.html wine-doc.pdf wine-doc.ps
.PHONY
:
everything doc html pdf ps wine-doc
.PHONY
:
everything doc html pdf ps wine-doc
dist
.SUFFIXES
:
.sgml /index.html .pdf .ps
...
...
@@ -106,6 +106,23 @@ wine-doc.pdf wine-doc.ps wine-doc/index.html: $(WINE_DOC_SRCS)
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)
$@
# Rules for distribution tarballs of formatted docs
dist
:
wine-doc-ps.tar.gz wine-doc-pdf.tar.gz wine-doc-html.tar.gz wine-doc-txt.tar.gz
wine-doc-ps.tar.gz
:
$(ALLBOOKS:%=%.ps)
tar
cf -
$
(
ALLBOOKS:%
=
%.ps
)
|
gzip
-9
>
$@
||
$(RM)
$@
wine-doc-pdf.tar.gz
:
$(ALLBOOKS:%=%.pdf)
tar
cf -
$
(
ALLBOOKS:%
=
%.pdf
)
|
gzip
-9
>
$@
||
$(RM)
$@
wine-doc-html.tar.gz
:
$(ALLBOOKS:%=%/index.html)
tar
cf -
$
(
ALLBOOKS:%
=
%/
*
.html
)
|
gzip
-9
>
$@
||
$(RM)
$@
wine-doc-txt.tar.gz
:
$(ALLBOOKS:%=%/index.html)
for
i
in
$
(
ALLBOOKS:%
=
%/
*
.html
)
;
do
w3m
-dump
$$
i
>
`
dirname
$$
i
`
/
`
basename
$$
i .html
`
.txt
||
exit
1
;
done
tar
cf -
$
(
ALLBOOKS:%
=
%/
*
.txt
)
|
gzip
-9
>
$@
||
$(RM)
$@
install
::
$(MAN_TARGETS)
$(MKINSTALLDIRS)
$(mandir)
/man
$(prog_manext)
$(mandir)
/man
$(conf_manext)
$(INSTALL_DATA)
wine.man
$(mandir)
/man
$(prog_manext)
/wine.
$(prog_manext)
...
...
@@ -116,7 +133,7 @@ uninstall::
$(RM)
$(mandir)
/man
$(conf_manext)
/wine.conf.
$(conf_manext)
clean
::
$(RM)
*
.aux
*
.dvi
*
.out
*
.pdf
*
.ps
*
.tex
*
.log
$(MAN_TARGETS)
$(RM)
*
.aux
*
.dvi
*
.out
*
.pdf
*
.ps
*
.tex
*
.log
wine-doc-
*
.tar.gz
$(MAN_TARGETS)
$(RM)
-r
wine-doc
$(ALLBOOKS)
html man3w
*
.junk DBTOHTML_OUTPUT_DIR
*
### Dependencies:
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