Make the default target depend on the recurse target again so that the

all necessary subdirectories are recursed by default.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26605 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2008-04-30 12:37:49 +00:00
parent 887c305ee7
commit 06b5ea6b44
1 changed files with 1 additions and 3 deletions

View File

@ -694,7 +694,7 @@ DIRS = . \
TOOLS \ TOOLS \
vidix \ vidix \
all: $(ALL_PRG) all: recurse $(ALL_PRG)
recurse: recurse:
for part in $(PARTS); do $(MAKE) -C $$part; done for part in $(PARTS); do $(MAKE) -C $$part; done
@ -754,8 +754,6 @@ endef
$(foreach part,$(PARTS),$(eval $(RECURSIVE_RULE))) $(foreach part,$(PARTS),$(eval $(RECURSIVE_RULE)))
$(OBJS): recurse
mplayer$(EXESUF): $(MPLAYER_DEPS) mplayer$(EXESUF): $(MPLAYER_DEPS)
$(CC) -o $@ $^ $(LDFLAGS_MPLAYER) $(CC) -o $@ $^ $(LDFLAGS_MPLAYER)