[MPlayer-cvslog] r27443 - trunk/Makefile
diego
subversion at mplayerhq.hu
Sat Aug 9 15:53:19 CEST 2008
Author: diego
Date: Sat Aug 9 15:53:19 2008
New Revision: 27443
Log:
Skip dependency generation if we just run distclean or if skipping
is requested explicitly on the command line.
Modified:
trunk/Makefile
Modified: trunk/Makefile
==============================================================================
--- trunk/Makefile (original)
+++ trunk/Makefile Sat Aug 9 15:53:19 2008
@@ -1055,7 +1055,13 @@ dhahelperwinclean:
+# Do not include dependencies when they are about to be removed anyway
+# or if SKIP_DEPS was set to "yes" on the command line.
+ifneq ($(MAKECMDGOALS),distclean)
+ifneq ($(SKIP_DEPS),yes)
-include $(DEPS)
+endif
+endif
.PHONY: all doxygen *install* *tools drivers dhahelper*
.PHONY: checkheaders *clean dep depend tests
More information about the MPlayer-cvslog
mailing list