diff options
author | Nick Clifton <nickc@redhat.com> | 2009-04-27 14:27:36 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2009-04-27 14:27:36 +0000 |
commit | c067354b06cc372b318bbbc5ee5098ec6ef87bc1 (patch) | |
tree | a1b41f03096c6b01a61498ba7de2b2fc21393357 /bfd/Makefile.am | |
parent | 325c681d94281b21b30dc18dd604a54e418df607 (diff) | |
download | gdb-c067354b06cc372b318bbbc5ee5098ec6ef87bc1.zip gdb-c067354b06cc372b318bbbc5ee5098ec6ef87bc1.tar.gz gdb-c067354b06cc372b318bbbc5ee5098ec6ef87bc1.tar.bz2 |
* verilog.c: New file.
* Makefile.am (BFD32_LIBS): Add verilog.c.
(BFD32_LIBS_CFILES): Add verilog.c.
(verilog.lo): New build rule.
* Makefile.in: Rebuilt.
* targets.c: Add verilog support.
* bfd.c (tdata union): Add Verilog private data field.
* bfd-in2.h: Regenerate.
* bfdint.texi (BFD target vector miscellaneous): Mention verilog
flavour.
* NEWS: Mention verilog support added to bfd.
Diffstat (limited to 'bfd/Makefile.am')
-rw-r--r-- | bfd/Makefile.am | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/bfd/Makefile.am b/bfd/Makefile.am index 771d555..05df78e 100644 --- a/bfd/Makefile.am +++ b/bfd/Makefile.am @@ -43,7 +43,7 @@ BFD32_LIBS = \ format.lo init.lo libbfd.lo opncls.lo reloc.lo \ section.lo syms.lo targets.lo hash.lo linker.lo \ srec.lo binary.lo tekhex.lo ihex.lo stabs.lo stab-syms.lo \ - merge.lo dwarf2.lo simple.lo compress.lo + merge.lo dwarf2.lo simple.lo compress.lo verilog.lo BFD64_LIBS = archive64.lo @@ -53,7 +53,7 @@ BFD32_LIBS_CFILES = \ format.c init.c libbfd.c opncls.c reloc.c \ section.c syms.c targets.c hash.c linker.c \ srec.c binary.c tekhex.c ihex.c stabs.c stab-syms.c \ - merge.c dwarf2.c simple.c compress.c + merge.c dwarf2.c simple.c compress.c verilog.c BFD64_LIBS_CFILES = archive64.c @@ -1071,6 +1071,8 @@ linker.lo: linker.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ $(INCDIR)/bfdlink.h genlink.h srec.lo: srec.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h +verilog.lo: verilog.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h binary.lo: binary.c $(INCDIR)/filenames.h $(INCDIR)/safe-ctype.h \ $(INCDIR)/hashtab.h tekhex.lo: tekhex.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ |