summaryrefslogtreecommitdiff
path: root/wince
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-04-19 22:28:28 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-04-19 22:28:28 +0000
commitddda8205c2a94a17fa3ad735f1dfd91b81f139ba (patch)
tree30b6f2e49ab36a08a0be5f6ef67b832eba750175 /wince
parentf9fb21448bc4c9b1d7e9fb135dc37593974a3498 (diff)
* {bcc32,win32,wince}/configure.bat, {bcc32,win32,wince}/setup.mak:
add extout option. * bcc32/setup.mak: make configuration variables overridable. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@8358 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'wince')
-rw-r--r--wince/configure.bat6
-rw-r--r--wince/setup.mak3
2 files changed, 9 insertions, 0 deletions
diff --git a/wince/configure.bat b/wince/configure.bat
index 3f208d1487..66837bb646 100644
--- a/wince/configure.bat
+++ b/wince/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
if "%1" == "CC" goto :define
@@ -77,6 +78,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/wince/setup.mak b/wince/setup.mak
index 14663df573..629ea993e4 100644
--- a/wince/setup.mak
+++ b/wince/setup.mak
@@ -55,6 +55,9 @@ EXTSTATIC = $(EXTSTATIC)
!if defined(RDOCTARGET)
RDOCTARGET = $(RDOCTARGET)
!endif
+!if defined(EXTOUT)
+EXTOUT = $(EXTOUT)
+!endif
<<
@$(CPP) -I$(srcdir) -DRUBY_EXTERN="//" <<"Creating $(MAKEFILE)" >> $(MAKEFILE)
#include "version.h"