Files
mruby-mruby/Makefile
T
2013-01-12 17:22:36 +09:00

19 lines
279 B
Makefile

# 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
.PHONY : all
all :
$(RAKE)
.PHONY : test
test : all
$(RAKE) test
.PHONY : clean
clean :
$(RAKE) clean