summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-02-27 17:04:46 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-02-27 17:04:46 +0000
commit9bb02d10d0a1c2bcfd7448536c9767269535da6b (patch)
tree8dc9b7973b3aa7385ebd4baf2b95408b244d263f
parent84ace4d5f5370c9de13e220d4982688cb935e5e3 (diff)
downloadmpv-9bb02d10d0a1c2bcfd7448536c9767269535da6b.tar.bz2
mpv-9bb02d10d0a1c2bcfd7448536c9767269535da6b.tar.xz
Simplify .depend file inclusion.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22360 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r--libdha/Makefile4
-rw-r--r--vidix/Makefile4
-rw-r--r--vidix/drivers/Makefile4
3 files changed, 3 insertions, 9 deletions
diff --git a/libdha/Makefile b/libdha/Makefile
index 59106f073b..47f1cb730d 100644
--- a/libdha/Makefile
+++ b/libdha/Makefile
@@ -90,6 +90,4 @@ uninstall:
rm -f $(LIBDIR)/libdha.so $(LIBDIR)/$(SHORTNAME) $(LIBDIR)/$(LIBNAME)
-$(LDCONFIG)
-ifneq ($(wildcard .depend),)
-include .depend
-endif
+-include .depend
diff --git a/vidix/Makefile b/vidix/Makefile
index bd85d1552a..3eb6e43d25 100644
--- a/vidix/Makefile
+++ b/vidix/Makefile
@@ -35,6 +35,4 @@ dep depend:
$(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
$(MAKE) -C drivers depend
-ifneq ($(wildcard .depend),)
-include .depend
-endif
+-include .depend
diff --git a/vidix/drivers/Makefile b/vidix/drivers/Makefile
index 9e41181862..196311f148 100644
--- a/vidix/drivers/Makefile
+++ b/vidix/drivers/Makefile
@@ -67,6 +67,4 @@ distclean: clean
dep depend:
# do nothing here
-ifneq ($(wildcard .depend),)
-include .depend
-endif
+-include .depend