Files
mruby-mruby/Makefile
T
2019-12-21 22:11:08 +09:00

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