summaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorDavid Siaw <[email protected]>2019-08-18 12:12:38 +0900
committerDavid Siaw <[email protected]>2019-08-18 13:07:24 +0900
commit8d70a9b1b547e6ae4dffe4e604a614fc6d5a1fb4 (patch)
treedf5eca8fce0c5cfce2ae2fd94b4e4ad5e3509e32 /Makefile
parent99715a2e623e6baac5a16f2112282816a4d4c6a1 (diff)
downloadmruby-8d70a9b1b547e6ae4dffe4e604a614fc6d5a1fb4.tar.gz
mruby-8d70a9b1b547e6ae4dffe4e604a614fc6d5a1fb4.zip
first bit of doc generation
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4912f17e1..191e07a93 100644
--- a/Makefile
+++ b/Makefile
@@ -2,6 +2,8 @@
# We provide a minimalistic version called minirake inside of our
# codebase.
+-include Makefile.doc
+
RAKE = ruby ./minirake
all :
@@ -12,6 +14,6 @@ test : all
$(RAKE) test
.PHONY : test
-clean :
+clean : docsclean
$(RAKE) clean
.PHONY : clean