comparison Makefile @ 1959:55b7435c59b8 libavcodec

VIS optimized motion compensation code. by (David S. Miller <davem at redhat dot com>) ported to ffmpeg by (ja2morri at csclub dot uwaterloo dot ca (james morrison)) useable under LGPL with their agreement
author michael
date Fri, 23 Apr 2004 23:38:54 +0000
parents 01d6dc162ace
children d571f4537f52
comparison
equal deleted inserted replaced
1958:57ffe72703e0 1959:55b7435c59b8
159 159
160 ifeq ($(TARGET_ARCH_SH4),yes) 160 ifeq ($(TARGET_ARCH_SH4),yes)
161 OBJS+= sh4/idct_sh4.o sh4/dsputil_sh4.o sh4/dsputil_align.o 161 OBJS+= sh4/idct_sh4.o sh4/dsputil_sh4.o sh4/dsputil_align.o
162 endif 162 endif
163 163
164 ifeq ($(TARGET_ARCH_SPARC),yes)
165 OBJS+=sparc/dsputil_vis.o
166 CFLAGS+= -mcpu=ultrasparc -mtune=ultrasparc
167 endif
168
164 169
165 SRCS := $(OBJS:.o=.c) $(ASM_OBJS:.o=.S) 170 SRCS := $(OBJS:.o=.c) $(ASM_OBJS:.o=.S)
166 OBJS := $(OBJS) $(ASM_OBJS) 171 OBJS := $(OBJS) $(ASM_OBJS)
167 172
168 LIB= $(LIBPREF)avcodec$(LIBSUF) 173 LIB= $(LIBPREF)avcodec$(LIBSUF)