summaryrefslogtreecommitdiff
path: root/postproc/Makefile
diff options
context:
space:
mode:
authorNick Kurshev <nickols_k@mail.ru>2001-11-06 11:22:40 +0000
committerNick Kurshev <nickols_k@mail.ru>2001-11-06 11:22:40 +0000
commit6611aa83de06e5a6baa247fac80b88d9b85b5df2 (patch)
treeae669930617ab95ab3986b4d377bfa10205517b3 /postproc/Makefile
parent99d2cb7219c1b3a3d9672708ffc590d0ecabf639 (diff)
Move yuv2rgb to postprocess
Originally committed as revision 2733 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
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