aboutsummaryrefslogtreecommitdiff
path: root/readline/configure.bat
diff options
context:
space:
mode:
authorSteve Chamberlain <sac@cygnus>1992-02-22 00:14:17 +0000
committerSteve Chamberlain <sac@cygnus>1992-02-22 00:14:17 +0000
commit044751b8720488d8195b2a28a5a738050ebb3275 (patch)
tree16f64ed691f44a8a1c4b44d84629d41884ff1ed5 /readline/configure.bat
parent65aa37242bccf0dd6a6de15659376fbf04582906 (diff)
downloadgdb-044751b8720488d8195b2a28a5a738050ebb3275.zip
gdb-044751b8720488d8195b2a28a5a738050ebb3275.tar.gz
gdb-044751b8720488d8195b2a28a5a738050ebb3275.tar.bz2
New files for DOSness
Diffstat (limited to 'readline/configure.bat')
-rw-r--r--readline/configure.bat22
1 files changed, 22 insertions, 0 deletions
diff --git a/readline/configure.bat b/readline/configure.bat
new file mode 100644
index 0000000..b5d615e
--- /dev/null
+++ b/readline/configure.bat
@@ -0,0 +1,22 @@
+@echo off
+if "%1" == "go32" goto h8300
+if "%1" == "h8/300" goto h8300
+echo Specify one of [ go32 h8/300 ] on command line
+goto exit
+
+:go32
+echo Configuring readline for go32
+copy Makefile.dos Makefile
+copy sysdep-norm.h sysdep.h
+goto exit
+
+:h8300
+echo Configuring readline for H8/300
+copy Makefile.dos Makefile
+copy sysdep-norm.h sysdep.h
+
+:exit
+
+cd examples
+call configure %1
+cd ..