diff options
author | Trent Nelson <trent.a.b.nelson@gmail.com> | 2014-02-04 11:26:50 -0700 |
---|---|---|
committer | Trent Nelson <trent.a.b.nelson@gmail.com> | 2014-02-07 15:31:11 -0700 |
commit | ad815563a3837bbd9ea73c3645af55ec56cacb9a (patch) | |
tree | b112178cda427907ddf27a91d66ef26c7234a8ab /Makefile.in | |
parent | 84ec9e1a58c43c6e369102ccd12fecfb891a1bb0 (diff) |
[buildsys] Fix parallel build with static ffmpeg.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 428b67ccf5..7eb0b345e1 100644 --- a/Makefile.in +++ b/Makefile.in @@ -497,6 +497,17 @@ DYNOBJSXBMC += lib/ffmpeg/libavcodec/libavcodec.a \ lib/ffmpeg/libpostproc/libpostproc.a \ lib/ffmpeg/libswscale/libswscale.a LIBS+= @GNUTLS_ALL_LIBS@ @VORBISENC_ALL_LIBS@ + +lib/ffmpeg/libavcodec/libavcodec.a: lib/ffmpeg/ffmpeg +lib/ffmpeg/libavfilter/libavfilter.a: lib/ffmpeg/ffmpeg +lib/ffmpeg/libswresample/libswresample.a: lib/ffmpeg/ffmpeg +lib/ffmpeg/libavformat/libavformat.a: lib/ffmpeg/ffmpeg +lib/ffmpeg/libavutil/libavutil.a: lib/ffmpeg/ffmpeg +lib/ffmpeg/libpostproc/libpostproc.a: lib/ffmpeg/ffmpeg +lib/ffmpeg/libswscale/libswscale.a: lib/ffmpeg/ffmpeg + +lib/ffmpeg/ffmpeg: + make -C lib/ffmpeg endif OBJSXBMC:=$(filter-out $(DYNOBJSXBMC), $(OBJSXBMC)) |