changeset 22317:068c5141bff6

Simplify .depend file inclusion.
author diego
date Sat, 24 Feb 2007 10:44:16 +0000
parents f3d7a1b58a82
children ce44f281c84b
files Makefile mpcommon.mak
diffstat 2 files changed, 2 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile	Sat Feb 24 10:27:14 2007 +0000
+++ b/Makefile	Sat Feb 24 10:44:16 2007 +0000
@@ -427,9 +427,7 @@
 
 libass/libass.a: .norecurse $(wildcard libass/*.[ch])
 
-ifneq ($(wildcard .depend),)
-include .depend
-endif
+-include .depend
 
 .PHONY: all install* uninstall dirclean clean distclean strip dep depend
 .PHONY: doxygen doxygen_clean
--- a/mpcommon.mak	Sat Feb 24 10:27:14 2007 +0000
+++ b/mpcommon.mak	Sat Feb 24 10:44:16 2007 +0000
@@ -26,6 +26,4 @@
 dep depend:
 	$(CC) -MM $(CFLAGS) $(SRCS) $(SRCS2) 1>.depend
 
-ifneq ($(wildcard .depend),)
-include .depend
-endif
+-include .depend