diff postproc/Makefile @ 2732:ae79207a3055

Move yuv2rgb to postprocess
author nick
date Tue, 06 Nov 2001 11:22:40 +0000
parents 13e1c5ab417a
children 66764532e1e6
line wrap: on
line diff
--- a/postproc/Makefile	Tue Nov 06 11:21:43 2001 +0000
+++ b/postproc/Makefile	Tue Nov 06 11:22:40 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