diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-12-20 15:19:44 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-03-20 05:03:23 -0700 |
commit | 54a6e08a650a71fd375551585b0ea40a3a06d228 (patch) | |
tree | 0fbb863f56c6d9308f36255fc2c89a37339e2ba6 /libavcodec/bfin | |
parent | 5169e688956be3378adb3b16a93962fe0048f1c9 (diff) | |
download | ffmpeg-54a6e08a650a71fd375551585b0ea40a3a06d228.tar.gz |
dsputil: Conditionally compile dsputil code on all architectures
Diffstat (limited to 'libavcodec/bfin')
-rw-r--r-- | libavcodec/bfin/Makefile | 16 |
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 |