diff options
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 |
