aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSébastien Dailly <sebastien@chimrod.com>2019-08-10 20:36:56 +0200
committerSébastien Dailly <sebastien@chimrod.com>2019-08-10 20:36:56 +0200
commitf83e8b39df08ea9e9ca130a4578c749d48d55844 (patch)
tree2f774eaf9d5aeaa87d5b6e19697c123584aaa495 /Makefile
First commit
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..f91a599
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,8 @@
+SUBDIRS := $(wildcard model*/.)
+
+all: $(SUBDIRS)
+
+$(SUBDIRS):
+ $(MAKE) -C $@
+
+.PHONY: all $(SUBDIRS)