blob: a6819f6d05e3665c9ece2089eee575453b3de1f1 (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# Configuration fragment for GAS.
Set target_arch `echo {target_canonical} | sed -e 's/-.*-.*//'`
# The following works for many configurations ...
Set obj_format `echo {target_canonical} | sed -e 's/.*-.*-//'`
# ... but not all.
If "{target_canonical}" =~ /m68k-apple-macos/
Set obj_format "coff"
Else If "{target_canonical}" =~ /ppc-apple-macos/
Set obj_format "xcoff"
Else If "{target_canonical}" =~ /sh-hitachi-hms/
Set obj_format "coff"
Else If "{target_canonical}" =~ /mips-idt-ecoff/
Set TDEFINES '-d TARGET_BYTES_BIG_ENDIAN'
End If
forward-include "{srcdir}"config:tc-{target_arch}.c targ-cpu.c
forward-include "{srcdir}"config:tc-{target_arch}.h targ-cpu.h
forward-include "{srcdir}"config:obj-{obj_format}.c obj-format.c
forward-include "{srcdir}"config:obj-{obj_format}.h obj-format.h
# Default emulation.
forward-include "{srcdir}"config:te-generic.h targ-env.h
# Special cases for float handling.
If "{target_arch}" =~ /ns32k/
forward-include "{srcdir}"config:atof-ns32k.c atof-targ.c
Else If "{target_arch}" =~ /tahoe/
forward-include "{srcdir}"config:atof-tahoe.c atof-targ.c
Else If "{target_arch}" =~ /vax/
forward-include "{srcdir}"config:atof-vax.c atof-targ.c
Else
# Use IEEE by default.
forward-include "{srcdir}"config:atof-ieee.c atof-targ.c
End If
Echo '# From mpw-config.in' > "{o}"mk.tmp
Echo 'VERSION = ' `Search 'VERSION=' "{srcdir}"Makefile.in | sed -e 's/.*VERSION=\(.*\)/\1/'` >> "{o}"mk.tmp
Echo '# End from mpw-config.in' >> "{o}"mk.tmp
|