Signed-off-by: Pavel Roskin <redacted>
---
Documentation/Makefile | 4 ++++
Documentation/tutorial-script/Makefile | 5 +++++
Makefile | 1 +
3 files changed, 10 insertions(+), 0 deletions(-)
diff --git a/Documentation/Makefile b/Documentation/Makefile
index 3aad2fb..e5508e8 100644
--- a/Documentation/Makefile
+++ b/Documentation/Makefile
@@ -55,7 +55,11 @@ install-html: html
$(INSTALL) -m755 -d $(DESTDIR)/$(htmldir)
$(INSTALL) $(DOC_HTML) $(DESTDIR)/$(htmldir)
+test:
+ make -C tutorial-script test
+
clean:
+ make -C tutorial-script clean
rm -f *.xml *.html *.1 *.7 cg*.txt $(PACKAGE).txt
.PRECIOUS: cg%.txt
diff --git a/Documentation/tutorial-script/Makefile b/Documentation/tutorial-script/Makefile
new file mode 100644
index 0000000..bdf384f
--- /dev/null
+++ b/Documentation/tutorial-script/Makefile
@@ -0,0 +1,5 @@
+test:
+ ./script.sh
+
+clean:
+ rm -rf Playground
diff --git a/Makefile b/Makefile
index 994b182..2b53641 100644
--- a/Makefile
+++ b/Makefile
@@ -59,6 +59,7 @@ doc:
test: all
$(MAKE) -C t/ all
+ $(MAKE) -C Documentation/ test