diff options
author | Sébastien Dailly <sebastien@chimrod.com> | 2019-08-10 20:36:56 +0200 |
---|---|---|
committer | Sébastien Dailly <sebastien@chimrod.com> | 2019-08-10 20:36:56 +0200 |
commit | f83e8b39df08ea9e9ca130a4578c749d48d55844 (patch) | |
tree | 2f774eaf9d5aeaa87d5b6e19697c123584aaa495 /Makefile |
First commit
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
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) |