Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2013-12-20 18:19:44 +0400
committerDiego Biurrun <diego@biurrun.de>2014-03-20 16:03:23 +0400
commit54a6e08a650a71fd375551585b0ea40a3a06d228 (patch)
tree0fbb863f56c6d9308f36255fc2c89a37339e2ba6 /libavcodec/bfin
parent5169e688956be3378adb3b16a93962fe0048f1c9 (diff)
dsputil: Conditionally compile dsputil code on all architectures
Diffstat (limited to 'libavcodec/bfin')
-rw-r--r--libavcodec/bfin/Makefile16
1 files changed, 8 insertions, 8 deletions
diff --git a/libavcodec/bfin/Makefile b/libavcodec/bfin/Makefile
index 193f8e6700..efdcbfc69f 100644
--- a/libavcodec/bfin/Makefile
+++ b/libavcodec/bfin/Makefile
@@ -1,10 +1,10 @@
-OBJS += bfin/dsputil_init.o \
- bfin/dsputil.o \
- bfin/fdct_bfin.o \
- bfin/hpel_pixels_no_rnd.o \
- bfin/idct_bfin.o \
- bfin/pixels.o \
-
-OBJS-$(CONFIG_HPELDSP) += bfin/hpeldsp_init.o
+OBJS-$(CONFIG_DSPUTIL) += bfin/dsputil_init.o \
+ bfin/dsputil.o \
+ bfin/fdct_bfin.o \
+ bfin/idct_bfin.o \
+ bfin/pixels.o
+OBJS-$(CONFIG_HPELDSP) += bfin/hpeldsp_init.o \
+ bfin/hpel_pixels_no_rnd.o \
+ bfin/pixels.o
OBJS-$(CONFIG_VP3DSP) += bfin/vp3dsp_init.o \
bfin/vp3dsp.o