From 6d01235f44a7aa915965c2b2a2b1190397f06669 Mon Sep 17 00:00:00 2001 From: diego Date: Sat, 9 Aug 2008 13:53:19 +0000 Subject: Skip dependency generation if we just run distclean or if skipping is requested explicitly on the command line. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27443 b3059339-0415-0410-9bf9-f77b7e298cf2 --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 23dc7fcfe1..0eaa22098b 100644 --- a/Makefile +++ b/Makefile @@ -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 -- cgit v1.2.3