diff options
author | Måns Rullgård <mans@mansr.com> | 2008-03-17 02:33:08 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2008-03-17 02:33:08 +0000 |
commit | d85d7a0be77449f36f28ffeaffb2624d4756331e (patch) | |
tree | 7d46754023c2d6816f576a0780b30b6798f2ccfe | |
parent | 5550eba88d5cfd975be761eef215e99234cd4fe1 (diff) | |
download | ffmpeg-d85d7a0be77449f36f28ffeaffb2624d4756331e.tar.gz |
mpegvideo_armv5te.o belongs to OBJS, not ASM_OBJS
Originally committed as revision 12467 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index a3570bd262..a00c2acfce 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -399,8 +399,9 @@ OBJS-$(ARCH_ARMV4L) += armv4l/dsputil_arm.o \ OBJS-$(HAVE_IWMMXT) += armv4l/dsputil_iwmmxt.o \ armv4l/mpegvideo_iwmmxt.o \ +OBJS-$(HAVE_ARMV5TE) += armv4l/mpegvideo_armv5te.o \ + ASM_OBJS-$(HAVE_ARMV5TE) += armv4l/simple_idct_armv5te.o \ - armv4l/mpegvideo_armv5te.o \ ASM_OBJS-$(HAVE_ARMV6) += armv4l/simple_idct_armv6.o \ |