mirror of https://github.com/mpv-player/mpv
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:
parent
d5859f1ae6
commit
011e976df9
7
Makefile
7
Makefile
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue