aboutsummaryrefslogtreecommitdiff
path: root/gas/configure.bat
blob: 5bccdba451f17eb12a79ac706d4a80aeb4fdcfa6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
@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 gas for go32
copy config\i386.md md
copy config\out-i386.c aux-output.c
copy config\tm-i386gas.h tm.h
copy config\float.h-ieee float.h
copy config\xm-i386.h config.h
copy Makefile.dos Makefile
goto exit

:h8300
echo Configuring gas for H8/300
copy config\ho-go32.h host.h
copy config\tc-h8300.c targ-cpu.c
copy config\tc-h8300.h targ-cpu.h
copy config\te-generic.h targ-env.h
copy config\objcoffbfd.h obj-format.h
copy config\objcoffbfd.c obj-format.c
copy config\atof-ieee.c atof-targ.c
copy Makefile.dos Makefile

:exit