From: Diego Biurrun Date: Tue, 20 Dec 2011 17:26:54 +0000 (+0100) Subject: build: fix standalone compilation of ADX encoder X-Git-Tag: v0.8b1~107 X-Git-Url: https://git.libav.org/?p=libav.git;a=commitdiff_plain;h=19277d933574a8c702db51ea5dbb1d450d6a967c build: fix standalone compilation of ADX encoder The encoder depends on the common code, so link against it. --- diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 7553456d4d..b426129af3 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -493,7 +493,7 @@ OBJS-$(CONFIG_PCM_ZORK_DECODER) += pcm.o OBJS-$(CONFIG_ADPCM_4XM_DECODER) += adpcm.o adpcm_data.o OBJS-$(CONFIG_ADPCM_ADX_DECODER) += adxdec.o adx.o -OBJS-$(CONFIG_ADPCM_ADX_ENCODER) += adxenc.o +OBJS-$(CONFIG_ADPCM_ADX_ENCODER) += adxenc.o adx.o OBJS-$(CONFIG_ADPCM_CT_DECODER) += adpcm.o adpcm_data.o OBJS-$(CONFIG_ADPCM_EA_DECODER) += adpcm.o adpcm_data.o OBJS-$(CONFIG_ADPCM_EA_MAXIS_XA_DECODER) += adpcm.o adpcm_data.o