summaryrefslogtreecommitdiff
path: root/3rdparty/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/Makefile')
-rw-r--r--3rdparty/Makefile14
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