summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-07-05 09:08:22 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-07-05 09:08:22 +0000
commitb0ab09e0fc88eba5c530d52f090d8c3bccb3b32f (patch)
tree9ef2b10645efbd3aeeafc76d7656fb57ab82870b /Makefile
parent7c9ad57710fd919fec66b3ff617b29aa2de75c40 (diff)
downloadmpv-b0ab09e0fc88eba5c530d52f090d8c3bccb3b32f.tar.bz2
mpv-b0ab09e0fc88eba5c530d52f090d8c3bccb3b32f.tar.xz
Rename ALLPARTSLIBS variable to FFMPEGLIBS.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27205 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index d3861c4878..aecbfe214f 100644
--- a/Makefile
+++ b/Makefile
@@ -709,7 +709,7 @@ PARTS = libavcodec \
libpostproc \
libswscale \
-ALLPARTLIBS = $(foreach part, $(PARTS), $(part)/$(part).a)
+FFMPEGLIBS = $(foreach part, $(PARTS), $(part)/$(part).a)
FFMPEGFILES = $(foreach part, $(PARTS), $(part)/*.[chS] libavcodec/*/*.[chS])
@@ -738,7 +738,7 @@ checkheaders: $(ALLHEADERS:.h=.ho)
dep depend: $(DEPS)
for part in $(PARTS); do $(MAKE) -C $$part depend; done
-$(ALLPARTLIBS): $(FFMPEGFILES) libvo/fastmemcpy.h config.h
+$(FFMPEGLIBS): $(FFMPEGFILES) libvo/fastmemcpy.h config.h
$(MAKE) -C $(@D)
touch $@