comparison Makefile @ 509:cab79946302f libavcodec

Implement put_pixels_clamped and add_pixels_clamped in Assembler. This allows better scheduling of the memory accesses, and is portable among all compilers.
author mellum
date Mon, 01 Jul 2002 04:26:07 +0000
parents b9fcdf9f4420
children 9c66b5183ab3
comparison
equal deleted inserted replaced
508:8f9fa4ec9cbb 509:cab79946302f
61 endif 61 endif
62 62
63 # alpha specific stuff 63 # alpha specific stuff
64 ifeq ($(TARGET_ARCH_ALPHA),yes) 64 ifeq ($(TARGET_ARCH_ALPHA),yes)
65 OBJS += alpha/dsputil_alpha.o alpha/mpegvideo_alpha.o 65 OBJS += alpha/dsputil_alpha.o alpha/mpegvideo_alpha.o
66 ASM_OBJS += alpha/dsputil_alpha_asm.o
66 CFLAGS += -Wa,-mpca56 67 CFLAGS += -Wa,-mpca56
67 endif 68 endif
68 69
69 SRCS := $(OBJS:.o=.c) $(ASM_OBJS:.o=.s) 70 SRCS := $(OBJS:.o=.c) $(ASM_OBJS:.o=.S)
70 OBJS := $(OBJS) $(ASM_OBJS) 71 OBJS := $(OBJS) $(ASM_OBJS)
71 72
72 LIB= libavcodec.a 73 LIB= libavcodec.a
73 ifeq ($(BUILD_SHARED),yes) 74 ifeq ($(BUILD_SHARED),yes)
74 SLIB= libavcodec.so 75 SLIB= libavcodec.so