Apply PIE to nghttpx
[platform/upstream/nghttp2.git] / third-party / mruby / Makefile
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
5 RAKE = ruby ./minirake
6
7 all :
8         $(RAKE)
9 .PHONY : all
10
11 test : all
12         $(RAKE) test
13 .PHONY : test
14
15 clean :
16         $(RAKE) clean
17 .PHONY : clean