summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-04-18 22:49:17 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-04-18 22:49:17 +0000
commit9818a95c589e6fce1f6a0d0d296f0fa3efae41e1 (patch)
treeb731f1bd41a0bee8df4b8e00c936c163ac47f436 /Makefile
parent3f37dff3672e4ceb012c82085bf6b5a719d50278 (diff)
downloadmpv-9818a95c589e6fce1f6a0d0d296f0fa3efae41e1.tar.bz2
mpv-9818a95c589e6fce1f6a0d0d296f0fa3efae41e1.tar.xz
per-file dependencies (for the non-recursive parts)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26464 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 9988717fbc..8e90f8233c 100644
--- a/Makefile
+++ b/Makefile
@@ -234,9 +234,10 @@ DIRS = gui \
all: $(ALL_PRG)
-.depend: help_mp.h version.h codecs.conf.h
-dep depend:
- for part in $(PARTS); do $(MAKE) -C $$part depend; done
+DEPS = $(SRCS_COMMON:.c=.d) $(SRCS_MPLAYER:.c=.d) $(SRCS_MENCODER:.c=.d)
+$(DEPS): help_mp.h version.h codecs.conf.h
+dep depend: $(DEPS)
+ for part in $(PARTS); do $(MAKE) -C $$part .depend; done
include mpcommon.mak
@@ -395,6 +396,7 @@ distclean:: doxygen_clean
for part in $(PARTS); do $(MAKE) -C $$part distclean; done
$(MAKE) -C TOOLS distclean
-rm -f configure.log config.mak config.h
+ rm -f $(foreach dir,$(DIRS),$(foreach suffix,/*.d, $(addsuffix $(suffix),$(dir))))
strip:
strip -s $(ALL_PRG)