Commit 2b700d38 authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto

Merge pull request #651 from bovi/make-rake

Add Makefile for backward compatibility of shell build processes.
parents 67517154 ac5a87c2
# 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
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment