summaryrefslogtreecommitdiffstats
path: root/postproc/Makefile
diff options
context:
space:
mode:
authornick <nick@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-11-06 11:22:40 +0000
committernick <nick@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-11-06 11:22:40 +0000
commitdfe91abaa222060b78bfe48add1225e083209911 (patch)
tree220e45b8aa9a455075b527d9ded702ace4647903 /postproc/Makefile
parentadbc62c736e514f39a5652bbc1ff1c4b124a236f (diff)
downloadmpv-dfe91abaa222060b78bfe48add1225e083209911.tar.bz2
mpv-dfe91abaa222060b78bfe48add1225e083209911.tar.xz
Move yuv2rgb to postprocess
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2733 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'postproc/Makefile')
-rw-r--r--postproc/Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/postproc/Makefile b/postproc/Makefile
index 8d16b53650..5f74289438 100644
--- a/postproc/Makefile
+++ b/postproc/Makefile
@@ -3,10 +3,14 @@ include ../config.mak
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