diff options
| author | Daniel Bovensiepen <[email protected]> | 2012-12-20 05:06:39 +0800 |
|---|---|---|
| committer | Daniel Bovensiepen <[email protected]> | 2012-12-20 05:06:39 +0800 |
| commit | ac5a87c27f22d95bb81db0ca37d48b072ceb0a92 (patch) | |
| tree | d59cf53b635e892cdcb82c16fea276ea6bc47101 /Makefile | |
| parent | c02c264be2b1bc685f3c958f863d2a1c599f9ec8 (diff) | |
| download | mruby-ac5a87c27f22d95bb81db0ca37d48b072ceb0a92.tar.gz mruby-ac5a87c27f22d95bb81db0ca37d48b072ceb0a92.zip | |
Add makefile for backward compatibility of shell build processes.
Diffstat (limited to 'Makefile')
| -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 |
