From ac5a87c27f22d95bb81db0ca37d48b072ceb0a92 Mon Sep 17 00:00:00 2001 From: Daniel Bovensiepen Date: Thu, 20 Dec 2012 05:06:39 +0800 Subject: Add makefile for backward compatibility of shell build processes. --- Makefile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 000000000..16e0b50b8 --- /dev/null +++ b/Makefile @@ -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 -- cgit v1.2.3