19 lines
362 B
Batchfile
Executable File
19 lines
362 B
Batchfile
Executable File
@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 binutils for go32
|
|
copy ..\bfd\hosts\h-go32.h sysdep.h
|
|
copy Makefile.dos Makefile
|
|
goto exit
|
|
|
|
:h8300
|
|
echo Configuring binutils for H8/300
|
|
copy ..\bfd\hosts\h-go32.h sysdep.h
|
|
copy Makefile.dos Makefile
|
|
|
|
:exit
|