summaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2012-12-19 14:37:05 -0800
committerYukihiro "Matz" Matsumoto <[email protected]>2012-12-19 14:37:05 -0800
commit2b700d380ee05e4ad7bd69c2d4047481a430cb45 (patch)
tree03de517715eb54a1191fc75e2989106ab0f88fae /Makefile
parent6751715480858d587b860fcac7cbe0b87bd0bd5c (diff)
parentac5a87c27f22d95bb81db0ca37d48b072ceb0a92 (diff)
downloadmruby-2b700d380ee05e4ad7bd69c2d4047481a430cb45.tar.gz
mruby-2b700d380ee05e4ad7bd69c2d4047481a430cb45.zip
Merge pull request #651 from bovi/make-rake
Add Makefile for backward compatibility of shell build processes.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile21
1 files changed, 21 insertions, 0 deletions
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