summaryrefslogtreecommitdiffstats
path: root/postproc/Makefile
diff options
context:
space:
mode:
authormichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-06-29 15:01:23 +0000
committermichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-06-29 15:01:23 +0000
commit068e718f32ad088e60b3e68f7f1a43b431fed909 (patch)
treef02fb6d2ab405f3645436f2903f1ee5517c057bb /postproc/Makefile
parent4d9a3a7c22de41256a2914a4e968165d840413b7 (diff)
downloadmpv-068e718f32ad088e60b3e68f7f1a43b431fed909.tar.bz2
mpv-068e718f32ad088e60b3e68f7f1a43b431fed909.tar.xz
colorspace converter tests (memory corruption tests at different width/src/dst)
quite impressive results only 1 of the 13 rgb->rgb converters fails for the c versions ... sadly only 1 of the mmx converters passes though :( ... i feared allready that last mplayerxp merge reversed the bugfixes :(((( git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6604 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'postproc/Makefile')
-rw-r--r--postproc/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/postproc/Makefile b/postproc/Makefile
index a55356021c..71e0ad2df6 100644
--- a/postproc/Makefile
+++ b/postproc/Makefile
@@ -5,6 +5,7 @@ LIBNAME = libpostproc.a
SRCS=postprocess.c swscale.c rgb2rgb.c yuv2rgb.c
OBJS=$(SRCS:.c=.o)
+CS_TEST_OBJS=cs_test.o rgb2rgb.o ../cpudetect.o ../mp_msg.o
CFLAGS = $(OPTFLAGS) $(MLIB_INC) -I. -I.. -Wall $(EXTRA_INC)
# -I/usr/X11R6/include/
@@ -32,6 +33,9 @@ dep: depend
depend:
$(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
+cs_test: $(CS_TEST_OBJS)
+ $(CC) $(CS_TEST_OBJS) -o cs_test
+
#
# include dependency files if they exist
#