2002-09-11 04:24:07 +04:00
|
|
|
@echo off
|
2011-11-03 23:55:43 +04:00
|
|
|
@setlocal disabledelayedexpansion
|
2013-03-31 10:40:37 +04:00
|
|
|
set witharg=
|
2002-09-11 04:24:07 +04:00
|
|
|
|
|
|
|
echo> ~tmp~.mak ####
|
|
|
|
echo>> ~tmp~.mak conf = %0
|
2009-12-08 17:53:55 +03:00
|
|
|
echo>> ~tmp~.mak $(conf): nul
|
2005-10-14 18:10:08 +04:00
|
|
|
echo>> ~tmp~.mak @del ~setup~.mak
|
2002-09-11 04:24:07 +04:00
|
|
|
echo>> ~tmp~.mak @-$(MAKE) -l$(MAKEFLAGS) -f $(@D)/setup.mak \
|
2005-10-14 18:10:08 +04:00
|
|
|
if exist pathlist.tmp del pathlist.tmp
|
|
|
|
echo>confargs.tmp #define CONFIGURE_ARGS \
|
2002-09-11 04:24:07 +04:00
|
|
|
:loop
|
2013-03-31 10:40:37 +04:00
|
|
|
set opt=%1
|
2002-09-11 04:24:07 +04:00
|
|
|
if "%1" == "" goto :end
|
2003-12-28 20:25:31 +03:00
|
|
|
if "%1" == "--prefix" goto :prefix
|
2002-09-11 04: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-19 07:10:53 +03:00
|
|
|
if "%1" == "--with-static-linked-ext" goto :extstatic
|
2008-10-03 09:04:57 +04:00
|
|
|
if "%1" == "--program-prefix" goto :pprefix
|
2004-02-09 11:48:55 +03:00
|
|
|
if "%1" == "--program-suffix" goto :suffix
|
2006-09-08 04: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 11:48:55 +03:00
|
|
|
if "%1" == "--enable-install-doc" goto :enable-rdoc
|
|
|
|
if "%1" == "--disable-install-doc" goto :disable-rdoc
|
2010-06-26 08:07:20 +04:00
|
|
|
if "%1" == "--enable-debug-env" goto :enable-debug-env
|
|
|
|
if "%1" == "--disable-debug-env" goto :disable-debug-env
|
2011-02-11 06:03:26 +03:00
|
|
|
if "%1" == "--enable-rubygems" goto :enable-rubygems
|
|
|
|
if "%1" == "--disable-rubygems" goto :disable-rubygems
|
2005-04-20 02:28:28 +04:00
|
|
|
if "%1" == "--extout" goto :extout
|
2005-10-14 18:10:08 +04:00
|
|
|
if "%1" == "--path" goto :path
|
2007-01-23 09:41:22 +03:00
|
|
|
if "%1" == "--with-baseruby" goto :baseruby
|
2009-12-08 17:53:55 +03:00
|
|
|
if "%1" == "--with-ntver" goto :ntver
|
2013-03-31 10:40:37 +04:00
|
|
|
if "%1" == "--without-ext" goto :witharg
|
|
|
|
if "%1" == "--without-extensions" goto :witharg
|
|
|
|
if "%opt:~0,10%" == "--without-" goto :withoutarg
|
|
|
|
if "%opt:~0,7%" == "--with-" goto :witharg
|
2003-12-28 20:25:31 +03:00
|
|
|
if "%1" == "-h" goto :help
|
|
|
|
if "%1" == "--help" goto :help
|
2013-03-31 10:40:37 +04:00
|
|
|
if "%opt:~0,1%" == "-" (
|
|
|
|
echo>>confargs.tmp %1 \
|
|
|
|
set witharg=
|
|
|
|
) else if "%witharg" == "" (
|
|
|
|
echo>>confargs.tmp %1 \
|
|
|
|
) else (
|
|
|
|
echo>>confargs.tmp ,%1\
|
|
|
|
)
|
2002-09-11 04:24:07 +04:00
|
|
|
shift
|
|
|
|
goto :loop
|
|
|
|
:srcdir
|
2010-11-17 17:19:24 +03:00
|
|
|
echo>> ~tmp~.mak "srcdir=%~2" \
|
2005-10-17 04:44:54 +04:00
|
|
|
echo>>confargs.tmp --srcdir=%2 \
|
2002-09-11 04:24:07 +04:00
|
|
|
shift
|
|
|
|
shift
|
|
|
|
goto :loop
|
2003-12-28 20:25:31 +03:00
|
|
|
:prefix
|
2010-11-17 17:19:24 +03:00
|
|
|
echo>> ~tmp~.mak "prefix=%~2" \
|
2013-03-31 10:40:37 +04:00
|
|
|
echo>>confargs.tmp %1=%2 \
|
2003-12-28 20:25:31 +03:00
|
|
|
shift
|
|
|
|
shift
|
|
|
|
goto :loop
|
2008-10-03 09:04:57 +04:00
|
|
|
:pprefix
|
2010-12-16 13:55:11 +03:00
|
|
|
echo>> ~tmp~.mak "PROGRAM_PREFIX=%~2" \
|
2013-03-31 10:40:37 +04:00
|
|
|
echo>>confargs.tmp %1=%2 \
|
2008-10-03 09:04:57 +04:00
|
|
|
shift
|
|
|
|
shift
|
|
|
|
goto :loop
|
2004-02-09 11:48:55 +03:00
|
|
|
:suffix
|
2010-12-16 13:55:11 +03:00
|
|
|
echo>> ~tmp~.mak "PROGRAM_SUFFIX=%~2" \
|
2013-03-31 10:40:37 +04:00
|
|
|
echo>>confargs.tmp %1=%2 \
|
2004-02-09 11:48:55 +03:00
|
|
|
shift
|
|
|
|
shift
|
|
|
|
goto :loop
|
|
|
|
:installname
|
2010-11-17 17:19:24 +03:00
|
|
|
echo>> ~tmp~.mak "RUBY_INSTALL_NAME=%~2" \
|
2013-03-31 10:40:37 +04:00
|
|
|
echo>>confargs.tmp %1=%2 \
|
2004-02-09 11:48:55 +03:00
|
|
|
shift
|
|
|
|
shift
|
|
|
|
goto :loop
|
|
|
|
:soname
|
2010-11-17 17:19:24 +03:00
|
|
|
echo>> ~tmp~.mak "RUBY_SO_NAME=%~2" \
|
2013-03-31 10:40:37 +04:00
|
|
|
echo>>confargs.tmp %1=%2 \
|
2004-02-09 11:48:55 +03:00
|
|
|
shift
|
|
|
|
shift
|
|
|
|
goto :loop
|
2002-09-11 04:24:07 +04:00
|
|
|
:target
|
2010-11-17 17:19:24 +03:00
|
|
|
echo>> ~tmp~.mak "%~2" \
|
2005-10-17 04:44:54 +04:00
|
|
|
echo>>confargs.tmp --target=%2 \
|
2010-11-17 17:19:24 +03:00
|
|
|
if "%~2" == "x64-mswin64" goto target2
|
|
|
|
if NOT "%~2" == "ia64-mswin64" goto target3
|
2007-06-27 15:47:53 +04:00
|
|
|
:target2
|
2007-10-31 18:53:19 +03:00
|
|
|
echo>> ~tmp~.mak "TARGET_OS=mswin64" \
|
2007-06-27 15:47:53 +04:00
|
|
|
:target3
|
2002-09-11 04:24:07 +04:00
|
|
|
shift
|
|
|
|
shift
|
|
|
|
goto :loop
|
2004-01-19 07:10:53 +03:00
|
|
|
:extstatic
|
|
|
|
echo>> ~tmp~.mak "EXTSTATIC=static" \
|
2005-10-14 18:10:08 +04:00
|
|
|
echo>>confargs.tmp %1 \
|
2004-01-19 07:10:53 +03:00
|
|
|
shift
|
|
|
|
goto :loop
|
2004-02-09 11:48:55 +03:00
|
|
|
:enable-rdoc
|
2009-09-14 06:23:47 +04:00
|
|
|
echo>> ~tmp~.mak "RDOCTARGET=rdoc" \
|
2005-10-14 18:10:08 +04:00
|
|
|
echo>>confargs.tmp %1 \
|
2004-02-09 11:48:55 +03:00
|
|
|
shift
|
|
|
|
goto :loop
|
|
|
|
:disable-rdoc
|
2009-09-14 06:23:47 +04:00
|
|
|
echo>> ~tmp~.mak "RDOCTARGET=nodoc" \
|
2005-10-14 18:10:08 +04:00
|
|
|
echo>>confargs.tmp %1 \
|
2004-02-09 11:48:55 +03:00
|
|
|
shift
|
|
|
|
goto :loop
|
2010-06-26 08:07:20 +04:00
|
|
|
:enable-debug-env
|
|
|
|
echo>> ~tmp~.mak "ENABLE_DEBUG_ENV=yes" \
|
|
|
|
echo>>confargs.tmp %1 \
|
|
|
|
shift
|
|
|
|
goto :loop
|
|
|
|
:disable-debug-env
|
|
|
|
echo>> ~tmp~.mak "ENABLE_DEBUG_ENV=no" \
|
|
|
|
echo>>confargs.tmp %1 \
|
|
|
|
shift
|
|
|
|
goto :loop
|
2011-02-11 06:03:26 +03:00
|
|
|
:enable-rubygems
|
|
|
|
echo>> ~tmp~.mak "USE_RUBYGEMS=YES" \
|
|
|
|
echo>>confargs.tmp %1 \
|
|
|
|
shift
|
|
|
|
goto :loop
|
|
|
|
:disable-rubygems
|
|
|
|
echo>> ~tmp~.mak "USE_RUBYGEMS=NO" \
|
|
|
|
echo>>confargs.tmp %1 \
|
|
|
|
shift
|
|
|
|
goto :loop
|
2009-11-26 11:55:34 +03:00
|
|
|
:ntver
|
2010-11-17 17:19:24 +03:00
|
|
|
echo>> ~tmp~.mak "NTVER=%~2" \
|
2013-03-31 10:40:37 +04:00
|
|
|
echo>>confargs.tmp %1=%2 \
|
2009-11-26 11:55:34 +03:00
|
|
|
shift
|
|
|
|
shift
|
|
|
|
goto :loop
|
2005-04-20 02:28:28 +04:00
|
|
|
:extout
|
2010-11-17 17:19:24 +03:00
|
|
|
echo>> ~tmp~.mak "EXTOUT=%~2" \
|
2013-03-31 10:40:37 +04:00
|
|
|
echo>>confargs.tmp %1=%2 \
|
2005-10-14 18:10:08 +04:00
|
|
|
shift
|
|
|
|
shift
|
|
|
|
goto :loop
|
|
|
|
:path
|
2010-11-17 17:19:24 +03:00
|
|
|
echo>>pathlist.tmp %~2;\
|
2013-03-31 10:40:37 +04:00
|
|
|
echo>>confargs.tmp %1=%2 \
|
2005-04-20 02:28:28 +04:00
|
|
|
shift
|
|
|
|
shift
|
|
|
|
goto :loop
|
2007-01-23 09:41:22 +03:00
|
|
|
:baseruby
|
2010-11-17 17:19:24 +03:00
|
|
|
echo>> ~tmp~.mak "BASERUBY=%~2" \
|
2013-03-31 10:40:37 +04:00
|
|
|
echo>>confargs.tmp %1=%2 \
|
2007-01-23 09:41:22 +03:00
|
|
|
shift
|
|
|
|
shift
|
|
|
|
goto :loop
|
2012-08-23 07:30:58 +04:00
|
|
|
:witharg
|
2013-03-31 10:40:37 +04:00
|
|
|
echo>>confargs.tmp %1=%2\
|
|
|
|
set witharg=1
|
|
|
|
shift
|
2009-12-08 17:53:55 +03:00
|
|
|
shift
|
2013-03-31 10:40:37 +04:00
|
|
|
goto :loop
|
|
|
|
:withoutarg
|
|
|
|
echo>>confargs.tmp %1 \
|
2009-12-08 17:53:55 +03:00
|
|
|
shift
|
|
|
|
goto :loop
|
2003-12-28 20:25:31 +03:00
|
|
|
:help
|
|
|
|
echo Configuration:
|
2004-01-19 07:10:53 +03:00
|
|
|
echo --help display this help
|
|
|
|
echo --srcdir=DIR find the sources in DIR [configure dir or `..']
|
2003-12-28 20:25:31 +03:00
|
|
|
echo Installation directories:
|
2004-01-19 07:10:53 +03:00
|
|
|
echo --prefix=PREFIX install files in PREFIX [/usr]
|
2003-12-28 20:25:31 +03:00
|
|
|
echo System types:
|
2004-01-19 07:10:53 +03:00
|
|
|
echo --target=TARGET configure for TARGET [i386-mswin32]
|
|
|
|
echo Optional Package:
|
2007-01-23 09:41:22 +03:00
|
|
|
echo --with-baseruby=RUBY use RUBY as baseruby [ruby]
|
2004-01-19 07:10:53 +03:00
|
|
|
echo --with-static-linked-ext link external modules statically
|
2012-08-23 07:33:53 +04:00
|
|
|
echo --with-ext="a,b,..." use extensions a, b, ...
|
|
|
|
echo --without-ext="a,b,..." ignore extensions a, b, ...
|
2004-02-09 11:48:55 +03:00
|
|
|
echo --disable-install-doc do not install rdoc indexes during install
|
2009-11-26 11:55:34 +03:00
|
|
|
echo --with-ntver=0xXXXX target NT version (shouldn't use with old SDK)
|
2005-10-14 18:10:08 +04:00
|
|
|
del *.tmp
|
2003-12-28 20:25:31 +03:00
|
|
|
del ~tmp~.mak
|
|
|
|
goto :exit
|
2002-09-11 04:24:07 +04:00
|
|
|
:end
|
2010-01-09 02:40:57 +03:00
|
|
|
echo>> ~tmp~.mak WIN32DIR=$(@D:\=/)
|
2005-10-14 18:10:08 +04:00
|
|
|
echo.>>confargs.tmp
|
|
|
|
echo>confargs.c #define $ $$
|
2009-03-04 17:29:58 +03:00
|
|
|
echo>>confargs.c !ifndef CONFIGURE_ARGS
|
2005-10-14 18:10:08 +04:00
|
|
|
type>>confargs.c confargs.tmp
|
|
|
|
echo>>confargs.c configure_args = CONFIGURE_ARGS
|
2009-03-04 17:29:58 +03:00
|
|
|
echo>>confargs.c !endif
|
2005-10-14 18:10:08 +04:00
|
|
|
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
|
2009-09-15 10:11:13 +04:00
|
|
|
echo>>~setup~.mak @if exist Makefile.old del Makefile.old
|
|
|
|
echo>>~setup~.mak @if exist Makefile ren Makefile Makefile.old
|
|
|
|
echo>>~setup~.mak @ren Makefile.new Makefile
|
2009-09-14 06:05:17 +04:00
|
|
|
nmake -alf ~setup~.mak MAKEFILE=Makefile.new
|
2003-12-28 20:25:31 +03:00
|
|
|
:exit
|
2011-11-03 23:55:43 +04:00
|
|
|
@endlocal
|