summaryrefslogtreecommitdiff
path: root/v4l2-apps/test/Makefile
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@infradead.org>2007-06-20 05:30:55 -0300
committerMauro Carvalho Chehab <mchehab@infradead.org>2007-06-20 05:30:55 -0300
commit4eb13325ec2fde1a2c4516c2fbb4a33f5b9162f2 (patch)
tree0bb310b3d0197c01dcef61eff679ac549f2218d9 /v4l2-apps/test/Makefile
parentbd150f373b325df62dd8e55a4c188874be6056f5 (diff)
downloadmediapointer-dvb-s2-4eb13325ec2fde1a2c4516c2fbb4a33f5b9162f2.tar.gz
mediapointer-dvb-s2-4eb13325ec2fde1a2c4516c2fbb4a33f5b9162f2.tar.bz2
Add another testing tool to v4l2-apps/test
From: Mauro Carvalho Chehab <mchehab@infradead.org> Michael Schimek gladly donated us a newer testing tool, capable of identify other API non-compliances, called pixfmt-test. Thanks Michael for this contribution. Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'v4l2-apps/test/Makefile')
-rw-r--r--v4l2-apps/test/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/v4l2-apps/test/Makefile b/v4l2-apps/test/Makefile
index 48b9643f8..ae8868c21 100644
--- a/v4l2-apps/test/Makefile
+++ b/v4l2-apps/test/Makefile
@@ -8,6 +8,7 @@ binaries = ioctl-test \
vbi-test \
v4lgrab \
driver-test \
+ pixfmt-test \
capture_example
.PHONY: all clean install
@@ -24,4 +25,7 @@ install:
driver-test: driver-test.o ../lib/libv4l2.a
+pixfmt-test: pixfmt-test.o
+ $(CC) $(LDFLAGS) $^ $(LOADLIBES) $(LDLIBS) -o $@ -lX11
+
include ../Make.rules