Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
24743a76
Commit
24743a76
authored
17 years ago
by
Diego Biurrun
Browse files
Options
Downloads
Patches
Plain Diff
Rename LIB to LIBNAME for consistency.
Originally committed as revision 10774 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
522e9cf4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
common.mak
+6
-6
6 additions, 6 deletions
common.mak
configure
+4
-4
4 additions, 4 deletions
configure
libavcodec/Makefile
+5
-5
5 additions, 5 deletions
libavcodec/Makefile
with
15 additions
and
15 deletions
common.mak
+
6
−
6
View file @
24743a76
...
...
@@ -19,9 +19,9 @@ OBJS := $(OBJS) $(ASM_OBJS) $(CPPOBJS)
STATIC_OBJS
:=
$(
OBJS
)
$(
STATIC_OBJS
)
SHARED_OBJS
:=
$(
OBJS
)
$(
SHARED_OBJS
)
all
:
$(LIB) $(SLIBNAME)
all
:
$(LIB
NAME
) $(SLIBNAME)
$(LIB)
:
$(STATIC_OBJS)
$(LIB
NAME
)
:
$(STATIC_OBJS)
rm
-f
$@
$(
AR
)
rc
$@
$^
$(
EXTRAOBJS
)
$(
RANLIB
)
$@
...
...
@@ -39,7 +39,7 @@ $(SLIBNAME_WITH_MAJOR): $(SHARED_OBJS)
%.o
:
%.S
$(
CC
)
$(
CFLAGS
)
$(
LIBOBJFLAGS
)
-c
-o
$@
$<
%
:
%.o $(LIB)
%
:
%.o $(LIB
NAME
)
$(
CC
)
$(
LDFLAGS
)
-o
$@
$^
$(
EXTRALIBS
)
%.ho
:
%.h
...
...
@@ -79,9 +79,9 @@ install-lib-shared: $(SLIBNAME)
$(
LN_S
)
$(
SLIBNAME_WITH_VERSION
)
$(
SLIBNAME
)
$(
SLIB_INSTALL_EXTRA_CMD
)
install-lib-static
:
$(LIB)
install-lib-static
:
$(LIB
NAME
)
install
-d
"
$(
LIBDIR
)
"
install
-m
644
$(
LIB
)
"
$(
LIBDIR
)
"
install
-m
644
$(
LIB
NAME
)
"
$(
LIBDIR
)
"
$(
LIB_INSTALL_EXTRA_CMD
)
install-headers
:
...
...
@@ -97,7 +97,7 @@ uninstall-libs:
"
$(
SHLIBDIR
)
/
$(
SLIBNAME
)
"
\
"
$(
SHLIBDIR
)
/
$(
SLIBNAME_WITH_VERSION
)
"
-$(
SLIB_UNINSTALL_EXTRA_CMD
)
-
rm
-f
"
$(
LIBDIR
)
/
$(
LIB
)
"
-
rm
-f
"
$(
LIBDIR
)
/
$(
LIB
NAME
)
"
uninstall-headers
::
rm
-f
$(
addprefix
"
$(
INCDIR
)
/"
,
$(
HEADERS
))
...
...
This diff is collapsed.
Click to expand it.
configure
+
4
−
4
View file @
24743a76
...
...
@@ -894,13 +894,13 @@ FFSERVERLDFLAGS=-Wl,-E
LDCONFIG
=
"ldconfig"
LIBPREF
=
"lib"
LIBSUF
=
".a"
LIB
=
'$(LIBPREF)$(NAME)$(LIBSUF)'
LIB
NAME
=
'$(LIBPREF)$(NAME)$(LIBSUF)'
SLIBPREF
=
"lib"
SLIBSUF
=
".so"
SLIBNAME
=
'$(SLIBPREF)$(NAME)$(SLIBSUF)'
SLIBNAME_WITH_VERSION
=
'$(SLIBNAME).$(LIBVERSION)'
SLIBNAME_WITH_MAJOR
=
'$(SLIBNAME).$(LIBMAJOR)'
LIB_INSTALL_EXTRA_CMD
=
'$(RANLIB) "$(LIBDIR)/$(LIB)"'
LIB_INSTALL_EXTRA_CMD
=
'$(RANLIB) "$(LIBDIR)/$(LIB
NAME
)"'
# find source path
source_path
=
"
`
dirname
\"
$0
\"
`
"
...
...
@@ -1247,7 +1247,7 @@ EOF
fi
if
disabled static
;
then
LIB
=
""
LIB
NAME
=
""
fi
if
!
enabled libogg
;
then
...
...
@@ -1865,7 +1865,7 @@ echo "BUILD_STATIC=$static" >> config.mak
echo
"BUILDSUF=
$BUILDSUF
"
>>
config.mak
echo
"LIBPREF=
$LIBPREF
"
>>
config.mak
echo
"LIBSUF=
\$
(BUILDSUF)
$LIBSUF
"
>>
config.mak
echo
"LIB=
$LIB
"
>>
config.mak
echo
"LIB
NAME
=
$LIB
NAME
"
>>
config.mak
echo
"SLIBPREF=
$SLIBPREF
"
>>
config.mak
echo
"SLIBSUF=
\$
(BUILDSUF)
$SLIBSUF
"
>>
config.mak
echo
"EXESUF=
\$
(BUILDSUF)
$EXESUF
"
>>
config.mak
...
...
This diff is collapsed.
Click to expand it.
libavcodec/Makefile
+
5
−
5
View file @
24743a76
...
...
@@ -465,18 +465,18 @@ endif
tests
:
apiexample $(TESTS)
apiexample
:
apiexample.o $(LIB)
apiexample
:
apiexample.o $(LIB
NAME
)
cpuid-test
:
i386/cputest.c
$(
CC
)
$(
CFLAGS
)
-DTEST
-o
$@
$<
dct-test
:
dct-test.o fdctref.o $(LIB)
dct-test
:
dct-test.o fdctref.o $(LIB
NAME
)
fft-test
:
fft-test.o $(LIB)
fft-test
:
fft-test.o $(LIB
NAME
)
imgresample-test
:
imgresample.c $(LIB)
imgresample-test
:
imgresample.c $(LIB
NAME
)
$(
CC
)
$(
CFLAGS
)
-DTEST
-o
$@
$^
$(
EXTRALIBS
)
motion-test
:
motion-test.o $(LIB)
motion-test
:
motion-test.o $(LIB
NAME
)
.PHONY
:
tests
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment