summaryrefslogtreecommitdiff
path: root/v4l2-apps/util/Makefile
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@infradead.org>2006-08-25 11:45:51 -0300
committerMauro Carvalho Chehab <mchehab@infradead.org>2006-08-25 11:45:51 -0300
commit7d302bb17d4ebe98e2e0cbe76beb2a72b3292843 (patch)
treedb5d13ef3544100adea173bc9c6f778be7348472 /v4l2-apps/util/Makefile
parent46d06fbe2e7e63f51fd16e60ba0371ec1a90953a (diff)
parent1630db850f1bcab986ce1870cd42243c596a2574 (diff)
downloadmediapointer-dvb-s2-7d302bb17d4ebe98e2e0cbe76beb2a72b3292843.tar.gz
mediapointer-dvb-s2-7d302bb17d4ebe98e2e0cbe76beb2a72b3292843.tar.bz2
merge: http://linuxtv.org/hg/~hverkuil/v4l2-apps
From: Mauro Carvalho Chehab <mchehab@infradead.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'v4l2-apps/util/Makefile')
-rw-r--r--v4l2-apps/util/Makefile22
1 files changed, 22 insertions, 0 deletions
diff --git a/v4l2-apps/util/Makefile b/v4l2-apps/util/Makefile
new file mode 100644
index 000000000..8555ef5b6
--- /dev/null
+++ b/v4l2-apps/util/Makefile
@@ -0,0 +1,22 @@
+# Makefile for linuxtv.org v4l2-apps/util
+
+CPPFLAGS += -I../../linux/include
+
+binaries = v4l2-ctl
+
+.PHONY: all clean install qv4l2
+
+all: $(binaries) qv4l2
+
+clean::
+ rm -f $(binaries)
+ -if [ -f qv4l2/Makefile ]; then make -C qv4l2 $@; fi
+ -rm -f qv4l2/qv4l2 qv4l2/Makefile
+
+qv4l2:
+ if [ ! -f qv4l2/Makefile ]; then (cd qv4l2; qmake); fi
+ make -C qv4l2
+
+install:
+
+include ../Make.rules