Remove recurse target. Instead, make FFmpeg parts depend on the phony recurse

target so that their directories will be recursed unconditionally.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26632 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2008-05-01 14:02:35 +00:00
parent d5859f1ae6
commit 011e976df9
1 changed files with 2 additions and 5 deletions

View File

@ -690,10 +690,7 @@ DIRS = . \
TOOLS \
vidix \
all: recurse $(ALL_PRG)
recurse:
for part in $(PARTS); do $(MAKE) -C $$part; done
all: $(ALL_PRG)
%.d: %.c
$(MPDEPEND_CMD) > $@
@ -744,7 +741,7 @@ ifneq ($(HELP_FILE),help/help_mp-en.h)
endif
define RECURSIVE_RULE
$(part)/$(part).a:
$(part)/$(part).a: recurse
$(MAKE) -C $(part)
endef