summaryrefslogtreecommitdiffstats
path: root/postproc/Makefile
diff options
context:
space:
mode:
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
#