+Wed Sep 9 11:06:25 1992 Ian Lance Taylor (ian@cygnus.com)
+
+ * Makefile.in: use gas_target instead of modifying target_cpu.
+ From Steve Chamberlain:
+ Makefile.in: Handle m68*-*-coff*.
+ read.c, read.h: add mult argument to s_space
+
Tue Sep 8 17:10:58 1992 Ken Raeburn (raeburn@cambridge.cygnus.com)
* Makefile.in (LIBS): Include opcode library.
cpu_type=${target_cpu}
+# check for architecture variants
+case ${target_cpu} in
+sparclite) cpu_type=sparc ;;
+m680[01234]0) cpu_type=m68k ;;
+m683?2) cpu_type=m68k ;;
+esac
+
+gas_target=${cpu_type}
+
# assign object format
case ${target_os} in
aix*)
case "${target_cpu}" in
i386) obj_format=coff
- target_cpu=i386aix
+ gas_target=i386aix
emulation=i386aix
;;
esac
udi)
obj_format=coffbfd
need_bfd="./../bfd/libbfd.a"
- target_cpu=ebmon29k
+ gas_target=ebmon29k
;;
ebmon-old)
obj_format=coff
need_bfd="./../bfd/libbfd.a"
- target_cpu=ebmon29k
+ gas_target=ebmon29k
;;
ebmon)
obj_format=coffbfd
need_bfd="./../bfd/libbfd.a"
- target_cpu=ebmon29k
+ gas_target=ebmon29k
;;
generic) obj_format=generic ;;
-
xray | hms)
obj_format=coffbfd
need_bfd="./../bfd/libbfd.a"
coff* | sysv*)
obj_format=coff
+ case ${target_cpu} in
+ m68*) obj_format=coffbfd
+ need_bfd="./../bfd/libbfd.a"
+ gas_target=m68kcoff
+ ;;
+ esac
+
case ${target_vendor} in
bull) emulation=dpx2 ;;
sco) emulation=sco386 ;;
obj_format=aout
emulation=sun3
;;
-aout)
+aout | scout)
obj_format=aout
;;
*)
*) atof=ieee ;;
esac
-# check for architecture variants
-case ${target_cpu} in
-sparclite) cpu_type=sparc ;;
-m680[01234]0) cpu_type=m68k ;;
-m683?2) cpu_type=m68k ;;
-esac
-
# and target makefile frag
-target_makefile_frag=config/${target_cpu}.mt
+target_makefile_frag=config/${gas_target}.mt
files="config/ho-${gas_host}.h config/tc-${cpu_type}.c \
config/tc-${cpu_type}.h config/te-${emulation}.h \
demand_empty_rest_of_line();
} /* s_set() */
-void s_space() {
+void s_space(mult)
+int mult;
+{
long temp_repeat;
register long temp_fill;
register char *p;
input_line_pointer --; /* Backup over what was not a ','. */
temp_fill = 0;
}
+ if(mult)
+ {
+ temp_fill *= mult;
+ }
if (temp_repeat <= 0) {
as_warn("Repeat < 0, .space ignored");
ignore_rest_of_line();