diff options
author | Måns Rullgård <mans@mansr.com> | 2010-03-16 21:23:03 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-03-16 21:23:03 +0000 |
commit | 3bd74e92434ba4030878ecae00db0c66649e2337 (patch) | |
tree | caef14efaef3ab9172ec6a1827370219e06ec7c0 | |
parent | 43f60eba194031dfe9a1bdfd4ecc0aabc8c9613d (diff) | |
download | ffmpeg-3bd74e92434ba4030878ecae00db0c66649e2337.tar.gz |
Simplify arch-specific object file lists
Originally committed as revision 22570 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/alpha/Makefile | 2 | ||||
-rw-r--r-- | libavcodec/arm/Makefile | 5 | ||||
-rw-r--r-- | libavcodec/bfin/Makefile | 2 | ||||
-rw-r--r-- | libavcodec/ppc/Makefile | 2 | ||||
-rw-r--r-- | libavcodec/sh4/Makefile | 2 | ||||
-rw-r--r-- | libavcodec/x86/Makefile | 6 |
6 files changed, 8 insertions, 11 deletions
diff --git a/libavcodec/alpha/Makefile b/libavcodec/alpha/Makefile index 3493adfbc2..2779a2316a 100644 --- a/libavcodec/alpha/Makefile +++ b/libavcodec/alpha/Makefile @@ -1,4 +1,4 @@ -OBJS-$(ARCH_ALPHA) += alpha/dsputil_alpha.o \ +OBJS += alpha/dsputil_alpha.o \ alpha/dsputil_alpha_asm.o \ alpha/motion_est_alpha.o \ alpha/motion_est_mvi_asm.o \ diff --git a/libavcodec/arm/Makefile b/libavcodec/arm/Makefile index 14946b8466..d05a07e756 100644 --- a/libavcodec/arm/Makefile +++ b/libavcodec/arm/Makefile @@ -1,13 +1,12 @@ -ARM-OBJS-$(CONFIG_H264DSP) += arm/h264dsp_init_arm.o \ +OBJS-$(CONFIG_H264DSP) += arm/h264dsp_init_arm.o \ arm/h264pred_init_arm.o \ -OBJS-$(ARCH_ARM) += arm/dsputil_init_arm.o \ +OBJS += arm/dsputil_init_arm.o \ arm/dsputil_arm.o \ arm/fft_init_arm.o \ arm/jrevdct_arm.o \ arm/mpegvideo_arm.o \ arm/simple_idct_arm.o \ - $(ARM-OBJS-yes) OBJS-$(HAVE_ARMV5TE) += arm/dsputil_init_armv5te.o \ arm/mpegvideo_armv5te.o \ diff --git a/libavcodec/bfin/Makefile b/libavcodec/bfin/Makefile index e86e6b0fd8..e50e3cd669 100644 --- a/libavcodec/bfin/Makefile +++ b/libavcodec/bfin/Makefile @@ -1,4 +1,4 @@ -OBJS-$(ARCH_BFIN) += bfin/dsputil_bfin.o \ +OBJS += bfin/dsputil_bfin.o \ bfin/fdct_bfin.o \ bfin/idct_bfin.o \ bfin/mpegvideo_bfin.o \ diff --git a/libavcodec/ppc/Makefile b/libavcodec/ppc/Makefile index 52e0cf628c..5d5a59b4c5 100644 --- a/libavcodec/ppc/Makefile +++ b/libavcodec/ppc/Makefile @@ -1,4 +1,4 @@ -OBJS-$(ARCH_PPC) += ppc/dsputil_ppc.o \ +OBJS += ppc/dsputil_ppc.o \ ALTIVEC-OBJS-$(CONFIG_H264DSP) += ppc/h264_altivec.o ALTIVEC-OBJS-$(CONFIG_VC1_DECODER) += ppc/vc1dsp_altivec.o diff --git a/libavcodec/sh4/Makefile b/libavcodec/sh4/Makefile index d77678cf57..142cba47d1 100644 --- a/libavcodec/sh4/Makefile +++ b/libavcodec/sh4/Makefile @@ -1,3 +1,3 @@ -OBJS-$(ARCH_SH4) += sh4/dsputil_align.o \ +OBJS += sh4/dsputil_align.o \ sh4/dsputil_sh4.o \ sh4/idct_sh4.o \ diff --git a/libavcodec/x86/Makefile b/libavcodec/x86/Makefile index daf6aef078..f4d0c847dc 100644 --- a/libavcodec/x86/Makefile +++ b/libavcodec/x86/Makefile @@ -1,7 +1,5 @@ -X86-OBJS-$(CONFIG_MLP_DECODER) += x86/mlpdsp.o -X86-OBJS-$(CONFIG_TRUEHD_DECODER) += x86/mlpdsp.o - -OBJS-$(ARCH_X86) += $(X86-OBJS-yes) +OBJS-$(CONFIG_MLP_DECODER) += x86/mlpdsp.o +OBJS-$(CONFIG_TRUEHD_DECODER) += x86/mlpdsp.o YASM-OBJS-FFT-$(HAVE_AMD3DNOW) += x86/fft_3dn.o YASM-OBJS-FFT-$(HAVE_AMD3DNOWEXT) += x86/fft_3dn2.o |