diff options
author | Steve Chamberlain <sac@cygnus> | 1992-02-22 00:23:03 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1992-02-22 00:23:03 +0000 |
commit | 215c79bee7e994e2e08b6809b321feabdc250e66 (patch) | |
tree | bc91b8a40a4a2ef62a27fbf559321b2ffa7c15d9 /gas/configure.bat | |
parent | 01dc8d2d2eab9496f92f71839b37af505ab3be8d (diff) | |
download | gdb-215c79bee7e994e2e08b6809b321feabdc250e66.zip gdb-215c79bee7e994e2e08b6809b321feabdc250e66.tar.gz gdb-215c79bee7e994e2e08b6809b321feabdc250e66.tar.bz2 |
More renames from DJ the DOS martyr
Diffstat (limited to 'gas/configure.bat')
-rw-r--r-- | gas/configure.bat | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gas/configure.bat b/gas/configure.bat new file mode 100644 index 0000000..5bccdba --- /dev/null +++ b/gas/configure.bat @@ -0,0 +1,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 |