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