summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Yeo <daveryeo@telus.net>2009-05-29 11:56:54 +0000
committerDiego Biurrun <diego@biurrun.de>2009-05-29 11:56:54 +0000
commit8e8a67faecf2ac62c034f3986662f71c67a20d48 (patch)
tree1dd7b5e3f9c475a8512f50a8823529a519703b2e
parent530456bf31a794c3bf5eb0fc888e1ac65dac8e41 (diff)
Move *.map from LIBSUFFIXES to CLEANSUFFIXES, executables on OS/2 have
generated map files as well, so map files need to be removed in all places where executables are removed. patch by Dave Yeo, daveryeo telus net Originally committed as revision 18981 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--common.mak4
1 files changed, 2 insertions, 2 deletions
diff --git a/common.mak b/common.mak
index 293a05fb6c..629e7829ea 100644
--- a/common.mak
+++ b/common.mak
@@ -79,8 +79,8 @@ checkheaders: $(filter-out %_template.ho,$(ALLHEADERS:.h=.ho))
DEPS := $(OBJS:.o=.d)
depend dep: $(DEPS)
-CLEANSUFFIXES = *.o *~ *.ho
+CLEANSUFFIXES = *.o *~ *.ho *.map
DISTCLEANSUFFIXES = *.d *.pc
-LIBSUFFIXES = *.a *.lib *.so *.so.* *.dylib *.dll *.def *.dll.a *.exp *.map
+LIBSUFFIXES = *.a *.lib *.so *.so.* *.dylib *.dll *.def *.dll.a *.exp
-include $(DEPS)