2002-09-10 20:24:07 -04:00
|
|
|
@echo off
|
|
|
|
::: Don't set environment variable in batch file other than autoexec.bat
|
|
|
|
::: to avoid "Out of environment space" problem on Windows 95/98.
|
|
|
|
::: set TMPMAKE=~tmp~.mak
|
|
|
|
|
|
|
|
echo> ~tmp~.mak ####
|
|
|
|
echo>> ~tmp~.mak conf = %0
|
|
|
|
echo>> ~tmp~.mak $(conf:\=/): nul
|
2005-10-14 10:10:08 -04:00
|
|
|
echo>> ~tmp~.mak @del ~setup~.mak
|
2002-09-10 20:24:07 -04:00
|
|
|
echo>> ~tmp~.mak @-$(MAKE) -l$(MAKEFLAGS) -f $(@D)/setup.mak \
|
2005-10-14 10:10:08 -04:00
|
|
|
if exist pathlist.tmp del pathlist.tmp
|
|
|
|
echo>confargs.tmp #define CONFIGURE_ARGS \
|
2002-09-10 20:24:07 -04:00
|
|
|
:loop
|
|
|
|
if "%1" == "" goto :end
|
2003-12-28 12:25:31 -05:00
|
|
|
if "%1" == "--prefix" goto :prefix
|
2002-09-10 20:24:07 -04:00
|
|
|
if "%1" == "--srcdir" goto :srcdir
|
|
|
|
if "%1" == "srcdir" goto :srcdir
|
|
|
|
if "%1" == "--target" goto :target
|
|
|
|
if "%1" == "target" goto :target
|
2004-01-18 23:10:53 -05:00
|
|
|
if "%1" == "--with-static-linked-ext" goto :extstatic
|
2008-10-03 01:04:57 -04:00
|
|
|
if "%1" == "--program-prefix" goto :pprefix
|
2004-02-09 03:48:55 -05:00
|
|
|
if "%1" == "--program-suffix" goto :suffix
|
2006-09-07 20:00:12 -04:00
|
|
|
if "%1" == "--program-name" goto :installname
|
|
|
|
if "%1" == "--install-name" goto :installname
|
|
|
|
if "%1" == "--so-name" goto :soname
|
2004-02-09 03:48:55 -05:00
|
|
|
if "%1" == "--enable-install-doc" goto :enable-rdoc
|
|
|
|
if "%1" == "--disable-install-doc" goto :disable-rdoc
|
2005-04-19 18:28:28 -04:00
|
|
|
if "%1" == "--extout" goto :extout
|
2005-10-14 10:10:08 -04:00
|
|
|
if "%1" == "--path" goto :path
|
2007-01-23 01:41:22 -05:00
|
|
|
if "%1" == "--with-baseruby" goto :baseruby
|
2003-12-28 12:25:31 -05:00
|
|
|
if "%1" == "-h" goto :help
|
|
|
|
if "%1" == "--help" goto :help
|
2005-10-14 10:10:08 -04:00
|
|
|
echo>>confargs.tmp %1 \
|
2002-09-10 20:24:07 -04:00
|
|
|
shift
|
|
|
|
goto :loop
|
|
|
|
:srcdir
|
|
|
|
echo>> ~tmp~.mak "srcdir=%2" \
|
2005-10-16 20:44:54 -04:00
|
|
|
echo>>confargs.tmp --srcdir=%2 \
|
2002-09-10 20:24:07 -04:00
|
|
|
shift
|
|
|
|
shift
|
|
|
|
goto :loop
|
2003-12-28 12:25:31 -05:00
|
|
|
:prefix
|
|
|
|
echo>> ~tmp~.mak "prefix=%2" \
|
2005-10-14 10:10:08 -04:00
|
|
|
echo>>confargs.tmp %1=%2 \
|
2003-12-28 12:25:31 -05:00
|
|
|
shift
|
|
|
|
shift
|
|
|
|
goto :loop
|
2008-10-03 01:04:57 -04:00
|
|
|
:pprefix
|
|
|
|
echo>> ~tmp~.mak "RUBY_PREFIX=%2" \
|
|
|
|
echo>>confargs.tmp %1=%2 \
|
|
|
|
shift
|
|
|
|
shift
|
|
|
|
goto :loop
|
2004-02-09 03:48:55 -05:00
|
|
|
:suffix
|
|
|
|
echo>> ~tmp~.mak "RUBY_SUFFIX=%2" \
|
2005-10-14 10:10:08 -04:00
|
|
|
echo>>confargs.tmp %1=%2 \
|
2004-02-09 03:48:55 -05:00
|
|
|
shift
|
|
|
|
shift
|
|
|
|
goto :loop
|
|
|
|
:installname
|
|
|
|
echo>> ~tmp~.mak "RUBY_INSTALL_NAME=%2" \
|
2005-10-14 10:10:08 -04:00
|
|
|
echo>>confargs.tmp %1=%2 \
|
2004-02-09 03:48:55 -05:00
|
|
|
shift
|
|
|
|
shift
|
|
|
|
goto :loop
|
|
|
|
:soname
|
|
|
|
echo>> ~tmp~.mak "RUBY_SO_NAME=%2" \
|
2005-10-14 10:10:08 -04:00
|
|
|
echo>>confargs.tmp %1=%2 \
|
2004-02-09 03:48:55 -05:00
|
|
|
shift
|
|
|
|
shift
|
|
|
|
goto :loop
|
2002-09-10 20:24:07 -04:00
|
|
|
:target
|
|
|
|
echo>> ~tmp~.mak "%2" \
|
2005-10-16 20:44:54 -04:00
|
|
|
echo>>confargs.tmp --target=%2 \
|
2007-06-27 07:47:53 -04:00
|
|
|
if "%2" == "x64-mswin64" goto target2
|
|
|
|
if NOT "%2" == "ia64-mswin64" goto target3
|
|
|
|
:target2
|
2007-10-31 11:53:19 -04:00
|
|
|
echo>> ~tmp~.mak "TARGET_OS=mswin64" \
|
2007-06-27 07:47:53 -04:00
|
|
|
:target3
|
2002-09-10 20:24:07 -04:00
|
|
|
shift
|
|
|
|
shift
|
|
|
|
goto :loop
|
2004-01-18 23:10:53 -05:00
|
|
|
:extstatic
|
|
|
|
echo>> ~tmp~.mak "EXTSTATIC=static" \
|
2005-10-14 10:10:08 -04:00
|
|
|
echo>>confargs.tmp %1 \
|
2004-01-18 23:10:53 -05:00
|
|
|
shift
|
|
|
|
goto :loop
|
2004-02-09 03:48:55 -05:00
|
|
|
:enable-rdoc
|
|
|
|
echo>> ~tmp~.mak "RDOCTARGET=install-doc" \
|
2005-10-14 10:10:08 -04:00
|
|
|
echo>>confargs.tmp %1 \
|
2004-02-09 03:48:55 -05:00
|
|
|
shift
|
|
|
|
goto :loop
|
|
|
|
:disable-rdoc
|
|
|
|
echo>> ~tmp~.mak "RDOCTARGET=install-nodoc" \
|
2005-10-14 10:10:08 -04:00
|
|
|
echo>>confargs.tmp %1 \
|
2004-02-09 03:48:55 -05:00
|
|
|
shift
|
|
|
|
goto :loop
|
2005-04-19 18:28:28 -04:00
|
|
|
:extout
|
|
|
|
echo>> ~tmp~.mak "EXTOUT=%2" \
|
2005-10-14 10:10:08 -04:00
|
|
|
echo>>confargs.tmp %1=%2 \
|
|
|
|
shift
|
|
|
|
shift
|
|
|
|
goto :loop
|
|
|
|
:path
|
|
|
|
echo>>pathlist.tmp %2;\
|
|
|
|
echo>>confargs.tmp %1=%2 \
|
2005-04-19 18:28:28 -04:00
|
|
|
shift
|
|
|
|
shift
|
|
|
|
goto :loop
|
2007-01-23 01:41:22 -05:00
|
|
|
:baseruby
|
|
|
|
echo>> ~tmp~.mak "BASERUBY=%2" \
|
|
|
|
echo>>confargs.tmp %1=%2 \
|
|
|
|
shift
|
|
|
|
shift
|
|
|
|
goto :loop
|
2003-12-28 12:25:31 -05:00
|
|
|
:help
|
|
|
|
echo Configuration:
|
2004-01-18 23:10:53 -05:00
|
|
|
echo --help display this help
|
|
|
|
echo --srcdir=DIR find the sources in DIR [configure dir or `..']
|
2003-12-28 12:25:31 -05:00
|
|
|
echo Installation directories:
|
2004-01-18 23:10:53 -05:00
|
|
|
echo --prefix=PREFIX install files in PREFIX [/usr]
|
2003-12-28 12:25:31 -05:00
|
|
|
echo System types:
|
2004-01-18 23:10:53 -05:00
|
|
|
echo --target=TARGET configure for TARGET [i386-mswin32]
|
|
|
|
echo Optional Package:
|
2007-01-23 01:41:22 -05:00
|
|
|
echo --with-baseruby=RUBY use RUBY as baseruby [ruby]
|
2004-01-18 23:10:53 -05:00
|
|
|
echo --with-static-linked-ext link external modules statically
|
2004-02-09 03:48:55 -05:00
|
|
|
echo --disable-install-doc do not install rdoc indexes during install
|
2005-10-14 10:10:08 -04:00
|
|
|
del *.tmp
|
2003-12-28 12:25:31 -05:00
|
|
|
del ~tmp~.mak
|
|
|
|
goto :exit
|
2002-09-10 20:24:07 -04:00
|
|
|
:end
|
|
|
|
echo>> ~tmp~.mak WIN32DIR=$(@D)
|
2005-10-14 10:10:08 -04:00
|
|
|
echo.>>confargs.tmp
|
|
|
|
echo>confargs.c #define $ $$
|
|
|
|
type>>confargs.c confargs.tmp
|
|
|
|
echo>>confargs.c configure_args = CONFIGURE_ARGS
|
|
|
|
echo>>confargs.c #undef $
|
|
|
|
if exist pathlist.tmp echo>>confargs.c #define PATH_LIST \
|
|
|
|
if exist pathlist.tmp type>>confargs.c pathlist.tmp
|
|
|
|
if exist pathlist.tmp echo.>>confargs.c
|
|
|
|
if exist pathlist.tmp echo>>confargs.c pathlist = PATH_LIST
|
|
|
|
cl -EP confargs.c > ~setup~.mak 2>nul
|
|
|
|
if exist pathlist.tmp echo>>~setup~.mak PATH = $(pathlist:;=/bin;)$(PATH)
|
|
|
|
if exist pathlist.tmp echo>>~setup~.mak INCLUDE = $(pathlist:;=/include;)
|
|
|
|
if exist pathlist.tmp echo>>~setup~.mak LIB = $(pathlist:;=/lib;)
|
|
|
|
type>>~setup~.mak ~tmp~.mak
|
|
|
|
del *.tmp > nul
|
|
|
|
del ~tmp~.mak > nul
|
|
|
|
nmake -alf ~setup~.mak
|
2003-12-28 12:25:31 -05:00
|
|
|
:exit
|