diff options
Diffstat (limited to 'readline/examples/configure.bat')
-rw-r--r-- | readline/examples/configure.bat | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/readline/examples/configure.bat b/readline/examples/configure.bat new file mode 100644 index 0000000..41366ee --- /dev/null +++ b/readline/examples/configure.bat @@ -0,0 +1,16 @@ +@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/examples for go32 +copy Makefile.dos Makefile +goto exit + +:h8300 +echo Configuring readline/examples for H8/300 +copy Makefile.dos Makefile + +:exit |