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
23a65308
Commit
23a65308
authored
Aug 24, 2003
by
Fabrice Bellard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
man page installation support
Originally committed as revision 2145 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
f5fe9d5f
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
1 deletion
+18
-1
Makefile
Makefile
+9
-1
configure
configure
+9
-0
No files found.
Makefile
View file @
23a65308
...
...
@@ -111,12 +111,20 @@ ffplay.o: ffplay.c
videohook
:
.libs
$(MAKE)
-C
vhook all
install
:
all $(INSTALLVHOOK)
install
:
all
install-man
$(INSTALLVHOOK)
$(MAKE)
-C
libavcodec
install
$(MAKE)
-C
libavformat
install
install
-d
$(prefix)
/bin
install
-c
-s
-m
755
$(PROG)
$(prefix)
/bin
# install man from source dir if available
install-man
:
if
[
-f
$(SRC_PATH)
/doc/ffmpeg.1
]
;
then
\
install
-d
$(mandir)
/man1
;
\
install
-m
644
$(SRC_PATH)
/doc/ffmpeg.1
$(SRC_PATH)
/doc/ffplay.1
\
$(SRC_PATH)
/doc/ffserver.1
$(mandir)
/man1
;
\
fi
install-vhook
:
$(prefix)/lib/vhook
$(MAKE)
-C
vhook
install
INSTDIR
=
$(prefix)
/lib/vhook
...
...
configure
View file @
23a65308
...
...
@@ -19,6 +19,7 @@ TMPH="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.h"
# default parameters
prefix
=
"/usr/local"
mandir
=
""
cross_prefix
=
""
cc
=
"gcc"
ar
=
"ar"
...
...
@@ -264,6 +265,8 @@ for opt do
case
"
$opt
"
in
--prefix
=
*
)
prefix
=
`
echo
$opt
|
cut
-d
'='
-f
2
`
;;
--mandir
=
*
)
mandir
=
`
echo
$opt
|
cut
-d
'='
-f
2
`
;;
--source-path
=
*
)
source_path
=
`
echo
$opt
|
cut
-d
'='
-f
2
`
;;
--cross-prefix
=
*
)
cross_prefix
=
`
echo
$opt
|
cut
-d
'='
-f
2
`
...
...
@@ -722,6 +725,10 @@ if test "$small" = "yes"; then
CFLAGS
=
"
$CFLAGS
-Os"
fi
if
test
x
"
$mandir
"
=
x
""
;
then
mandir
=
"
${
prefix
}
/man"
fi
if
test
x
"
$1
"
=
x
"-h"
-o
x
"
$1
"
=
x
"--help"
;
then
cat
<<
EOF
...
...
@@ -732,6 +739,7 @@ EOF
echo
"Standard options:"
echo
" --help print this message"
echo
" --prefix=PREFIX install in PREFIX [
$prefix
]"
echo
" --mandir=DIR man documentation in DIR [PREFIX/man]"
echo
" --enable-mp3lame enable mp3 encoding via libmp3lame [default=no]"
echo
" --enable-vorbis enable vorbis support via libvorbisenc [default=no]"
echo
" --enable-faad enable faad support via libfaad [default=no]"
...
...
@@ -827,6 +835,7 @@ echo "# Automatically generated by configure - do not modify" > config.mak
echo
"/* Automatically generated by configure - do not modify */"
>
$TMPH
echo
"prefix=
$prefix
"
>>
config.mak
echo
"mandir=
$mandir
"
>>
config.mak
echo
"MAKE=
$make
"
>>
config.mak
echo
"CC=
$cc
"
>>
config.mak
echo
"AR=
$ar
"
>>
config.mak
...
...
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