diff options
author | Måns Rullgård <mans@mansr.com> | 2010-03-16 21:22:59 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-03-16 21:22:59 +0000 |
commit | 43f60eba194031dfe9a1bdfd4ecc0aabc8c9613d (patch) | |
tree | 41c8c2455881b7738bb9e53a5bc82cd4a7d6fdeb /libavcodec/arm/Makefile | |
parent | e0e335a023e1afe3b8cfde5ff56b5473db58f7b0 (diff) | |
download | ffmpeg-43f60eba194031dfe9a1bdfd4ecc0aabc8c9613d.tar.gz |
Move arch-specific makefile parts into $arch/Makefile
Originally committed as revision 22569 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/arm/Makefile')
-rw-r--r-- | libavcodec/arm/Makefile | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/libavcodec/arm/Makefile b/libavcodec/arm/Makefile new file mode 100644 index 0000000000..14946b8466 --- /dev/null +++ b/libavcodec/arm/Makefile @@ -0,0 +1,41 @@ +ARM-OBJS-$(CONFIG_H264DSP) += arm/h264dsp_init_arm.o \ + arm/h264pred_init_arm.o \ + +OBJS-$(ARCH_ARM) += 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 \ + arm/mpegvideo_armv5te_s.o \ + arm/simple_idct_armv5te.o \ + +OBJS-$(HAVE_ARMV6) += arm/dsputil_init_armv6.o \ + arm/dsputil_armv6.o \ + arm/simple_idct_armv6.o \ + +OBJS-$(HAVE_ARMVFP) += arm/dsputil_vfp.o \ + arm/dsputil_init_vfp.o \ + +OBJS-$(HAVE_IWMMXT) += arm/dsputil_iwmmxt.o \ + arm/mpegvideo_iwmmxt.o \ + +NEON-OBJS-$(CONFIG_FFT) += arm/fft_neon.o \ + +NEON-OBJS-$(CONFIG_MDCT) += arm/mdct_neon.o \ + +NEON-OBJS-$(CONFIG_H264DSP) += arm/h264dsp_neon.o \ + arm/h264idct_neon.o \ + arm/h264pred_neon.o \ + +NEON-OBJS-$(CONFIG_VP3_DECODER) += arm/vp3dsp_neon.o + +OBJS-$(HAVE_NEON) += arm/dsputil_init_neon.o \ + arm/dsputil_neon.o \ + arm/int_neon.o \ + arm/simple_idct_neon.o \ + $(NEON-OBJS-yes) |