summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2017-08-12 02:23:14 +0300
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2017-08-16 01:00:27 +0300
commit5493e9c64964f8273453d539b89c742f36d5f279 (patch)
tree95b4b967ae6c770ec9382a853344b1ec0eb27898 /Makefile
Initial import
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..3fe6ed9
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,12 @@
+SUBDIRS=tests
+
+recursive=all clean install
+
+all:
+
+$(recursive):
+ @target=$@ ; \
+ for subdir in $(SUBDIRS); do \
+ echo "Making $$target in $$subdir" ; \
+ $(MAKE) -C $$subdir $$target; \
+ done