diff options
-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) $@ |