diff options
author | Måns Rullgård <mans@mansr.com> | 2009-11-22 14:22:13 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2009-11-22 14:22:13 +0000 |
commit | 79de9c83e0bb8104537d502a8b6f7c8e03f91346 (patch) | |
tree | bc7996f99544ef3ab8ee37ec25ee27368a6549a4 /common.mak | |
parent | 2d64744fed695421def569f56fbfdad6f7a64f81 (diff) | |
download | ffmpeg-79de9c83e0bb8104537d502a8b6f7c8e03f91346.tar.gz |
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.mak | 4 |
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)) |