diff options
author | Fred Fish <fnf@specifix.com> | 1996-12-29 17:56:24 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1996-12-29 17:56:24 +0000 |
commit | 5a608f5bf167e4f229ed43ce1a1208b29dd99332 (patch) | |
tree | 724972297c65c7e291996c2a8fcfec56db1b5709 /bfd/Makefile.in | |
parent | 0049ba7a8da103000966cea2776b179b2f66579a (diff) | |
download | gdb-5a608f5bf167e4f229ed43ce1a1208b29dd99332.zip gdb-5a608f5bf167e4f229ed43ce1a1208b29dd99332.tar.gz gdb-5a608f5bf167e4f229ed43ce1a1208b29dd99332.tar.bz2 |
* Makefile.in (BFD32_BACKENDS): Add coff-tic80.o
(ALL_MACHINES): Add cpu-tic80.o
(cpu-tic80.o, coff-tic80.o): Add dependencies.
* coff-tic80.c: Add skeleton, cloned from another coff config.
* coffcode.h (coff_write_object_contents): Set magic to TIC80MAGIC
for TIc80.
Diffstat (limited to 'bfd/Makefile.in')
-rw-r--r-- | bfd/Makefile.in | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/bfd/Makefile.in b/bfd/Makefile.in index 89daa00..9b71906 100644 --- a/bfd/Makefile.in +++ b/bfd/Makefile.in @@ -138,6 +138,9 @@ ALL_MACHINES = \ cpu-rs6000.o \ cpu-sh.o \ cpu-sparc.o \ + $(start-sanitize-tic80) \ + cpu-tic80.o \ + $(end-sanitize-tic80) \ $(start-sanitize-v850) \ cpu-v850.o \ $(end-sanitize-v850) \ @@ -201,6 +204,9 @@ BFD32_BACKENDS = \ coff-rs6000.o \ coff-sh.o \ coff-sparc.o \ + $(start-sanitize-tic80) \ + coff-tic80.o \ + $(end-sanitize-tic80) \ coff-u68k.o \ coff-we32k.o \ coff-w65.o \ @@ -864,6 +870,12 @@ elf32-v850.o: elf32-v850.c $(INCDIR)/bfdlink.h elf-bfd.h \ elf32-target.h end-sanitize-v850: +start-sanitize-tic80: +cpu-tic80.o: cpu-tic80.c +coff-tic80.o: coff-tic80.c $(INCDIR)/bfdlink.h elf-bfd.h \ + $(INCDIR)/coff/internal.h +end-sanitize-tic80: + $(OFILES): stamp-picdir stamp-picdir: |