[MPlayer-cvslog] r26557 - trunk/Makefile
diego
subversion at mplayerhq.hu
Mon Apr 28 13:22:25 CEST 2008
Author: diego
Date: Mon Apr 28 13:22:25 2008
New Revision: 26557
Log:
Make OBJS depend on the recurse target instead of just the all target.
This fixes 'make mplayer' and 'make mencoder'.
Modified:
trunk/Makefile
Modified: trunk/Makefile
==============================================================================
--- trunk/Makefile (original)
+++ trunk/Makefile Mon Apr 28 13:22:25 2008
@@ -647,7 +647,7 @@ DIRS = dvdread \
TOOLS \
vidix \
-all: recurse $(ALL_PRG)
+all: $(ALL_PRG)
recurse:
for part in $(PARTS); do $(MAKE) -C $$part; done
@@ -671,6 +671,8 @@ endef
$(foreach part,$(PARTS),$(eval $(RECURSIVE_RULE)))
+$(OBJS): recurse
+
mplayer$(EXESUF): $(MPLAYER_DEPS)
$(CC) -o $@ $^ $(LDFLAGS_MPLAYER)
More information about the MPlayer-cvslog
mailing list