Commit ac5a87c2 authored by Daniel Bovensiepen's avatar Daniel Bovensiepen

Add makefile for backward compatibility of shell build processes.

parent c02c264b
# 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