diff options
author | Leon van Stuivenberg <leonvs@iae.nl> | 2002-09-23 08:44:24 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-09-23 08:44:24 +0000 |
commit | d46aba2642a075635d521628be7ea16ceaa1c95d (patch) | |
tree | 6f247c740dcaaaa0a82af9f2b86fd60d1153a857 /libavcodec/Makefile | |
parent | 18a7b2a8734c0b14aa8b0b57e5f5ba0f3c688a9f (diff) | |
download | ffmpeg-d46aba2642a075635d521628be7ea16ceaa1c95d.tar.gz |
ps2 idct patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
Originally committed as revision 963 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r-- | libavcodec/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 6f319753e6..0d54b0ca6c 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -76,6 +76,10 @@ ifeq ($(TARGET_ARCH_POWERPC),yes) OBJS += ppc/dsputil_ppc.o endif +ifeq ($(TARGET_MMI),yes) +OBJS += ps2/dsputil_mmi.o ps2/idct_mmi.o +endif + ifeq ($(TARGET_ALTIVEC),yes) CFLAGS += -faltivec OBJS += ppc/dsputil_altivec.o @@ -133,6 +137,7 @@ clean: mlib/*.o mlib/*~ \ alpha/*.o alpha/*~ \ ppc/*.o ppc/*~ \ + ps2/*.o ps2/*~ \ liba52/*.o liba52/*~ \ apiexample $(TESTS) |