changeset 147:598fdb31f213 libavcodec

Move yuv2rgb to postprocess
author nick
date Tue, 06 Nov 2001 11:20:00 +0000
parents a4bd42a5d075
children 1cfc4d567c0a
files libpostproc/Makefile
diffstat 1 files changed, 6 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/libpostproc/Makefile	Mon Nov 05 18:23:31 2001 +0000
+++ b/libpostproc/Makefile	Tue Nov 06 11:20:00 2001 +0000
@@ -3,10 +3,14 @@
 
 LIBNAME = libpostproc.a
 
-SRCS=postprocess.c swscale.c rgb2rgb.c
+SRCS=postprocess.c swscale.c rgb2rgb.c yuv2rgb.c
 OBJS=$(SRCS:.c=.o)
 
-CFLAGS  = $(OPTFLAGS) -I. -I.. -Wall
+ifeq ($(TARGET_ARCH_X86),yes)
+SRCS += yuv2rgb_mmx.c
+endif
+
+CFLAGS  = $(OPTFLAGS) $(MLIB_INC) -I. -I.. -Wall
 # -I/usr/X11R6/include/
 
 .SUFFIXES: .c .o