summaryrefslogtreecommitdiffhomepage
path: root/Makefile
blob: 191e07a93d946bb18892177a6af2592be0e00017 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# mruby is using Rake (http://rake.rubyforge.org) as a build tool.
# We provide a minimalistic version called minirake inside of our
# codebase.

-include Makefile.doc

RAKE = ruby ./minirake

all :
	$(RAKE)
.PHONY : all

test : all
	$(RAKE) test
.PHONY : test

clean : docsclean
	$(RAKE) clean
.PHONY : clean