diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2012-12-19 14:37:05 -0800 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2012-12-19 14:37:05 -0800 |
| commit | 2b700d380ee05e4ad7bd69c2d4047481a430cb45 (patch) | |
| tree | 03de517715eb54a1191fc75e2989106ab0f88fae | |
| parent | 6751715480858d587b860fcac7cbe0b87bd0bd5c (diff) | |
| parent | ac5a87c27f22d95bb81db0ca37d48b072ceb0a92 (diff) | |
| download | mruby-2b700d380ee05e4ad7bd69c2d4047481a430cb45.tar.gz mruby-2b700d380ee05e4ad7bd69c2d4047481a430cb45.zip | |
Merge pull request #651 from bovi/make-rake
Add Makefile for backward compatibility of shell build processes.
| -rw-r--r-- | Makefile | 21 |
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 |
