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