You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

22 lines
383 B

@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 ..