From adc393503fa001c0f3d72bc859d4a75e34f48a6c Mon Sep 17 00:00:00 2001
From: Diego Biurrun <diego@biurrun.de>
Date: Sun, 13 Apr 2008 10:09:47 +0000
Subject: [PATCH] Generate the list of files to clean in subdirectories in
 common.mak. This way, it can be used from all directories.

Originally committed as revision 12800 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 common.mak          | 3 ++-
 libavcodec/Makefile | 4 +---
 2 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/common.mak b/common.mak
index 12f91066b66..a7d41048ae3 100644
--- a/common.mak
+++ b/common.mak
@@ -76,7 +76,8 @@ $(SUBDIR)%-test$(EXESUF): $(SUBDIR)%.c $(LIBNAME)
 	$(CC) $(CFLAGS) $(FFLDFLAGS) -DTEST -o $$@ $$^ $(FFEXTRALIBS)
 
 clean::
-	rm -f $(TESTS) $(addprefix $(SUBDIR),$(CLEANFILES) $(CLEANSUFFIXES) $(LIBSUFFIXES))
+	rm -f $(TESTS) $(addprefix $(SUBDIR),$(CLEANFILES) $(CLEANSUFFIXES) $(LIBSUFFIXES)) \
+	    $(addprefix $(SUBDIR), $(foreach suffix,$(CLEANSUFFIXES),$(addsuffix /$(suffix),$(DIRS))))
 
 distclean:: clean
 	rm -f $(DEPS)
diff --git a/libavcodec/Makefile b/libavcodec/Makefile
index 9bde81bf5b6..a9858d79aaf 100644
--- a/libavcodec/Makefile
+++ b/libavcodec/Makefile
@@ -467,11 +467,9 @@ ASM_OBJS-$(ARCH_BFIN)                  += bfin/pixels_bfin.o \
 TESTS = $(addsuffix -test$(EXESUF), cabac dct eval fft h264 imgresample rangecoder snow)
 TESTS-$(ARCH_X86) += cpuid-test$(EXESUF) motion-test$(EXESUF)
 
+CLEANFILES = apiexample$(EXESUF)
 DIRS = alpha armv4l bfin i386 mlib ppc ps2 sh4 sparc
 
-CLEANFILES = $(addsuffix /*.o,$(DIRS)) $(addsuffix /*.ho,$(DIRS)) \
-    $(addsuffix /*~,$(DIRS)) apiexample$(EXESUF)
-
 include $(SUBDIR)../subdir.mak
 
 $(SUBDIR)cpuid-test$(EXESUF): $(SUBDIR)i386/cputest.c
-- 
GitLab