Add makefile for backward compatibility of shell build processes.

This commit is contained in:
Daniel Bovensiepen
2012-12-20 05:06:39 +08:00
parent c02c264be2
commit ac5a87c27f
+21
View File
@@ -0,0 +1,21 @@
# 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