Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
be3f4c13
Commit
be3f4c13
authored
May 18, 2013
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
doc/Makefile: install .3 man pages to man3 subdir
Fix trac ticket #2585.
parent
90cb081f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
Makefile
doc/Makefile
+8
-3
No files found.
doc/Makefile
View file @
be3f4c13
...
...
@@ -14,7 +14,9 @@ COMPONENTS-$(CONFIG_AVFORMAT) += ffmpeg-formats ffmpeg-protocols
COMPONENTS-$(CONFIG_AVDEVICE)
+=
ffmpeg-devices
COMPONENTS-$(CONFIG_AVFILTER)
+=
ffmpeg-filters
MANPAGES
=
$
(
PROGS-yes:%
=
doc/%.1
)
$
(
PROGS-yes:%
=
doc/%-all.1
)
$
(
COMPONENTS-yes:%
=
doc/%.1
)
$
(
LIBRARIES-yes:%
=
doc/%.3
)
MANPAGES1
=
$
(
PROGS-yes:%
=
doc/%.1
)
$
(
PROGS-yes:%
=
doc/%-all.1
)
$
(
COMPONENTS-yes:%
=
doc/%.1
)
MANPAGES3
=
$
(
LIBRARIES-yes:%
=
doc/%.3
)
MANPAGES
=
$(MANPAGES1)
$(MANPAGES3)
PODPAGES
=
$
(
PROGS-yes:%
=
doc/%.pod
)
$
(
PROGS-yes:%
=
doc/%-all.pod
)
$
(
COMPONENTS-yes:%
=
doc/%.pod
)
$
(
LIBRARIES-yes:%
=
doc/%.pod
)
HTMLPAGES
=
$
(
PROGS-yes:%
=
doc/%.html
)
$
(
PROGS-yes:%
=
doc/%-all.html
)
$
(
COMPONENTS-yes:%
=
doc/%.html
)
$
(
LIBRARIES-yes:%
=
doc/%.html
)
\
doc/developer.html
\
...
...
@@ -93,13 +95,16 @@ install-progs-$(CONFIG_DOC): install-man
install-man
:
$(MANPAGES)
$(Q)
mkdir
-p
"
$(MANDIR)
/man1"
$(INSTALL)
-m
644
$(MANPAGES)
"
$(MANDIR)
/man1"
$(INSTALL)
-m
644
$(MANPAGES1)
"
$(MANDIR)
/man1"
$(Q)
mkdir
-p
"
$(MANDIR)
/man3"
$(INSTALL)
-m
644
$(MANPAGES3)
"
$(MANDIR)
/man3"
endif
uninstall
:
uninstall-man
uninstall-man
:
$(RM)
$
(
addprefix
"
$(MANDIR)
/man1/"
,
$(MANPAGES)
)
$(RM)
$
(
addprefix
"
$(MANDIR)
/man1/"
,
$(MANPAGES1)
)
$(RM)
$
(
addprefix
"
$(MANDIR)
/man3/"
,
$(MANPAGES3)
)
clean
::
docclean
...
...
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