mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
16 lines
188 B
Makefile
16 lines
188 B
Makefile
# 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
|