summaryrefslogtreecommitdiff
path: root/postproc/Makefile
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2002-06-29 15:01:23 +0000
committerMichael Niedermayer <michaelni@gmx.at>2002-06-29 15:01:23 +0000
commita28ea2c04debd64091588645437c8539b8a4439b (patch)
tree15e8825210ba6234de73cbaa4a98fdbfe05b5bbc /postproc/Makefile
parentb241cbf2cf9b6f98d9788a2d5b03024d6502fa99 (diff)
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 :(((( Originally committed as revision 6604 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
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
#