source: EcnlProtoTool/trunk/mruby-1.2.0/Makefile@ 279

Last change on this file since 279 was 279, checked in by coas-nagasima, 7 years ago

ファイルを追加、更新。

File size: 302 bytes
Line 
1# mruby is using Rake (http://rake.rubyforge.org) as a build tool.
2# We provide a minimalistic version called minirake inside of our
3# codebase.
4
5RAKE = ruby -Eutf-8 ./minirake
6
7all :
8 $(RAKE)
9.PHONY : all
10
11test : all
12 $(RAKE) test
13.PHONY : test
14
15clean :
16 $(RAKE) clean
17.PHONY : clean
Note: See TracBrowser for help on using the repository browser.