summaryrefslogtreecommitdiff
path: root/v4l2-apps/test/Makefile
blob: 554940edde4325e1fa2ada25dbd866cbf421a73f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Makefile for linuxtv.org v4l2-apps/test

CPPFLAGS += -I../include

binaries = ioctl-test 		\
	   sliced-vbi-test 	\
	   sliced-vbi-detect 	\
	   vbi-test 		\
	   v4lgrab		\
	   driver-test		\
	   pixfmt-test		\
	   stress-buffer	\
	   capture_example

.PHONY: all clean install

all: $(binaries)

clean::
	rm -f $(binaries)

install:

../libv4l2util/libv4l2util.a: ../libv4l2util/v4l2_driver.c ../libv4l2util/frequencies.c
	make -C ../libv4l2util libv4l2util.a

driver-test: driver-test.o ../libv4l2util/libv4l2util.a

pixfmt-test: pixfmt-test.o
	$(CC) $(LDFLAGS) $^ $(LOADLIBES) $(LDLIBS) -o $@ -lX11

include ../Make.rules