diff options
author | Steve Chamberlain <sac@cygnus> | 1992-08-31 22:28:08 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1992-08-31 22:28:08 +0000 |
commit | a4ef860176aaaf02b6a105620eefb7d9e84a45ce (patch) | |
tree | 28a65c10a0c55580a42f5fdda0838990a568c35b /binutils/Makefile.in | |
parent | aa06ff7e3cf606a85ae0c082674acb44a4c40919 (diff) | |
download | gdb-a4ef860176aaaf02b6a105620eefb7d9e84a45ce.zip gdb-a4ef860176aaaf02b6a105620eefb7d9e84a45ce.tar.gz gdb-a4ef860176aaaf02b6a105620eefb7d9e84a45ce.tar.bz2 |
Disassemble for z8k and build using opcode library
Diffstat (limited to 'binutils/Makefile.in')
-rw-r--r-- | binutils/Makefile.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/binutils/Makefile.in b/binutils/Makefile.in index 0ea2429..49fa13f 100644 --- a/binutils/Makefile.in +++ b/binutils/Makefile.in @@ -93,6 +93,7 @@ STAGESTUFF = $(PROGS) *.o BASEDIR = $(srcdir)/.. LIBDIR = ./../bfd +OPCODEDIR = ./../opcodes #### host and target dependant Makefile fragments come in here. ### @@ -130,6 +131,7 @@ BULIBS = bucomm.o version.o filemode.o ADDL_LIBS = $(MALLOC) $(BULIBS) $(BFD) $(LIBIBERTY) BFD = $(LIBDIR)/libbfd.a +OPCODES = $(OPCODEDIR)/libopcodes.a # ## The rules @@ -158,7 +160,7 @@ $(STRIP_PROG): $(ADDL_LIBS) copy.o is-strip.o $(BFD) $(NM_PROG): $(ADDL_LIBS) nm.o $(BFD) $(CC) $(LDFLAGS) $(CFLAGS) -o $(NM_PROG) nm.o $(ADDL_LIBS) $(LOADLIBES) -$(OBJDUMP_PROG): $(ADDL_LIBS) size.o objdump.o $(DISASMS) $(BFD) +$(OBJDUMP_PROG): $(ADDL_LIBS) size.o objdump.o $(DISASMS) $(BFD) $(OPCODES) $(CC) $(LDFLAGS) $(CFLAGS) -o $(OBJDUMP_PROG) objdump.o $(DISASMS) $(ADDL_LIBS) $(LOADLIBES) arparse.c:arparse.y |