source: EcnlProtoTool/trunk/mruby-1.2.0/mrbgems/mruby-bin-mruby-config/mruby-config.bat@ 270

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

mruby版ECNLプロトタイピング・ツールを追加

File size: 776 bytes
Line 
1@echo off
2
3:top
4shift
5if "%0" equ "" goto :eof
6if "%0" equ "--cflags" goto cflags
7if "%0" equ "--ldflags" goto ldflags
8if "%0" equ "--ldflags-before-libs" goto ldflagsbeforelibs
9if "%0" equ "--libs" goto libs
10if "%0" equ "--help" goto showhelp
11echo Invalid Option
12goto :eof
13
14:cflags
15echo MRUBY_CFLAGS
16goto top
17
18:libs
19echo MRUBY_LIBS
20goto top
21
22:ldflags
23echo MRUBY_LDFLAGS
24goto top
25
26:ldflagsbeforelibs
27echo MRUBY_LDFLAGS_BEFORE_LIBS
28goto top
29
30:showhelp
31echo Usage: mruby-config [switches]
32echo switches:
33echo --cflags print flags passed to compiler
34echo --ldflags print flags passed to linker
35echo --ldflags-before-libs print flags passwd to linker before linked libraries
36echo --libs print linked libraries
Note: See TracBrowser for help on using the repository browser.