diff options
author | Martin Storsjö <martin@martin.st> | 2024-03-08 10:04:16 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2024-03-10 23:45:51 +0200 |
commit | cd420c2949413bcd93cd47c683dfe2349aea25ae (patch) | |
tree | 05d507e692b5ce27cb74294ad2001f8ff523c661 /libavcodec/neon | |
parent | e0e30e07a1755c4f7829f64d35dc07e399c02c6e (diff) | |
download | ffmpeg-cd420c2949413bcd93cd47c683dfe2349aea25ae.tar.gz |
makefile: Clean up missed object files with "make clean"
In some builds, the following object files could be left behind
after make clean:
./libavfilter/metal/utils.o
./libavfilter/metal/vf_yadif_videotoolbox.metallib.o
./libavcodec/x86/h26x/h2656dsp.o
./libavcodec/neon/mpegvideo.o
./ffbuild/bin2c_host.o
Fixes: http://trac.ffmpeg.org/ticket/10895
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/neon')
-rw-r--r-- | libavcodec/neon/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/neon/Makefile b/libavcodec/neon/Makefile index 607f116a77..83c2f0051c 100644 --- a/libavcodec/neon/Makefile +++ b/libavcodec/neon/Makefile @@ -1 +1,4 @@ +clean:: + $(RM) $(CLEANSUFFIXES:%=libavcodec/neon/%) + OBJS-$(CONFIG_MPEGVIDEO) += neon/mpegvideo.o |