blob: 7f1a744e5ced02bf0d29b11f3c72b0be680570bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# mruby is using Rake (http://rake.rubyforge.org) as a build tool.
RAKE = rake
all :
$(RAKE)
.PHONY : all
test : all
$(RAKE) test
.PHONY : test
clean :
$(RAKE) clean
.PHONY : clean
|