diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2016-05-23 00:38:24 +0300 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2016-05-23 01:12:34 +0300 |
commit | c3f9e20be84870728093ea67db5a877ffca0eb96 (patch) | |
tree | 5006f02fe70560c35d0a4f75085f49b4ded7b8f8 /3rdparty/Makefile |
Import media-ctl as 3rd party code
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to '3rdparty/Makefile')
-rw-r--r-- | 3rdparty/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3rdparty/Makefile b/3rdparty/Makefile new file mode 100644 index 0000000..e7e7e13 --- /dev/null +++ b/3rdparty/Makefile @@ -0,0 +1,14 @@ +SUBDIRS=media-ctl media-enum + +recursive=all clean + +all: + +install: + +$(recursive): + @target=$@ ; \ + for subdir in $(SUBDIRS); do \ + echo "Making $$target in $$subdir" ; \ + $(MAKE) -C $$subdir $$target; \ + done |