diff options
author | hans@rhel5-devel.localdomain <hans@rhel5-devel.localdomain> | 2009-03-11 13:26:52 +0100 |
---|---|---|
committer | hans@rhel5-devel.localdomain <hans@rhel5-devel.localdomain> | 2009-03-11 13:26:52 +0100 |
commit | 7fcf1772e48bd67d6a5a58145fd6e65c7db96b14 (patch) | |
tree | 83da1010dc9cd42170ac48d3be0ed81f69c1212c /v4l2-apps/libv4l | |
parent | 2da5c1631758ea1e4645a2ea01006bcc460ec70c (diff) | |
download | mediapointer-dvb-s2-7fcf1772e48bd67d6a5a58145fd6e65c7db96b14.tar.gz mediapointer-dvb-s2-7fcf1772e48bd67d6a5a58145fd6e65c7db96b14.tar.bz2 |
libv4l: change clean target to remove editor backup files in root and include
From: Hans de Goede <hdegoede@redhat.com>
libv4l: change clean target to remove editor backup files in root and include
Priority: normal
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Diffstat (limited to 'v4l2-apps/libv4l')
-rw-r--r-- | v4l2-apps/libv4l/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/v4l2-apps/libv4l/Makefile b/v4l2-apps/libv4l/Makefile index e393374df..a607bc700 100644 --- a/v4l2-apps/libv4l/Makefile +++ b/v4l2-apps/libv4l/Makefile @@ -1,7 +1,13 @@ LIB_RELEASE=0 V4L2_LIB_VERSION=$(LIB_RELEASE).5.8 -all clean install: +all install: + $(MAKE) -C libv4lconvert V4L2_LIB_VERSION=$(V4L2_LIB_VERSION) $@ + $(MAKE) -C libv4l2 V4L2_LIB_VERSION=$(V4L2_LIB_VERSION) $@ + $(MAKE) -C libv4l1 V4L2_LIB_VERSION=$(V4L2_LIB_VERSION) $@ + +clean: + rm -f *~ include/*~ $(MAKE) -C libv4lconvert V4L2_LIB_VERSION=$(V4L2_LIB_VERSION) $@ $(MAKE) -C libv4l2 V4L2_LIB_VERSION=$(V4L2_LIB_VERSION) $@ $(MAKE) -C libv4l1 V4L2_LIB_VERSION=$(V4L2_LIB_VERSION) $@ |