Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2009-11-22 17:22:13 +0300
committerMåns Rullgård <mans@mansr.com>2009-11-22 17:22:13 +0300
commit79de9c83e0bb8104537d502a8b6f7c8e03f91346 (patch)
treebc7996f99544ef3ab8ee37ec25ee27368a6549a4 /common.mak
parent2d64744fed695421def569f56fbfdad6f7a64f81 (diff)
Delete *.d files with make clean
Originally committed as revision 20577 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'common.mak')
-rw-r--r--common.mak4
1 files changed, 2 insertions, 2 deletions
diff --git a/common.mak b/common.mak
index 396772bf64..b629cb43c7 100644
--- a/common.mak
+++ b/common.mak
@@ -79,8 +79,8 @@ $(HOSTPROGS): %$(HOSTEXESUF): %.o
DEPS := $(OBJS:.o=.d)
depend dep: $(DEPS)
-CLEANSUFFIXES = *.o *~ *.ho *.map
-DISTCLEANSUFFIXES = *.d *.pc
+CLEANSUFFIXES = *.d *.o *~ *.ho *.map
+DISTCLEANSUFFIXES = *.pc
LIBSUFFIXES = *.a *.lib *.so *.so.* *.dylib *.dll *.def *.dll.a *.exp
-include $(wildcard $(DEPS))