diff options
author | Måns Rullgård <mans@mansr.com> | 2010-09-09 18:51:45 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-09-09 18:51:45 +0000 |
commit | 9275438a19c02264762d550a077bbf83acd63f3f (patch) | |
tree | 6fe28bcf94fa6d97578579f251a0f8e9a193be97 /libavutil/Makefile | |
parent | d222e9f9daeabe499653bc79c9a25b774941e630 (diff) | |
download | ffmpeg-9275438a19c02264762d550a077bbf83acd63f3f.tar.gz |
Clean up av_get_cpu_flag()
Instead of defining functions in per-arch header files included
by the main cpu.c, define them normally and call them from the
generic one.
Originally committed as revision 25084 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/Makefile')
-rw-r--r-- | libavutil/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavutil/Makefile b/libavutil/Makefile index 545e1c23aa..22b5452f55 100644 --- a/libavutil/Makefile +++ b/libavutil/Makefile @@ -57,6 +57,10 @@ OBJS = adler32.o \ tree.o \ utils.o \ +OBJS-$(ARCH_ARM) += arm/cpu.o +OBJS-$(ARCH_PPC) += ppc/cpu.o +OBJS-$(ARCH_X86) += x86/cpu.o + TESTPROGS = adler32 aes base64 cpu crc des lls md5 pca sha softfloat tree TESTPROGS-$(HAVE_LZO1X_999_COMPRESS) += lzo |