diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-03-27 23:10:02 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-04-12 09:00:49 +0200 |
commit | 7bb3a302feeff37d14a2abb7c7316efa43f8dd5c (patch) | |
tree | 6d7a6e40c54b8ed2c48f3f93e19a0be038429b6d /libavcodec/x86 | |
parent | 2ef15b46e42647f6688d05abe2400fe008de5e0a (diff) | |
download | ffmpeg-7bb3a302feeff37d14a2abb7c7316efa43f8dd5c.tar.gz |
build: Consistently handle conditional compilation for all optimization OBJS.
Diffstat (limited to 'libavcodec/x86')
-rw-r--r-- | libavcodec/x86/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libavcodec/x86/Makefile b/libavcodec/x86/Makefile index 89d6baeafe..6602cceea6 100644 --- a/libavcodec/x86/Makefile +++ b/libavcodec/x86/Makefile @@ -2,7 +2,7 @@ OBJS-$(CONFIG_MLP_DECODER) += x86/mlpdsp.o OBJS-$(CONFIG_TRUEHD_DECODER) += x86/mlpdsp.o OBJS-$(CONFIG_XMM_CLOBBER_TEST) += x86/w64xmmtest.o -OBJS-$(HAVE_MMX) += x86/dsputil_mmx.o \ +MMX-OBJS += x86/dsputil_mmx.o \ x86/fdct_mmx.o \ x86/fmtconvert_mmx.o \ x86/idct_mmx_xvid.o \ @@ -66,7 +66,6 @@ YASM-OBJS-$(CONFIG_VP6_DECODER) += x86/vp3dsp.o \ x86/vp56dsp.o YASM-OBJS-$(CONFIG_VP8_DECODER) += x86/vp8dsp.o -MMX-OBJS-$(HAVE_YASM) += x86/dsputil_yasm.o \ +YASM-OBJS += x86/dsputil_yasm.o \ x86/deinterlace.o \ x86/fmtconvert.o \ - $(YASM-OBJS-yes) |