diff options
author | Nick Clifton <nickc@redhat.com> | 2013-06-21 15:01:57 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2013-06-21 15:01:57 +0000 |
commit | 34c911a458060dc30f1745f898f788d547d5f390 (patch) | |
tree | 6d2a80a6f9a15fa877ef3259f5c8807a277d183c /opcodes/Makefile.am | |
parent | 3346cfda88e8a4351e9b11c663e365bcf9721ff2 (diff) | |
download | fsf-binutils-gdb-34c911a458060dc30f1745f898f788d547d5f390.zip fsf-binutils-gdb-34c911a458060dc30f1745f898f788d547d5f390.tar.gz fsf-binutils-gdb-34c911a458060dc30f1745f898f788d547d5f390.tar.bz2 |
* msp430-decode.opc: New.
* msp430-decode.c: New/generated.
* Makefile.am (TARGET_LIBOPCODES_CFILES): Add msp430-decode.c.
(MAINTAINER_CLEANFILES): Likewise.
Add rule to build msp430-decode.c frommsp430decode.opc
using the opc2c program.
* Makefile.in: Regenerate.
* configure.in: Add msp430-decode.lo to msp430 architecture files.
* configure: Regenerate.
* msp430-decode.h: New.
Diffstat (limited to 'opcodes/Makefile.am')
-rw-r--r-- | opcodes/Makefile.am | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/opcodes/Makefile.am b/opcodes/Makefile.am index 827c96e..98d53a8 100644 --- a/opcodes/Makefile.am +++ b/opcodes/Makefile.am @@ -199,6 +199,7 @@ TARGET_LIBOPCODES_CFILES = \ mmix-opc.c \ moxie-dis.c \ moxie-opc.c \ + msp430-decode.c \ msp430-dis.c \ mt-asm.c \ mt-desc.c \ @@ -516,6 +517,7 @@ MOSTLYCLEANFILES = aarch64-gen$(EXEEXT_FOR_BUILD) i386-gen$(EXEEXT_FOR_BUILD) \ MAINTAINERCLEANFILES = $(srcdir)/aarch64-asm-2.c $(srcdir)/aarch64-dis-2.c \ $(srcdir)/aarch64-opc-2.c $(srcdir)/i386-tbl.h $(srcdir)/i386-init.h \ $(srcdir)/ia64-asmtab.c $(srcdir)/z8k-opc.h \ + $(srcdir)/msp430-decode.c \ $(srcdir)/rl78-decode.c \ $(srcdir)/rx-decode.c @@ -569,6 +571,9 @@ $(srcdir)/ia64-asmtab.c: @MAINT@ $(ia64_asmtab_deps) ia64-opc.lo: $(srcdir)/ia64-asmtab.c +$(srcdir)/msp430-decode.c: @MAINT@ $(srcdir)/msp430-decode.opc opc2c$(EXEEXT_FOR_BUILD) + ./opc2c$(EXEEXT_FOR_BUILD) $(srcdir)/msp430-decode.opc > $(srcdir)/msp430-decode.c + $(srcdir)/rl78-decode.c: @MAINT@ $(srcdir)/rl78-decode.opc opc2c$(EXEEXT_FOR_BUILD) ./opc2c$(EXEEXT_FOR_BUILD) $(srcdir)/rl78-decode.opc > $(srcdir)/rl78-decode.c |