changeset 8058:509a7681c284 libavcodec

Use OBJS variable for all object files There is no longer any need to differentiate the object files by source type.
author mru
date Sat, 25 Oct 2008 14:00:28 +0000
parents 2b05a70e6c2d
children e7e67a20ff4d
files Makefile
diffstat 1 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile	Sat Oct 25 13:51:47 2008 +0000
+++ b/Makefile	Sat Oct 25 14:00:28 2008 +0000
@@ -420,7 +420,7 @@
 OBJS-$(CONFIG_WMV3_DECODER)            += i386/vc1dsp_mmx.o
 endif
 
-ASM_OBJS-$(ARCH_ARMV4L)                += armv4l/jrevdct_arm.o     \
+OBJS-$(ARCH_ARMV4L)                    += armv4l/jrevdct_arm.o     \
                                           armv4l/simple_idct_arm.o \
                                           armv4l/dsputil_arm_s.o   \
 
@@ -434,9 +434,9 @@
 
 OBJS-$(HAVE_ARMVFP)                    += armv4l/float_arm_vfp.o \
 
-ASM_OBJS-$(HAVE_ARMV5TE)               += armv4l/simple_idct_armv5te.o \
+OBJS-$(HAVE_ARMV5TE)                   += armv4l/simple_idct_armv5te.o \
 
-ASM_OBJS-$(HAVE_ARMV6)                 += armv4l/simple_idct_armv6.o \
+OBJS-$(HAVE_ARMV6)                     += armv4l/simple_idct_armv6.o \
 
 OBJS-$(HAVE_VIS)                       += sparc/dsputil_vis.o \
                                           sparc/simple_idct_vis.o \
@@ -448,7 +448,7 @@
                                           alpha/mpegvideo_alpha.o   \
                                           alpha/simple_idct_alpha.o \
 
-ASM_OBJS-$(ARCH_ALPHA)                 += alpha/dsputil_alpha_asm.o  \
+OBJS-$(ARCH_ALPHA)                     += alpha/dsputil_alpha_asm.o  \
                                           alpha/motion_est_mvi_asm.o \
 
 OBJS-$(ARCH_POWERPC)                   += ppc/dsputil_ppc.o   \
@@ -486,7 +486,7 @@
                                           bfin/mpegvideo_bfin.o \
                                           bfin/vp3_bfin.o \
 
-ASM_OBJS-$(ARCH_BFIN)                  += bfin/pixels_bfin.o \
+OBJS-$(ARCH_BFIN)                      += bfin/pixels_bfin.o \
                                           bfin/fdct_bfin.o   \
                                           bfin/idct_bfin.o   \
                                           bfin/vp3_idct_bfin.o   \