diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-04-19 22:28:28 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-04-19 22:28:28 +0000 |
| commit | 57cccbeb33a12e6b01b19c8faee354cbf94ff651 (patch) | |
| tree | 30b6f2e49ab36a08a0be5f6ef67b832eba750175 /win32 | |
| parent | 8f8026221982541a5a77fc7b9485a6396e724443 (diff) | |
| download | ruby-57cccbeb33a12e6b01b19c8faee354cbf94ff651.tar.gz ruby-57cccbeb33a12e6b01b19c8faee354cbf94ff651.tar.xz ruby-57cccbeb33a12e6b01b19c8faee354cbf94ff651.zip | |
* {bcc32,win32,wince}/configure.bat, {bcc32,win32,wince}/setup.mak:
add extout option.
* bcc32/setup.mak: make configuration variables overridable.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@8358 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32')
| -rwxr-xr-x | win32/configure.bat | 6 | ||||
| -rw-r--r-- | win32/setup.mak | 3 |
2 files changed, 9 insertions, 0 deletions
diff --git a/win32/configure.bat b/win32/configure.bat index b2b3a175b..671c45614 100755 --- a/win32/configure.bat +++ b/win32/configure.bat @@ -20,6 +20,7 @@ if "%1" == "--program-suffix" goto :suffix if "%1" == "--program-name" goto :progname
if "%1" == "--enable-install-doc" goto :enable-rdoc
if "%1" == "--disable-install-doc" goto :disable-rdoc
+if "%1" == "--extout" goto :extout
if "%1" == "-h" goto :help
if "%1" == "--help" goto :help
echo>> ~tmp~.mak "%1" \
@@ -67,6 +68,11 @@ goto :loop echo>> ~tmp~.mak "RDOCTARGET=install-nodoc" \
shift
goto :loop
+:extout
+ echo>> ~tmp~.mak "EXTOUT=%2" \
+ shift
+ shift
+goto :loop
:help
echo Configuration:
echo --help display this help
diff --git a/win32/setup.mak b/win32/setup.mak index a8ba23586..c92c08310 100644 --- a/win32/setup.mak +++ b/win32/setup.mak @@ -43,6 +43,9 @@ EXTSTATIC = $(EXTSTATIC) !if defined(RDOCTARGET) RDOCTARGET = $(RDOCTARGET) !endif +!if defined(EXTOUT) +EXTOUT = $(EXTOUT) +!endif << -system-vars-: -osname- -runtime- |
