mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
20 lines
310 B
Makefile
20 lines
310 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.
|
|
|
|
-include Makefile.doc
|
|
|
|
RAKE = ruby ./minirake
|
|
|
|
all :
|
|
$(RAKE)
|
|
.PHONY : all
|
|
|
|
test : all
|
|
$(RAKE) test
|
|
.PHONY : test
|
|
|
|
clean : docsclean
|
|
$(RAKE) clean
|
|
.PHONY : clean
|