summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-04-24 17:26:57 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-04-24 17:26:57 +0000
commit1b7adb682202d310cff714b355164a2b29c877c6 (patch)
tree5a3439a7f442ac6c27744e50c4460a8d9fca25bd /Makefile
parent6a23615946718c027213c46701274af6a01b6528 (diff)
downloadmpv-1b7adb682202d310cff714b355164a2b29c877c6.tar.bz2
mpv-1b7adb682202d310cff714b355164a2b29c877c6.tar.xz
Make sure necessary header files are created before recursing.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26519 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5ccb1f5778..1df6c6cfd2 100644
--- a/Makefile
+++ b/Makefile
@@ -490,7 +490,7 @@ recurse:
for part in $(PARTS); do $(MAKE) -C $$part; done
DEPS = $(SRCS_COMMON:.c=.d) $(SRCS_MPLAYER:.c=.d) $(SRCS_MENCODER:.c=.d)
-$(DEPS): help_mp.h version.h codecs.conf.h
+$(DEPS) recurse: help_mp.h version.h codecs.conf.h
dep depend: $(DEPS)
for part in $(PARTS); do $(MAKE) -C $$part .depend; done