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

RAKE = ruby ./minirake

all :
	$(RAKE)
.PHONY : all

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

clean :
	$(RAKE) clean
.PHONY : clean