diff options
| author | Gaëtan Gilbert | 2018-11-05 19:37:11 +0100 |
|---|---|---|
| committer | Gaëtan Gilbert | 2019-01-08 16:41:11 +0100 |
| commit | cb2ee2d949899a897022894b750afd1f3d2eb478 (patch) | |
| tree | e20ac98eae05140c9996b09721eb6a3f8ab30444 /doc/plugin_tutorial/Makefile | |
| parent | 8801a2304d54e687dafc8614af38f69ada2cbee1 (diff) | |
Integrate plugin tutorial after code import
Diffstat (limited to 'doc/plugin_tutorial/Makefile')
| -rw-r--r-- | doc/plugin_tutorial/Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/doc/plugin_tutorial/Makefile b/doc/plugin_tutorial/Makefile new file mode 100644 index 0000000000..7f1833fadd --- /dev/null +++ b/doc/plugin_tutorial/Makefile @@ -0,0 +1,21 @@ + +TUTOS:= \ + tuto0 \ + tuto1 \ + tuto2 \ + tuto3 + +all: $(TUTOS) + +.PHONY: $(TUTOS) all + +$(TUTOS): %: + +$(MAKE) -C $@ + +CLEANS:=$(addsuffix -clean, $(TUTOS)) +.PHONY: clean $(CLEANS) + +clean: $(CLEANS) + +%-clean: + +$(MAKE) -C $* clean |
