diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2009-01-21 21:24:45 +0100 |
---|---|---|
committer | Hans Verkuil <hverkuil@xs4all.nl> | 2009-01-21 21:24:45 +0100 |
commit | 85b54c00cfc4dba53bd4145d9163aa207da94f8c (patch) | |
tree | dbbc1266d9a91d3da1225bc8832fcb282459455f | |
parent | c315430200b80fac4f307242e767136a8c2a387f (diff) | |
download | mediapointer-dvb-s2-85b54c00cfc4dba53bd4145d9163aa207da94f8c.tar.gz mediapointer-dvb-s2-85b54c00cfc4dba53bd4145d9163aa207da94f8c.tar.bz2 |
v4l2-spec: fix hgignore rules and add shortcuts to make v4l2-apps and v4l2-spec.
From: Hans Verkuil <hverkuil@xs4all.nl>
.hgignore rules for v4l2-spec are fixed and it is now possible to run
'make apps' or 'make spec' to make v4l2-apps and v4l2-spec respectively.
'make distclean' or 'make clean' will also go into those directories.
Priority: normal
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
-rw-r--r-- | .hgignore | 9 | ||||
-rw-r--r-- | Makefile | 10 | ||||
-rw-r--r-- | v4l2-spec/Makefile | 2 |
3 files changed, 20 insertions, 1 deletions
@@ -53,3 +53,12 @@ v4l2-apps/util/ivtv-ctl$ v4l2-apps/util/v4l-board-dbg$ v4l2-apps/lib/libv4l/libv4l[12]/.*.so.0$ v4l2-apps/lib/libv4l/libv4lconvert/.*.so.0$ +v4l2-spec/capture$ +v4l2-spec/capture.c.sgml$ +v4l2-spec/entities.sgml$ +v4l2-spec/.*\.stamp$ +v4l2-spec/indices.sgml$ +v4l2-spec/v4l2-single$ +v4l2-spec/v4l2$ +v4l2-spec/v4l2.pdf$ +v4l2-spec/videodev2.h.sgml$ @@ -21,6 +21,16 @@ install: commit cvscommit hgcommit change changes changelog:: whitespace @cd $(BUILD_DIR); scripts/cardlist; scripts/do_commit.sh $(EDITOR) $(TMP)/v4l_hg_whitespace; cd .. +spec: + $(MAKE) -C v4l2-spec + +apps: + $(MAKE) -C v4l2-apps + +distclean clean:: + $(MAKE) -C v4l2-spec $@ + $(MAKE) -C v4l2-apps $@ + qrefresh: Q=q qrefresh:: whitespace cd $(BUILD_DIR); scripts/cardlist; cd .. diff --git a/v4l2-spec/Makefile b/v4l2-spec/Makefile index 50de7cf44..9a13c9171 100644 --- a/v4l2-spec/Makefile +++ b/v4l2-spec/Makefile @@ -481,7 +481,7 @@ pdf-build.stamp: Makefile checks $(SGMLS) $(PDFPICS) capture: ../v4l2-apps/test/capture_example.c gcc $^ -o $@ -clean: +distclean clean: rm -f *.stamp rm -f videodev2.h.sgml rm -f capture.c.sgml |