# HG changeset patch # User nick # Date 1005045600 0 # Node ID 598fdb31f213cf816bfe4c4e1e39cef5c65a54a0 # Parent a4bd42a5d0750b3b71bf745828a783fff4329d45 Move yuv2rgb to postprocess diff -r a4bd42a5d075 -r 598fdb31f213 libpostproc/Makefile --- 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