mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-25 13:09:48 +00:00
a6922ef003
build config.h, add empty definitions to mk.tmp. (powerpc-apple-macos): Make it work. * mpw-make.sed: New file, sed commands to translate Unix makefile into MPW syntax. * mpw-make.in: Remove. * mac-gdb.r: New file, was macgdb.r, renamed for consistency with other tools, now includes cfrg resource. * macgdb.r: Remove. * config/m68k/xm-mpw.h: Remove most of contents, replace with include of include/mpw/mpw.h.
62 lines
2.1 KiB
Plaintext
62 lines
2.1 KiB
Plaintext
# Configuration fragment for GDB.
|
|
|
|
forward-include "{srcdir}"config:m68k:xm-mpw.h xm.h
|
|
|
|
forward-include "{srcdir}"config:m68k:xm-m68k.h 'm68k/xm-m68k.h'
|
|
|
|
Set xdepfiles '"{o}"mac-xdep.c.o'
|
|
|
|
# Make a copy of this file and give it a different name, so it
|
|
# won't be confused with GDB's serial.h.
|
|
|
|
Duplicate -y "{CIncludes}"Serial.h MacSerial.h
|
|
|
|
Echo "/* dummy */" >termio.h
|
|
|
|
If "{target_canonical}" =~ /m68k-apple-macos/
|
|
forward-include "{srcdir}"config:m68k:tm-mac.h tm.h
|
|
forward-include "{srcdir}"config:m68k:tm-m68k.h 'm68k/tm-m68k.h'
|
|
Set tdepfiles '"{o}"m68k-tdep.c.o'
|
|
|
|
Else If "{target_canonical}" =~ /powerpc-apple-macos/
|
|
forward-include "{srcdir}"config:powerpc:tm-macos.h tm.h
|
|
forward-include "{srcdir}"config:rs6000:tm-rs6000.h 'rs6000/tm-rs6000.h'
|
|
Set tdepfiles '"{o}"rs6000-tdep.c.o "{o}"xcoffread.c.o'
|
|
|
|
Else If "{target_canonical}" =~ /i386-unknown-go32/
|
|
forward-include "{srcdir}"config:i386:tm-i386v.h tm.h
|
|
Set tdepfiles '"{o}"i386-tdep.c.o'
|
|
|
|
Else If "{target_canonical}" =~ /mips-idt-ecoff/
|
|
forward-include "{srcdir}"config:mips:tm-idt.h tm.h
|
|
forward-include "{srcdir}"config:mips:tm-bigmips.h 'mips/tm-bigmips.h'
|
|
forward-include "{srcdir}"config:mips:tm-mips.h 'mips/tm-mips.h'
|
|
Set tdepfiles '"{o}"mips-tdep.c.o "{o}"remote-mips.c.o'
|
|
|
|
Else If "{target_canonical}" =~ /sh-hitachi-hms/
|
|
forward-include "{srcdir}"config:sh:tm-sh.h tm.h
|
|
Set tdepfiles '"{o}"sh-tdep.c.o'
|
|
End If
|
|
|
|
If "{target_canonical}" != "{host_canonical}"
|
|
forward-include "{srcdir}"config:nm-empty.h nm.h
|
|
Set natdepfiles " "
|
|
End If
|
|
|
|
Echo '# From mpw-config.in' > "{o}"mk.tmp
|
|
Echo "TDEPFILES = " {tdepfiles} >> "{o}"mk.tmp
|
|
Echo "XDEPFILES = " {xdepfiles} >> "{o}"mk.tmp
|
|
Echo "NATDEPFILES = " {nat_file} >> "{o}"mk.tmp
|
|
Echo "XM_ADD_FILES = " >> "{o}"mk.tmp
|
|
Echo "TM_ADD_FILES = " >> "{o}"mk.tmp
|
|
Echo "NAT_ADD_FILES = " >> "{o}"mk.tmp
|
|
Echo "XM_CDEPS = " >> "{o}"mk.tmp
|
|
Echo "TM_CDEPS = " >> "{o}"mk.tmp
|
|
Echo "NAT_CDEPS = " >> "{o}"mk.tmp
|
|
Echo '# End from mpw-config.in' >> "{o}"mk.tmp
|
|
|
|
Echo '/* config.h. Generated by mpw-configure. */' > "{o}"config.new
|
|
Echo '#include "mpw.h"' >> "{o}"config.new
|
|
|
|
MoveIfChange "{o}"config.new "{o}"config.h
|