automake: add reference to libwebp for mux/demux

this allows DLLs to be built under mingw and sets up a more obvious
dependency in the shared objects

Change-Id: I33e8a6132a16ca49563492438a1b3b74be9ed6a1
This commit is contained in:
James Zern
2013-03-05 16:22:18 -08:00
parent 05ec4cc2d3
commit 627f5ca66b
3 changed files with 7 additions and 3 deletions

View File

@ -1,4 +1,6 @@
SUBDIRS = dec enc dsp utils
# The mux and demux libraries depend on libwebp, thus the '.' to force the
# build order so it's available to them.
SUBDIRS = dec enc dsp utils .
if WANT_MUX
SUBDIRS += mux
endif