summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorUoti Urpala <uau@glyph.nonexistent.invalid>2008-12-06 05:12:17 +0200
committerUoti Urpala <uau@glyph.nonexistent.invalid>2008-12-06 05:33:33 +0200
commita36945fe441294ad2c803dcd592325086a86816f (patch)
treefbf4b72bb289469176ebb8ecca02d6a583992390 /Makefile
parent2a6178e5aba3b53783ee3d36c32d3280d8ce67ac (diff)
downloadmpv-a36945fe441294ad2c803dcd592325086a86816f.tar.bz2
mpv-a36945fe441294ad2c803dcd592325086a86816f.tar.xz
Makefile: Rebuild FFmpeg libraries when .asm and .o files change
There was a missing dependency that meant FFmpeg libraries were not recursed if only .asm files changed. Also add a dependency on .o files to update the corresponding .a (though this case should only happen if you run compilation commands manually).
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a18334ba46..5d2176d381 100644
--- a/Makefile
+++ b/Makefile
@@ -768,7 +768,7 @@ PARTS = ffmpeg/libavcodec \
libswscale \
FFMPEGLIBS = $(foreach part, $(PARTS), $(part)/$(notdir $(part)).a)
-FFMPEGFILES = $(foreach part, $(PARTS), $(part)/*.[chS] ffmpeg/libavcodec/*/*.[chS])
+FFMPEGFILES = $(foreach part, $(PARTS), $(part)/*.[choS] ffmpeg/libavcodec/*/*.[choS]) ffmpeg/libavcodec/*/*.asm