cosmetics: Rename PARTS variable to FFMPEGPARTS.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29196 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2009-04-19 15:54:16 +00:00
parent bf2a47d871
commit a16fc43c34
1 changed files with 4 additions and 4 deletions

View File

@ -784,14 +784,14 @@ DIRS = . \
ALLHEADERS = $(foreach dir,$(DIRS),$(wildcard $(dir)/*.h))
PARTS = libavcodec \
FFMPEGPARTS = libavcodec \
libavformat \
libavutil \
libpostproc \
libswscale \
FFMPEGLIBS = $(foreach part, $(PARTS), $(part)/$(part).a)
FFMPEGFILES = $(foreach part, $(PARTS), $(part)/*.[chS] $(part)/*/*.[chS])
FFMPEGLIBS = $(foreach part, $(FFMPEGPARTS), $(part)/$(part).a)
FFMPEGFILES = $(foreach part, $(FFMPEGPARTS), $(part)/*.[chS] $(part)/*/*.[chS])
@ -820,7 +820,7 @@ all: $(ALL_PRG-yes)
checkheaders: $(ALLHEADERS:.h=.ho)
dep depend: $(DEPS)
for part in $(PARTS); do $(MAKE) -C $$part depend; done
for part in $(FFMPEGPARTS); do $(MAKE) -C $$part depend; done
$(FFMPEGLIBS): $(FFMPEGFILES) config.h
$(MAKE) -C $(@D)