mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
Merge pull request #651 from bovi/make-rake
Add Makefile for backward compatibility of shell build processes.
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user